/* ═══════════════════════════════════════════════════════════
   LEAD INNOVATION HUB — style.css v34
   Brand: Black / Gold (#D6850A) / Purple (#5D0A5D)
   Font: Times New Roman (display) + Georgia (body)
   ═══════════════════════════════════════════════════════════ */

:root {
    --primary:      #000000;
    --primary-soft: #1a1a1a;
    --gold:         #D6850A;
    --gold-dark:    #b8700a;
    --gold-light:   #f0a030;
    --purple:       #5D0A5D;
    --purple-dark:  #480848;
    --purple-light: #7a107a;
    --white:        #FFFFFF;
    --off-white:    #F9F7F4;
    --gray-50:      #F5F3F0;
    --gray-100:     #EAE8E4;
    --gray-200:     #D8D4CE;
    --gray-400:     #9A9590;
    --gray-500:     #6B6560;
    --gray-600:     #4A4540;
    --ink:          #0D0D0D;
    --text:         #3A3530;
    --radius:       4px;
    --radius-lg:    8px;
    --radius-xl:    12px;
    --maxw:         1280px;
    --ease:         cubic-bezier(.22,.61,.36,1);
    --display:      'Times New Roman', 'Times New Roman MT', Georgia, serif;
    --body:         'Georgia', 'Times New Roman', serif;
    --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
    --shadow:       0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
    /* Fluid spacing tokens */
    --sec-pad:      clamp(60px, 8vw, 110px);
    --sec-pad-sm:   clamp(40px, 5vw, 70px);
    --gap-lg:       clamp(32px, 5vw, 72px);
    --gap-md:       clamp(20px, 3vw, 40px);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--gold); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: var(--display); font-weight: 700; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; }
p { margin: 0 0 1em; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.sec     { padding: var(--sec-pad) 0; }
.sec-sm  { padding: var(--sec-pad-sm) 0; }
.bg-off    { background: var(--off-white); }
.bg-dark   { background: var(--primary); color: #fff; }
.bg-gold   { background: var(--gold); color: #fff; }
.bg-purple { background: var(--purple); color: #fff; }
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: #fff; }
.bg-purple h1,.bg-purple h2,.bg-purple h3,.bg-purple h4 { color: #fff; }
.bg-gold h1,.bg-gold h2,.bg-gold h3,.bg-gold h4 { color: #fff; }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow { font-family: var(--display); font-weight: 400; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; font-style: italic; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); display: inline-block; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { font-family: var(--display); font-weight: 700; font-size: clamp(.88rem, 1.5vw, 1rem); display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: clamp(12px,1.5vw,16px) clamp(22px,3vw,36px); border-radius: var(--radius); cursor: pointer; border: 0; white-space: nowrap; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s; letter-spacing: .04em; min-height: 48px; }
.btn-primary      { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-soft); box-shadow: var(--shadow); }
.btn-gold         { background: var(--gold); color: #fff; box-shadow: 0 8px 24px rgba(214,133,10,.35); }
.btn-gold:hover   { transform: translateY(-2px); background: var(--gold-dark); box-shadow: 0 14px 32px rgba(214,133,10,.45); }
.btn-purple       { background: var(--purple); color: #fff; }
.btn-purple:hover { transform: translateY(-2px); background: var(--purple-dark); }
.btn-outline      { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { transform: translateY(-2px); background: var(--primary); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-ghost        { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover  { background: #fff; color: var(--primary); }
.btn-lg           { padding: clamp(14px,2vw,18px) clamp(28px,4vw,42px); font-size: clamp(.95rem,1.8vw,1.1rem); }
.btn-group        { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Preloader ───────────────────────────────────────────── */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--primary); display: flex; align-items: center; justify-content: center; transition: opacity .5s ease, visibility .5s ease; animation: preloaderKill 0s 3s forwards; }
@keyframes preloaderKill { to { opacity: 0; visibility: hidden; pointer-events: none; } }
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.preloader-logo  { width: clamp(120px, 20vw, 180px); height: auto; filter: brightness(0) invert(1); }
.preloader-ring  { width: 44px; height: 44px; border: 3px solid rgba(255,255,255,.2); border-top-color: var(--gold); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Header / Nav ────────────────────────────────────────── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 600; transition: top .35s var(--ease), transform .35s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease); }
/* Desktop: hide with transform (smooth, no children affected) */
header.nav-hidden { transform: translateY(-110%); }
/* Mobile: hide with top instead of transform so fixed children (toggle) keep working */
@media (max-width: 768px) {
    header.nav-hidden { transform: none; top: -100px; }
    header { transition: top .35s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease); }
}
.nav { display: flex; align-items: center; justify-content: space-between; max-width: var(--maxw); margin: 0 auto; padding: clamp(14px,2vw,22px) clamp(16px,4vw,48px); transition: all .4s var(--ease); }
header.scrolled { background: rgba(0,0,0,.96); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.site-logo  { height: clamp(36px,4vw,48px); width: auto; }
/* Desktop: main-nav positioned to appear centred in the header bar */
.main-nav { display: flex; align-items: center; position: fixed; top: 0; left: 50%; transform: translateX(-50%); height: clamp(60px,8vw,82px); z-index: 9998; }
.main-nav ul { display: flex; gap: clamp(20px,3vw,40px); }
.nav-link { font-family: var(--display); font-size: clamp(.85rem,1.2vw,.95rem); font-weight: 400; color: rgba(255,255,255,.88); transition: color .25s; position: relative; padding-bottom: 2px; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .3s var(--ease); }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
header.scrolled .nav-link { color: rgba(255,255,255,.88); }
header.scrolled .nav-link:hover, header.scrolled .nav-link.active { color: var(--gold); }
.header-cta { background: var(--gold); color: #fff; font-family: var(--display); font-weight: 700; padding: 10px 22px; border-radius: var(--radius); font-size: clamp(.82rem,1.2vw,.92rem); letter-spacing: .04em; transition: .3s; white-space: nowrap; }
.header-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; position: relative; z-index: 1; touch-action: manipulation; pointer-events: auto; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; transition: .3s; pointer-events: none; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* nav-close hidden everywhere except open mobile overlay */
.nav-close { display: none !important; }

/* ── Hero (overlay style — used on inner pages) ──────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--primary); color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); pointer-events: none; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active img { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 55%, rgba(93,10,93,.35) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 3; max-width: 720px; width: 100%; padding: clamp(100px,14vw,160px) 0 clamp(60px,8vw,100px); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-family: var(--display); font-style: italic; font-size: .9rem; letter-spacing: .12em; margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); color: #fff; margin-bottom: 22px; line-height: 1.05; font-weight: 700; }
.hero h1 .gold   { color: var(--gold); }
.hero h1 .purple { color: #c060c0; }
.hero p.sub { color: rgba(255,255,255,.8); font-size: clamp(.95rem,1.8vw,1.1rem); max-width: 560px; margin-bottom: 38px; line-height: 1.75; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-slide-text { display: none; }
.hero-slide-text.active { display: block; }
.hero-arrow { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); color: #fff; display: grid; place-items: center; cursor: pointer; transition: .3s var(--ease); }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ── Hero Split (homepage) ───────────────────────────────── */
.hero-split { background: var(--primary); color: #fff; padding: clamp(80px,10vw,130px) 0 0; position: relative; overflow: hidden; }
.hero-split-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 0%, rgba(93,10,93,.25) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.hero-split-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: clamp(28px,4vw,56px); pointer-events: auto; }
.hero-split-text { text-align: center; max-width: min(780px, 90vw); width: 100%; }
.hero-split-text .hero-eyebrow { justify-content: center; }
.hero-split-text .hero-eyebrow::before { display: none; }
.hero-split-text h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); color: #fff; margin-bottom: 18px; line-height: 1.1; font-weight: 700; }
.hero-split-text h1 .gold { color: var(--gold); }
.hero-split-text .sub { color: rgba(255,255,255,.78); font-size: clamp(.95rem,1.8vw,1.1rem); max-width: 600px; margin: 0 auto 32px; line-height: 1.75; }
.hero-split-text .hero-cta { justify-content: center; flex-wrap: wrap; gap: clamp(10px,2vw,16px); }
.hero-split-card { width: min(900px, 100%); border-radius: clamp(8px,1.5vw,20px) clamp(8px,1.5vw,20px) 0 0; overflow: hidden; position: relative; box-shadow: 0 -8px 60px rgba(0,0,0,.4); }
.hero-split-slides { position: relative; width: 100%; }
.hero-split-slide { opacity: 0; transition: opacity 1.1s var(--ease); display: none; }
.hero-split-slide.active { opacity: 1; display: block; }
.hero-split-slide img { width: 100%; height: auto; display: block; object-fit: contain; }
.hero-split-slide.active img { animation: none; }
.hero-split-card .hero-arrow { top: 50%; }

/* ── Stats band ──────────────────────────────────────────── */
.stats-band { background: var(--primary); color: #fff; padding: clamp(40px,6vw,64px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: clamp(12px,2vw,24px); border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-num span.suffix { font-size: clamp(1.4rem,2.8vw,2.2rem); }
.stat-label { font-size: clamp(.72rem,1.2vw,.85rem); color: rgba(255,255,255,.65); margin-top: 6px; letter-spacing: .06em; text-transform: uppercase; }

/* ── About grid ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius-lg); }
.about-img .accent-block { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: #fff; padding: clamp(16px,2vw,24px) clamp(18px,2.5vw,28px); border-radius: var(--radius-lg); font-family: var(--display); text-align: center; }
.about-img .accent-block strong { font-size: clamp(1.6rem,3vw,2.2rem); display: block; line-height: 1; }
.about-img .accent-block span { font-size: .8rem; opacity: .85; letter-spacing: .08em; text-transform: uppercase; }
.about-text h2 { font-size: clamp(1.8rem,3vw,2.8rem); }
.about-text p { color: var(--gray-500); line-height: 1.8; }
.check-list { margin: 24px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: .95rem; color: var(--text); }
.check-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; background: var(--gold) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat; }

/* ── Services grid ───────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,28px); }
.svc-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px); transition: .35s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.svc-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--off-white); display: grid; place-items: center; margin-bottom: 20px; }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.svc-card h3 { font-size: clamp(1.05rem,1.8vw,1.25rem); margin-bottom: 10px; }
.svc-card p { color: var(--gray-500); font-size: .93rem; margin: 0; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,28px); align-items: stretch; }
.pricing-grid--2col { grid-template-columns: repeat(2,1fr); max-width: 800px; margin: 0 auto; }
.price-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px); position: relative; transition: .35s var(--ease); display: flex; flex-direction: column; }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.price-card.featured { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.02); }
.price-card.featured h3 { color: #fff; }
.price-card.featured .price-note { color: rgba(255,255,255,.6); }
.price-card.featured li { color: rgba(255,255,255,.85); }
.price-card.featured li::before { background-color: var(--gold); }
.price-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; padding: 4px 18px; border-radius: 20px; font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.price-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.price-amount { font-family: var(--display); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: var(--gold); line-height: 1; }
.price-note { font-size: .82rem; color: var(--gray-400); margin-bottom: 22px; }
.price-features { margin: 0 0 28px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .9rem; }
.price-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; background: var(--gray-100) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23D6850A' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat; }

/* ── Social Packages ─────────────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,28px); align-items: stretch; }
.pkg-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px); display: flex; flex-direction: column; position: relative; transition: .35s var(--ease); }
.pkg-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pkg-card.featured { background: var(--purple); border-color: var(--purple); color: #fff; }
.pkg-card.featured h3, .pkg-card.featured .pkg-price { color: #fff; }
.pkg-card.featured .pkg-note { color: rgba(255,255,255,.65); }
.pkg-card.featured li { color: rgba(255,255,255,.85); }
.pkg-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; padding: 4px 18px; border-radius: 20px; font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.pkg-price { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem,2.8vw,2.2rem); color: var(--purple); line-height: 1; }
.pkg-note { font-size: .82rem; color: var(--gray-400); margin-bottom: 20px; }
.pkg-features { margin: 0 0 28px; flex: 1; }
.pkg-features li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; font-size: .88rem; }
.pkg-features li::before { content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23D6850A' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ── Why grid ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,2vw,24px); }
.why-grid--2col { grid-template-columns: 1fr 1fr; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: clamp(20px,2.5vw,32px); }
.why-icon { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(214,133,10,.15); display: grid; place-items: center; margin-bottom: 18px; }
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.why-card p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

/* ── Impact / initiatives ────────────────────────────────── */
.impact-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.impact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--gray-500); }
.impact-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.initiative-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2.5vw,28px); }
.initiative-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: clamp(240px,30vw,360px); display: flex; align-items: flex-end; }
.initiative-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.initiative-card-body { position: relative; z-index: 2; padding: clamp(20px,3vw,32px); background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 70%, transparent 100%); width: 100%; }
.initiative-card-body .eyebrow { margin-bottom: 8px; }
.initiative-card-body h3 { color: #fff; font-size: clamp(1.15rem,2vw,1.4rem); margin-bottom: 10px; }
.initiative-card-body p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 16px; }

/* ── Testimonials ────────────────────────────────────────── */
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,28px); align-items: stretch; }
.t-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(20px,3vw,32px); display: flex; flex-direction: column; }
.t-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.t-quote { font-size: clamp(.88rem,1.5vw,.95rem); color: var(--gray-500); line-height: 1.75; margin-bottom: 20px; font-style: italic; flex: 1; }
.t-quote::before { content: '\201C'; font-size: 1.8rem; color: var(--gold); line-height: 0; vertical-align: -.4em; margin-right: 3px; }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; color: #fff; font-size: 1rem; flex-shrink: 0; }
.t-author-info strong { display: block; font-size: .95rem; color: var(--ink); font-family: var(--display); }
.t-author-info span { font-size: .8rem; color: var(--gray-400); }

/* ── Register / Contact form ─────────────────────────────── */
.register-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: start; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(24px,4vw,44px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,2vw,20px); }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--display); font-size: .88rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 12px 16px; font-family: var(--body); font-size: .93rem; color: var(--ink); background: var(--off-white); transition: border-color .25s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-group textarea { min-height: 110px; resize: vertical; }
.other-input { display: none; margin-top: 8px; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: var(--primary); border-radius: var(--radius-xl); padding: clamp(40px,6vw,64px) clamp(24px,5vw,56px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(214,133,10,.08); }
.cta-band::after  { content: ''; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(93,10,93,.12); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.6rem); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-band .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: rgba(255,255,255,.75); padding: clamp(48px,6vw,70px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(24px,3.5vw,44px); padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 18px; max-width: 280px; }
.footer-col h4 { font-family: var(--display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 4px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); padding: 5px 0; font-size: .92rem; transition: .25s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-news form { display: flex; gap: 8px; margin-top: 4px; }
.footer-news input { flex: 1; min-width: 0; padding: 10px 14px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: .88rem; font-family: var(--body); }
.footer-news input::placeholder { color: rgba(255,255,255,.4); }
.footer-news .btn { padding: 10px 18px; font-size: .85rem; background: var(--gold); color: #fff; border-radius: var(--radius); min-height: unset; }
.footer-news .btn:hover { background: var(--gold-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; color: rgba(255,255,255,.4); font-size: .83rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }
.socials { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: rgba(255,255,255,.65); transition: .25s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(214,133,10,.1); }
.socials svg { width: 16px; height: 16px; }

/* ── WhatsApp float ──────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 100; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 24px rgba(0,0,0,.2); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── Modals ──────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-xl); max-width: 560px; width: 100%; max-height: 92vh; overflow-y: auto; animation: modalIn .35s var(--ease); }
@keyframes modalIn { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { background: var(--primary); border-radius: var(--radius-xl) var(--radius-xl) 0 0; padding: clamp(20px,3vw,28px) clamp(20px,3vw,32px) clamp(18px,2.5vw,24px); position: relative; overflow: hidden; }
.modal-head::after { content: ''; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); width: 200px; height: 200px; background: url('/assets/images/logo-ghost.png') center/contain no-repeat; opacity: .06; pointer-events: none; }
.modal-head .eyebrow { color: var(--gold); margin-bottom: 8px; }
.modal-head h3 { color: #fff; font-size: clamp(1.2rem,2vw,1.4rem); margin-bottom: 6px; }
.modal-head p { color: rgba(255,255,255,.72); font-size: .9rem; margin: 0; }
.modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; color: #fff; display: grid; place-items: center; transition: .25s; }
.modal-close:hover { background: rgba(255,255,255,.25); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { padding: clamp(20px,3vw,28px) clamp(20px,3vw,32px); display: flex; flex-direction: column; gap: 16px; }

/* ── Alerts / form validation ────────────────────────────── */
.field-err { font-size: .82rem; color: #991b1b; margin-top: 5px; display: none; }
.field-err.show { display: block; }
.opt-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.opt { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; cursor: pointer; padding: 7px 14px; border: 1.5px solid var(--gray-200); border-radius: 40px; transition: .2s; user-select: none; }
.opt:has(input:checked) { border-color: var(--gold); background: rgba(214,133,10,.08); color: var(--gold); font-weight: 600; }
.opt input { display: none; }
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .92rem; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ── Blog cards ──────────────────────────────────────────── */
.cards-grid.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,28px); }
.blog-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: .35s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--gray-100); flex-shrink: 0; }
.blog-card-body { padding: clamp(16px,2.5vw,24px); flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .75rem; color: var(--gold); font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.blog-card h3 { font-size: clamp(1rem,1.8vw,1.1rem); margin: 0 0 10px; line-height: 1.4; }
.blog-card p { font-size: .9rem; color: var(--gray-500); margin: 0 0 14px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: .82rem; font-weight: 700; color: var(--gold); font-family: var(--display); margin-top: auto; display: inline-block; }

/* ── Page hero / inner hero ──────────────────────────────── */
.page-hero { background: var(--primary); color: #fff; padding: clamp(100px,13vw,150px) 0 clamp(50px,7vw,80px); position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(2rem,4vw,3.6rem); }
.page-hero .sub { color: rgba(255,255,255,.72); max-width: 600px; font-size: clamp(.95rem,1.8vw,1.05rem); margin: 0; }
.page-hero .eyebrow { color: var(--gold); }
.hero-plain { background: var(--primary); color: #fff; padding: clamp(100px,13vw,150px) 0 clamp(50px,7vw,80px); }

/* ── BTD / Flagship ──────────────────────────────────────── */
.flagship { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; }
.flagship-text h2 { font-size: clamp(1.7rem,3vw,2.6rem); }
.flagship-media img { width: 100%; border-radius: var(--radius-lg); }
.flagship-badge { display: inline-flex; gap: 8px; align-items: center; background: rgba(214,133,10,.12); border: 1px solid rgba(214,133,10,.3); padding: 8px 16px; border-radius: 40px; font-family: var(--display); font-size: .82rem; color: var(--gold); margin-bottom: 20px; }
.btd-what-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2.5vw,24px); }
.btd-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(20px,2.5vw,32px); transition: .35s var(--ease); }
.btd-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.btd-card-icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--off-white); display: grid; place-items: center; margin-bottom: 16px; }
.btd-card-icon svg { width: 24px; height: 24px; stroke: var(--purple); }
.btd-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.btd-card p { color: var(--gray-500); font-size: .92rem; margin: 0; }

/* ── Additional services table ───────────────────────────── */
.addl-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.addl-table th { font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--gray-200); }
.addl-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: .93rem; }
.addl-table tr:last-child td { border-bottom: none; }
.addl-table tr:hover td { background: var(--off-white); }
.addl-price { font-family: var(--display); font-weight: 700; color: var(--gold); }

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (scripting: none) { .reveal { opacity: 1; transform: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ── About stats grid ────────────────────────────────────── */
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px,2vw,20px); }

/* ── Admin compat ────────────────────────────────────────── */
.service-card,.testimonial-card,.team-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════ */

/* 1280px — wide desktop: expand services to 3-col already done above */
@media (max-width: 1280px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
}

/* 1024px — tablet/small desktop */
@media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid,.register-wrap,.flagship { grid-template-columns: 1fr; }
    .t-grid,.pkg-grid,.pricing-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid--2col { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),.stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px; }
    .initiative-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .flagship-media { max-width: 480px; }
    .hero-split-card { width: 100%; }
}

/* 768px — tablet portrait / mobile nav threshold */
@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; transform: none; background: #000; flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 99999; overflow: hidden; -webkit-overflow-scrolling: touch; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 32px; }
    .main-nav .nav-link { font-size: clamp(1.2rem,5vw,1.6rem); color: #fff; }
    .nav-toggle { display: flex; }
    .nav-toggle span { background: #fff; }
    header { z-index: 9999 !important; background: transparent; }
    header.nav-open { background: #000; }
    .header-cta { display: none; }
    /* Close button inside the overlay — always visible on black bg */
    .nav-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; background: none; border: 1.5px solid rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; padding: 0; touch-action: manipulation; }
    .main-nav.open .nav-close { display: flex; }
    .nav-close span { position: absolute; width: 20px; height: 2px; background: #fff; border-radius: 2px; }
    .nav-close span:nth-child(1) { transform: rotate(45deg); }
    .nav-close span:nth-child(2) { transform: rotate(-45deg); }
    .t-grid { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: repeat(2,1fr); }
    .why-grid--2col { grid-template-columns: repeat(2,1fr); }
}

/* 620px — mobile */
@media (max-width: 620px) {
    .svc-grid,.pkg-grid,.pricing-grid,.pricing-grid--2col,
    .why-grid,.why-grid--2col,.btd-what-grid,
    .form-grid,.about-stats-grid { grid-template-columns: 1fr; }

    .about-grid,.register-wrap { grid-template-columns: 1fr; }
    .about-img .accent-block { right: 0; bottom: -14px; padding: 14px 18px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; padding-bottom: 20px; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1) !important; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none !important; }

    .initiative-grid { grid-template-columns: 1fr; }
    .price-card.featured,.pkg-card.featured { transform: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col:first-child { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-news form { flex-direction: column; }
    .footer-news input { width: 100%; }
    .site-footer { padding: 44px 0 24px; }

    .hero-cta,.hero-split-text .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-cta .btn,.hero-split-text .hero-cta .btn { width: 100%; }
    .hero-split-card { border-radius: 8px 8px 0 0; }
    .hero-arrow { display: none; }

    .cta-band .btn-group { flex-direction: column; }
    .cta-band .btn-group .btn { width: 100%; }

    .blog-card { flex-direction: row; align-items: stretch; min-height: 100px; }
    .blog-card img { width: 110px; min-height: 100px; height: 100%; aspect-ratio: unset; border-radius: 0; flex-shrink: 0; }
    .blog-card-body { padding: 12px 14px; min-width: 0; }
    .blog-card h3 { font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-card p { font-size: .8rem; -webkit-line-clamp: 2; margin-bottom: 4px; }
    .blog-meta { font-size: .66rem; margin-bottom: 4px; }

    .cards-grid.blog-grid { grid-template-columns: 1fr; }
    .addl-table { display: block; overflow-x: auto; }
    .modal-body { padding: 18px; }

    .wa-float { width: 48px; height: 48px; bottom: 20px; right: 20px; }
    .wa-float svg { width: 24px; height: 24px; }
}

/* 430px — small mobile */
@media (max-width: 430px) {
    .hero-split-card { border-radius: 6px 6px 0 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .pkg-grid { grid-template-columns: 1fr; }
    .modal { max-height: 100vh; height: 100%; border-radius: 0; }
    .modal-overlay { padding: 0; align-items: flex-start; }
    .modal-head { border-radius: 0; }
}

.t-slider {
    position: relative;
}
.t-slide {
    display: none;
}
.t-slide.active {
    display: block;
    animation: tFadeIn .5s ease;
}
@keyframes tFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── BTD Events ──────────────────────────────────────────── */
.events-tabs { display: flex; gap: 0; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; width: fit-content; margin: 0 auto 40px; }
.events-tab { background: transparent; border: none; padding: 12px 32px; font-family: var(--display); font-size: .92rem; font-weight: 600; cursor: pointer; color: var(--gray-500); transition: .25s; letter-spacing: .03em; }
.events-tab.active { background: var(--primary); color: #fff; }
.events-tab:hover:not(.active) { background: var(--off-white); color: var(--ink); }
.events-panel { display: none; }
.events-panel.active { display: block; }
.events-empty { text-align: center; padding: 60px 20px; color: var(--gray-400); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.events-empty svg { stroke: var(--gray-300); }
.events-empty p { font-size: .95rem; }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,28px); }
.event-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: .35s var(--ease); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.event-poster { position: relative; aspect-ratio: 3/4; overflow: hidden; flex-shrink: 0; }
.event-poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.event-card:hover .event-poster img { transform: scale(1.04); }
.event-poster-overlay { position: absolute; top: 14px; left: 14px; }
.event-status-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-family: var(--display); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.event-status-upcoming { background: var(--gold); color: #fff; }
.event-status-ongoing  { background: #16a34a; color: #fff; }
.event-status-past     { background: var(--gray-500); color: #fff; }
.event-body { padding: clamp(18px,2.5vw,24px); flex: 1; display: flex; flex-direction: column; gap: 8px; }
.event-meta { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--gray-400); flex-wrap: wrap; }
.event-date { font-family: var(--display); font-weight: 700; color: var(--gold); }
.event-dot { color: var(--gray-300); }
.event-body h3 { font-size: clamp(1rem,1.8vw,1.2rem); margin: 0; line-height: 1.3; }
.event-location { display: flex; align-items: center; gap: 5px; font-size: .85rem; color: var(--gray-400); margin: 0; }
.event-location svg { flex-shrink: 0; }
.event-desc { font-size: .88rem; color: var(--gray-500); line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.event-cta { font-family: var(--display); font-size: .85rem; font-weight: 700; color: var(--gold); margin-top: auto; padding-top: 8px; }

@media (max-width: 1024px) { .events-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) {
    .events-grid { grid-template-columns: 1fr; }
    .events-tab { padding: 10px 20px; font-size: .85rem; }
    .event-card--poster { flex-direction: row; }
    .event-card--poster .event-poster { width: 120px; aspect-ratio: unset; min-height: 140px; }
    .event-card--poster .event-body { padding: 14px; }
}

/* ── USD price display ───────────────────────────────────── */
.price-usd { font-size: .55em; color: var(--gray-400); font-weight: 400; margin-left: 6px; font-family: var(--body); font-style: normal; }
.price-card.featured .price-usd { color: rgba(255,255,255,.5); }
.addl-usd { font-size: .82em; color: var(--gray-400); font-weight: 400; margin-left: 4px; }

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-list { max-width: 860px; margin: 0 auto 56px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; text-align: left; font-family: var(--display); font-size: clamp(.95rem,1.8vw,1.05rem); font-weight: 700; color: var(--ink); transition: color .25s; }
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; transition: transform .3s var(--ease); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s; }
.faq-a.open { max-height: 400px; padding-bottom: 20px; }
.faq-a p { color: var(--gray-500); line-height: 1.8; margin: 0; font-size: .95rem; }
.faq-cta { text-align: center; background: var(--off-white); border-radius: var(--radius-xl); padding: clamp(36px,5vw,56px); margin-top: 16px; }
.faq-cta h3 { font-size: clamp(1.4rem,2.5vw,2rem); margin-bottom: 10px; }
.faq-cta p { color: var(--gray-500); max-width: 480px; margin: 0 auto; }