/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
  --bg:      #07110F;
  --bg2:     #0E241C;
  --bg3:     #163B2E;
  --gold:    #F2A93B;
  --amber:   #D88A2D;
  --text:    #F5F1E8;
  --muted:   #C7C0B4;
  --border:  rgba(255,255,255,0.12);
  --font:    'Manrope', system-ui, -apple-system, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 88px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(242,169,59,0.32); color: var(--text); }


/* ── Accessibility & header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5,12,10,.82), rgba(5,12,10,.38) 72%, rgba(5,12,10,0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(242,169,59,.95), rgba(216,138,45,.7)),
    radial-gradient(circle at 65% 30%, rgba(255,255,255,.55), transparent 36%);
  box-shadow: 0 10px 28px rgba(242,169,59,.22);
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 9px;
  width: 16px;
  height: 10px;
  background: var(--bg);
  clip-path: polygon(0 100%, 38% 28%, 57% 62%, 78% 0, 100% 100%);
  opacity: .88;
}
.brand-text { font-size: .95rem; color: var(--text); }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: rgba(245,241,232,.78);
  font-size: .86rem;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.07); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(242,169,59,.13);
  border: 1px solid rgba(242,169,59,.28);
  color: var(--gold);
  font-size: .84rem;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: rgba(242,169,59,.2); transform: translateY(-1px); }

/* ── Language switcher ─────────────────────────────────────────────────── */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-switch, .footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.lang-switch a, .lang-switch span, .footer-lang a, .footer-lang span {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  color: rgba(245,241,232,.72);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.lang-switch .active, .lang-switch span[aria-current="page"], .footer-lang span[aria-current="page"] {
  color: var(--bg);
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(242,169,59,.18);
}
.lang-switch a:hover, .footer-lang a:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.footer-lang { margin: 22px auto 0; }
@media (max-width: 640px) {
  .header-actions { gap: 7px; }
  .lang-switch { padding: 3px; }
  .lang-switch a, .lang-switch span { min-width: 30px; padding: 6px 6px; font-size: .72rem; }
}
@media (max-width: 400px) {
  .brand-text { max-width: 118px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header-actions { gap: 6px; }
  .header-cta { padding: 8px 10px; }
}


/* ── Container ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section spacing ─────────────────────────────────────────────────────── */
.section { padding: 104px 0; position: relative; }
.section-grid-space { margin-top: 52px; }
.container-narrow { max-width: 960px; }
.text-center { text-align: center; }
.format-btn { margin-top: 28px; }
.faq-space { margin-top: 44px; }

/* ── Section line ────────────────────────────────────────────────────────── */
.section-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #F2A93B, #D88A2D);
  margin-bottom: 20px;
}
.section-line--center { margin: 0 auto 20px; }

/* ── Section heading ─────────────────────────────────────────────────────── */
.section-heading {
  max-width: 820px;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}

/* ── Topographic pattern ─────────────────────────────────────────────────── */
.topo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cpath d='M300 50 Q400 150 350 250 Q300 350 200 300 Q100 250 150 150 Q200 50 300 50Z' fill='none' stroke='rgba(242,169,59,0.06)' stroke-width='1'/%3E%3Cpath d='M300 80 Q390 170 345 260 Q300 340 210 295 Q120 250 165 160 Q210 70 300 80Z' fill='none' stroke='rgba(242,169,59,0.05)' stroke-width='1'/%3E%3Cpath d='M300 110 Q380 190 340 270 Q300 330 220 290 Q140 250 180 170 Q220 90 300 110Z' fill='none' stroke='rgba(242,169,59,0.04)' stroke-width='1'/%3E%3Cpath d='M50 300 Q150 200 250 250 Q350 300 300 400 Q250 500 150 450 Q50 400 50 300Z' fill='none' stroke='rgba(242,169,59,0.05)' stroke-width='1'/%3E%3Cpath d='M80 300 Q170 210 260 255 Q340 300 295 390 Q250 480 160 440 Q70 390 80 300Z' fill='none' stroke='rgba(242,169,59,0.04)' stroke-width='1'/%3E%3Cpath d='M450 100 Q550 200 500 300 Q450 400 350 350 Q250 300 300 200 Q350 100 450 100Z' fill='none' stroke='rgba(242,169,59,0.05)' stroke-width='1'/%3E%3Cpath d='M480 130 Q540 220 498 305 Q450 390 360 348 Q270 305 315 212 Q360 120 480 130Z' fill='none' stroke='rgba(242,169,59,0.04)' stroke-width='1'/%3E%3Cpath d='M100 500 Q200 400 300 450 Q400 500 350 580 Q300 600 200 580 Q100 560 100 500Z' fill='none' stroke='rgba(242,169,59,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 400px 400px;
}

/* ── Backgrounds ─────────────────────────────────────────────────────────── */
.bg-1  { background: radial-gradient(circle at 20% 0%, rgba(242,169,59,.045), transparent 32%), var(--bg); }
.bg-2  { background: radial-gradient(circle at 82% 12%, rgba(242,169,59,.055), transparent 34%), var(--bg2); }
.bg-3  { background: radial-gradient(circle at 50% 0%, rgba(242,169,59,.06), transparent 38%), var(--bg3); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.97rem;
  border: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, #F2A93B 0%, #D88A2D 100%);
  color: #07110F;
  box-shadow: 0 12px 34px rgba(242,169,59,0.22), inset 0 1px 0 rgba(255,255,255,.32);
}
.btn-gold:hover { box-shadow: 0 16px 44px rgba(242,169,59,0.34), inset 0 1px 0 rgba(255,255,255,.38); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
}

.btn-sm { padding: 12px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }

/* ── Cards shared ────────────────────────────────────────────────────────── */
.card {
  border-radius: 20px;
  padding: 34px 30px;
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(242,169,59,0.3);
}

.card-bg1 { background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)); }
.card-bg2 { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.016)), var(--bg2); }
.card-bg-gold {
  background: linear-gradient(135deg, rgba(242,169,59,0.08) 0%, rgba(216,138,45,0.04) 100%);
  border-color: rgba(242,169,59,0.25);
}

/* ── Icon box ────────────────────────────────────────────────────────────── */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242,169,59,0.1);
  border: 1px solid rgba(242,169,59,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; }

/* ── Glass card ──────────────────────────────────────────────────────────── */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 14px 44px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,.12);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* HERO                                                                       */
/* ══════════════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(5,12,10,0.92) 0%,
    rgba(5,12,10,0.80) 30%,
    rgba(5,12,10,0.42) 58%,
    rgba(5,12,10,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 132px 0 92px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,169,59,0.12);
  border: 1px solid rgba(242,169,59,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.25rem, 5.2vw, 3.72rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-glass-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero-glass-card {
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.hero-glass-card svg { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* WHEN-SECTION                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */
.when-intro {
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 52px;
  font-size: 1.02rem;
}

.when-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.when-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.when-card:hover { transform: translateY(-3px); border-color: rgba(242,169,59,0.25); }
.when-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SERVICES GRID                                                              */
/* ══════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* FORMATS                                                                    */
/* ══════════════════════════════════════════════════════════════════════════ */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.format-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(242,169,59,0.15);
  border: 1px solid rgba(242,169,59,0.3);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.format-card { position: relative; }
.format-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}
.check-icon { color: var(--gold); flex-shrink: 0; }
.check-icon svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* STEPS                                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
}

.step-block {
  padding: 32px;
  border-left: 1px solid var(--border);
}
.step-block:first-child { border-left: none; }

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(242,169,59,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.step-list { display: flex; flex-direction: column; gap: 10px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.step-dot {
  margin-top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.steps-cta { margin-top: 52px; text-align: center; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* DIRECTIONS                                                                 */
/* ══════════════════════════════════════════════════════════════════════════ */
.dir-intro {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 44px;
}

.dir-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dir-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  flex: 1 1 180px;
  max-width: 260px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.dir-card:hover { transform: translateY(-3px); border-color: rgba(242,169,59,0.25); }
.dir-label { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.dir-sub { color: var(--gold); font-size: 0.78rem; font-weight: 500; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* TRUST                                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */
.trust-lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 auto 56px;
  max-width: 680px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.trust-card {
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.4;
  transition: transform 0.25s ease;
}
.trust-card:hover { transform: translateY(-3px); }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(242,169,59,0.1);
  border: 1px solid rgba(242,169,59,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* FAQ                                                                        */
/* ══════════════════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-trigger:hover, .faq-trigger:focus-visible { color: var(--gold); outline: none; }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-icon svg { width: 12px; height: 12px; }

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(242,169,59,0.1);
  border-color: rgba(242,169,59,0.3);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 24px; }
.faq-answer { color: var(--muted); line-height: 1.7; font-size: 0.96rem; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* CTA                                                                        */
/* ══════════════════════════════════════════════════════════════════════════ */
.cta-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-text { color: var(--muted); line-height: 1.7; font-size: 1.05rem; margin-bottom: 40px; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-handle { color: var(--muted); font-size: 0.87rem; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* FOOTER                                                                     */
/* ══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.footer-title { font-weight: 700; font-size: 0.97rem; margin-bottom: 8px; }
.footer-sub { color: var(--muted); font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* REVEAL ANIMATIONS                                                          */
/* ══════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                                 */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .site-header__inner { min-height: 64px; }
  .main-nav { display: none; }
  .brand-text { font-size: .9rem; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5,12,10,0.85) 0%,
      rgba(5,12,10,0.80) 50%,
      rgba(5,12,10,0.70) 100%
    );
  }
  .step-block { border-left: none; border-top: 1px solid var(--border); }
  .step-block:first-child { border-top: none; }
}

/* Mobile */
@media (max-width: 640px) {
  html { scroll-padding-top: 70px; }
  .container { padding: 0 18px; }
  .site-header { background: rgba(5,12,10,.84); }
  .header-cta { padding: 9px 13px; }
  .hero-bg { object-position: 60% top; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5,12,10,0.88) 0%,
      rgba(5,12,10,0.82) 60%,
      rgba(5,12,10,0.75) 100%
    );
  }
  .hero-content { padding: 108px 0 76px; max-width: 100%; }
  .hero-title { font-size: clamp(2.05rem, 12vw, 3rem); }
  .hero-badge { font-size: .64rem; letter-spacing: .06em; }
  .hero-glass-card { width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .section { padding: 72px 0; }
  .dir-card { max-width: 100%; }
}

/* Very small */
@media (max-width: 400px) {
  .brand-text { display: none; }
  .hero-glass-row { flex-direction: column; }
  .btn { padding-left: 18px; padding-right: 18px; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ── Final polish: stronger focus, cleaner mobile hero, future localization-safe ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.hero-title,
.section-heading,
.cta-title {
  text-wrap: balance;
}

.hero-sub,
.when-intro,
.trust-lead,
.cta-text {
  text-wrap: pretty;
}

.btn {
  transform: translateZ(0);
}

.btn:active {
  transform: translateY(1px);
}

.hero-glass-card,
.card,
.when-card,
.dir-card,
.trust-card,
.faq-item {
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
}

.hero-glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.16);
}

@media (max-width: 640px) {
  #hero {
    min-height: 100svh;
  }
  .hero-bg {
    object-position: 67% top;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(5,12,10,0.90) 0%,
        rgba(5,12,10,0.84) 50%,
        rgba(5,12,10,0.78) 100%),
      radial-gradient(circle at 72% 24%, rgba(242,169,59,.16), transparent 42%);
  }
  .hero-note {
    max-width: 320px;
  }
}


/* ── Final v3 mobile + premium polish ───────────────────────────────────── */
.section-eyebrow {
  color: var(--gold);
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .site-header__inner { min-height: 60px; }
  .brand-mark { width: 28px; height: 28px; border-radius: 9px; }
  .header-cta { font-size: .8rem; }

  .hero-content {
    padding: 104px 0 72px;
  }

  .hero-title {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.68;
    color: rgba(245,241,232,.84);
    margin-bottom: 28px;
  }

  .hero-badge {
    margin-bottom: 22px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
  }

  .hero-glass-row {
    margin-top: 32px;
    gap: 12px;
  }

  .hero-glass-card {
    padding: 14px 16px;
    font-size: .9rem;
    border-radius: 14px;
  }

  .section {
    padding: 78px 0;
  }

  .section-grid-space {
    margin-top: 34px;
  }

  .section-heading {
    font-size: clamp(1.55rem, 7.4vw, 2.05rem);
    line-height: 1.16;
    margin-bottom: 16px;
  }

  .when-intro,
  .dir-intro,
  .trust-lead,
  .cta-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .when-grid,
  .services-grid,
  .formats-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .service-card-title,
  .format-title,
  .step-title {
    font-size: 1.08rem;
  }

  .service-card-text,
  .check-item,
  .step-item,
  .faq-answer {
    font-size: .96rem;
  }

  .when-card {
    padding: 18px 18px;
    font-size: .96rem;
    align-items: flex-start;
  }

  .step-block {
    padding: 28px 4px 28px 18px;
    border-left: 2px solid rgba(242,169,59,.16);
    border-top: none;
  }
  .step-block:first-child { border-left: 2px solid rgba(242,169,59,.16); }

  .step-num {
    font-size: 2.6rem;
    margin-bottom: 14px;
  }

  .steps-cta {
    margin-top: 34px;
  }

  .dir-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dir-card {
    max-width: none;
    width: 100%;
    padding: 18px 16px;
    flex: initial;
  }

  .dir-label {
    font-size: .95rem;
    line-height: 1.25;
  }

  .trust-card {
    align-items: flex-start;
    text-align: left;
    padding: 24px 20px;
    flex-direction: row;
  }

  .faq-trigger {
    padding: 20px 0;
    font-size: .98rem;
    line-height: 1.45;
  }

  .cta-title {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .dir-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.85rem, 10vw, 2.4rem); }
  .hero-sub { font-size: .96rem; }
  .section { padding: 68px 0; }
  .card { padding: 24px 18px; }
}


/* ── Final v4 polish: screenshot-safe header, cleaner clickable areas ───── */
.site-header {
  transform: translateZ(0);
}

.main-nav a,
.header-cta,
.btn,
.faq-trigger {
  -webkit-tap-highlight-color: rgba(242,169,59,.18);
}

@media (max-width: 640px) {
  .hero-btns { gap: 10px; }
  .hero-note { color: rgba(245,241,232,.76); }
  .format-badge { position: static; display: inline-flex; margin-bottom: 14px; }
}


/* ── V5 final QA polish: prevent header/nav crowding on medium widths ───── */
@media (max-width: 1120px) and (min-width: 901px) {
  .main-nav { gap: 4px; }
  .main-nav a { padding: 8px 9px; font-size: .82rem; }
  .brand-text { font-size: .9rem; }
  .header-cta { padding: 9px 13px; }
}

@media (max-width: 640px) {
  .hero-btns .btn { min-height: 48px; }
  .faq-trigger { min-height: 58px; }
}


/* ── V6 expert article / SEO section ───────────────────────────────────── */
.preparation-section {
  overflow: hidden;
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, .76fr);
  gap: 38px;
  align-items: start;
}

.prep-article {
  max-width: 780px;
}

.prep-article .section-heading {
  margin-bottom: 24px;
}

.prep-article p {
  color: rgba(245,241,232,.78);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.prep-inline-cta {
  margin-top: 34px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(242,169,59,.2);
  background: linear-gradient(135deg, rgba(242,169,59,.08), rgba(255,255,255,.025));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.prep-inline-cta p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.prep-checklist {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  padding: 30px;
}

.prep-checklist h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}

.prep-checklist ul {
  display: grid;
  gap: 15px;
}

.prep-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(245,241,232,.78);
  font-size: .95rem;
  line-height: 1.55;
}

.prep-checklist li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: .55em;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(242,169,59,.45);
  flex: 0 0 8px;
}

.prep-details-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.prep-detail-card {
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.046), rgba(255,255,255,.018));
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

.prep-detail-card--wide {
  grid-column: 1 / -1;
}

.prep-detail-card h3 {
  font-size: 1.2rem;
  line-height: 1.32;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: var(--text);
}

.prep-detail-card p {
  color: rgba(245,241,232,.72);
  font-size: .98rem;
  line-height: 1.78;
  margin-bottom: 14px;
}

.prep-detail-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .prep-layout {
    grid-template-columns: 1fr;
  }
  .prep-checklist {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .prep-article p {
    font-size: 1rem;
    line-height: 1.74;
  }
  .prep-inline-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .prep-inline-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .prep-checklist {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .prep-details-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
    gap: 14px;
  }
  .prep-detail-card,
  .prep-detail-card--wide {
    grid-column: auto;
    padding: 26px 20px;
    border-radius: 18px;
  }
  .prep-detail-card h3 {
    font-size: 1.08rem;
  }
  .prep-detail-card p {
    font-size: .96rem;
    line-height: 1.72;
  }
}


/* ── V7 interview-based editorial article polish ─────────────────────── */
.editorial-section {
  position: relative;
}
.editorial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(242,169,59,.10), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(46,105,78,.12), transparent 34%);
  opacity: .9;
}
.editorial-section .container { position: relative; z-index: 1; }
.editorial-head {
  max-width: 840px;
  margin-bottom: 44px;
}
.editorial-lead {
  color: rgba(245,241,232,.80);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.82;
  max-width: 780px;
}
.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr);
  gap: 38px;
  align-items: start;
}
.editorial-article {
  max-width: 820px;
}
.editorial-article > p {
  color: rgba(245,241,232,.78);
  font-size: 1.04rem;
  line-height: 1.88;
  margin-bottom: 20px;
}
.editorial-note {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  margin-bottom: 28px;
  border-radius: 22px;
  border: 1px solid rgba(242,169,59,.20);
  background: linear-gradient(135deg, rgba(242,169,59,.10), rgba(255,255,255,.025));
  box-shadow: 0 22px 70px rgba(0,0,0,.17);
}
.editorial-note__mark {
  display: inline-flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.22rem;
  background: rgba(5,12,10,.44);
  border: 1px solid rgba(242,169,59,.22);
}
.editorial-note p {
  margin: 0;
  color: rgba(245,241,232,.78);
  line-height: 1.75;
}
.editorial-quote {
  margin: 30px 0;
  padding: 6px 0 6px 28px;
  border-left: 3px solid var(--gold);
}
.editorial-quote p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: -.025em;
}
.editorial-cta {
  margin-top: 34px;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.editorial-cta strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.04rem;
}
.editorial-cta span {
  display: block;
  color: rgba(245,241,232,.70);
  line-height: 1.62;
}
.editorial-checklist h3 { margin-bottom: 18px; }
.story-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}
.story-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(242,169,59,.07);
  pointer-events: none;
}
.story-card--wide { grid-column: 1 / -1; }
.story-card--accent {
  border-color: rgba(242,169,59,.22);
  background: linear-gradient(135deg, rgba(242,169,59,.105), rgba(255,255,255,.028));
}
.story-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-card h3 {
  margin-bottom: 15px;
  color: var(--text);
  font-size: clamp(1.14rem, 2vw, 1.38rem);
  line-height: 1.28;
  letter-spacing: -.018em;
}
.story-card p {
  color: rgba(245,241,232,.72);
  font-size: .98rem;
  line-height: 1.78;
  margin-bottom: 14px;
}
.story-card p:last-child { margin-bottom: 0; }
.story-card .btn { margin-top: 10px; }

@media (max-width: 900px) {
  .editorial-layout { grid-template-columns: 1fr; }
  .editorial-checklist { position: relative; top: auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card--wide { grid-column: auto; }
}

@media (max-width: 640px) {
  .editorial-head { margin-bottom: 32px; }
  .editorial-layout { gap: 26px; }
  .editorial-article > p {
    font-size: 1rem;
    line-height: 1.76;
  }
  .editorial-note {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  .editorial-note__mark {
    min-height: auto;
    padding: 16px;
    justify-content: flex-start;
  }
  .editorial-quote {
    margin: 26px 0;
    padding-left: 20px;
  }
  .editorial-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .editorial-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .story-grid {
    margin-top: 34px;
    gap: 14px;
  }
  .story-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .story-card p {
    font-size: .96rem;
    line-height: 1.72;
  }
}

/* ── V9 final micro-polish ─────────────────────────────────────────────── */
.main-nav a,
.lang-switch a,
.lang-switch span,
.footer-lang a,
.footer-lang span {
  white-space: nowrap;
}

.editorial-article > p,
.story-card p,
.faq-answer {
  hyphens: auto;
}

@media (max-width: 640px) {
  .editorial-section .section-heading {
    max-width: 11.5em;
  }
  .footer-sub {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }
}
