/* ══════════════════════════════════════════════════
   KANAK INDIA — SITE STYLESHEET
   Navy + gold parent brand, three division accents.
   ══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Parent brand */
  --navy:      #07111F;
  --navy-2:    #0E1E33;
  --navy-3:    #132645;
  --gold:      #C8952A;
  --gold-l:    #E8B84B;
  --gold-pale: #FDF3E0;
  --gold-deep: #8A6114;

  /* Division accents — sampled from the corporate pyramid mark.
     Technology = blue face, Gifting = gold face, AI = green face. */
  --tech:      #0B57C4;
  --tech-pale: #E8F0FC;
  --gift:      #C07100;
  --gift-pale: #FDF2DF;
  --ai:        #0A6B4B;
  --ai-pale:   #E4F3ED;

  /* Neutrals */
  --ink:       #0B1626;
  --body-text: #3D4C5E;
  --muted:     #6B7A8D;
  --line:      #E2E7EE;
  --line-dark: #1E3250;
  --paper:     #FFFFFF;
  --paper-2:   #F6F8FB;
  --ok:        #1F7A43;
  --ok-pale:   #E7F5ED;
  --warn:      #9A5B00;
  --warn-pale: #FFF4E0;
  --err:       #B32020;
  --err-pale:  #FDECEC;

  --display: 'Syne', 'Trebuchet MS', sans-serif;
  --body:    'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --wrap:    1200px;
  --ease:    cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--body-text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--gold-l);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--navy); color: rgba(255,255,255,.72); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

/* ── Section headings ───────────────────────────── */
.shead { max-width: 720px; margin-bottom: 52px; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }
.shead h2 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
.shead p  { font-size: 17px; color: var(--muted); }
.section--dark .shead p { color: rgba(255,255,255,.62); }

.kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}
.section--dark .kicker { color: var(--gold-l); border-color: var(--gold); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold  { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-l); }
.btn--navy  { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-3); }
.btn--ghost { border-color: var(--gold); color: var(--gold-deep); background: transparent; }
.btn--ghost:hover { background: var(--gold-pale); }
.section--dark .btn--ghost { color: var(--gold-l); }
.section--dark .btn--ghost:hover { background: rgba(200,149,42,.14); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--navy); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ══ HEADER ═════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(7,17,31,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,149,42,.22);
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img {
  height: 56px; width: 56px; object-fit: contain;
  /* The supplied logo has a navy wordmark, so it needs a light plate
     to stay legible on the navy header. Artwork is unmodified. */
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 1px 0 rgba(255,255,255,.14);
  transition: transform .25s var(--ease);
}
.brand:hover img { transform: translateY(-1px) scale(1.03); }
.brand-text { display: none; }
@media (min-width: 1080px) { .brand-text { display: block; } }
.brand-text b {
  display: block; font-family: var(--display); font-size: 16px;
  color: #fff; letter-spacing: -.01em; line-height: 1.2;
}
.brand-text span { display: block; font-size: 11px; color: var(--gold-l); letter-spacing: .06em; }

.nav { display: flex; align-items: center; gap: 4px; }
@media (max-width: 1080px) { .nav { display: none; } }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 13px; font-size: 14.5px; font-weight: 500;
  color: rgba(255,255,255,.82); border-radius: 5px;
  transition: color .16s, background .16s;
}
.nav > li > a:hover, .nav > li.is-open > a, .nav > li.is-current > a { color: var(--gold-l); background: rgba(255,255,255,.05); }
.nav .caret { width: 9px; height: 9px; opacity: .6; transition: transform .2s; }
.nav > li.is-open .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 288px; padding: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: 0 18px 44px rgba(7,17,31,.22);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.nav > li.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 13px; border-radius: 6px; transition: background .14s; }
.dropdown a:hover { background: var(--paper-2); }
.dropdown b { display: block; font-family: var(--display); font-size: 14.5px; color: var(--ink); }
.dropdown small { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.dropdown hr { border: none; border-top: 1px solid var(--line); margin: 8px 4px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .link-plain {
  font-size: 14px; color: rgba(255,255,255,.75); transition: color .16s;
}
.header-actions .link-plain:hover { color: var(--gold-l); }
@media (max-width: 620px) { .header-actions .btn { display: none; } }

.burger {
  display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--gold-l); transition: transform .2s, opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1080px) { .burger { display: flex; } }

.mobile-nav {
  display: none; background: var(--navy-2); border-bottom: 1px solid rgba(200,149,42,.2);
  padding: 14px 28px 26px; max-height: calc(100vh - 76px); overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav h4 {
  font-size: 12px; color: var(--gold-l); margin: 18px 0 8px;
  letter-spacing: .08em; font-weight: 700;
}
.mobile-nav a { display: block; padding: 9px 0; color: rgba(255,255,255,.85); font-size: 15px; }
.mobile-nav a:hover { color: var(--gold-l); }

/* ══ HERO ═══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: 104px 0 88px;
  color: rgba(255,255,255,.75);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,149,42,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,149,42,.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 100%);
}
.hero::after {
  content: ''; position: absolute; width: 620px; height: 620px;
  right: -180px; top: -220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,.16), transparent 68%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,149,42,.4); border-radius: 100px;
  padding: 7px 18px 7px 8px; margin-bottom: 26px;
  font-size: 12.5px; color: rgba(255,255,255,.8);
}
.hero-eyebrow i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 12px; font-style: normal;
}
.hero h1 {
  font-size: clamp(38px, 6.4vw, 74px);
  color: #fff; margin-bottom: 22px; max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--gold-l); display: block; }
.hero-lede { font-size: clamp(16px, 1.9vw, 19px); max-width: 62ch; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(255,255,255,.08); border-radius: 10px; overflow: hidden;
  max-width: 760px;
}
.hero-stats div { background: var(--navy); padding: 20px 22px; }
.hero-stats b {
  display: block; font-family: var(--display); font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-l); line-height: 1;
}
.hero-stats span { font-size: 12.5px; color: rgba(255,255,255,.55); }
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

/* ══ TICKER ═════════════════════════════════════ */
.ticker {
  background: var(--gold); color: var(--navy);
  overflow: hidden; white-space: nowrap; padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08);
}
.ticker-track { display: inline-flex; gap: 0; animation: ticker 46s linear infinite; }
.ticker span {
  font-family: var(--display); font-weight: 600; font-size: 13.5px;
  padding: 0 26px; position: relative;
}
.ticker span::after {
  content: '·'; position: absolute; right: -4px; opacity: .5;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ══ DIVISION ROUTER ════════════════════════════ */
.divisions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .divisions { grid-template-columns: 1fr; } }

.division {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-top: 4px solid var(--accent, var(--gold));
  border-radius: 10px; padding: 34px 30px 30px; background: #fff;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s;
}
.division:hover { box-shadow: 0 20px 48px rgba(11,22,38,.11); transform: translateY(-4px); }
.division--tech { --accent: var(--tech); --accent-pale: var(--tech-pale); }
.division--gift { --accent: var(--gift); --accent-pale: var(--gift-pale); }
.division--ai   { --accent: var(--ai);   --accent-pale: var(--ai-pale); }
.division-mark {
  width: 46px; height: 46px; border-radius: 8px; margin-bottom: 20px;
  background: var(--accent-pale); color: var(--accent);
  display: grid; place-items: center;
}
.division-mark svg { width: 24px; height: 24px; }
.division h3 { font-size: 25px; margin-bottom: 4px; }
.division .division-sub {
  font-family: var(--display); font-size: 13.5px; font-weight: 600;
  color: var(--accent); margin-bottom: 16px;
}
.division p { font-size: 15px; margin-bottom: 20px; }
.division ul { margin-bottom: 26px; }
.division li {
  font-size: 14.5px; padding: 7px 0 7px 22px; position: relative;
  border-bottom: 1px solid var(--line);
}
.division li:last-child { border-bottom: none; }
.division li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--accent);
}
.division .division-go {
  margin-top: auto; font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.division:hover .division-go svg { transform: translateX(4px); }
.division-go svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }

/* ══ MOU BAND ═══════════════════════════════════ */
.mou {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-3) 100%);
  color: rgba(255,255,255,.74); padding: 92px 0; position: relative; overflow: hidden;
}
.mou::before {
  content: ''; position: absolute; left: -120px; bottom: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,.14), transparent 70%);
}
.mou-inner { position: relative; z-index: 2; }
.mou h2 { font-size: clamp(30px, 4.4vw, 48px); color: #fff; margin-bottom: 16px; max-width: 18ch; }
.mou-lede { font-size: 17.5px; max-width: 60ch; margin-bottom: 48px; }
.mou-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
@media (max-width: 900px) { .mou-pillars { grid-template-columns: 1fr; } }
.pillar {
  background: rgba(255,255,255,.045); border: 1px solid rgba(200,149,42,.26);
  border-radius: 10px; padding: 28px 26px;
}
.pillar h3 { font-size: 19px; color: var(--gold-l); margin-bottom: 12px; }
.pillar p { font-size: 14.5px; color: rgba(255,255,255,.66); margin-bottom: 16px; }
.pillar .chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 4px;
  background: rgba(200,149,42,.16); color: var(--gold-l);
}

/* ══ CARDS / GRIDS ══════════════════════════════ */
.grid   { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px; transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: #C7D0DC; box-shadow: 0 10px 30px rgba(11,22,38,.07); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p  { font-size: 14.5px; }
.card-icon {
  width: 44px; height: 44px; border-radius: 8px; margin-bottom: 18px;
  background: var(--gold-pale); color: var(--gold-deep);
  display: grid; place-items: center; font-size: 20px;
}
.section--dark .card { background: var(--navy-2); border-color: rgba(200,149,42,.2); }
.section--dark .card p { color: rgba(255,255,255,.62); }
.section--dark .card:hover { border-color: rgba(200,149,42,.45); }

.media-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.section--dark .media-card { border-color: rgba(200,149,42,.2); background: var(--navy-2); }
.media-card img { width: 100%; height: 230px; object-fit: cover; }
.media-card .media-body { padding: 22px 24px; }
.media-card h3 { font-size: 18px; margin-bottom: 8px; }
.media-card p { font-size: 14.5px; }
.section--dark .media-card p { color: rgba(255,255,255,.62); }

/* ══ COURSE CARDS ═══════════════════════════════ */
.course-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease);
}
.course-card:hover { box-shadow: 0 18px 42px rgba(11,22,38,.12); transform: translateY(-3px); }
.course-top {
  padding: 22px 24px 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.vendor-tag {
  font-family: var(--display); font-size: 11.5px; font-weight: 700;
  padding: 5px 11px; border-radius: 4px; letter-spacing: .04em;
  background: var(--navy); color: var(--gold-l);
}
.level-tag { font-size: 12px; color: var(--muted); }
.course-body { padding: 16px 24px 22px; flex: 1; }
.course-body h3 { font-size: 19px; margin-bottom: 9px; }
.course-body p { font-size: 14.5px; }
.course-meta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px;
  font-size: 13px; color: var(--muted);
}
.course-meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-foot {
  padding: 18px 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--paper-2);
}
.price { font-family: var(--display); font-size: 24px; font-weight: 800; color: var(--ink); line-height: 1; }
.price s { font-size: 15px; color: var(--muted); font-weight: 500; margin-left: 8px; }
.price small { display: block; font-family: var(--body); font-size: 11.5px; color: var(--muted); font-weight: 400; margin-top: 3px; }

.voucher-flag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ok-pale); color: var(--ok); border: 1px solid #BFE3CE;
  font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 4px;
}

/* ══ FORMS ══════════════════════════════════════ */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ink); margin-bottom: 7px;
}
.field label .req { color: var(--err); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 15px;
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
  transition: border-color .16s, box-shadow .16s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,149,42,.16);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.notice { padding: 14px 18px; border-radius: 7px; font-size: 14.5px; margin-bottom: 22px; }
.notice--ok   { background: var(--ok-pale);   color: var(--ok);   border: 1px solid #BFE3CE; }
.notice--err  { background: var(--err-pale);  color: var(--err);  border: 1px solid #F3C9C9; }
.notice--warn { background: var(--warn-pale); color: var(--warn); border: 1px solid #F0DBB0; }

/* ══ CHECKOUT ═══════════════════════════════════ */
.checkout { display: grid; grid-template-columns: 1.35fr .85fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } }
.summary {
  border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px;
  background: var(--paper-2); position: sticky; top: 100px;
}
.summary h3 { font-size: 17px; margin-bottom: 18px; }
.summary-line {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 14.5px; padding: 9px 0; border-bottom: 1px solid var(--line);
}
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; margin-top: 6px;
}
.summary-total b { font-family: var(--display); font-size: 26px; color: var(--ink); }

/* ══ TABLES ═════════════════════════════════════ */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 9px; }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; }
table.data th {
  text-align: left; padding: 13px 16px; background: var(--paper-2);
  font-family: var(--display); font-size: 12.5px; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
table.data td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
table.data tbody tr:hover { background: #FAFCFE; }

.pill {
  display: inline-block; font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: 100px; white-space: nowrap;
}
.pill--paid    { background: var(--ok-pale);   color: var(--ok); }
.pill--pending { background: var(--warn-pale); color: var(--warn); }
.pill--failed  { background: var(--err-pale);  color: var(--err); }
.pill--sent    { background: #E8EEFB; color: #24468F; }

/* ══ PILL LIST (clients) ════════════════════════ */
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; }
.pill-list span {
  font-size: 13.5px; padding: 7px 15px; border-radius: 5px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.section--dark .pill-list span {
  background: rgba(255,255,255,.05); border-color: rgba(200,149,42,.24); color: rgba(255,255,255,.86);
}

/* ══ APP CARDS (AI division) ════════════════════ */
.app-card {
  border: 1px solid var(--line); border-left: 4px solid var(--ai);
  border-radius: 9px; padding: 26px 24px; background: #fff;
  transition: box-shadow .2s, transform .2s var(--ease);
}
.app-card:hover { box-shadow: 0 14px 34px rgba(11,22,38,.1); transform: translateY(-3px); }
.app-card h3 { font-size: 20px; margin-bottom: 3px; }
.app-card .app-kind {
  font-size: 12.5px; font-weight: 600; color: var(--ai); margin-bottom: 12px;
}
.app-card p { font-size: 14.5px; margin-bottom: 18px; }
.app-card .app-link { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ai); }

/* ══ FAQ ════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 44px 20px 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 16.5px; color: var(--ink);
}
.faq-q::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--gold); font-weight: 400;
}
.faq-item.is-open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 40px 22px 0; font-size: 15px; }
.faq-item.is-open .faq-a { display: block; }

/* ══ FOOTER ═════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 52px;
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 620px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-size: 13px; color: var(--gold-l); margin-bottom: 16px;
  letter-spacing: .07em; font-weight: 700;
}
.footer-grid a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.62); }
.footer-grid a:hover { color: var(--gold-l); }
/* Light plate keeps the navy wordmark legible on the navy footer. */
.footer-brand img {
  width: 170px; height: auto; margin-bottom: 20px;
  background: #fff; border-radius: 10px; padding: 12px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 13px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span {
  font-size: 11.5px; padding: 4px 10px; border-radius: 4px;
  border: 1px solid rgba(200,149,42,.3); color: var(--gold-l);
}

/* ══ WHATSAPP FAB ═══════════════════════════════ */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .2s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 29px; height: 29px; fill: #fff; }

/* ══ REVEAL ═════════════════════════════════════
   Progressive enhancement only. Content is visible by default;
   it is hidden for the entrance animation ONLY when JavaScript
   has run and added .js to <html>. If a script fails to load or
   is blocked, the page still reads normally.               */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ══ UTILITIES ══════════════════════════════════ */
.center     { text-align: center; }
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.lede  { font-size: 17px; }
.muted { color: var(--muted); }
.small { font-size: 13.5px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.page-head { background: var(--navy); color: rgba(255,255,255,.72); padding: 68px 0 60px; }
.page-head h1 { font-size: clamp(32px, 5vw, 52px); color: #fff; margin-bottom: 14px; max-width: 20ch; }
.page-head p { font-size: 17px; max-width: 62ch; }
.crumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.crumb a:hover { color: var(--gold-l); }
