/* ===================================================================
   GlobalFX — single-page site styles
   =================================================================== */

:root {
  --bg:        #0b1020;
  --bg-alt:    #0e1530;
  --surface:   #131b38;
  --surface-2: #1a2450;
  --line:      rgba(255, 255, 255, 0.08);
  --text:      #eef2ff;
  --muted:     #a9b3d0;
  --brand:     #4f8cff;
  --brand-2:   #22d3a6;
  --accent:    #f5b544;
  --up:        #22d3a6;
  --dn:        #ff6b6b;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --container:  1160px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Sora", "Inter", sans-serif; line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-sm { --pad-y: 9px; --pad-x: 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #6ea2ff);
  color: #0a1024;
  box-shadow: 0 12px 30px -12px rgba(79, 140, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(79, 140, 255, 0.85); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--brand); transform: translateY(-2px); }
.btn-sm.nav-cta { background: rgba(255,255,255,0.06); border-color: var(--line); }
.btn-sm.nav-cta:hover { border-color: var(--brand); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 16, 32, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}

/* left: logo */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); }
.logo-mark { transition: transform 0.6s var(--ease); }
.logo:hover .logo-mark { transform: rotate(180deg); }
.logo-text { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--text); letter-spacing: -0.02em; }
.logo-text span { color: var(--brand); }

/* right: nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.nav-link {
  position: relative; font-size: 0.95rem; font-weight: 500; color: var(--muted);
  padding: 6px 0; transition: color 0.2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.nav-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 10px;
  background: linear-gradient(180deg, #f6c94e, #e2a72c);
  color: #20160a; font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 10px 24px -12px rgba(230, 176, 55, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(230, 176, 55, 0.75); }

/* hamburger */
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: rgba(255,255,255,0.03); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- shared eyebrow ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem;
  font-weight: 600; color: var(--brand-2); margin-bottom: 18px;
}

/* ---------- sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.section-sub { color: var(--muted); margin-top: 14px; }

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

/* ---------- why fintech education ---------- */
.why-fintech {
  background:
    radial-gradient(130% 100% at 12% 0%, rgba(24, 44, 78, 0.85), transparent 55%),
    linear-gradient(180deg, #080d1a, var(--bg));
  border-block: 1px solid var(--line);
  text-align: center;
}
.wf-inner {
  max-width: 940px; margin-inline: auto;
  display: grid; justify-items: center; gap: 24px;
}
.wf-eyebrow {
  color: #3fb6ff; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.wf-title {
  font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; line-height: 1.08;
  text-transform: uppercase; letter-spacing: -0.01em; color: #fff;
}
.wf-sub {
  color: var(--muted); font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.35rem); max-width: 44ch;
}

.wf-badge {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 6px; padding: 15px 36px; border-radius: 999px;
  background: linear-gradient(180deg, #e9b840, #d6a026);
  color: #201700; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.07em;
  box-shadow: 0 14px 34px -14px rgba(230, 176, 55, 0.65);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.wf-badge:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(230, 176, 55, 0.8); }

.wf-cta {
  width: min(780px, 100%);
  display: flex; align-items: center; gap: 22px;
  padding: 22px 26px; border-radius: 18px; text-align: left;
  background: linear-gradient(180deg, #3ad868, #23c855);
  color: #06351d;
  box-shadow: 0 22px 54px -22px rgba(35, 200, 85, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.wf-cta:hover { transform: translateY(-3px); box-shadow: 0 30px 66px -22px rgba(35, 200, 85, 0.75); }
.wf-cta-text { flex: 1; display: grid; gap: 4px; }
.wf-cta-text strong {
  font-family: "Sora", sans-serif; font-weight: 700;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.wf-cta-sub { font-size: 0.9rem; color: #0a3b21; opacity: 0.9; }
.wf-cta-arrow {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: #0b8a3b; color: #fff; display: grid; place-items: center;
  font-size: 1.15rem; transition: transform 0.25s var(--ease);
}
.wf-cta:hover .wf-cta-arrow { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero-section {
  position: relative; overflow: hidden;
  padding-top: 150px;
  background:
    radial-gradient(70% 60% at 85% 10%, rgba(79, 140, 255, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  border-block: 1px solid var(--line);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
.hero-copy { display: grid; gap: 22px; justify-items: start; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(245, 181, 68, 0.35);
  background: rgba(245, 181, 68, 0.08);
  color: var(--accent); font-weight: 600; font-size: 0.82rem;
}
.hero-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.12;
  letter-spacing: -0.015em; color: #fff;
}
.hero-title .accent { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.btn-gold {
  background: linear-gradient(180deg, #f6c94e, #e2a72c);
  color: #20160a;
  box-shadow: 0 12px 30px -12px rgba(230, 176, 55, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(230, 176, 55, 0.75); }
.hero-note { color: var(--muted); font-size: 0.85rem; max-width: 44ch; }

.hero-video {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 15% 10%, rgba(79, 140, 255, 0.22), transparent 55%),
    linear-gradient(160deg, #16224a, #0b1226);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.hero-video-thumb {
  position: relative; aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-video-player {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}
.hero-video-thumb.is-playing .hero-video-logo,
.hero-video-thumb.is-playing .hero-play { display: none; }
.hero-video-logo { width: min(58%, 260px); opacity: 0.9; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)); }
.hero-play {
  position: absolute; inset: 0; margin: auto; width: 74px; height: 74px;
  border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(180deg, #f6c94e, #e2a72c);
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -14px rgba(230, 176, 55, 0.7);
  transition: transform 0.25s var(--ease);
}
.hero-play:hover { transform: translateY(-2px) scale(1.05); }
.hero-play-icon {
  width: 0; height: 0; margin-left: 4px;
  border-style: solid; border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #20160a;
}
.hero-video-info {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px; border-top: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.6);
}
.hero-video-info h3 { font-size: 1.05rem; color: #fff; margin-bottom: 4px; }
.hero-video-info p { color: var(--muted); font-size: 0.88rem; }
.hero-duration {
  flex-shrink: 0; padding: 5px 12px; border-radius: 8px;
  border: 1px solid var(--line); background: rgba(6, 10, 24, 0.7);
  font-size: 0.78rem; color: var(--text); font-weight: 600;
}
.hero-video-checks {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  padding: 14px 22px 20px;
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.6);
}
.hero-video-checks li { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); }
.hero-video-checks .check { color: var(--up); font-weight: 700; }

/* ---------- trust strip ---------- */
.trust-section { padding: 60px 0; border-block: 1px solid var(--line); background: var(--bg-alt); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust-item { display: flex; align-items: flex-start; gap: 16px; }
.trust-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: rgba(79, 140, 255, 0.12); border: 1px solid rgba(79, 140, 255, 0.28);
}
.trust-item h3 { font-size: 1rem; color: var(--accent); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.03em; }
.trust-item p { color: var(--muted); font-size: 0.9rem; }

/* ---------- three questions ---------- */
.questions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
.question-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), rgba(19, 27, 56, 0.5));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.question-card:hover { transform: translateY(-8px); border-color: rgba(245, 181, 68, 0.5); box-shadow: var(--shadow); }
.question-num {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(180deg, #f6c94e, #e2a72c); color: #20160a; font-weight: 700; font-size: 1rem;
  margin-bottom: 18px;
}
.question-card h3 { font-size: 1.08rem; margin-bottom: 10px; color: #fff; }
.question-card p { color: var(--muted); font-size: 0.94rem; }

.questions-closing { max-width: 720px; margin: 0 auto; text-align: center; display: grid; gap: 22px; justify-items: center; }
.questions-closing p { color: var(--text); font-size: 1.05rem; }

/* ---------- being clear about what we are ---------- */
.clarity-box {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, var(--surface), rgba(19, 27, 56, 0.5));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px 44px;
  display: grid; gap: 18px; justify-items: center;
}
.clarity-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(245, 181, 68, 0.12); border: 1px solid rgba(245, 181, 68, 0.28);
}
.clarity-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--accent); }

.about-section .heart-card h3 { color: var(--accent); }
.clarity-box p { color: var(--muted); font-size: 1rem; max-width: 60ch; }

/* ---------- shared card grid (reused by About section) ---------- */
.heart-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.heart-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), rgba(19, 27, 56, 0.5));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: left;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.heart-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(79, 140, 255, 0.16), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.heart-card:hover { transform: translateY(-8px); border-color: rgba(34, 211, 166, 0.5); box-shadow: var(--shadow); }
.heart-card:hover::before { opacity: 1; }
.heart-card-icon {
  position: relative; z-index: 1;
  width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.5rem;
  border-radius: 16px; margin-bottom: 18px;
  background: rgba(34, 211, 166, 0.12); border: 1px solid rgba(34, 211, 166, 0.28);
  transition: transform 0.35s var(--ease);
}
.heart-card:hover .heart-card-icon { transform: translateY(-3px) rotate(-6deg) scale(1.06); }
.heart-card h3 {
  position: relative; z-index: 1;
  font-size: 1.1rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.03em;
}
.heart-card p { position: relative; z-index: 1; color: var(--muted); font-size: 0.95rem; }

/* ---------- what GFA gives every member (3D flip cards) ---------- */
.member-section .section-head h2 {
  text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap;
  font-size: clamp(1.05rem, 4.3vw, 2.6rem);
}

.member-grid {
  display: flex; flex-wrap: nowrap; justify-content: center; gap: 16px;
  perspective: 1400px;
  overflow-x: auto; overflow-y: hidden;
  padding: 4px 4px 14px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
/* keep all five on one line — scroll when the row is wider than the space */
@media (max-width: 1120px) { .member-grid { justify-content: flex-start; } }

.member-card {
  flex: 1 1 200px; min-width: 186px; max-width: 244px;
  border-radius: 20px; outline: none;
  perspective: 1000px;
  scroll-snap-align: center;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.member-card:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; border-radius: 22px; }
/* 3D entrance (overrides generic .reveal) */
.member-card.reveal { opacity: 0; transform: rotateY(-26deg) translateY(36px); }
.member-card.reveal.in { opacity: 1; transform: rotateY(0) translateY(0); }

.member-inner {
  position: relative; width: 100%; min-height: 272px;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
}
.member-card:hover .member-inner,
.member-card:focus .member-inner,
.member-card:focus-within .member-inner { transform: rotateY(180deg); }

.member-face {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 20px 18px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}

/* ---- front ---- */
.member-front {
  justify-content: space-between;
  background:
    radial-gradient(130% 90% at 0% 0%, color-mix(in srgb, var(--c1) 30%, transparent), transparent 62%),
    linear-gradient(158deg, rgba(20, 28, 52, 0.92), rgba(9, 13, 26, 0.96));
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.75);
}
.member-front::after {
  content: ""; position: absolute; top: -40%; left: -30%; width: 80%; height: 160%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.10) 50%, transparent 60%);
  transform: translateX(-40%); transition: transform 0.6s var(--ease);
}
.member-card:hover .member-front::after { transform: translateX(180%); }

.member-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--c1) 65%, transparent);
  animation: member-float 5s ease-in-out infinite;
}
@keyframes member-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.member-front-foot h3 {
  font-size: 1rem; color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px;
}
.member-hint {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); opacity: 0.7;
}

/* ---- back ---- */
.member-back {
  transform: rotateY(180deg);
  justify-content: center; gap: 10px;
  background: linear-gradient(158deg, color-mix(in srgb, var(--c1) 24%, #0b1020), #0b1020);
  box-shadow: inset 0 0 40px color-mix(in srgb, var(--c1) 22%, transparent);
}
.member-back h3 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c2);
}
.member-back p { color: #e7ecff; font-size: 0.9rem; line-height: 1.5; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- insights ---------- */
.post {
  background: linear-gradient(180deg, var(--surface), rgba(19,27,56,0.5));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.post:hover { transform: translateY(-6px); border-color: rgba(34,211,166,0.5); }
.post-tag {
  align-self: flex-start; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--brand-2); background: rgba(34,211,166,0.1);
  padding: 4px 10px; border-radius: 999px;
}
.post h3 { font-size: 1.1rem; }
.post p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.post-meta { color: var(--muted); font-size: 0.78rem; opacity: 0.75; }

/* ---------- contact ---------- */
.contact-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.contact-copy > p { color: var(--muted); margin-bottom: 26px; }
.contact-copy .contact-prefer { color: var(--text); font-weight: 600; margin-bottom: 14px; font-size: 0.95rem; }
.contact-chips { display: flex; flex-wrap: wrap; gap: 14px; perspective: 800px; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px 10px 12px; border-radius: 999px;
  border: 1px solid rgba(245, 181, 68, 0.3); background: rgba(245, 181, 68, 0.06);
  color: var(--accent); font-weight: 700; font-size: 0.92rem;
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.contact-chip:hover {
  border-color: var(--accent); transform: translateY(-3px) rotateX(8deg);
  background: rgba(245, 181, 68, 0.12);
  box-shadow: 0 14px 30px -16px rgba(230, 176, 55, 0.7);
}
.contact-chip-icon {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 10px;
  font-size: 1rem;
  background: linear-gradient(135deg, #f6c94e, #e2a72c);
  box-shadow: 0 8px 18px -9px rgba(230, 176, 55, 0.8);
  animation: chip-float 2.8s ease-in-out infinite;
  transform-style: preserve-3d;
}
.contact-chip:nth-child(2) .contact-chip-icon { animation-delay: -0.9s; }
.contact-chip:nth-child(3) .contact-chip-icon { animation-delay: -1.8s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(-10deg); }
}

.talk-card {
  background: linear-gradient(180deg, var(--surface), rgba(19, 27, 56, 0.5));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: grid; gap: 16px;
  box-shadow: var(--shadow);
}
.talk-card h3 { font-size: 1.2rem; color: #fff; }
.talk-card > p { color: var(--muted); font-size: 0.95rem; }
.talk-checks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.talk-checks li { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--muted); }
.talk-checks .check { color: var(--up); font-weight: 700; }
.callback-trigger { font-size: 0.9rem; color: var(--muted); }
.callback-trigger a { color: var(--brand); font-weight: 600; }
.callback-trigger a:hover { text-decoration: underline; }

.contact-section .contact-form { margin-top: 48px; }
.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 6px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font: inherit; font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,140,255,0.2);
}
.phone-input { display: flex; }
.phone-prefix {
  flex-shrink: 0; display: grid; place-items: center; padding: 0 14px;
  border: 1px solid var(--line); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--bg); color: var(--muted); font-size: 0.92rem;
}
.phone-input input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; flex: 1; min-width: 0; }
.contact-form .btn-block { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; font-size: 0.85rem; color: var(--brand-2); min-height: 1em; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 60px 0; }
.footer-inner { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: start; text-align: left; }
.footer-logo { flex-shrink: 0; }
.logo-sm .logo-text { font-size: 1.05rem; }

.footer-content { display: grid; gap: 24px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 12px 28px; }
.footer-nav a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }

.footer-legal {
  display: grid; gap: 20px; justify-items: start;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.footer-disclaimer { display: grid; gap: 14px; }
.footer-disclaimer p { color: var(--muted); font-size: 0.82rem; line-height: 1.7; }
.footer-copy { color: var(--muted); font-size: 0.8rem; opacity: 0.8; }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--brand); color: #0a1024; font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 12px 30px -10px rgba(79,140,255,0.7);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- chat assistant widget ---------- */
.chatbot {
  position: fixed; left: 24px; bottom: 24px; z-index: 200;
  animation: chatbot-drop 0.7s var(--bounce) both;
  animation-delay: 0.6s;
}
@keyframes chatbot-drop {
  0% { opacity: 0; transform: translateY(60px) scale(0.6); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-toggle {
  position: relative; width: 62px; height: 62px; border: none; cursor: pointer;
  display: grid; place-items: center;
  border-radius: 22px 22px 22px 4px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand) 70%);
  box-shadow: 0 16px 36px -14px rgba(34, 211, 166, 0.65);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease), border-radius 0.3s var(--ease);
}
.chatbot-toggle::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(34, 211, 166, 0.55);
  animation: chatbot-ring 2.4s ease-out infinite;
}
.chatbot.opened .chatbot-toggle::before { animation: none; box-shadow: none; }
@keyframes chatbot-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 166, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(34, 211, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 166, 0); }
}
.chatbot-toggle:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 20px 44px -14px rgba(34, 211, 166, 0.8); }
.chatbot.open .chatbot-toggle { border-radius: 50%; }
.chatbot-toggle-icon {
  position: absolute; font-size: 1.5rem; color: #04140f;
  transition: opacity 0.25s var(--bounce), transform 0.35s var(--bounce);
}
.chatbot-icon-close { opacity: 0; transform: scale(0.4) rotate(-90deg); }
.chatbot.open .chatbot-icon-chat { opacity: 0; transform: scale(0.4) rotate(90deg); }
.chatbot.open .chatbot-icon-close { opacity: 1; transform: scale(1) rotate(0); }
.chatbot-badge {
  position: absolute; top: -3px; right: -3px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--dn); border: 2px solid var(--bg);
  animation: chatbot-badge-pop 0.4s var(--bounce) both, chatbot-badge-pulse 1.6s ease-in-out infinite 0.4s;
}
.chatbot-badge[hidden] { display: none; }
@keyframes chatbot-badge-pop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes chatbot-badge-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }

.chatbot-panel {
  position: absolute; left: 0; bottom: 80px;
  width: min(368px, calc(100vw - 32px)); height: min(524px, calc(100vh - 140px));
  display: flex; flex-direction: column;
  background:
    linear-gradient(180deg, rgba(19, 27, 56, 0.92), rgba(11, 16, 32, 0.96));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 22px;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(34, 211, 166, 0.08);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(24px) scale(0.9) rotate(-1deg);
  transform-origin: bottom left;
  transition: opacity 0.35s var(--ease), transform 0.45s var(--bounce), visibility 0.45s;
}
.chatbot.open .chatbot-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1) rotate(0); }

.chatbot-head {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(34, 211, 166, 0.16), rgba(79, 140, 255, 0.1));
}
.chatbot-head-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
  position: relative; width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  animation: chatbot-avatar-float 3.4s ease-in-out infinite;
}
@keyframes chatbot-avatar-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(-6deg); } }
.chatbot-avatar::after {
  content: ""; position: absolute; right: -2px; bottom: -2px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--brand-2); border: 2px solid var(--surface);
  box-shadow: 0 0 0 0 rgba(34, 211, 166, 0.6);
  animation: chatbot-ring 2.4s ease-out infinite;
}
.chatbot-head-info h4 { font-size: 0.95rem; color: #fff; }
.chatbot-head-info p { font-size: 0.76rem; color: var(--muted); }
.chatbot-close {
  border: none; background: rgba(255,255,255,0.04); color: var(--muted); font-size: 1rem; cursor: pointer;
  width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--bounce);
}
.chatbot-close:hover { background: rgba(255,255,255,0.09); color: var(--text); transform: rotate(90deg); }

.chatbot-body { flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.chatbot-body::-webkit-scrollbar { width: 6px; }
.chatbot-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

.chat-msg {
  position: relative; max-width: 88%; font-size: 0.88rem; line-height: 1.5; padding: 10px 14px; border-radius: 16px;
  animation: chat-msg-in 0.4s var(--bounce) both;
}
@keyframes chat-msg-in {
  0% { opacity: 0; transform: translateY(10px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-msg p { margin: 0 0 6px; }
.chat-msg p:last-child { margin-bottom: 0; }
.chat-msg ol, .chat-msg ul { margin: 6px 0 6px 18px; }
.chat-msg.bot {
  align-self: flex-start; background: var(--surface-2); color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg.bot::before {
  content: ""; position: absolute; left: -6px; bottom: 0; width: 12px; height: 12px;
  background: var(--surface-2);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.chat-msg.user {
  align-self: flex-end; background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: #04140f;
  border-bottom-right-radius: 4px; font-weight: 500;
}
.chat-msg.user::before {
  content: ""; position: absolute; right: -6px; bottom: 0; width: 12px; height: 12px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.chat-msg-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chat-action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  border: 1px solid rgba(245, 181, 68, 0.35); background: rgba(245, 181, 68, 0.1); color: var(--accent);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--bounce);
}
.chat-action-btn:hover { border-color: var(--accent); background: rgba(245, 181, 68, 0.18); transform: translateY(-2px) scale(1.03); }

/* ---- typing indicator ---- */
.chat-typing { align-self: flex-start; display: flex; align-items: center; gap: 4px; padding: 12px 16px; background: var(--surface-2); border-radius: 16px; border-bottom-left-radius: 4px; }
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--muted);
  animation: chat-typing-bounce 1.1s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }

.chatbot-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 12px; }
.chatbot-quick-btn {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--text);
  font-size: 0.78rem; padding: 7px 12px; border-radius: 999px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--bounce);
}
.chatbot-quick-btn:hover { border-color: var(--brand-2); background: rgba(34,211,166,0.12); transform: translateY(-2px); }

.chatbot-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.chatbot-form input {
  flex: 1; min-width: 0; border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--text);
  border-radius: 999px; padding: 10px 16px; font-size: 0.85rem; font-family: inherit;
  transition: border-color 0.2s;
}
.chatbot-form input:focus { outline: none; border-color: var(--brand-2); }
.chatbot-form button {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: #04140f; font-size: 1rem;
  display: grid; place-items: center;
  transition: transform 0.25s var(--bounce);
}
.chatbot-form button:hover { transform: translateY(-2px) rotate(-8deg) scale(1.06); }

@media (max-width: 430px) {
  .chatbot { left: 16px; bottom: 16px; }
  .chatbot-toggle { width: 56px; height: 56px; }
  .chatbot-panel { left: -8px; bottom: 72px; width: calc(100vw - 24px); height: min(500px, calc(100vh - 120px)); }
}

/* ===================================================================
   Animated logo showcase
   =================================================================== */
.logo-img {
  height: 72px; width: auto; display: block;
  filter: drop-shadow(0 4px 16px rgba(79, 140, 255, 0.4));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.logo:hover .logo-img { transform: translateY(-1px) scale(1.03); filter: drop-shadow(0 6px 22px rgba(245, 181, 68, 0.55)); }
.logo-sm .logo-img { height: clamp(76px, 13vw, 140px); }

.brand-stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(79, 140, 255, 0.20), transparent 70%),
    linear-gradient(180deg, #060912, var(--bg));
  isolation: isolate;
}

/* ---- animated backdrop ---- */
.stage-bg { position: absolute; inset: 0; z-index: -1; }
.stage-bg .grid-lines {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 45%, #000 30%, transparent 78%);
  animation: grid-drift 24s linear infinite;
}
@keyframes grid-drift { to { background-position: 46px 46px, 46px 46px; } }

.stage-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(30px); opacity: 0.55;
  animation: glow-float 12s ease-in-out infinite;
}
.stage-bg .glow-a { width: 460px; height: 460px; left: 8%; top: 18%; background: radial-gradient(circle, rgba(79, 140, 255, 0.5), transparent 65%); }
.stage-bg .glow-b { width: 420px; height: 420px; right: 6%; bottom: 12%; background: radial-gradient(circle, rgba(245, 181, 68, 0.4), transparent 65%); animation-delay: -6s; }
@keyframes glow-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -26px, 0) scale(1.08); }
}

.stage-bg .spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-2); box-shadow: 0 0 12px 2px rgba(34, 211, 166, 0.8);
  animation: spark-rise 7s linear infinite;
  opacity: 0;
}
.stage-bg .spark.s1 { left: 16%; bottom: 0; animation-delay: 0s; }
.stage-bg .spark.s2 { left: 32%; bottom: 0; animation-delay: 1.4s; background: var(--brand); box-shadow: 0 0 12px 2px rgba(79, 140, 255, 0.8); }
.stage-bg .spark.s3 { left: 54%; bottom: 0; animation-delay: 2.8s; background: var(--accent); box-shadow: 0 0 12px 2px rgba(245, 181, 68, 0.8); }
.stage-bg .spark.s4 { left: 68%; bottom: 0; animation-delay: 4.1s; }
.stage-bg .spark.s5 { left: 82%; bottom: 0; animation-delay: 5.2s; background: var(--brand); box-shadow: 0 0 12px 2px rgba(79, 140, 255, 0.8); }
.stage-bg .spark.s6 { left: 44%; bottom: 0; animation-delay: 3.3s; background: var(--accent); box-shadow: 0 0 12px 2px rgba(245, 181, 68, 0.8); }
@keyframes spark-rise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 0.9; }
  100% { transform: translateY(-88vh) scale(1); opacity: 0; }
}

.stage-bg .ticker {
  position: absolute; height: 2px; width: 42%;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.25;
}
.stage-bg .t-up { top: 30%; left: -42%; color: var(--brand-2); animation: ticker-slide 9s linear infinite; }
.stage-bg .t-dn { bottom: 26%; right: -42%; color: var(--accent); animation: ticker-slide-r 11s linear infinite; }
@keyframes ticker-slide { to { transform: translateX(340%); } }
@keyframes ticker-slide-r { to { transform: translateX(-340%); } }

/* ---- stage content ---- */
.stage-inner { position: relative; display: grid; justify-items: center; gap: 26px; text-align: center; }

.logo-orbit {
  position: absolute; top: 50%; left: 50%; translate: -50% -60%;
  width: 620px; height: 620px; pointer-events: none;
}
.logo-orbit .ring {
  position: absolute; inset: 0; margin: auto;
  border-radius: 50%; border: 1px solid rgba(79, 140, 255, 0.22);
}
.logo-orbit .ring-1 { width: 100%; height: 100%; animation: spin 26s linear infinite; border-style: dashed; }
.logo-orbit .ring-2 { width: 74%; height: 74%; border-color: rgba(245, 181, 68, 0.22); animation: spin 20s linear infinite reverse; }
.logo-orbit .ring-3 { width: 48%; height: 48%; border-color: rgba(34, 211, 166, 0.22); animation: spin 14s linear infinite; }
.logo-orbit .ring-1::before,
.logo-orbit .ring-2::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 14px 3px rgba(79, 140, 255, 0.9);
}
.logo-orbit .ring-2::before { background: var(--accent); box-shadow: 0 0 14px 3px rgba(245, 181, 68, 0.9); }

.brand-logo {
  position: relative; margin: 0; width: min(720px, 86vw);
  animation: logo-in 1.1s var(--ease) both, logo-float 6s ease-in-out 1.1s infinite;
}
.brand-logo::before {
  content: ""; position: absolute; inset: -14% -8%;
  background: radial-gradient(ellipse at 50% 55%, rgba(14, 26, 60, 0.85), rgba(14, 26, 60, 0) 70%);
  z-index: -1; filter: blur(12px);
}
.brand-logo-img {
  width: 100%; height: auto;
  filter: drop-shadow(0 24px 60px rgba(79, 140, 255, 0.4)) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
}
.brand-logo .sheen {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.5) 48%, rgba(255, 255, 255, 0) 58%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: sheen-sweep 4.5s ease-in-out 1.6s infinite;
}
@keyframes logo-in {
  0% { opacity: 0; transform: translateY(40px) scale(0.86); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes sheen-sweep {
  0% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

.brand-tagline {
  display: flex; gap: 10px 16px; flex-wrap: wrap; justify-content: center;
  font-family: "Sora", sans-serif; font-weight: 600; letter-spacing: 0.02em;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
}
.brand-tagline span { opacity: 0; animation: tag-in 0.8s var(--ease) both; }
.brand-tagline span:first-child { color: var(--text); animation-delay: 1.5s; }
.brand-tagline span:last-child { color: var(--accent); animation-delay: 1.8s; }
@keyframes tag-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  display: inline-grid; justify-items: center; gap: 8px; margin-top: 14px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
  opacity: 0; animation: tag-in 0.8s var(--ease) 2.2s both;
}
.scroll-cue .mouse {
  width: 24px; height: 38px; border: 2px solid var(--muted); border-radius: 14px;
  display: grid; justify-items: center; padding-top: 6px;
}
.scroll-cue .mouse i {
  width: 4px; height: 8px; border-radius: 2px; background: var(--brand-2);
  animation: mouse-wheel 1.6s ease-in-out infinite;
}
.scroll-cue:hover { color: var(--text); }
@keyframes mouse-wheel {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- knowledgebase / FAQ ---------- */
.faq-section .section-head h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}
.faq-section .section-sub {
  font-size: 0.82rem;
}
@media (min-width: 700px) {
  .faq-section .section-head { max-width: 760px; }
}
@media (min-width: 920px) {
  .faq-section .section-sub { white-space: nowrap; }
}
.faq-group-title {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: left;
  font-size: 1.15rem;
  color: var(--brand-2);
  letter-spacing: -0.01em;
}
.faq-list + .faq-group-title { margin-top: 56px; }
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] { border-color: rgba(79, 140, 255, 0.45); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  position: relative;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brand-2);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { padding-bottom: 14px; }
.faq-item summary:hover { color: #fff; }
.faq-body {
  padding: 16px 22px 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.faq-body p { margin: 0; }
.faq-body p + p,
.faq-body p + ul,
.faq-body p + ol,
.faq-body ul + p,
.faq-body ol + p { margin-top: 12px; }
.faq-body ul,
.faq-body ol { margin: 0; padding-left: 20px; }
.faq-body ul { list-style: disc; }
.faq-body ol { list-style: decimal; }
.faq-body li { margin: 6px 0; }
.faq-body li strong { color: var(--text); }
.faq-body a { color: var(--brand); }
.faq-body a:hover { text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .grid-3, .heart-grid, .trust-grid, .questions-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner, .hero-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 28px; }
  .footer-nav { justify-content: center; }
  .footer-legal { justify-items: center; text-align: center; }
  .hero-copy { justify-items: start; text-align: left; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 92px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,16,32,0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 24px;
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .nav-link { display: block; padding: 15px 0; font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 16px; text-align: center; }

  .logo-orbit { width: 460px; height: 460px; }
}

@media (max-width: 620px) {
  .section { padding: 72px 0; }

  /* compact fixed header */
  .header-inner { height: 68px; }
  .logo-img { height: 46px; }
  html { scroll-padding-top: 80px; }
  .main-nav { inset: 68px 0 auto 0; }

  .hero-section { padding-top: 104px; }
  .brand-stage { min-height: 88vh; padding: 104px 18px 64px; }
  .hero-inner { gap: 32px; }
  .logo-orbit { width: 320px; height: 320px; }
  .grid-3, .heart-grid, .trust-grid, .questions-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: minmax(0, 1fr); }
  .wf-cta { flex-direction: column; text-align: center; }
  .wf-cta-text { justify-items: center; }

  .to-top { right: 16px; bottom: 16px; width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 430px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 56px 0; }
  .hero-section { padding-top: 96px; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.3rem); }

  .heart-card { padding: 24px 20px; }

  .clarity-box { padding: 34px 24px; }

  .faq-group-title { font-size: 1.05rem; }
  .faq-item summary { padding: 16px 42px 16px 16px; font-size: 0.95rem; }
  .faq-item summary::after { right: 16px; }
  .faq-item[open] summary { padding-bottom: 12px; }
  .faq-body { padding: 14px 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .member-card.reveal { opacity: 1 !important; transform: none !important; }
  .brand-logo, .brand-tagline span, .scroll-cue { opacity: 1 !important; transform: none !important; filter: none !important; }
  .stage-bg .spark { opacity: 0 !important; }
  html { scroll-behavior: auto; }
}
