:root {
  --navy: #0B1330;
  --navy-2: #101B45;
  --navy-3: #17245C;
  --ink: #14152B;
  --ink-soft: #5B5F72;
  --gold: #25D366;
  --gold-light: #6FEFA0;
  --gold-dark: #128C7E;
  --bg: #FAFAF8;
  --bg-alt: #F3F1EC;
  --line: #E7E5DE;
  --radius: 18px;
  --shadow: 0 20px 50px -20px rgba(11, 19, 48, 0.35);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-snap-type: y proximity; }

body {
  margin: 0;
  font-family: 'Rubik', 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

a { text-decoration: none; color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.25; }
p { margin: 0; }

.gold-text { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #06331F;
  box-shadow: 0 14px 28px -12px rgba(37, 211, 102, 0.55);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-small { padding: 11px 24px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 19, 48, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 4px;
  color: #fff;
  direction: ltr;
}
.logo-text b { font-weight: 700; color: var(--gold-light); }

.logo-emblem { width: 34px; height: 34px; flex-shrink: 0; }

.main-nav {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}
.main-nav a:hover { color: #fff; }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,0.16); }

.mobile-nav-panel {
  display: none;
  flex-direction: column;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-panel.open { display: flex; }
.mobile-nav-panel a {
  padding: 16px 24px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding-top: 30px;
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-margin-top: 78px;
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 750px;
  height: 750px;
  z-index: 1;
  opacity: 0.09;
  pointer-events: none;
}
.hero-bg-logo svg { width: 100%; height: 100%; display: block; }

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 0 60px;
}

.eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(111,239,160,0.4);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 22px;
}

.eyebrow-dark {
  background: var(--bg-alt);
  border-color: var(--line);
  color: var(--gold-dark);
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.hero-sub {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero .eyebrow {
  background: var(--bg-alt);
  border-color: var(--line);
  color: var(--gold-dark);
}

.hero .btn-ghost {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero .btn-ghost:hover { background: var(--line); }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Hero floating stat cards ---------- */
.hero-float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: hfc-float 6s ease-in-out infinite;
  direction: rtl;
}

.hfc-icon { font-size: 22px; line-height: 1; }
.hfc-value { font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.hfc-value small { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.hfc-label { font-size: 11.5px; color: var(--ink-soft); font-weight: 500; white-space: nowrap; }

.hfc-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 26px;
  height: 28px;
  flex-shrink: 0;
}
.hfc-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  min-height: 4px;
}

.hfc-chip {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.hfc-chip-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.hfc-1 { top: 20%; left: 4%; animation-delay: 0s; }
.hfc-2 { top: 14%; right: 5%; animation-delay: 1.5s; }
.hfc-3 { bottom: 16%; left: 8%; animation-delay: 3s; }
.hfc-4 { bottom: 20%; right: 4%; animation-delay: 4.2s; }

@keyframes hfc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-float-card { display: none; }
}

/* ---------- Hero channel badges ---------- */
.hero-channel-badge {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.45);
  animation: hfc-float 6s ease-in-out infinite;
}
.cb-ai-text {
  font-family: 'Marcellus', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.cb-1 { top: 8%; left: 20%; animation-delay: 0.6s; }
.cb-2 { top: 6%; right: 22%; animation-delay: 2s; }
.cb-3 { top: 46%; left: 1%; animation-delay: 3.4s; }
.cb-4 { top: 44%; right: 1.5%; animation-delay: 1.2s; }
.cb-5 { bottom: 5%; left: 22%; animation-delay: 4.8s; }

@media (max-width: 1300px) {
  .hero-channel-badge { display: none; }
}

/* ---------- Feature band (overlapping card) ---------- */
.feature-band {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}
.feature-band-inner {
  background: linear-gradient(135deg, #fff, var(--bg-alt));
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.feature-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.feature-icon { font-size: 19px; }

.mid-cta-band { padding: 20px 0; }
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  text-align: center;
}
.mid-cta-inner p {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* ---------- Stats band ---------- */
.stats-band {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  margin-bottom: 40px;
}
.stats-band-inner {
  background: linear-gradient(135deg, #fff, var(--bg-alt));
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 34px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
}
.stat-label {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- About ---------- */
.about { position: relative; overflow: hidden; }

.about-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
}
.about-flex > * { flex: 1 1 0; min-width: 0; }
.about-text-col { text-align: right; }

.about-bg-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-88%, -50%);
  width: 480px;
  height: 480px;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.about-bg-emblem svg { width: 100%; height: 100%; display: block; }

.brand-title {
  font-family: 'Marcellus', serif;
  font-size: 44px;
  margin-top: 6px;
  color: var(--ink);
}

/* ---------- Vision (rotating globe) ---------- */
.vision-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 600px at 50% 40%, #14224f 0%, var(--navy) 65%);
  color: #fff;
  text-align: center;
}

.vision-globe {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.vision-globe svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  transform: translate(-50%, -50%);
  opacity: 0.55;
}
.vision-globe-spin {
  transform-origin: 200px 200px;
  animation: vision-spin 50s linear infinite;
}
@keyframes vision-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vision-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px 2px rgba(111,239,160,0.6);
}

.vision-inner { position: relative; z-index: 2; max-width: 780px; }
.vision-quote {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  line-height: 1.5;
  color: var(--gold-light);
  margin-top: 16px;
}
.vision-sub {
  margin-top: 22px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
}
.vision-section .eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(111,239,160,0.4); }

.about-text {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ---------- Dark section w/ light cards ---------- */
.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-margin-top: 78px;
}

.section-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  z-index: 1;
  opacity: 0.09;
  pointer-events: none;
}
.section-bg-logo svg { width: 100%; height: 100%; display: block; }
.section-dark {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.section-dark .section-title { color: #fff; }

.section-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}
.section-title-dark { color: var(--ink); }

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

.card-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.light-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}

.light-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 10px; }
.light-card p { color: var(--ink-soft); font-size: 14.5px; min-height: 66px; }

.pill-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #06331F;
  font-weight: 600;
  font-size: 13.5px;
}

/* Benefits grid */
.benefit-pillars {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.benefit-pillar {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 28px;
}
.pillar-label {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.benefit-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefits-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid var(--line);
}
.benefit-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.benefit-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Showcase (example chat mockups) ---------- */
.showcase-track-wrap {
  margin-top: 46px;
  overflow: hidden;
  width: 100%;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.showcase-track {
  display: flex;
  direction: rtl;
  width: max-content;
  animation: showcase-scroll 55s linear infinite;
}
@keyframes showcase-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

.phone-card { text-align: center; flex-shrink: 0; margin-inline-end: 0; }

.phone-mockup {
  width: 250px;
  background: #0a0a0a;
  border-radius: 34px;
  padding: 8px;
  box-shadow: var(--shadow);
}

.phone-screen {
  background-color: #FAF6EF;
  background-image: url("chat-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 460px;
}

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-battery { width: 20px; height: 10px; }
.icon-wifi { width: 15px; height: 11px; }
.icon-signal { width: 13px; height: 9px; }
.icon-bell { width: 12px; height: 12px; }
.hdr-icon { width: 21px; height: 21px; }
.pib-icon-plus { width: 17px; height: 17px; }
.pib-icon-sticker { width: 15px; height: 15px; }
.pib-icon-camera { width: 18px; height: 18px; }
.pib-icon-mic { width: 12px; height: 19px; }

.phone-status-bar {
  flex-shrink: 0;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  direction: ltr;
}
.psb-left, .psb-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-status-bar .psb-right { direction: ltr; }

.phone-header {
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.phone-header-icons {
  display: flex;
  gap: 16px;
  font-size: 15px;
  flex-shrink: 0;
}

.phone-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.phone-back {
  font-size: 19px;
  line-height: 1;
  color: #222;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  filter: blur(3px) saturate(1.1);
}
.phone-avatar-1 {
  background: conic-gradient(from 200deg, #d9a066, #8a5a3b, #e0b98a, #5c3f28, #d9a066);
}
.phone-avatar-2 {
  background: conic-gradient(from 60deg, #6d7f99, #3c4a5e, #9db3c9, #2a333f, #6d7f99);
  filter: blur(3.4px) saturate(1.05);
}
.phone-avatar-3 {
  background: conic-gradient(from 320deg, #c98a94, #7a3f47, #e0aeb3, #4a262b, #c98a94);
  filter: blur(2.6px) saturate(1.15);
}
.phone-avatar-4 {
  background: conic-gradient(from 140deg, #8fae8a, #3d5a3a, #b8d4b0, #263a24, #8fae8a);
  filter: blur(3px) saturate(1.1);
}
.phone-avatar-5 {
  background: conic-gradient(from 30deg, #b09bc9, #5a4470, #d3c2e6, #372a47, #b09bc9);
  filter: blur(3.2px) saturate(1.05);
}
.phone-avatar-6 {
  background: conic-gradient(from 250deg, #d9b366, #8a6a2e, #e8cf99, #5c4519, #d9b366);
  filter: blur(2.8px) saturate(1.1);
}
.phone-avatar-7 {
  background: conic-gradient(from 100deg, #7fa8ac, #33565a, #a9cdd0, #1e3436, #7fa8ac);
  filter: blur(3.4px) saturate(1.05);
}
.phone-avatar-8 {
  background: conic-gradient(from 190deg, #c98080, #7a3535, #e0aaaa, #4a2020, #c98080);
  filter: blur(2.5px) saturate(1.15);
}

.phone-header-text { overflow: hidden; text-align: right; }

.phone-name-blur {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  filter: blur(3.5px);
  opacity: 0.95;
}
.phone-card:nth-child(2) .phone-name-blur { filter: blur(4.2px); font-size: 13.5px; }
.phone-card:nth-child(3) .phone-name-blur { filter: blur(2.9px); font-size: 12.5px; }

.phone-status-text {
  display: block;
  color: rgba(0,0,0,0.45);
  font-size: 10px;
  white-space: nowrap;
  filter: blur(1.5px);
}

.phone-body {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  overflow: hidden;
}

.msg {
  max-width: 82%;
  padding: 6px 9px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

.msg-time {
  display: inline-block;
  font-size: 9.5px;
  color: rgba(0,0,0,0.4);
  direction: ltr;
  margin-inline-start: 6px;
  vertical-align: bottom;
}
.msg-out .msg-time { color: rgba(0,60,0,0.45); }
.msg-out .msg-time::before { content: '✓✓ '; color: #53bdeb; }

.msg-in {
  margin-inline-end: auto;
  background: #fff;
  border-bottom-right-radius: 2px;
}

.msg-out {
  margin-inline-start: auto;
  background: #DCF8C6;
  border-bottom-left-radius: 2px;
}

.phone-input-bar {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}
.pib-plus { color: #555; flex-shrink: 0; }
.pib-field {
  flex: 1;
  height: 26px;
  background: #F0F0F0;
  border-radius: 14px;
  position: relative;
}
.pib-field-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.4);
}
.pib-camera { color: #555; flex-shrink: 0; }
.pib-mic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-caption {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.section-dark .phone-caption { color: rgba(255,255,255,0.75); }

/* ---------- Info list (bold lead-in bullets) ---------- */
.info-list {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.info-list li:last-child { border-bottom: none; }
.info-list strong { color: #fff; }
.section:not(.section-dark) .info-list li { border-bottom-color: var(--line); color: var(--ink-soft); }
.section:not(.section-dark) .info-list strong { color: var(--ink); }

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: right;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  font-size: 20px;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-margin-top: 78px;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.25), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band-inner h2 { font-size: 30px; font-weight: 800; }
.cta-band-inner p { margin-top: 12px; font-size: 16px; opacity: 0.75; }
.cta-band-inner .btn { margin-top: 28px; }

/* Contact */
.contact-inner { max-width: 560px; text-align: center; }
.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--gold); }
.contact-form .btn { align-self: flex-start; }

/* Contact card (styled contact form used on about.html) */
.contact-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 44px 40px;
  text-align: center;
}
.contact-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-dark);
}
.contact-card .section-sub { margin-top: 8px; }
.contact-card .contact-form { margin-top: 30px; text-align: right; }
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.contact-card .contact-form input,
.contact-card .contact-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  width: 100%;
}
.contact-card .contact-form .btn {
  align-self: stretch;
  text-align: center;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.site-footer .logo { font-size: 20px; }

/* ---------- WhatsApp header button ---------- */
.whatsapp-header-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2BE577, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 22px -10px rgba(18, 140, 126, 0.6);
  transition: transform 0.15s ease;
}
.whatsapp-header-btn:hover { transform: translateY(-1px); }
.whatsapp-header-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(43, 229, 119, 0.55);
  animation: fab-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Accessibility widget ---------- */
.a11y-widget {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 200;
}
.a11y-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #1E5FE0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(30, 95, 224, 0.6);
  transition: transform 0.15s ease;
}
.a11y-toggle:hover { transform: scale(1.06); }

.a11y-panel {
  position: absolute;
  bottom: 66px;
  left: 0;
  width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.a11y-panel.open { display: flex; }
.a11y-panel h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--ink);
}
.a11y-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink);
  font-family: inherit;
  font-size: 13.5px;
  cursor: pointer;
  text-align: right;
}
.a11y-panel button:hover { background: #EDEBE3; }
.a11y-panel button span {
  font-weight: 700;
  color: var(--gold-dark);
}
.a11y-panel .a11y-reset {
  margin-top: 4px;
  background: transparent;
  border-style: dashed;
  justify-content: center;
  color: var(--ink-soft);
}

@media (max-width: 520px) {
  .a11y-widget { bottom: 18px; left: 18px; }
  .a11y-panel { width: 210px; }
}

/* Accessibility states applied to <html> */
html.a11y-contrast {
  filter: contrast(1.25) saturate(1.1);
}
html.a11y-contrast body {
  background: #000 !important;
  color: #fff !important;
}
html.a11y-contrast .light-card,
html.a11y-contrast .benefit-card,
html.a11y-contrast .stats-band-inner,
html.a11y-contrast .feature-band-inner,
html.a11y-contrast .contact-form input,
html.a11y-contrast .contact-form textarea {
  background: #111 !important;
  color: #fff !important;
  border-color: #fff !important;
}
html.a11y-contrast .light-card p,
html.a11y-contrast .benefit-card p,
html.a11y-contrast .section-sub,
html.a11y-contrast .stat-label,
html.a11y-contrast .feature-chip {
  color: #fff !important;
}

html.a11y-underline a { text-decoration: underline !important; }

html.a11y-stop-motion * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-pillars { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .feature-band { margin-top: -20px; }
  .about-bg-emblem { width: 320px; height: 320px; }
  .about-flex { flex-direction: column-reverse; gap: 40px; }
  .about-text-col { text-align: center; }
  .stats-band-inner { justify-content: space-between; }
  .stat-item { flex: 1 1 40%; }
}

@media (max-width: 520px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-pillar-grid { grid-template-columns: 1fr; }
  .feature-band-inner { flex-direction: column; align-items: flex-start; }
  .phone-mockup { width: 210px; }
  .phone-screen { height: 340px; }
}

/* ---------- Contact form success modal ---------- */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 48, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.contact-modal-overlay.open {
  display: flex;
}

.contact-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.contact-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-modal h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--navy);
}

.contact-modal p {
  margin: 0 0 24px;
  color: var(--ink-soft);
}
