/* ============================================================
   PRUXEN — Hospitality Staffing
   Brand: midnight navy + gold + ivory facet mark
   Theme: dark (default) / light toggle
   Layout: paneled (variant c)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --gold: #e8b84a;
  --gold-soft: #f0cd78;
  --gold-deep: #c79a35;
  --cream: #f4ecd6;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 72px);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --f-eyebrow: "Cinzel", Georgia, serif;
  --f-display: "Spectral", Georgia, serif;
  --f-body: "Manrope", system-ui, -apple-system, sans-serif;
  --f-head: var(--f-display);
}

/* Dark (default) */
:root,
[data-theme="dark"] {
  --bg: #0e2231;
  --bg-deep: #0a1a26;
  --bg-raise: #122a3c;
  --surface: #13293a;
  --surface-2: #173145;
  --ink: #eef4f8;
  --ink-soft: #a9bccb;
  --ink-faint: #75909f;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --gold-line: rgba(232, 184, 74, .22);
  --hero-bg: #0c1f2d;
  --shadow: 0 30px 70px -40px rgba(0, 0, 0, .8);
  --field: rgba(255, 255, 255, .04);
  --field-line: rgba(255, 255, 255, .14);
}


* { box-sizing: border-box }

html { scroll-behavior: smooth }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -.005em;
}

a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block }
::selection { background: var(--gold); color: #0a1a26 }

/* ---------- i18n visibility ---------- */
[data-lang="en"] .lang-fi { display: none }
[data-lang="fi"] .lang-en { display: none }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad) }
.section { padding-block: clamp(48px, 7vw, 88px); position: relative }
.section--tight { padding-block: clamp(36px, 5vw, 64px) }

.eyebrow {
  font-family: var(--f-eyebrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.eyebrow--center { justify-content: center }

.eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

h1, h2, h3 {
  font-family: var(--f-head);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

.h-xl { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 500 }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem) }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem) }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 62ch;
  text-wrap: pretty;
}

.muted { color: var(--ink-soft) }
.gold-text { color: var(--gold) }
em.serif { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--gold) }

/* ---------- Buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: var(--bh);
  padding: 0 28px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .3s var(--ease),
    box-shadow .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.btn:active { transform: translateY(1px) }
.btn .arr { transition: transform .35s var(--ease) }
.btn:hover .arr { transform: translateX(4px) }

.btn--gold {
  background: var(--gold);
  color: #0b1a26;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset, 0 16px 34px -16px rgba(232, 184, 74, .7);
}

.btn--gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 22px 46px -16px rgba(232, 184, 74, .85);
  transform: translateY(-2px);
}

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong) }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold) }
.btn--sm { --bh: 44px; padding: 0 20px; font-size: 14px }
.btn--block { width: 100% }

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
    padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav[data-stuck="1"] {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  padding-block: 12px;
}

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0 }
.brand .mark { width: 34px; height: 34px; flex-shrink: 0 }
.brand .wm { display: flex; flex-direction: column; line-height: 1 }

.brand .wm b {
  font-family: var(--f-eyebrow);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .14em;
  color: var(--ink);
}

.brand .wm small {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px }

.nav-links a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}

.nav-links a:hover { color: var(--ink) }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover::after { transform: scaleX(1) }

.nav-tools { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: var(--f-body);
}

.icon-btn:hover { color: var(--gold); border-color: var(--gold) }
.lang-toggle { font-weight: 700; font-size: 12px; letter-spacing: .06em; width: auto; padding: 0 14px }
/* Stack both labels so the button is always sized to the widest one */
#langBtn .lang-en,
#langBtn .lang-fi { grid-area: 1 / 1; display: block !important }
[data-lang="en"] #langBtn .lang-fi,
[data-lang="fi"] #langBtn .lang-en { visibility: hidden }

.menu-btn { display: none }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 90px var(--pad) 40px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}

.drawer[data-open="1"] { transform: translateY(0); opacity: 1; pointer-events: auto }

.drawer a {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.drawer a:last-of-type { border-bottom: 0 }
.drawer .btn { margin-top: 24px }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: #eef4f8;
  overflow: hidden;
  padding-top: clamp(80px, 10vh, 130px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 184, 74, .16), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 58%, rgba(255, 255, 255, .025) 58.4%, rgba(255, 255, 255, .025) 63%, transparent 63.4%);
}

.hero .wrap { position: relative; z-index: 2 }
.hero-eyebrow { color: var(--gold) }
.hero h1 { color: #f3f7fa; margin-bottom: 26px }
.hero h1 .accent { color: var(--gold); font-style: italic; font-family: var(--f-display); font-weight: 400 }
.hero-lede { color: #b9cad6; max-width: 54ch }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px }

/* Paneled layout: two-column with credential card */
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center }

@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 44px } }

.hero-mark { display: none }
.hero-aside { display: block }

/* credential panel */
.cred-card {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  padding: 32px;
  backdrop-filter: blur(2px);
}

.cred-card .mark-lg { width: 96px; height: 96px; margin-bottom: 22px }
.cred-list { display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 0; list-style: none }

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cred-list li:first-child { border-top: 0 }
.cred-list .k { font-family: var(--f-display); font-size: 1.35rem; color: #f3f7fa; line-height: 1.1 }
.cred-list .v { font-size: 13px; color: #9fb3c0; letter-spacing: .02em }
.cred-list .ico { color: var(--gold); flex-shrink: 0; margin-top: 3px }

/* hero stat strip — hidden in paneled layout */
.hero-stats { display: none }

/* ---------- Trust band ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-deep) }

.trust .wrap {
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 64px);
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 30px;
}

.trust .lab {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

.trust .items { display: flex; align-items: center; gap: clamp(22px, 4vw, 52px); flex-wrap: wrap }
.trust .ti { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 15px; color: var(--ink-soft) }
.trust .ti svg { color: var(--gold); flex-shrink: 0 }

/* ---------- Section header ---------- */
.shead { max-width: 60ch; margin-bottom: clamp(40px, 5vw, 68px) }
.shead--center { margin-inline: auto; text-align: center }
.shead p { margin: 18px 0 0 }

/* ---------- Roles grid ---------- */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }

@media (max-width: 880px) { .roles { grid-template-columns: 1fr } }

.role {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 30px 30px 32px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.role:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: var(--shadow) }
.role .num { font-family: var(--f-eyebrow); font-size: 12px; letter-spacing: .2em; color: var(--gold) }
.role h3 { font-size: 1.5rem; margin: 16px 0 6px }
.role .sub { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 18px }
.role ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px }
.role li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-soft) }
.role li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0 }

.role .glow {
  position: absolute;
  inset: auto -40% -60% auto;
  width: 80%;
  height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 184, 74, .1), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.role:hover .glow { opacity: 1 }

/* ---------- About split ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center }

@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 44px } }

.figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(232, 184, 74, .05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--surface-2), var(--bg-deep));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.figure .ph {
  font-family: var(--f-body);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px dashed var(--field-line);
  border-radius: 999px;
  padding: 7px 15px;
  background: var(--field);
}

.figure .emblem-bg { position: absolute; inset: 0; display: grid; place-items: center; opacity: .5 }
.figure .emblem-bg svg { width: 42%; height: auto }
.lead-points { display: flex; flex-direction: column; gap: 22px; margin-top: 30px }
.lead-points .lp { display: flex; gap: 16px }

.lead-points .lp .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--field);
  border: 1px solid var(--gold-line);
  color: var(--gold);
}

.lead-points .lp h4 { margin: 0 0 4px; font-family: var(--f-body); font-weight: 700; font-size: 16px; color: var(--ink) }
.lead-points .lp p { margin: 0; font-size: 15px; color: var(--ink-soft) }

/* ---------- How it works ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px }

@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr } }

.step { position: relative; padding-top: 34px }

.step .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--surface);
  border: 1px solid var(--gold-line);
  z-index: 2;
}

.step .bar { position: absolute; top: 23px; left: 46px; right: -18px; height: 1px; background: var(--line); z-index: 1 }
.step:last-child .bar { display: none }
.step h4 { margin: 24px 0 8px; font-family: var(--f-body); font-weight: 700; font-size: 16.5px }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-soft) }

@media (max-width: 980px) { .step .bar { display: none } }

/* ---------- Why Pruxen ---------- */
.why { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px }

.why .feat {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 28px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.why .feat:hover { border-color: var(--gold-line) }
.why .feat.big { grid-column: span 3 }

.why .feat .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--field);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  margin-bottom: 20px;
}

.why .feat h3 { font-size: 1.3rem; margin: 0 0 8px }
.why .feat p { margin: 0; font-size: 15px; color: var(--ink-soft) }

@media (max-width: 880px) {
  .why { grid-template-columns: 1fr 1fr }
  .why .feat,
  .why .feat.big { grid-column: span 1 }
}

@media (max-width: 560px) { .why { grid-template-columns: 1fr } }

/* ---------- Request form ---------- */
.request { background: var(--bg-deep); border-top: 1px solid var(--line) }
.req-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start }

@media (max-width: 920px) { .req-grid { grid-template-columns: 1fr; gap: 40px } }

.req-aside .lede { margin-top: 18px }
.req-contacts { margin-top: 34px; display: flex; flex-direction: column; gap: 2px }

.req-contacts a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.req-contacts a:first-child { border-top: 0 }
.req-contacts .ico { color: var(--gold) }
.req-contacts b { font-weight: 600; font-size: 15.5px }
.req-contacts span { display: block; font-size: 13px; color: var(--ink-faint) }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 30px }
.fp-step { flex: 1; display: flex; flex-direction: column; gap: 8px }
.fp-step .bar { height: 3px; border-radius: 999px; background: var(--field-line); overflow: hidden; position: relative }
.fp-step .bar i { position: absolute; inset: 0; width: 0; background: var(--gold); transition: width .5s var(--ease) }
.fp-step.done .bar i,
.fp-step.active .bar i { width: 100% }
.fp-step.active .bar i { width: 50% }
.fp-step .lab { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600 }
.fp-step.active .lab,
.fp-step.done .lab { color: var(--gold) }

.form-step { display: none; animation: fadeStep .5s var(--ease) }
.form-step.active { display: block }

@keyframes fadeStep {
  from { opacity: 0; transform: translateY(10px) }
  to { opacity: 1; transform: none }
}

.form-step h3 { font-size: 1.4rem; margin: 0 0 4px }
.form-step .step-sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 24px }

.field { margin-bottom: 18px }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field label .req { color: var(--gold) }

.input,
.select,
.textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--field-line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.textarea { resize: vertical; min-height: 104px }
.input::placeholder,
.textarea::placeholder { color: var(--ink-faint) }

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 184, 74, .16);
}

.select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23e8b84a' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* Windows renders the native <option> popup with an opaque background and
   inherits `color`, so the near-white --ink text becomes invisible on it.
   macOS ignores this background and uses its own dark popup, which is why
   it looked fine there. Set an explicit dark background so both match. */
.select option {
  background: var(--bg-deep);
  color: var(--ink);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }

@media (max-width: 520px) { .grid-2 { grid-template-columns: 1fr } }

.field.invalid .input,
.field.invalid .select,
.field.invalid .textarea { border-color: #e0796b; box-shadow: 0 0 0 4px rgba(224, 121, 107, .14) }

.err { display: none; color: #e89488; font-size: 12.5px; margin-top: 7px }
.field.invalid .err { display: block }

/* chip multiselect */
.chips { display: flex; flex-wrap: wrap; gap: 10px }

.chip {
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid var(--field-line);
  background: var(--field);
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}

.chip:hover { border-color: var(--gold-line); color: var(--ink) }
.chip[data-on="1"] { background: var(--gold); border-color: var(--gold); color: #0b1a26 }
.chip input { position: absolute; opacity: 0; pointer-events: none }

/* segmented venue selector */
.seg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px }

.seg label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid var(--field-line);
  border-radius: var(--r-md);
  background: var(--field);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}

.seg label:hover { border-color: var(--gold-line) }
.seg input { position: absolute; opacity: 0; pointer-events: none }

.seg .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--field-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.seg input:checked + .tick { border-color: var(--gold); background: var(--gold) }
.seg input:checked + .tick::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #0b1a26 }
.seg label:has(input:checked) { border-color: var(--gold); color: var(--ink) }

.form-error { display: none; color: #e89488; font-size: 13px; margin-top: 18px; padding: 12px 14px; border: 1px solid rgba(232,148,136,.3); border-radius: 8px; background: rgba(232,148,136,.07) }
.form-error.show { display: block }
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 30px }
.form-nav .spacer { flex: 1 }

.btn--link {
  background: none;
  border: 0;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  padding: 8px 4px;
  font-family: var(--f-body);
}

.btn--link:hover { color: var(--gold) }

/* summary */
.summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.summary .row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}

.summary .row:first-child { border-top: 0 }
.summary .row .k { color: var(--ink-faint) }
.summary .row .val { color: var(--ink); font-weight: 600; text-align: right }

/* success */
.success { text-align: center; padding: 18px 0 6px; display: none }
.success.show { display: block; animation: fadeStep .5s var(--ease) }

.success .seal {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: var(--field);
  border: 1px solid var(--gold-line);
  color: var(--gold);
}

.success h3 { font-size: 1.7rem; margin: 0 0 10px }
.success p { color: var(--ink-soft); max-width: 38ch; margin: 0 auto 26px }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto }
.qa { border-top: 1px solid var(--line) }
.qa:last-child { border-bottom: 1px solid var(--line) }

.qa button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--ink);
}

.qa .pm {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--field-line);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: all .3s var(--ease);
  position: relative;
}

.qa .pm::before,
.qa .pm::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}

.qa .pm::before { width: 12px; height: 2px }
.qa .pm::after { width: 2px; height: 12px }
.qa[data-open="1"] .pm { background: var(--gold) }
.qa[data-open="1"] .pm::before,
.qa[data-open="1"] .pm::after { background: #0b1a26 }
.qa[data-open="1"] .pm::after { transform: scaleY(0) }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease) }
.qa .ans p { margin: 0; padding: 0 4px 28px; color: var(--ink-soft); font-size: 16px; max-width: 64ch }

/* ---------- CTA banner ---------- */
.cta-band {
  position: relative;
  background: var(--hero-bg);
  color: #eef4f8;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(64px, 9vw, 112px);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(232, 184, 74, .14), transparent 60%);
}

.cta-band .wrap { position: relative; z-index: 2 }
.cta-band h2 { color: #f3f7fa }
.cta-band p { color: #b9cad6; max-width: 50ch; margin: 18px auto 0 }
.cta-band .btn { margin-top: 34px }

/* ---------- Footer ---------- */
.foot { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: 64px 30px }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px }

@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr } }

.foot .brand { margin-bottom: 18px }
.foot p.about { color: var(--ink-soft); font-size: 14.5px; max-width: 34ch }

.foot h5 {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
  font-weight: 600;
}

.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px }
.foot ul a { font-size: 14.5px; color: var(--ink-soft) }
.foot ul a:hover { color: var(--gold) }

.foot-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease) }
.reveal.in { opacity: 1; transform: none }
.reveal[data-d="1"] { transition-delay: .08s }
.reveal[data-d="2"] { transition-delay: .16s }
.reveal[data-d="3"] { transition-delay: .24s }
.reveal[data-d="4"] { transition-delay: .32s }

@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none } }

/* ---------- Responsive nav ---------- */
@media (max-width: 1040px) {
  .nav-links { display: none }
  .menu-btn { display: grid }
  .nav-tools .btn--sm.hero-nav-cta { display: none }
}
