/* ==========================================================================
   ChaiMindset — main.css
   Career Conversation landing page (index.html) + About page (about.html)
   Token values are taken verbatim from the design handoff README.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* surfaces */
  --paper: #f4f3ef;
  --white: #ffffff;
  --surface-2: #f4f5f7;
  --surface-3: #f2f4f7;
  --surface-4: #f6f6f4;
  --field-bg: #fbfbfa;

  /* navy */
  --navy-900: #07162b;
  --navy-800: #0b1e38;
  --navy-700: #12304f;
  --navy-grad-hero: linear-gradient(150deg, #14385c 0%, #0d2440 45%, #071528 100%);
  --navy-grad-band: linear-gradient(160deg, #0d2440, #08182c 60%, #061323);
  --navy-grad-form: linear-gradient(155deg, #123256, #0a1e38 55%, #071528);

  /* gold */
  --gold: #e6b93f;
  --gold-dark: #c99a20;
  --gold-text: #a8801a;
  --gold-tint: #fdf7e8;
  --gold-grad: linear-gradient(150deg, #f2d17a, #e0ad33);

  /* text */
  --ink: #14213a;
  --muted: #6b7688;
  --muted-2: #5d6878;
  --muted-3: #7b8494;
  --on-dark-body: #c3d0de;
  --on-dark-body-2: #b7c4d3;
  --on-dark-body-3: #a9b8c8;
  --on-dark-body-4: #dbe4ee;
  --on-dark-muted: #93a4b8;
  --on-dark-muted-2: #8fa0b3;
  --on-dark-muted-3: #7e90a4;
  --on-dark-muted-4: #9fb0c3;

  /* lines */
  --line: #ecebe6;
  --line-2: #f0efea;
  --line-3: #e4e5e2;

  /* feedback */
  --error: #d24a43;
  --status-bg: #fbf5e6;
  --status-border: #efe0bb;

  /* type */
  --font-display: "Anuphan", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Thai", "Anuphan", system-ui, sans-serif;

  /* radii */
  --r-pill: 999px;
  --r-input: 12px;
  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 26px;
  --r-hero: 34px;

  /* shadows */
  --sh-card-hover: 0 22px 50px rgba(7, 22, 43, .09);
  --sh-statbar: 0 24px 60px rgba(7, 22, 43, .10);
  --sh-badge: 0 18px 40px rgba(0, 0, 0, .28);
  --sh-gold: 0 16px 34px rgba(230, 185, 63, .22);
  --sh-form: 0 22px 60px rgba(7, 22, 43, .06);

  /* layout */
  --gutter: clamp(28px, 4vw, 48px);
  --container: 1240px;
  --section-y: clamp(52px, 7vw, 96px);
  --header-h: 72px;

  --ease: .2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { height: auto; }

a { text-decoration: none; color: inherit; }
a:hover { color: var(--gold-text); }

p { margin: 0; text-wrap: pretty; }

h1, h2, h3 { font-family: var(--font-display); margin: 0; }

input, select, textarea, button {
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}

input::placeholder,
textarea::placeholder { color: #9aa2af; }

/* Visible keyboard focus on every interactive control. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: var(--r-input);
  background: var(--navy-800);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin-inline: auto;
}

.section { padding: var(--section-y) 0; }
.section--tight { padding: 0 0 var(--section-y); }

.section__head { max-width: 760px; margin-bottom: 36px; }
.section__head--wide { max-width: 820px; margin-bottom: 34px; }

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  line-height: 1.6;
}
.eyebrow--on-dark { color: var(--gold); }

.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 2.4px;
}
.eyebrow--rule::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  display: block;
}

.h1 {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.5px;
}

.h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--navy-800);
  margin: 14px 0;
}
.h2--sm { font-size: clamp(30px, 3.2vw, 42px); letter-spacing: -.4px; }
.h2--xs { font-size: clamp(28px, 3.2vw, 40px); }
.h2--faq { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 0; }
.h2--on-dark { color: #fff; }
.h2--flush { margin-bottom: 0; }

.lead { color: var(--muted); font-size: 15px; }
.lead--on-dark { color: var(--on-dark-body-2); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-800);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover { transform: translateY(-2px); color: var(--navy-800); }

.btn--ghost {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(255, 255, 255, .11);
}

.btn--navy {
  min-height: 54px;
  background: var(--navy-800);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-700); color: #fff; }
.btn--navy .arrow { color: var(--gold); }

.btn--outline {
  min-height: 54px;
  background: var(--white);
  border-color: var(--line-3);
  color: var(--navy-800);
}
.btn--outline:hover { border-color: var(--gold-dark); color: var(--navy-800); }

.btn[aria-disabled="true"] { opacity: .6; pointer-events: none; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 243, 239, .86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 22, 43, .06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  min-height: var(--header-h);
  padding: 10px 0;
}

.brand { display: flex; align-items: center; flex: none; }
.brand:hover { color: inherit; }

.brand__logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 520px) { .brand__logo { height: 32px; } }
@media (max-width: 360px) { .brand__logo { height: 28px; } }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.nav__link {
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 500;
  white-space: nowrap;
}
.nav__link[aria-current="page"] { color: var(--navy-800); font-weight: 600; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  background: var(--navy-800);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--ease);
}
.nav__cta:hover { background: var(--navy-700); color: #fff; }
.nav__cta .arrow { color: var(--gold); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(7, 22, 43, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  place-items: center;
}
.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: background-color .18s ease;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px var(--gutter) 20px;
    background: var(--paper);
    border-bottom: 1px solid rgba(7, 22, 43, .08);
    box-shadow: 0 18px 40px rgba(7, 22, 43, .08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility .22s;
  }
  .nav[data-open="true"] {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav__link {
    padding: 12px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(7, 22, 43, .06);
  }
  .nav__cta { justify-content: center; margin-top: 12px; padding: 14px 20px; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { padding: 26px 0 0; }

.hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-hero);
  background: var(--navy-grad-hero);
  color: #fff;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 60px) clamp(92px, 11vw, 150px);
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__ring--1 {
  right: -90px;
  top: 80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(230, 185, 63, .16);
}
.hero__ring--2 {
  right: 120px;
  top: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}

.hero__col { flex: 1 1 480px; min-width: 0; }

.hero__title { margin: 24px 0 22px; max-width: 640px; }
.hero__title span { color: var(--gold); }

.hero__lead {
  max-width: 620px;
  color: var(--on-dark-body);
  font-size: 16px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.hero__micro {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--on-dark-muted);
  font-size: 12.5px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.hero__micro li { display: inline-flex; align-items: center; gap: 7px; }
.hero__micro li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
  flex: none;
}

/* profile card */
.hero__aside { flex: 1 1 340px; min-width: 0; position: relative; }

.profile {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.profile__head { display: flex; gap: 18px; align-items: flex-start; }

.profile__avatar {
  width: 74px;
  height: 74px;
  flex: none;
  border-radius: 20px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(230, 185, 63, .22);
}

.profile__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}
.profile__th { color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 4px; }
.profile__role { color: var(--on-dark-muted-4); font-size: 13px; }

.profile__quote {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.profile__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.profile__chips li {
  font-size: 11.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  color: var(--on-dark-body-4);
}

.badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: var(--r-sm);
  padding: 12px 18px;
  box-shadow: var(--sh-badge);
}
.badge__title {
  font-family: var(--font-display);
  color: var(--gold-text);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
}
.badge__title--sm { font-size: 15px; }
.badge__sub { color: var(--navy-800); font-size: 11.5px; font-weight: 600; }

.badge--tr { top: -16px; right: 0; }
.badge--bl { left: 0; bottom: -24px; }

/* stat bar */
.statbar {
  width: min(92%, 1040px);
  margin: clamp(-72px, -5vw, -38px) auto 0;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-statbar);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  overflow: hidden;
}
.statbar__cell { padding: 24px 18px; border-right: 1px solid var(--line); }
.statbar__cell:last-child { border-right: 0; }
.statbar__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-800);
}
.statbar__label { color: var(--muted-3); font-size: 12px; }

@media (max-width: 860px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar__cell { border-right: 1px solid var(--line); }
  .statbar__cell:nth-child(2n) { border-right: 0; }
  .statbar__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
/* Stays 2x2 all the way down — the spec calls for four figures in two rows,
   so shrink the type rather than stacking into one very tall column. */
@media (max-width: 400px) {
  .statbar__cell { padding: 20px 12px; }
  .statbar__value { font-size: 17px; }
  .statbar__label { font-size: 11.5px; }
}

@media (max-width: 900px) {
  .hero__grid { gap: 40px; }
  .badge--tr { top: -14px; right: -4px; }
  .badge--bl { left: -4px; bottom: -20px; }
}
@media (max-width: 520px) {
  .badge { padding: 10px 14px; }
  .badge__title { font-size: 15px; }
  .badge__title--sm { font-size: 13.5px; }
  .badge__sub { font-size: 10.5px; }
  .hero__aside { margin-bottom: 18px; }
}

/* --------------------------------------------------------------------------
   8. Meet — 3 column intro
   -------------------------------------------------------------------------- */
.meet {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}
.meet__intro { flex: 1 1 330px; min-width: 0; }

.meet__card {
  flex: 1.15 1 340px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
}
.meet__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 14px;
  line-height: 1.35;
}
.meet__card p { color: var(--muted); font-size: 14.5px; }
.meet__card p + p { margin-top: 16px; }

.meet__philosophy {
  flex: .9 1 300px;
  min-width: 0;
  background: var(--navy-800);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  color: #fff;
}
.meet__philosophy blockquote {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.5;
  font-weight: 600;
  margin: 18px 0 0;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   9. Cards grid (Career Conversation)
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  min-height: 210px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 34px;
}
.card__num { color: var(--gold-text); font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.card__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-input);
  background: var(--surface-3);
  display: grid;
  place-items: center;
  color: var(--navy-800);
  font-size: 15px;
}
.card h3 { font-size: 19px; font-weight: 700; color: var(--navy-800); margin: 0 0 8px; }
.card p { color: var(--muted); font-size: 14px; }

/* --------------------------------------------------------------------------
   10. Dark band (Who this is for)
   -------------------------------------------------------------------------- */
.band {
  padding: clamp(52px, 7vw, 88px) 0;
  background: var(--navy-grad-band);
  color: #fff;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}
.checklist li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 9px;
  background: var(--gold);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.checklist b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.checklist span {
  display: block;
  color: var(--on-dark-body-3);
  font-size: 13.5px;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   11. Gain — single card with internal dividers
   -------------------------------------------------------------------------- */
.gain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gain li {
  display: flex;
  gap: 16px;
  padding: 26px 28px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.gain li:nth-child(3n) { border-right: 0; }
.gain li:nth-last-child(-n+3) { border-bottom: 0; }

.gain__num { color: var(--gold-text); font-size: 12px; font-weight: 700; padding-top: 3px; flex: none; }
.gain b {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-800);
}
.gain span.gain__desc {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 2px;
}

@media (max-width: 940px) {
  .gain { grid-template-columns: repeat(2, 1fr); }
  .gain li { border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
  .gain li:nth-child(2n) { border-right: 0; }
  .gain li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .gain { grid-template-columns: 1fr; }
  .gain li { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .gain li:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   12. Team
   -------------------------------------------------------------------------- */
.team {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.team__logo {
  flex: 1 1 300px;
  min-width: 260px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 26px;
  display: grid;
  place-items: center;
}
.team__logo img { width: 100%; max-width: 340px; display: block; }

.team__body { flex: 1.6 1 420px; min-width: 0; }
.team__body h3 { font-size: 26px; font-weight: 700; color: var(--navy-800); margin: 6px 0 10px; }
.team__body > p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }

.pillars { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.pillars li { background: var(--surface-2); border-radius: var(--r-sm); padding: 16px 20px; }
.pillars b { display: block; font-size: 14px; color: var(--navy-800); }
.pillars span { color: var(--muted); font-size: 13px; }

/* --------------------------------------------------------------------------
   13. Steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.steps__num {
  color: var(--gold-text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.steps h3 { font-size: 18px; font-weight: 700; color: var(--navy-800); margin: 14px 0 6px; }
.steps p { color: var(--muted); font-size: 13.5px; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.faq__intro { flex: 1 1 320px; min-width: 0; }
.faq__list { flex: 1.4 1 460px; min-width: 0; display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color var(--ease);
}
.faq__item[data-open="true"] { border-color: var(--line-3); }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: none;
  border-radius: 16px;
  text-align: start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.6;
  cursor: pointer;
}
.faq__sign {
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 700;
  flex: none;
  line-height: 1;
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq__item[data-open="true"] .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__panel p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 22px 18px;
}

/* --------------------------------------------------------------------------
   15. Form
   -------------------------------------------------------------------------- */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.contact__aside {
  flex: 1 1 320px;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.2vw, 34px);
  background: var(--navy-grad-form);
  color: #fff;
}
.contact__ring {
  position: absolute;
  right: -120px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(230, 185, 63, .18);
  pointer-events: none;
}
.contact__aside > .contact__inner { position: relative; z-index: 2; }
.contact__aside h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 14px 0 12px;
}
.contact__aside > .contact__inner > p {
  color: var(--on-dark-body-2);
  font-size: 14.5px;
  margin-bottom: 26px;
}

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.channels li {
  padding: 16px 18px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}
.channels b { display: block; font-size: 13px; }
.channels a, .channels span { color: var(--on-dark-body-3); font-size: 13px; }
.channels a:hover { color: var(--gold); }
.channels .is-email { font-size: 12.5px; word-break: break-all; }

.formcard {
  flex: 1.5 1 520px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--sh-form);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 18px;
}

.field { margin-top: 18px; }
.field-grid .field { margin-top: 0; }
.field-grid--spaced { margin-top: 18px; }

.field label,
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.req { color: var(--error); }

.input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-input);
  border: 1px solid var(--line-3);
  background: var(--field-bg);
  outline: none;
  transition: border-color .15s ease, background-color .15s ease;
}
.input:focus { border-color: var(--gold-dark); background: #fff; }
.input:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 2px; }
textarea.input { resize: vertical; min-height: 108px; }
.input[aria-invalid="true"] { border-color: var(--error); background: #fdf6f5; }

.topics__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 9px;
}
.topics__head .field-label { margin-bottom: 0; }
.topics__count { font-size: 12px; color: var(--gold-text); font-weight: 600; }

.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 12px;
  border: 0;
  margin: 0;
  padding: 0;
}

.chip {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 16px;
  border-radius: var(--r-input);
  border: 1px solid var(--line-3);
  background: var(--field-bg);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted-2);
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}
.chip:hover { border-color: var(--gold-dark); background: var(--gold-tint); color: var(--navy-800); }
.chip input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--gold-dark);
}
.chip:has(input:checked),
.chip.is-checked {
  border-color: var(--gold-dark);
  background: var(--gold-tint);
  color: var(--navy-800);
  font-weight: 600;
}
.chip:focus-within { outline: 2px solid var(--gold-dark); outline-offset: 2px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  flex: none;
  accent-color: var(--navy-800);
}
.consent span { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.note {
  margin-top: 16px;
  background: var(--surface-4);
  border: 1px solid #eeeeea;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: var(--muted-3);
  font-size: 12.5px;
  line-height: 1.65;
}

.form__actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 14px;
  margin-top: 20px;
}

.status {
  margin-top: 14px;
  font-size: 13px;
  color: var(--navy-800);
  background: var(--status-bg);
  border: 1px solid var(--status-border);
  border-radius: var(--r-input);
  padding: 12px 16px;
}
.status:empty { display: none; }

/* honeypot — off-screen, never shown to humans */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: #fff;
  padding: clamp(40px, 5vw, 56px) 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
.footer__brand { flex: 1 1 280px; }
.footer__logo { height: 44px; width: auto; display: block; }
@media (max-width: 520px) { .footer__logo { height: 36px; } }
.footer__tag { color: var(--on-dark-muted-2); font-size: 13px; margin-top: 6px; }

.footer__contact { flex: 1 1 340px; max-width: 520px; }
.footer__contact a,
.footer__contact div { color: var(--on-dark-body-4); font-size: 13.5px; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact div + div { margin-top: 4px; }
.footer__contact .is-email { font-weight: 600; }
.footer__privacy {
  color: var(--on-dark-muted-3);
  font-size: 11.5px;
  line-height: 1.7;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   17. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .card:hover,
  .btn--gold:hover,
  .btn--ghost:hover { transform: none; }
}
