/* ============================================================
   MIGRAnow — Web Sitesi Stilleri
   Renk: Koyu Lacivert #1e3a5f + Altın #c8a84b
   Font: Playfair Display + DM Sans
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1e3a5f;
  --navy-md:    #2a4f82;
  --navy-dk:    #162c49;
  --gold:       #c8a84b;
  --gold-lt:    #d4b86a;
  --gold-dk:    #a8882b;
  --gold-bg:    rgba(200,168,75,.08);
  --cream:      #fafaf8;
  --white:      #ffffff;
  --gray-1:     #f5f5f3;
  --gray-2:     #e8e8e5;
  --gray-3:     #b0b0aa;
  --gray-4:     #6b6b65;
  --text:       #1a1a18;
  --text-lt:    #4a4a45;

  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --logo-font:  'Plus Jakarta Sans', 'DM Sans', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(30,58,95,.10);
  --shadow-lg:  0 12px 48px rgba(30,58,95,.16);

  --max:        1160px;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
em { font-style: italic; color: var(--gold-dk); }
p { line-height: 1.7; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-bg);
  border: 1px solid rgba(200,168,75,.25);
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-tag--light {
  color: var(--gold-lt);
  background: rgba(200,168,75,.12);
  border-color: rgba(200,168,75,.2);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  border-radius: 9px;
  padding: .65rem 1.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--sm   { font-size: .82rem; padding: .5rem 1.1rem; }
.btn--lg   { font-size: .97rem; padding: .8rem 1.75rem; }
.btn--xl   { font-size: 1.05rem; padding: .95rem 2.2rem; border-radius: 11px; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold {
  background: var(--gold);
  color: var(--navy-dk);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(200,168,75,.35);
}
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,168,75,.4); }

.btn--ghost-nav {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-2);
}
.btn--ghost-nav:hover { border-color: var(--navy); background: var(--gray-1); }

.btn--ghost-light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.2); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-2);
}
.btn--outline-dark:hover { border-color: var(--navy); background: var(--gray-1); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
  transition: background .3s;
}
.nav.scrolled { background: rgba(250,250,248,.98); }

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--logo-font);
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.02em;
}
.nav__logo-text {
  font-family: var(--logo-font);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -.02em;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: .25rem;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  color: var(--text-lt);
  font-size: .88rem;
  padding: .45rem .9rem;
  border-radius: 7px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--navy); background: var(--gray-1); }

.nav__actions { display: flex; align-items: center; gap: .65rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all .25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid var(--gray-2);
  background: var(--cream);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  text-decoration: none;
  color: var(--text);
  font-size: .95rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-1);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy);
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
/* %75 transparan navy overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 42, 73, 0.85);
  z-index: 0;
}
.hero .hero__bg,
.hero .container,
.hero > * { position: relative; z-index: 1; }

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,79,130,.5) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
}
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.2);
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--gold);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .2rem;
  display: block;
}
.stat__sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
}

/* Hero mockup */
.hero__right { position: relative; }

.mockup-window {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.mockup-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.mockup-content { padding: 1.5rem; }

.mw-steps { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.25rem; }
.mw-step {
  display: flex;
  align-items: center;
  gap: .85rem;
  opacity: .5;
  transition: opacity .3s;
}
.mw-step--done, .mw-step--active { opacity: 1; }
.mw-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mw-dot--done { background: rgba(34,197,94,.2); border-color: #22c55e; color: #22c55e; }
.mw-dot--active { background: rgba(200,168,75,.2); border-color: var(--gold); color: var(--gold); }
.mw-label { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; }
.mw-val { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; margin-top: .1rem; }
.mw-val--gold { color: var(--gold); }
.mw-val--muted { color: rgba(255,255,255,.4); }

.mw-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(200,168,75,.08);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 10px;
  padding: .9rem 1rem;
}
.mwc-icon { font-size: 1.75rem; }
.mwc-name { font-size: .875rem; color: var(--white); font-weight: 600; }
.mwc-email { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .1rem; }
.mwc-tags { display: flex; gap: .4rem; margin-top: .5rem; }
.mwc-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.mwc-tag--gold { background: rgba(200,168,75,.2); color: var(--gold-lt); }

/* ── PROBLEM ── */
.problem {
  padding: 6rem 0;
  background: var(--cream);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}

.prob-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: .5rem .85rem;
  border-radius: 7px;
  width: fit-content;
}
.prob-label--red { color: #ef4444; background: rgba(239,68,68,.07); }
.prob-label--green { color: #22c55e; background: rgba(34,197,94,.07); }

.prob-flow { display: flex; flex-direction: column; gap: .5rem; }

.pf-node {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 9px;
  padding: .75rem 1rem;
  font-size: .875rem;
  color: var(--text-lt);
}
.pf-node--warn {
  background: rgba(245,158,11,.05);
  border-color: rgba(245,158,11,.3);
  color: #92400e;
}
.pf-node--red {
  background: rgba(239,68,68,.06);
  border-color: rgba(239,68,68,.25);
  color: #991b1b;
  font-weight: 500;
}
.pf-arrow { text-align: center; color: var(--gray-3); font-size: .85rem; padding: .1rem 0; }

.pf-node-new {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 9px;
  padding: .75rem 1rem;
  font-size: .875rem;
  color: var(--text-lt);
  margin-bottom: .5rem;
}
.pf-node-new--gold {
  background: var(--gold-bg);
  border-color: rgba(200,168,75,.3);
  color: var(--gold-dk);
  font-weight: 600;
}
.pfn-step {
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.prob-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding-top: 2.5rem;
}
.pvs-line { width: 1px; height: 60px; background: var(--gray-2); }
.pvs-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gray-3);
  font-style: italic;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,168,75,.08) 0%, transparent 60%);
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.how-step {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: rgba(200,168,75,.3);
  font-size: 1.5rem;
}
.how-connector::after { content: '→'; color: rgba(200,168,75,.35); font-size: 1.25rem; }

.hs-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .7;
  letter-spacing: .1em;
  margin-bottom: .85rem;
}
.hs-icon { font-size: 3rem; margin-bottom: 1.1rem; display: block; }
.hs-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  font-family: var(--serif);
}
.hs-desc { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── FEATURES ── */
.features {
  padding: 6rem 0;
  background: var(--cream);
}

.fblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-2);
}
.fblock:last-child { border-bottom: none; }
.fblock--flip .fblock__text { order: 2; }
.fblock--flip .fblock__visual { order: 1; }

.fblock__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-bg);
  border: 1px solid rgba(200,168,75,.2);
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.fblock__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.fblock__desc {
  font-size: .95rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.fblock__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.fblock__list li {
  font-size: .88rem;
  color: var(--text-lt);
  padding-left: 1.25rem;
  position: relative;
}
.fblock__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Feature Visual Window */
.fv-win {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fv-bar {
  display: flex;
  gap: 6px;
  padding: .7rem 1rem;
  background: var(--gray-1);
  border-bottom: 1px solid var(--gray-2);
}
.fv-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-2); }
.fv-body { padding: 1.5rem; }

.fv-search-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-3); margin-bottom: .5rem; }
.fv-search-box {
  background: var(--gray-1);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.fv-cursor { animation: blink 1s step-end infinite; color: var(--navy); margin-left: 1px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.fv-match {
  background: var(--gray-1);
  border-radius: 10px;
  padding: 1rem;
}
.fvm-inst {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--gray-2);
}
.fvm-emoji { font-size: 1.5rem; }
.fvm-name { font-size: .9rem; font-weight: 600; color: var(--navy); }
.fvm-type { font-size: .72rem; color: var(--gray-3); margin-top: .1rem; }
.fvm-badge {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 600;
  background: rgba(34,197,94,.1);
  color: #15803d;
  border: 1px solid rgba(34,197,94,.25);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.fv-doclist { display: flex; flex-direction: column; gap: .35rem; }
.fvd { font-size: .8rem; padding: .3rem .5rem; border-radius: 5px; }
.fvd--ok { color: #15803d; background: rgba(34,197,94,.07); }
.fvd--warn { color: #92400e; background: rgba(245,158,11,.08); }
.fvd--pend { color: var(--gray-3); }

.fv-docs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .65rem; }
.fv-docs-title { font-size: .85rem; font-weight: 600; color: var(--navy); }
.fv-docs-count { font-size: .78rem; color: var(--gray-3); }
.fv-progress { height: 5px; background: var(--gray-2); border-radius: 100px; overflow: hidden; margin-bottom: 1rem; }
.fv-progress__fill { height: 100%; background: var(--navy); border-radius: 100px; }
.fv-docs-list { display: flex; flex-direction: column; gap: .4rem; }
.fvdl {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .75rem;
  border-radius: 7px;
  font-size: .82rem;
}
.fvdl--green { background: rgba(34,197,94,.07); }
.fvdl--red   { background: rgba(239,68,68,.06); }
.fvdl-ico { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
.fvdl--green .fvdl-ico { background: rgba(34,197,94,.15); color: #15803d; }
.fvdl--red   .fvdl-ico { background: rgba(239,68,68,.12); color: #dc2626; }
.fvdl-name { flex: 1; color: var(--text); }
.fvdl-btn { font-size: .72rem; padding: .2rem .55rem; border-radius: 5px; margin-left: auto; font-weight: 500; }
.fvdl-btn--view { background: rgba(30,58,95,.08); color: var(--navy); }
.fvdl-btn--up { background: var(--navy); color: var(--white); }

.fv-mail { font-size: .83rem; }
.fvm-row { padding: .45rem 0; border-bottom: 1px solid var(--gray-1); color: var(--text-lt); }
.fvm-lbl { color: var(--gray-3); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; margin-right: .4rem; }
.fvm-divider { height: 1px; background: var(--gray-2); margin: .75rem 0; }
.fvm-body-text { color: var(--text-lt); line-height: 1.7; font-size: .82rem; }
.fvm-body-text p { margin-bottom: .5rem; }
.fvm-body-text strong { color: var(--navy); }
.fvm-send-btn {
  margin-top: 1rem;
  width: 100%;
  padding: .65rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
}

.fv-timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.fvt-dur { font-size: .75rem; color: var(--gold-dk); background: var(--gold-bg); padding: .2rem .6rem; border-radius: 100px; font-weight: 500; }
.fv-timeline { display: flex; flex-direction: column; gap: .75rem; }
.fvt-row { display: flex; align-items: flex-start; gap: .75rem; opacity: .45; }
.fvt-row--done, .fvt-row--active { opacity: 1; }
.fvt-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-2);
  color: var(--gray-3);
  font-size: .7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fvt-dot--done { background: rgba(34,197,94,.1); border-color: #22c55e; color: #22c55e; }
.fvt-dot--active { background: rgba(200,168,75,.12); border-color: var(--gold); color: var(--gold-dk); }
.fvt-name { font-size: .85rem; font-weight: 500; color: var(--navy); }
.fvt-sub { font-size: .75rem; color: var(--gray-3); margin-top: .1rem; }








/* ── GUIDE ── */
.guide {
  padding: 6rem 0;
  background: var(--white);
}
.guide__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.guide-card {
  background: var(--cream);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.guide-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,168,75,.12); }
.gc-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }
.gc-title { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: .65rem; font-weight: 600; }
.gc-desc { font-size: .84rem; color: var(--text-lt); line-height: 1.65; margin-bottom: 1rem; }
.gc-cost {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dk);
  background: var(--gold-bg);
  border: 1px solid rgba(200,168,75,.2);
  padding: .3rem .75rem;
  border-radius: 100px;
  display: inline-block;
}
.gc-badge {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(30,58,95,.06);
  border: 1px solid rgba(30,58,95,.12);
  padding: .3rem .75rem;
  border-radius: 100px;
  display: inline-block;
}
.guide__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.guide__cta-sub {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ── NACHFORDERUNG ── */
.nach {
  padding: 6rem 0;
  background: var(--navy);
  background-image: url('../img/nach-bg.webp');
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.nach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 42, 73, 0.85);
  z-index: 0;
}
.nach .container { position: relative; z-index: 1; }
.nach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nach__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
  font-family: var(--serif);
}
.nach__title em { color: var(--gold); }
.nach__desc { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 1.75rem; }
.nach__steps { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.nach__steps li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.nach__steps li span {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.nvc-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: .85rem;
  font-weight: 500;
}
.nvc-mail {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .9rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}
.nvc-arrow {
  text-align: center;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.nvc-result {
  background: rgba(200,168,75,.08);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 10px;
  padding: 1rem;
}
.nvcr-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .65rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.nvcr-guide { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; border-top: 1px solid rgba(255,255,255,.08); padding-top: .65rem; }

/* ── PRICING ── */
.pricing {
  padding: 6rem 0;
  background: var(--cream);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
}
.price-card--pro {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.pc-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dk);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pc-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.price-card--pro .pc-name { color: var(--white); }
.pc-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .35rem;
}
.pc-price span { font-size: 1rem; font-weight: 400; color: var(--gray-3); font-family: var(--sans); }
.price-card--pro .pc-price { color: var(--white); }
.price-card--pro .pc-price span { color: rgba(255,255,255,.45); }
.pc-sub { font-size: .83rem; color: var(--gray-3); margin-bottom: 1.5rem; }
.price-card--pro .pc-sub { color: rgba(255,255,255,.5); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pc-list li { font-size: .86rem; display: flex; align-items: center; gap: .5rem; color: var(--text-lt); }
.price-card--pro .pc-list li { color: rgba(255,255,255,.75); }
.pc-list li.yes::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.pc-list li.no { color: var(--gray-3); }
.pc-list li.no::before { content: '—'; color: var(--gray-2); flex-shrink: 0; }

/* ── FAQ ── */
.faq {
  padding: 6rem 0;
  background: var(--white);
}
.faq__list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-2);
  cursor: pointer;
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--gray-2); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: .97rem;
  font-weight: 500;
  color: var(--navy);
  gap: 1rem;
}
.faq-ico {
  font-size: 1.4rem;
  color: var(--gold-dk);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.25rem; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.fcta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.fcta__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,.12) 0%, transparent 70%);
  pointer-events: none;
}
.fcta__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.2);
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.fcta__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.fcta__title em { color: var(--gold); }
.fcta__sub { font-size: .95rem; color: rgba(255,255,255,.5); margin-bottom: 2.25rem; }

/* ── FOOTER ── */
.footer { background: var(--navy-dk); padding: 4rem 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .nav__logo-text { color: rgba(255,255,255,.85); }
.footer__tag { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: .65rem; }
.footer__cols { display: flex; gap: 3rem; }
.fcol { display: flex; flex-direction: column; gap: .55rem; }
.fcol__head { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: .25rem; font-weight: 500; }
.fcol a { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.fcol a:hover { color: var(--gold-lt); }
.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { max-width: 480px; }
  .problem__grid { grid-template-columns: 1fr; }
  .prob-vs { flex-direction: row; padding: 0; }
  .pvs-line { width: 60px; height: 1px; }
  .how__steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .how-connector { display: none; }
  .guide__grid { grid-template-columns: 1fr 1fr; }
  .nach__inner { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .price-card--pro { transform: none; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .fblock { grid-template-columns: 1fr; gap: 2.5rem; }
  .fblock--flip .fblock__text { order: 0; }
  .fblock--flip .fblock__visual { order: 1; }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .guide__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 1rem; }
  .footer__cols { flex-direction: column; gap: 1.75rem; }
}

@media (max-width: 560px) {
  .how__steps { grid-template-columns: 1fr; }
  .guide__grid { grid-template-columns: 1fr; }
  
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ── AI POWER ── */
.ai-power {
  padding: 6rem 0;
  background: var(--navy);
  background-image: url('../img/ai-bg.webp');
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.ai-power::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 42, 73, 0.85);
  z-index: 0;
}
.ai-power .container { position: relative; z-index: 1; }
.aip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.aip__title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-family: var(--serif);
}
.aip__title em { color: var(--gold); }
.aip__desc { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 2rem; }
.aip__pills { display: flex; flex-direction: column; gap: .75rem; }
.aip-pill {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .85rem 1rem;
}
.aip-pill__icon { font-size: 1.35rem; flex-shrink: 0; }
.aip-pill__title { font-size: .875rem; font-weight: 600; color: var(--white); }
.aip-pill__sub { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

.aip-flow {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.aipf-input {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  width: 100%;
}
.aipf-emoji { font-size: 1.5rem; }
.aipf-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); }
.aipf-val { font-size: .9rem; font-weight: 500; color: var(--white); margin-top: .1rem; }
.aipf-arrow { color: rgba(200,168,75,.5); font-size: 1.25rem; }
.aipf-brain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: 50px;
  padding: .75rem 2rem;
}
.aipf-brain__icon { font-size: 1.5rem; }
.aipf-brain__text { font-size: .78rem; font-weight: 600; color: var(--gold-lt); letter-spacing: .06em; text-transform: uppercase; }
.aipf-brain__dots { display: flex; gap: 4px; }
.aipf-brain__dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 1.4s ease-in-out infinite;
}
.aipf-brain__dots span:nth-child(2) { animation-delay: .2s; }
.aipf-brain__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot-pulse { 0%,80%,100%{opacity:.2;transform:scale(.8)} 40%{opacity:1;transform:scale(1)} }

.aipf-outputs { display: flex; flex-direction: column; gap: .45rem; width: 100%; }
.aipfo {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 7px;
  padding: .5rem .85rem;
}

/* ── SOCIAL PROOF ── */
.social-proof { padding: 6rem 0; background: var(--white); }
.sp__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.sp-stat { text-align: center; }
.sp-stat__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.sp-stat__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-top: .3rem; display: block; }
.sp-stat__sep { width: 1px; height: 48px; background: rgba(255,255,255,.12); }
.sp__reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sp-review {
  background: var(--cream);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sp-review__stars { color: var(--gold); font-size: 1rem; margin-bottom: .85rem; letter-spacing: .1em; }
.sp-review__text { font-size: .9rem; color: var(--text-lt); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.sp-review__author { display: flex; align-items: center; gap: .75rem; }
.sp-review__avatar {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sp-review__name { font-size: .85rem; font-weight: 600; color: var(--navy); }
.sp-review__role { font-size: .75rem; color: var(--gray-3); margin-top: .1rem; }

/* ── JOB SEARCH ── */
.fv-job-list { display: flex; flex-direction: column; gap: .65rem; }
.fvj {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 9px;
  padding: .85rem 1rem;
}
.fvj--match { border-color: rgba(200,168,75,.3); background: var(--gold-bg); }
.fvj-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .3rem; gap: .5rem; }
.fvj-title { font-size: .85rem; font-weight: 600; color: var(--navy); }
.fvj-badge { font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.fvj-badge--high { background: rgba(34,197,94,.12); color: #15803d; }
.fvj-badge--med { background: rgba(59,130,246,.1); color: #1d4ed8; }
.fvj-company { font-size: .75rem; color: var(--gray-3); margin-bottom: .2rem; }
.fvj-salary { font-size: .75rem; color: var(--gold-dk); font-weight: 500; }

/* ── TRUST ── */
.trust { padding: 4rem 0; background: var(--gray-1); border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: flex-start; gap: .85rem; }
.ti-icon { font-size: 1.5rem; flex-shrink: 0; }
.ti-title { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.ti-desc { font-size: .8rem; color: var(--gray-4); line-height: 1.55; }

/* ── COMING SOON ── */
.coming-soon { padding: 5rem 0; background: var(--cream); }
.cs__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.cs__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: var(--serif);
}
.cs__desc { font-size: .9rem; color: var(--text-lt); line-height: 1.7; }
.cs__items { display: flex; flex-direction: column; gap: .85rem; }
.cs-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 11px;
  padding: 1rem 1.25rem;
}
.cs-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.cs-item__title { font-size: .9rem; font-weight: 600; color: var(--navy); }
.cs-item__sub { font-size: .78rem; color: var(--gray-3); margin-top: .15rem; }
.cs-badge {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-bg);
  border: 1px solid rgba(200,168,75,.25);
  padding: .25rem .65rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── RESPONSIVE EKLER ── */
@media (max-width: 1024px) {
  .aip__inner { grid-template-columns: 1fr; }
  .sp__reviews { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .cs__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sp__stats { gap: 1.5rem; padding: 1.75rem; }
  .sp-stat__num { font-size: 1.85rem; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 560px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* ── HERO TRUST BAND ── */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.ht-icon { font-size: .95rem; }
.ht-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); }

/* ── HERO MOCKUP TABS ── */
.hero__right { position: relative; }

.hero-mockup {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  overflow: visible;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hm-tabs {
  display: flex;
  gap: .25rem;
  padding: .85rem 1rem .65rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 20px 20px 0 0;
}
.hm-tab {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .45rem .5rem;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
  white-space: nowrap;
}
.hm-tab--active {
  background: rgba(200,168,75,.15);
  border-color: rgba(200,168,75,.3);
  color: var(--gold-lt);
}
.hm-tab:hover:not(.hm-tab--active) { color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.hm-pane { padding: 1.25rem; }
.hm-pane--hidden { display: none; }

/* Wizard pane */
.hm-wizard { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.hmw-step { display: flex; align-items: center; gap: .75rem; opacity: .45; }
.hmw-step--done, .hmw-step--active { opacity: 1; }
.hmw-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hmw-dot--done { background: rgba(34,197,94,.2); border-color: #22c55e; color: #22c55e; }
.hmw-dot--active { background: rgba(200,168,75,.2); border-color: var(--gold); color: var(--gold); }
.hmw-label { font-size: .67rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.4); }
.hmw-val { font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.85); margin-top: .1rem; }
.hmw-val--gold { color: var(--gold); }
.hmw-val--muted { color: rgba(255,255,255,.35); }

.hmw-result {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(200,168,75,.08);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 10px;
  padding: .85rem;
}
.hmwr-icon { font-size: 1.6rem; flex-shrink: 0; }
.hmwr-name { font-size: .85rem; font-weight: 600; color: var(--white); }
.hmwr-email { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: .1rem; }
.hmwr-tags { display: flex; gap: .35rem; margin-top: .5rem; flex-wrap: wrap; }
.hmwr-tag {
  font-size: .63rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: 4px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
}
.hmwr-tag--gold { background: rgba(200,168,75,.2); color: var(--gold-lt); }

/* Docs pane */
.hm-docs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.hmd-title { font-size: .82rem; font-weight: 600; color: var(--white); }
.hmd-count { font-size: .72rem; color: rgba(255,255,255,.4); }
.hmd-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden; margin-bottom: .85rem; }
.hmd-bar__fill { height: 100%; background: var(--gold); border-radius: 100px; }
.hmd-list { display: flex; flex-direction: column; gap: .38rem; }
.hmd-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .48rem .75rem; border-radius: 7px;
  font-size: .78rem;
}
.hmd-item--green { background: rgba(34,197,94,.1); color: rgba(255,255,255,.8); }
.hmd-item--red   { background: rgba(239,68,68,.1);  color: rgba(255,255,255,.8); }
.hmd-ico {
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; flex-shrink: 0;
}
.hmd-item--green .hmd-ico { background: rgba(34,197,94,.25); color: #4ade80; }
.hmd-item--red   .hmd-ico { background: rgba(239,68,68,.25);  color: #f87171; }
.hmd-action { margin-left: auto; font-size: .68rem; padding: .18rem .5rem; border-radius: 4px; }
.hmd-action--view { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.hmd-action--up   { background: var(--gold); color: var(--navy-dk); font-weight: 600; }

/* Mail pane */
.hm-mail { font-size: .8rem; }
.hmm-row { padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.hmm-lbl { font-size: .67rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.3); margin-right: .4rem; }
.hmm-divider { height: 1px; background: rgba(255,255,255,.08); margin: .7rem 0; }
.hmm-body { color: rgba(255,255,255,.6); line-height: 1.65; font-size: .79rem; }
.hmm-body p { margin-bottom: .45rem; }
.hmm-body strong { color: var(--gold-lt); }
.hmm-send {
  margin-top: .9rem; width: 100%;
  background: var(--gold); color: var(--navy-dk);
  border: none; border-radius: 8px;
  padding: .6rem; font-size: .8rem; font-weight: 700;
  cursor: pointer; font-family: var(--sans);
  transition: background .2s;
}
.hmm-send:hover { background: var(--gold-lt); }

/* Float badges */
.hm-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(22,44,73,.95);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 100px;
  padding: .45rem .9rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold-lt);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.hm-badge--1 { bottom: -16px; left: -16px; }
.hm-badge--2 { top: -16px; right: -16px; }

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .hm-badge { display: none; }
  .hero__trust { gap: .75rem; }
}

/* ── TRUST BAND ── */
.trust-band {
  background: rgba(15,28,50,.75);
  border-top: 1px solid rgba(200,168,75,.25);
  padding: .85rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.trust-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.tb-item span { font-size: .95rem; }
.tb-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .trust-band__inner { gap: 1rem; }
  .tb-sep { display: none; }
}

/* ── PROBLEM SECTION: MIGRAnow sütunu zemin ── */
.prob-after {
  background: var(--navy);
  border: 1.5px solid rgba(200,168,75,.35);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(30,58,95,.18);
}

.prob-after__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(200,168,75,.2);
}

/* prob-after içindeki node'lar beyaz zeminli */
.prob-after .pf-node-new {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.prob-after .pf-node-new--gold {
  background: rgba(200,168,75,.15);
  border-color: rgba(200,168,75,.35);
  color: var(--gold-lt);
}
.prob-after .pfn-step {
  background: var(--gold);
  color: var(--navy-dk);
}
.prob-after .prob-label--green {
  background: rgba(34,197,94,.1);
  color: #4ade80;
}

/* ── İŞ PORTALİ ── */
.jobs {
  padding: 6rem 0;
  background: var(--cream);
}
.jobs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.jobs__title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.jobs__desc {
  font-size: .95rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.jobs__highlights {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--navy);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.jh-item { text-align: center; }
.jh-num {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.jh-plus { font-size: .9rem; color: rgba(255,255,255,.5); }
.jh-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-top: .25rem; }
.jh-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

.jobs__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}
.jobs__list li {
  font-size: .9rem;
  color: var(--text-lt);
  padding-left: 1.25rem;
  position: relative;
}
.jobs__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Mockup */
.jobs-mockup {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.jm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--navy);
  flex-wrap: wrap;
}
.jm-search {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .5rem .9rem;
  flex: 1;
}
.jm-search-icon { font-size: .9rem; }
.jm-search-text { font-size: .85rem; font-weight: 500; color: var(--white); }
.jm-search-loc { font-size: .78rem; color: rgba(255,255,255,.5); margin-left: auto; }
.jm-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-lt);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: 100px;
  padding: .3rem .75rem;
  white-space: nowrap;
}
.jm-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.jm-list { padding: .75rem; display: flex; flex-direction: column; gap: .6rem; }
.jm-item {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 11px;
  padding: .9rem 1rem;
  transition: border-color .2s;
}
.jm-item--featured {
  background: var(--gold-bg);
  border-color: rgba(200,168,75,.3);
}
.jm-item-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .3rem; gap: .5rem; }
.jm-title { font-size: .875rem; font-weight: 600; color: var(--navy); }
.jm-match { font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: 100px; white-space: nowrap; }
.jm-match--high { background: rgba(34,197,94,.12); color: #15803d; }
.jm-match--mid  { background: rgba(59,130,246,.1);  color: #1d4ed8; }
.jm-company { font-size: .78rem; color: var(--gray-3); margin-bottom: .45rem; }
.jm-meta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem; }
.jm-meta span { font-size: .75rem; color: var(--gray-4); }
.jm-tags { display: flex; gap: .35rem; }
.jm-tag {
  font-size: .65rem; font-weight: 600; letter-spacing: .05em;
  padding: .18rem .5rem; border-radius: 4px;
  background: rgba(30,58,95,.08); color: var(--navy);
}
.jm-tag--gold { background: rgba(200,168,75,.15); color: var(--gold-dk); }

.jm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  border-top: 1px solid var(--gray-2);
  font-size: .78rem;
  color: var(--gray-3);
}
.jm-more { color: var(--navy); font-weight: 600; cursor: pointer; }
.jm-more:hover { color: var(--gold-dk); }

@media (max-width: 1024px) {
  .jobs__inner { grid-template-columns: 1fr; }
  .jobs__highlights { justify-content: center; }
}

/* ── FOOTER KÜNYE ── */
.footer__impressum {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0;
}
.fi-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.fi-head {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: .65rem;
  font-weight: 500;
}
.fi-col p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
}
.fi-col a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
}
.fi-col a:hover { color: var(--gold-lt); }

@media (max-width: 768px) {
  .fi-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── ÇEREZ BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 820px;
  background: var(--navy-dk);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  display: none;
  animation: slideUp .35s cubic-bezier(.4,0,.2,1);
}
/* "Yalnızca Zorunlu" butonu açık renkli olsun */
.cookie-banner .btn--ghost-nav {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.cookie-banner .btn--ghost-nav:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
}
.cookie-banner.show { display: flex; }
@keyframes slideUp {
  from { opacity:0; transform: translateX(-50%) translateY(20px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}
.cb-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  flex-wrap: wrap;
}
.cb-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .25rem;
}
.cb-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.cb-desc a { color: var(--gold-lt); text-decoration: underline; }
.cb-text { flex: 1; min-width: 200px; }
.cb-actions { display: flex; gap: .65rem; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 560px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: 14px 14px 0 0; }
  .cb-actions { width: 100%; }
  .cb-actions .btn { flex: 1; justify-content: center; }
}

/* Footer WhatsApp + adres */
.fcol-wa {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #4ade80 !important;
}
.fcol-wa:hover { color: #86efac !important; }
.fcol-addr {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  margin-top: .25rem;
  line-height: 1.5;
}

/* Footer pasif link + yakında badge */
.fcol-passive {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255,255,255,.25);
  cursor: not-allowed;
}
.fcol-badge {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.2);
  padding: .15rem .5rem;
  border-radius: 100px;
}

/* ─── JOURNEY ─────────────────────────────────────────────── */
.journey {
  padding: 6rem 0;
  background: var(--cream);
}
.journey__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.journey-card {
  background: #fff;
  border: 1px solid rgba(30,58,95,.08);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.journey-card:hover {
  box-shadow: 0 12px 40px rgba(30,58,95,.1);
  transform: translateY(-4px);
}
.journey-card--coming {
  opacity: .7;
  background: rgba(30,58,95,.03);
}
.journey-card--coming:hover {
  transform: none;
  box-shadow: none;
}
.jc-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.25);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.jc-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(30,58,95,.1);
  line-height: 1;
  margin-bottom: .75rem;
}
.jc-icon {
  font-size: 1.8rem;
  margin-bottom: .75rem;
}
.jc-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.jc-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.jc-time {
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-dk);
  background: rgba(200,168,75,.08);
  border-radius: 100px;
  padding: .3rem .8rem;
  display: inline-block;
}
.jc-arrow {
  color: rgba(30,58,95,.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.jcta-sub {
  font-size: .82rem;
  color: var(--text-muted);
}
@media (max-width: 1024px) {
  .journey__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .jc-arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  .journey__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CV ASISTANI BEFORE/AFTER ────────────────────────────── */
.fv-cv-compare {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.fvcv {
  flex: 1;
  border-radius: 10px;
  padding: .75rem;
  border: 1px solid rgba(30,58,95,.1);
}
.fvcv--before { background: rgba(239,68,68,.04); border-color: rgba(239,68,68,.15); }
.fvcv--after  { background: rgba(34,197,94,.04); border-color: rgba(34,197,94,.15); }
.fvcv-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.fvcv-label--red   { color: #ef4444; }
.fvcv-label--green { color: #22c55e; }
.fvcv-lines { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .5rem; }
.fvcv-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(30,58,95,.1);
}
.fvcv-line--long  { width: 100%; }
.fvcv-line--med   { width: 70%; }
.fvcv-line--short { width: 45%; }
.fvcv--after .fvcv-line { background: rgba(34,197,94,.2); }
.fvcv-reject {
  font-size: .67rem;
  color: #ef4444;
  font-weight: 500;
}
.fvcv-approve {
  font-size: .67rem;
  color: #22c55e;
  font-weight: 500;
}
.fvcv-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}
.fvcv-arrow-icon { font-size: 1rem; }
.fv-match-score {
  background: rgba(200,168,75,.06);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 10px;
  padding: .75rem 1rem;
}
.fvms-label {
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.fvms-bar-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.fvms-bar {
  flex: 1;
  height: 7px;
  background: rgba(30,58,95,.08);
  border-radius: 4px;
  overflow: hidden;
}
.fvms-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dk), #e6c96a);
  border-radius: 4px;
}
.fvms-pct {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-dk);
}
.fvms-cta {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── NEDEN MIGRAnow ──────────────────────────────────────── */
.why-migranow {
  padding: 6rem 0;
  background: var(--navy);
  color: #fff;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.why__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: .75rem 0 1.25rem;
}
.why__title em {
  color: var(--gold);
  font-style: italic;
}
.why__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.why__left .section-tag {
  background: rgba(200,168,75,.15);
  color: var(--gold);
  border-color: rgba(200,168,75,.25);
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  transition: background .2s;
}
.why-item:hover {
  background: rgba(255,255,255,.05);
}
.wi-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.wi-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.wi-text strong {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
}
.wi-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
@media (max-width: 900px) {
  .why__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─── CTA GÜÇLENDİRME ────────────────────────────────────── */
.hero__trust-line {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero__trust-line span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.pc-cta-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .5rem;
}
.fcta__guarantees {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.25rem;
}
.fcta__guarantees span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ─── CV SPOTLIGHT ────────────────────────────────────────── */
.cv-spotlight {
  padding: 7rem 0;
  background: var(--cream);
  overflow: hidden;
}
.cvs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
/* Before/After */
.cvs-compare {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cvs-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.cvs-side__label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.cvs-side__label--red   { color: #ef4444; }
.cvs-side__label--green { color: #22c55e; }
.cvs-doc {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(30,58,95,.08);
  box-shadow: 0 4px 20px rgba(30,58,95,.06);
  min-height: 200px;
}
.cvs-doc--after {
  border-color: rgba(34,197,94,.2);
  box-shadow: 0 4px 24px rgba(34,197,94,.08);
}
.cvs-doc__header {
  display: flex;
  gap: .6rem;
  margin-bottom: .75rem;
}
.cvs-doc__photo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(30,58,95,.1);
  flex-shrink: 0;
}
.cvs-doc__name-block {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}
.cvs-doc__top-bar {
  height: 4px;
  background: #22c55e;
  border-radius: 2px;
  margin-bottom: .75rem;
}
.cvs-divider {
  height: 1px;
  background: rgba(30,58,95,.08);
  margin: .5rem 0;
}
.cvs-section-title {
  height: 5px;
  width: 45%;
  background: rgba(30,58,95,.15);
  border-radius: 3px;
  margin-bottom: .4rem;
}
.cvs-section-title--green {
  background: rgba(34,197,94,.3);
}
.cvs-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(30,58,95,.08);
  margin-bottom: .3rem;
}
.cvs-line--name  { width: 80%; height: 6px; background: rgba(30,58,95,.2); }
.cvs-line--sub   { width: 55%; }
.cvs-line--full  { width: 100%; }
.cvs-line--med   { width: 72%; }
.cvs-line--short { width: 45%; }
.cvs-line--dark  { background: rgba(30,58,95,.3); }
.cvs-line--muted { background: rgba(34,197,94,.2); }
.cvs-reject-stamp {
  font-size: .67rem;
  color: #ef4444;
  font-weight: 600;
  margin-top: .6rem;
  padding: .25rem .6rem;
  background: rgba(239,68,68,.06);
  border-radius: 6px;
  display: inline-block;
}
.cvs-approve-stamp {
  font-size: .67rem;
  color: #22c55e;
  font-weight: 600;
  margin-top: .6rem;
  padding: .25rem .6rem;
  background: rgba(34,197,94,.08);
  border-radius: 6px;
  display: inline-block;
}
.cvs-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
  position: relative;
}
.cvs-transform__ring {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed rgba(200,168,75,.4);
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cvs-transform__icon {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}
.cvs-transform__label {
  font-size: .62rem;
  color: var(--gold-dk);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
/* Sağ taraf */
.cvs__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: .75rem 0 1.1rem;
}
.cvs__title em { color: var(--gold-dk); font-style: italic; }
.cvs__desc {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cvs__metrics {
  background: #fff;
  border: 1px solid rgba(30,58,95,.08);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cvs-metric__score {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dk);
  line-height: 1;
}
.cvs-metric__score::after { content: '%'; font-size: 1.4rem; }
.cvs-metric__label {
  font-size: .78rem;
  color: var(--text-muted);
  margin: .25rem 0 .6rem;
}
.cvs-metric__bar {
  height: 8px;
  background: rgba(30,58,95,.06);
  border-radius: 4px;
  overflow: hidden;
}
.cvs-metric__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), #e6c96a);
  border-radius: 4px;
  transition: width 1.8s cubic-bezier(.4,0,.2,1);
}
.cvs-metric-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.cvs-metric-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text);
}
.cvmi-icon {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}
.cvs__note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .6rem;
}
@media (max-width: 900px) {
  .cvs__inner { grid-template-columns: 1fr; gap: 3rem; }
  .cvs-compare { max-width: 480px; margin: 0 auto; }
}

/* ─── BETA TAG ────────────────────────────────────────────── */
.sp__beta-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.sp-beta {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-dk);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.25);
  padding: .3rem .9rem;
  border-radius: 100px;
}
.sp-beta-desc {
  font-size: .82rem;
  color: var(--text-muted);
}
.sp-stat__plus {
  font-size: 1.5rem;
  vertical-align: super;
  line-height: 1;
}

/* ─── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  padding: .75rem 1.1rem .75rem .85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  color: #fff;
}
.wa-float__label { white-space: nowrap; }
@media (max-width: 600px) {
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: .75rem;
    border-radius: 50%;
  }
  .wa-float__label { display: none; }
}

/* ─── iOS PARALLAX FIX ────────────────────────────────────── */
@media (hover: none) {
  .nach,
  .ai-power {
    background-attachment: scroll;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL TASARIM — Minimal & Estetik
   Breakpoint: 768px tablet, 480px mobil
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── GENEL ── */
  .container { padding: 0 1.25rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub    { font-size: .9rem; }

  /* ── NAV ── */
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 1.25rem; }

  /* ── HERO ── */
  .hero { min-height: 100svh; padding: 0; }
  .hero__inner {
    flex-direction: column;
    padding: 7rem 1.25rem 3rem;
    gap: 2.5rem;
    text-align: center;
  }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero__sub    { font-size: .92rem; max-width: 480px; margin: 0 auto; }
  .hero__cta    { justify-content: center; flex-wrap: wrap; }
  .hero__trust-line { justify-content: center; gap: 1rem; }
  .hero__right  { width: 100%; max-width: 400px; margin: 0 auto; }
  .hero-mockup  { transform: none !important; }
  .hm-badge { display: none; }

  /* ── JOURNEY ── */
  .journey { padding: 4rem 0; }
  .journey__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .jc-arrow { display: none; }
  .journey-card { padding: 1.5rem; }
  .jc-num { font-size: 1.6rem; }

  /* ── SORUN/ÇÖZÜM ── */
  .problem { padding: 4rem 0; }
  .problem__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .prob-vs { flex-direction: row; height: 40px; }
  .pvs-line { flex: 1; height: 1px; }
  .pvs-text { padding: 0 1rem; }

  /* ── AI GÜCÜ ── */
  .aip__inner { flex-direction: column; gap: 2rem; }
  .aip__image { display: none; }
  .aip__pills { gap: .5rem; }
  .aip-pill  { font-size: .82rem; }

  /* ── NASIL ÇALIŞIR ── */
  .how { padding: 4rem 0; }
  .how__steps {
    flex-direction: column;
    gap: 0;
  }
  .how-step {
    border-left: 2px solid rgba(255,255,255,.15);
    border-radius: 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    position: relative;
  }
  .how-step .hs-num {
    position: absolute;
    left: -1.1rem;
    top: 1.5rem;
    background: var(--navy);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid rgba(200,168,75,.4);
  }
  .how-connector { display: none; }

  /* ── SOSYAL KANIT ── */
  .sp__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .sp-stat__sep { display: none; }
  .sp__reviews {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* ── NEDEN MIGRAnow ── */
  .why-migranow { padding: 4rem 0; }
  .why__inner { grid-template-columns: 1fr; gap: 2rem; }
  .why__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .why-item { padding: .75rem .5rem; }

  /* ── CV SPOTLIGHT ── */
  .cv-spotlight { padding: 4rem 0; }
  .cvs__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cvs-compare { max-width: 100%; gap: .5rem; }
  .cvs-side__label { font-size: .65rem; }
  .cvs-transform__label { font-size: .55rem; }
  .cvs__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cvs__metrics { padding: 1.1rem; }
  .cvs-metric__score { font-size: 2.2rem; }

  /* ── ÖZELLİKLER ── */
  .features { padding: 4rem 0; }
  .fblock {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fblock--flip .fblock__visual { order: -1; }
  .fblock__title { font-size: 1.4rem; }
  .fv-win { max-width: 100%; }

  /* ── YEMİNLİ TERCÜME ── */
  .guide { padding: 4rem 0; }
  .guide__grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── NACHFORDERUNG ── */
  .nach { padding: 4rem 0; }
  .nach__inner { flex-direction: column; gap: 2rem; }
  .nach__title { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* ── İŞ PORTALI ── */
  .jobs { padding: 4rem 0; }
  .jobs__inner { flex-direction: column; gap: 2rem; }

  /* ── FİYATLANDIRMA ── */
  .pricing { padding: 4rem 0; }
  .pricing__grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 400px; margin: 0 auto; }

  /* ── SSS ── */
  .faq { padding: 4rem 0; }
  .faq-q { font-size: .9rem; padding: 1rem; min-height: 44px; }
  .faq-a { font-size: .85rem; padding: 0 1rem 1rem; }

  /* ── SON CTA ── */
  .final-cta { padding: 4rem 0; }
  .fcta__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .fcta__guarantees { gap: .75rem; }
  .fcta__guarantees span { font-size: .75rem; }

  /* ── FOOTER ── */
  .footer__inner { flex-direction: column; gap: 2.5rem; }
  .footer__cols  { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* ── BUTONLAR ── */
  .btn--lg, .btn--xl { font-size: .9rem; padding: .9rem 1.6rem; min-height: 44px; }
  .btn--full { min-height: 44px; }
}

@media (max-width: 480px) {

  /* ── HERO ── */
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; justify-content: center; }

  /* ── JOURNEY ── */
  .journey__cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── SOSYAl KANIT ── */
  .sp__stats { grid-template-columns: 1fr 1fr; }
  .sp-stat__num { font-size: 1.8rem; }

  /* ── FOOTER ── */
  .footer__cols { grid-template-columns: 1fr; }

  /* ── FİYAT KART ── */
  .pricing__grid { max-width: 100%; }
}

/* ─── DİL & TERCÜME ──────────────────────────────────────── */
.fv-dil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}
.fvdg-card {
  background: rgba(30,58,95,.04);
  border: 1px solid rgba(30,58,95,.08);
  border-radius: 10px;
  padding: .85rem;
  text-align: center;
}
.fvdg-icon  { font-size: 1.4rem; margin-bottom: .35rem; }
.fvdg-title { font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.fvdg-desc  { font-size: .72rem; color: var(--text-muted); margin-bottom: .4rem; }
.fvdg-badge {
  font-size: .65rem; font-weight: 600;
  color: var(--gold-dk);
  background: rgba(200,168,75,.1);
  border-radius: 100px;
  padding: .15rem .5rem;
  display: inline-block;
}
.fvdg-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--text-muted);
  background: rgba(30,58,95,.03);
  border-radius: 8px;
  padding: .6rem .75rem;
}

/* ─── PAKET ZONE ─────────────────────────────────────────── */
.package-zone {
  background: var(--navy);
  padding: 3.5rem 0 0;
}
.pz-header {
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pz-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.25);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.pz-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
/* İş Portali, Pricing ve Yakında navy zeminde */
.jobs, .pricing, .coming-soon {
  background: var(--navy) !important;
  background-image: none !important;
}
.jobs .section-tag,
.pricing .section-tag,
.coming-soon .section-tag { 
  background: rgba(200,168,75,.12);
  color: var(--gold);
  border-color: rgba(200,168,75,.2);
}
.jobs .jobs__title,
.pricing .section-title,
.coming-soon .cs__title { color: #fff !important; }
.jobs .jobs__title em,
.pricing .section-title em,
.coming-soon .cs__title em { color: var(--gold) !important; }
.jobs .jobs__desc,
.jobs .jobs__list li,
.coming-soon .cs__desc { color: rgba(255,255,255,.6) !important; }
.price-card { border-color: rgba(255,255,255,.1) !important; background: rgba(255,255,255,.04) !important; }
.price-card .pc-name, .price-card .pc-price { color: #fff !important; }
.price-card .pc-sub, .price-card .pc-list li { color: rgba(255,255,255,.55) !important; }
.price-card .pc-list li.yes::before { color: var(--gold) !important; }
.price-card--pro { background: rgba(200,168,75,.08) !important; border-color: rgba(200,168,75,.3) !important; }
.pc-cta-note { color: rgba(255,255,255,.4) !important; }

/* ─── YENİ PRİCING ───────────────────────────────────────── */
.pricing__sub {
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 3rem;
}
.pc-once {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
  margin-top: .2rem;
}
.pc-section-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin: 1rem 0 .4rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* EK HİZMETLER */
.pricing__extras {
  margin-top: 3rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.pe-title {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}
.pe-title span {
  font-weight: 400;
  color: rgba(255,255,255,.4);
}
.pe-grid {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pe-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
}
.pe-icon { font-size: 1.2rem; flex-shrink: 0; }
.pe-info { flex: 1; }
.pe-name { font-size: .85rem; font-weight: 600; color: #fff; }
.pe-desc { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .1rem; }
.pe-price {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pricing__extras { padding: 1.25rem; }
  .pe-item { flex-wrap: wrap; }
  .pe-price { margin-left: auto; }
}

/* ─── PRICING TABLE ───────────────────────────────────────── */
.ptable-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.ptable thead th {
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  position: relative;
}
.ptable thead th.ptable__feature-col {
  width: 40%;
  text-align: left;
}
.ptable thead th.pth--pro {
  background: rgba(200,168,75,.08);
  border-left: 1px solid rgba(200,168,75,.2);
  border-right: 1px solid rgba(200,168,75,.2);
}
.pth-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(200,168,75,.15);
  border-radius: 100px;
  padding: .2rem .7rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.pth-name {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.pth-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin: .35rem 0 .2rem;
}
.pth-note {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
}

/* Satırlar */
.ptable tbody tr:hover td {
  background: rgba(255,255,255,.03);
}
.ptable tbody td {
  padding: .65rem 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.ptable tbody td:first-child {
  text-align: left;
  color: rgba(255,255,255,.8);
  font-size: .83rem;
}
.ptable tbody td.yes  { color: #4ade80; font-weight: 600; font-size: .95rem; }
.ptable tbody td.no   { color: rgba(255,255,255,.2); font-size: .95rem; }
.ptable tbody td.note { color: var(--gold); font-size: .78rem; font-weight: 500; }
.ptable thead th.pth--pro ~ th,
.ptable tbody .pth--pro,
.ptable tbody td:nth-child(3) {
  border-left: 1px solid rgba(200,168,75,.15);
  border-right: 1px solid rgba(200,168,75,.15);
}

/* Grup başlıkları */
.ptable__group td {
  background: rgba(255,255,255,.04) !important;
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  opacity: .8;
  padding: .7rem 1.25rem !important;
  text-align: left !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
}

/* CTA satırı */
.ptable__cta-row td {
  padding: 1.25rem 1rem !important;
  background: rgba(255,255,255,.02) !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  border-bottom: none !important;
}
.ptable__cta-row td:hover { background: rgba(255,255,255,.02) !important; }

@media (max-width: 600px) {
  .ptable { min-width: 480px; }
  .ptable thead th, .ptable tbody td { padding: .55rem .75rem; }
  .pth-price { font-size: 1.4rem; }
}

/* pe-btn */
.pe-btn { flex-shrink: 0; white-space: nowrap; }
