/* ================================================================
   Khanak — styles.css
   Theme: Light, airy, professional fintech aesthetic
   Palette: Crisp white · Deep teal (#0d6e5c) · Warm coral (#e8613a)
   Fonts: Plus Jakarta Sans (display) · DM Sans (body)
================================================================ */

/* ── RESET & VARIABLES ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --off-white2:  #eef0f4;
  --border:      #e2e5ec;
  --border-soft: #edf0f5;

  --teal:        #0d6e5c;      /* trust, money, calm */
  --teal-mid:    #108a72;
  --teal-light:  #e6f4f1;
  --teal-glow:   rgba(13,110,92,0.1);

  --coral:       #e8613a;      /* energy, CTA */
  --coral-light: #fdf0eb;
  --coral-glow:  rgba(232,97,58,0.12);

  --amber:       #f0a500;
  --amber-light: #fff8e6;

  --text:        #0f1923;
  --text-mid:    #3d4d5c;
  --text-muted:  #6b7d8f;
  --text-light:  #96a3b0;

  --success:     #1a9e6b;
  --error:       #d94040;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Shape */
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.84, 0.44, 1);

  /* Shadow */
  --shadow-sm:  0 1px 4px rgba(15,25,35,0.06), 0 2px 8px rgba(15,25,35,0.04);
  --shadow-md:  0 4px 16px rgba(15,25,35,0.09), 0 2px 6px rgba(15,25,35,0.05);
  --shadow-lg:  0 12px 40px rgba(15,25,35,0.12), 0 4px 12px rgba(15,25,35,0.06);
  --shadow-xl:  0 24px 64px rgba(15,25,35,0.14);
}

/* ── BASE ─────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: 0.75; }
a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }

em { font-style: italic; color: var(--teal); }
strong { font-weight: 600; }
p { color: var(--text-muted); }

/* ── UTILITIES ────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.section-header { text-align: center; max-width: 580px; margin: 0 auto 60px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

/* ── ANIMATE ──────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="400"] { transition-delay: 0.40s; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 0.93rem; font-weight: 700;
  padding: 13px 26px; border-radius: 99px; border: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, opacity .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,110,92,0.28);
}
.btn-primary:hover { background: var(--teal-mid); box-shadow: 0 8px 28px rgba(13,110,92,0.38); opacity: 1; }

.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal-light); }

.btn-nav {
  background: var(--teal-light); color: var(--teal);
  padding: 9px 20px; font-size: 0.85rem;
}
.btn-nav:hover { background: var(--teal); color: #fff; }

.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ── LOGO MARK ────────────────────────────────────────────────── */
.logo-mark {
  width: 34px; height: 34px;
  background: var(--teal);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark span { color: #fff; font-family: var(--font-display); font-size: 1rem; font-weight: 800; }
.logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff !important;
  border-bottom: 1.5px solid #e2e5ec;
  box-shadow: 0 1px 8px rgba(15,25,35,0.07);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(15,25,35,0.11); }

.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; text-decoration: none; }

.nav-links { display: flex; gap: 28px; list-style: none; margin-left: auto; }
.nav-links a {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: #1a2a38 !important; transition: color .2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--teal) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; padding: 20px 24px 24px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin-bottom: 16px; }
.mobile-menu li { border-bottom: 1px solid var(--border-soft); }
.mobile-menu a { display: block; padding: 13px 0; font-family: var(--font-display); font-weight: 600; color: var(--text-mid); }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 96px;
  background: linear-gradient(160deg, #f0faf8 0%, #ffffff 50%, #fff8f5 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hb-blob {
  position: absolute; border-radius: 50%; filter: blur(64px);
}
.hb-1 {
  width: 480px; height: 480px; top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(13,110,92,0.08) 0%, transparent 70%);
}
.hb-2 {
  width: 400px; height: 400px; bottom: -100px; right: -60px;
  background: radial-gradient(circle, rgba(232,97,58,0.07) 0%, transparent 70%);
}
.hb-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,110,92,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black, transparent);
}

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  color: var(--teal); background: var(--teal-light);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 22px;
}
.pill-live {
  width: 7px; height: 7px; background: var(--success); border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 { margin-bottom: 18px; max-width: 520px; }
.hero-sub { font-size: 1.08rem; line-height: 1.78; color: var(--text-muted); max-width: 460px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.stat-item span { font-size: 0.78rem; color: var(--text-light); }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Phone */
.hero-visual { display: flex; justify-content: center; }
.phone-scene { position: relative; }

.phone-frame {
  position: relative; width: 280px; height: 580px;
  background: linear-gradient(145deg, #ffffff, #f4f6f9);
  border-radius: 42px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.8);
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: var(--text); border-radius: 11px; z-index: 2;
}
.phone-screen {
  position: absolute; inset: 0; border-radius: 40px; overflow: hidden;
  background: var(--off-white);
  display: flex; align-items: flex-start;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

/* Mock UI */
.mock-ui {
  width: 100%; padding: 48px 16px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.mu-header {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text);
}
.mu-header .mu-logo {
  width: 28px; height: 28px; background: var(--teal); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: #fff;
}
.mu-badge {
  margin-left: auto; background: var(--success); color: #fff;
  font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 99px;
}
.mu-alert {
  display: flex; align-items: center; gap: 10px;
  background: var(--teal); border-radius: 12px; padding: 12px;
  animation: alert-pulse 2.5s ease-in-out infinite;
}
@keyframes alert-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(13,110,92,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(13,110,92,0); }
}
.mua-icon { font-size: 1.3rem; }
.mua-body { flex: 1; }
.mua-body strong { display: block; font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: #fff; }
.mua-body span { font-size: 0.72rem; color: rgba(255,255,255,0.75); }
.mua-check { color: #fff; font-weight: 700; font-size: 1rem; }

.mu-divider { height: 1px; background: var(--border); margin: 2px 0; }
.mu-section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); padding: 0 2px; }

.mu-txn { display: flex; justify-content: space-between; align-items: center; padding: 6px 4px; border-bottom: 1px solid var(--border-soft); }
.txn-amt { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text); }
.txn-meta { font-size: 0.68rem; color: var(--text-light); }

.mu-total {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--teal-light); border-radius: 8px; padding: 8px 10px; margin-top: 4px;
}
.mu-total span { font-size: 0.75rem; color: var(--teal); font-weight: 600; }
.mu-total strong { font-family: var(--font-display); font-size: 1rem; color: var(--teal); }

/* Floating tags */
.float-tag {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-size: 0.8rem;
  white-space: nowrap;
}
.float-tag div { display: flex; flex-direction: column; }
.float-tag strong { font-weight: 700; color: var(--text); font-size: 0.82rem; }
.float-tag small { color: var(--text-light); font-size: 0.7rem; font-weight: 400; }
.ft-top { top: 60px; right: -40px; animation: float-y 3s ease-in-out infinite; }
.ft-bottom { bottom: 80px; left: -40px; animation: float-y 3s ease-in-out infinite 1.5s; }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.phone-shadow {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(13,110,92,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--teal);
  padding: 0;
}
.ts-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 16px 24px;
}
.ts-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 0.83rem; font-weight: 600;
  color: rgba(255,255,255,0.92); padding: 6px 20px;
}
.ts-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* ── TRUST SECTION ────────────────────────────────────────────── */
.trust-section { background: var(--off-white); }

.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.trust-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tc-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.tc-green { background: var(--teal-light); }
.tc-blue  { background: #e8f0fe; }
.tc-coral { background: var(--coral-light); }
.tc-amber { background: var(--amber-light); }

.trust-card h3 { font-size: 1rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.88rem; line-height: 1.65; }

/* ── FEATURES ─────────────────────────────────────────────────── */
.features { background: var(--white); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  border-radius: var(--radius-xl); padding: 30px;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s;
  overflow: hidden; position: relative;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Individual tile colour themes */
.bento-card:nth-child(1) { /* Voice Alerts – teal */
  background: linear-gradient(135deg, #e6f7f3 0%, #d0efe8 100%);
  border-color: #b8e3d8;
}
.bento-card:nth-child(1) h3 { color: #0a5244; }
.bento-card:nth-child(1) p  { color: #2a7060; }

.bento-card:nth-child(2) { /* 12 Languages – indigo */
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border-color: #c7d2fe;
}
.bento-card:nth-child(2) h3 { color: #312e81; }
.bento-card:nth-child(2) p  { color: #4338ca; }

.bento-card:nth-child(3) { /* Transaction History – amber */
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
}
.bento-card:nth-child(3) h3 { color: #78350f; }
.bento-card:nth-child(3) p  { color: #92400e; }

.bento-card:nth-child(4) { /* No Hardware – teal solid hero */
  background: linear-gradient(135deg, #0d6e5c 0%, #0a5244 100%);
  border-color: transparent;
}
.bento-card:nth-child(4) h3 { color: #fff; }
.bento-card:nth-child(4) p  { color: rgba(255,255,255,0.82); }

.bento-card:nth-child(5) { /* Team Alerts – rose */
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border-color: #fecdd3;
}
.bento-card:nth-child(5) h3 { color: #881337; }
.bento-card:nth-child(5) p  { color: #9f1239; }

.bento-card:nth-child(6) { /* Offline – sky */
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #bae6fd;
}
.bento-card:nth-child(6) h3 { color: #0c4a6e; }
.bento-card:nth-child(6) p  { color: #075985; }

.bento-wide {
  grid-column: span 2;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.bc-text { flex: 1; }

.bc-icon { font-size: 2rem; margin-bottom: 14px; }
.bento-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.bento-card p { font-size: 0.88rem; line-height: 1.65; }

.bento-wave {
  display: flex; align-items: flex-end; gap: 5px; height: 64px;
  flex-shrink: 0;
}
.wv {
  width: 7px; background: rgba(13,110,92,0.55); border-radius: 4px;
  animation: wave-anim 1.2s ease-in-out infinite;
}
.wv:nth-child(1)  { height: 20px; animation-delay: 0s; }
.wv:nth-child(2)  { height: 36px; animation-delay: .1s; }
.wv:nth-child(3)  { height: 52px; animation-delay: .2s; }
.wv:nth-child(4)  { height: 44px; animation-delay: .3s; }
.wv:nth-child(5)  { height: 64px; animation-delay: .4s; }
.wv:nth-child(6)  { height: 50px; animation-delay: .5s; }
.wv:nth-child(7)  { height: 40px; animation-delay: .4s; }
.wv:nth-child(8)  { height: 30px; animation-delay: .3s; }
.wv:nth-child(9)  { height: 48px; animation-delay: .2s; }
.wv:nth-child(10) { height: 36px; animation-delay: .1s; }
.wv:nth-child(11) { height: 22px; animation-delay: 0s; }

@keyframes wave-anim {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.lang-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.lang-chips span {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(99,102,241,0.2);
  border-radius: 6px; padding: 3px 9px;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; color: #3730a3;
}

/* No Hardware tile compare row */
.compare-row {
  display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap;
}
.cmp { display: flex; flex-direction: column; gap: 3px; }
.cmp span { font-size: 0.78rem; font-family: var(--font-display); }
.cmp strong { font-family: var(--font-display); font-size: 0.85rem; }
.cmp-bad  { color: rgba(255,255,255,0.65); }
.cmp-bad strong { color: rgba(255,255,255,0.5); text-decoration: line-through; }
.cmp-good strong { color: #fff; font-weight: 800; }
.cmp-good span { color: rgba(255,255,255,0.85); }
.cmp-vs { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-it-works { background: var(--off-white); }

.steps { max-width: 680px; margin: 0 auto 40px; }

.step { display: flex; gap: 20px; margin-bottom: 0; }

.step-num-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(13,110,92,0.25);
  flex-shrink: 0; z-index: 1;
}
.step-last { background: var(--coral); box-shadow: 0 4px 16px rgba(232,97,58,0.25); }

.step-connector { flex: 1; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--border)); margin: 6px 0; min-height: 60px; }

.step-content { padding-bottom: 40px; padding-top: 12px; }
.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 0.92rem; }
.step-content em { font-style: italic; color: var(--teal); font-weight: 500; }

.hiw-note {
  max-width: 620px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius); padding: 16px 20px;
}
.note-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.hiw-note p { font-size: 0.9rem; line-height: 1.65; }

/* ── SCREENSHOTS ──────────────────────────────────────────────── */
.screenshots { background: var(--white); }

.ss-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 14px;
}
.ss-item {
  cursor: default;
  transition: transform .3s var(--ease);
}
.ss-item:hover { transform: translateY(-6px); }

.ss-frame {
  background: var(--off-white2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 9/18;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.ss-item:hover .ss-frame { box-shadow: var(--shadow-lg); }

.ss-frame img { width: 100%; height: 100%; object-fit: cover; }

.ss-ph {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--text-light);
}
.ss-empty .ss-ph { display: flex; }
.ss-empty img { display: none; }

figcaption {
  padding: 10px 4px 0;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); text-align: center;
}

/* ── VIDEO ────────────────────────────────────────────────────── */
.video-section { background: var(--off-white); }

.video-wrap {
  max-width: 780px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.video-wrap iframe { display: block; }

.video-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  height: 380px; background: var(--white); cursor: pointer;
  transition: background .2s;
}
.video-ph:hover { background: var(--off-white); }

.vph-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(13,110,92,0.3);
  transition: transform .2s var(--ease);
}
.video-ph:hover .vph-play { transform: scale(1.08); }
.video-ph p { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.05rem; }
.video-ph span { font-size: 0.82rem; color: var(--text-light); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { background: var(--white); }

.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: flex-start; }

.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar h2 { margin-top: 12px; margin-bottom: 12px; }
.faq-sidebar p { font-size: 0.95rem; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; }

.faq-chevron {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--off-white2); border: 1.5px solid var(--border);
  flex-shrink: 0; position: relative;
  transition: background .2s, transform .3s var(--ease);
}
.faq-chevron::before, .faq-chevron::after {
  content: ''; position: absolute; background: var(--text-mid);
  border-radius: 2px; transition: background .2s;
}
.faq-chevron::before { width: 8px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-chevron::after  { width: 1.5px; height: 8px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s var(--ease), background .2s; }
.faq-q[aria-expanded="true"] .faq-chevron { background: var(--teal-light); border-color: var(--teal); }
.faq-q[aria-expanded="true"] .faq-chevron::before,
.faq-q[aria-expanded="true"] .faq-chevron::after { background: var(--teal); }
.faq-q[aria-expanded="true"] .faq-chevron::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-a { padding: 0 0 18px; }
.faq-a p { font-size: 0.9rem; line-height: 1.75; }
.faq-a a { color: var(--teal); text-decoration: underline; }

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing { background: var(--off-white); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto 28px;
}

.plan-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.plan-featured {
  background: var(--teal); border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(13,110,92,0.28);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-5px); }

.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px;
  white-space: nowrap;
}

.plan-header { margin-bottom: 24px; }

.plan-icon { font-size: 1.8rem; margin-bottom: 12px; }

.plan-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.plan-featured .plan-name { color: #fff; }

.plan-price {
  display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px;
}
.price-currency { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--teal); }
.price-amount  { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.price-period  { font-size: 0.85rem; color: var(--text-muted); margin-left: 2px; }

.plan-featured .price-currency,
.plan-featured .price-amount { color: #fff; }
.plan-featured .price-period { color: rgba(255,255,255,0.65); }

.plan-tagline { font-size: 0.83rem; color: var(--text-muted); }
.plan-featured .plan-tagline { color: rgba(255,255,255,0.72); }

.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.plan-featured .plan-features li { color: rgba(255,255,255,0.88); }
.plan-features .pf-disabled { color: var(--text-light); }
.plan-featured .plan-features .pf-disabled { color: rgba(255,255,255,0.35); }

.pf-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.plan-featured .pf-check { background: rgba(255,255,255,0.2); color: #fff; }
.pf-disabled .pf-check { background: var(--off-white2); color: var(--text-light); }

.plan-btn { width: 100%; justify-content: center; margin-top: auto; }
.plan-featured .btn-primary { background: #fff; color: var(--teal); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.plan-featured .btn-primary:hover { background: var(--off-white); }
.plan-featured .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.plan-featured .btn-outline:hover { background: rgba(255,255,255,0.1); }

.pricing-note {
  text-align: center; font-size: 0.85rem; color: var(--text-light);
}
.pricing-note a { color: var(--teal); text-decoration: underline; }

/* ── DOWNLOAD CTA ─────────────────────────────────────────────── */
.download-cta { background: var(--off-white); }

.cta-card {
  background: var(--teal); border-radius: var(--radius-xl);
  padding: 72px 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 48px; overflow: hidden; position: relative;
}
.cta-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}

.cta-body h2 { color: #fff; margin-bottom: 12px; }
.cta-body p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 30px; max-width: 440px; }
.cta-note  { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 12px; }
.cta-body .btn-primary { background: #fff; color: var(--teal); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.cta-body .btn-primary:hover { background: var(--off-white); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* Rings */
.cta-rings { position: relative; width: 160px; height: 160px; flex-shrink: 0; }
.cr {
  position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cr1 { width: 80px; height: 80px; }
.cr2 { width: 120px; height: 120px; animation: spin-slow 12s linear infinite; }
.cr3 { width: 160px; height: 160px; animation: spin-slow 20s linear infinite reverse; }
@keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }
.cr-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff;
}

/* ── SUPPORT ──────────────────────────────────────────────────── */
.support { background: var(--white); }

.support-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: flex-start; }

.form-wrap {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
}
form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
  font-family: var(--font-display); font-size: 0.84rem; font-weight: 600; color: var(--text);
}
.req { color: var(--coral); }

input, textarea {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 15px;
  font-family: var(--font-body); font-size: 0.94rem; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,110,92,0.1); }
input.invalid, textarea.invalid { border-color: var(--error); }

.field-error { font-size: 0.78rem; color: var(--error); min-height: 16px; }

.form-success {
  padding: 13px 16px; background: #e6f9f1; border: 1px solid #a3dfc6;
  border-radius: var(--radius); color: var(--success);
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
}

.support-aside { display: flex; flex-direction: column; gap: 16px; }

.aside-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
}
.aside-card h3 { font-size: 0.97rem; margin-bottom: 10px; }
.aside-card p { font-size: 0.88rem; }

.email-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.email-addr { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--teal); }

.copy-btn {
  background: var(--teal-light); border: none; border-radius: 6px;
  padding: 5px 12px; font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 700; color: var(--teal); cursor: pointer; transition: background .2s;
}
.copy-btn:hover { background: var(--teal); color: #fff; }

.copy-confirm { font-size: 0.78rem; color: var(--success); font-family: var(--font-display); font-weight: 600; margin-top: 6px; display: block; }

.legal-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.legal-links a {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: var(--text-mid); text-decoration: underline; text-decoration-color: var(--border);
}
.legal-links a:hover { color: var(--teal); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { background: var(--text); padding: 64px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.12); }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 20px; }

.social-row { display: flex; gap: 10px; }
.soc-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: background .2s, color .2s;
}
.soc-icon:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
}
.footer-bottom .container { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ── SCROLL TOP ────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--teal); color: #fff;
  border: none; border-radius: 50%;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow-md); transition: transform .2s var(--ease), opacity .3s;
  z-index: 99;
}
.scroll-top:hover { transform: scale(1.1); }

/* ── LEGAL PAGES ──────────────────────────────────────────────── */
.page-hero { padding: 72px 0 52px; background: var(--off-white); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { color: var(--text-light); font-size: 0.88rem; }

.page-content { max-width: 740px; margin: 0 auto; padding: 60px 24px; }
.page-content h2 { font-size: 1.35rem; margin: 36px 0 12px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li { font-size: 0.93rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 12px; }
.page-content ul { padding-left: 20px; }
.page-content a { color: var(--teal); text-decoration: underline; }

/* ── BENTO COLOUR CLASSES ─────────────────────────────────────── */
.bc-teal       { background: linear-gradient(135deg, #e6f7f3 0%, #d0efe8 100%) !important; border-color: #b8e3d8 !important; }
.bc-teal h3    { color: #0a5244 !important; }
.bc-teal p     { color: #2a7060 !important; }
.bc-teal .wv   { background: rgba(13,110,92,0.5) !important; }

.bc-indigo     { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%) !important; border-color: #c7d2fe !important; }
.bc-indigo h3  { color: #312e81 !important; }
.bc-indigo p   { color: #4338ca !important; }
.bc-indigo .lang-chips span { background: #fff; border-color: #c7d2fe; color: #4338ca; }

.bc-amber      { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%) !important; border-color: #fde68a !important; }
.bc-amber h3   { color: #78350f !important; }
.bc-amber p    { color: #92400e !important; }

.bc-teal-solid { background: linear-gradient(135deg, #0d6e5c 0%, #0a5244 100%) !important; border-color: transparent !important; }
.bc-teal-solid h3 { color: #fff !important; }
.bc-teal-solid p  { color: rgba(255,255,255,0.82) !important; }
.bc-teal-solid .bc-icon { filter: brightness(1.3); }

.bc-rose       { background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%) !important; border-color: #fecdd3 !important; }
.bc-rose h3    { color: #881337 !important; }
.bc-rose p     { color: #9f1239 !important; }

.bc-sky        { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important; border-color: #bae6fd !important; }
.bc-sky h3     { color: #0c4a6e !important; }
.bc-sky p      { color: #075985 !important; }

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing { background: var(--off-white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto 32px;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.plan-popular {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(13,110,92,0.15), var(--shadow-lg);
  transform: translateY(-6px);
}
.plan-popular:hover { transform: translateY(-10px); }

.plan-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px;
  white-space: nowrap;
}

.plan-label {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}

.plan-price {
  display: flex; align-items: baseline; gap: 3px;
  margin-bottom: 10px;
}
.plan-currency {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--text); line-height: 1;
}
.plan-amount {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--text); line-height: 1; letter-spacing: -0.04em;
  min-width: 40px;
}
/* Empty price shows placeholder */
.plan-amount:empty::after { content: '—'; font-size: 2rem; color: var(--text-light); }
.plan-period {
  font-size: 0.88rem; color: var(--text-muted); margin-left: 3px;
}

.plan-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 11px; margin-bottom: 28px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
  font-family: var(--font-display); font-weight: 500;
}
.pf-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pf-muted { color: var(--text-light) !important; }
.pf-muted span { color: var(--text-light); }

.plan-btn { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center; font-size: 0.88rem; color: var(--text-muted);
  max-width: 400px; margin: 0 auto;
}
.pricing-note strong { color: var(--teal); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ss-grid { grid-template-columns: repeat(3,1fr); }
  .faq-layout { grid-template-columns: 220px 1fr; gap: 40px; }
  .cta-rings { display: none; }
  .cta-card { padding: 48px 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-5px); }
}

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

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }

  .phone-frame { width: 220px; height: 440px; }
  .ft-top  { right: -20px; font-size: 0.72rem; padding: 8px 10px; }
  .ft-bottom { left: -20px; font-size: 0.72rem; padding: 8px 10px; }

  .ts-sep { display: none; }
  .ts-item { padding: 4px 12px; }

  .trust-grid { grid-template-columns: repeat(2,1fr); }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .bento-wave { display: none; }

  .steps { padding: 0; }

  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; }

  .cta-card { flex-direction: column; padding: 40px 28px; }
  .cta-body p { max-width: 100%; }

  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .ss-grid { grid-template-columns: repeat(3,1fr); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .plan-featured { transform: none; box-shadow: var(--shadow-lg); }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .ss-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .ts-inner { justify-content: flex-start; }
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.tc-ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-header h3 {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  align-self: center;
  font-size: 0.95rem;
  margin-top: -15px;
}

.bc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bc-header h3 {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  margin-top: -15px;
}

.aside-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-header .bc-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
