/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --navy:       #0B1426;
  --navy-mid:   #111E35;
  --navy-light: #1A2D50;
  --gold:       #C9963A;
  --gold-light: #E5B96A;
  --gold-pale:  #FDF6E8;
  --cream:      #FAF8F4;
  --white:      #FFFFFF;
  --slate:      #64748B;
  --slate-light:#94A3B8;
  --border:     #E2DDD5;
  --border-dark:#1E3055;
  --green:      #15803D;
  --green-pale: #DCFCE7;
  --text:       #1A1A2E;
  --text-mid:   #374151;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:   8px;
  --radius-lg:16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,20,38,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center;
  min-width: 0;
}
.nav-logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-brand-name span { color: var(--gold); }

/* Product suite switcher */
.nav-suite {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark);
  border-radius: 40px;
  padding: 4px;
}
.suite-item {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 13px; font-weight: 500;
  color: var(--slate-light);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.suite-item.active {
  background: var(--gold);
  color: var(--navy);
}
.suite-item:not(.active):hover { background: rgba(255,255,255,.08); color: var(--white); }
.suite-item .badge {
  font-size: 9px; font-weight: 600;
  background: rgba(255,255,255,.15);
  color: var(--slate-light);
  padding: 1px 6px; border-radius: 10px;
  letter-spacing: .04em; text-transform: uppercase;
}
.suite-item.active .badge {
  background: rgba(11,20,38,.2);
  color: var(--navy);
}

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--slate-light);
  transition: color .2s;
}
.nav-link:hover { color: var(--white); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle-icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle-icon-bar + .nav-toggle-icon-bar { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-menu { display: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,150,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 16px 36px; font-size: 16px; border-radius: 10px; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,150,58,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(47,128,237,.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,58,.12);
  border: 1px solid rgba(201,150,58,.25);
  color: var(--gold-light);
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate-light);
}
.proof-icon { color: var(--gold); font-size: 14px; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.phone-frame {
  width: 300px;
  background: #ECE5DD;
  border-radius: 32px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
}
.phone-topbar {
  background: #075E54;
  padding: 14px 16px 12px;
  display: flex; align-items: center; gap: 10px;
}
.phone-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}
.phone-contact { flex: 1; }
.phone-contact-name { font-size: 14px; font-weight: 600; color: #fff; }
.phone-contact-status { font-size: 11px; color: rgba(255,255,255,.65); }
.phone-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 440px; }

.msg {
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  position: relative;
  animation: msgIn .3s ease both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.msg-in {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #111;
}
.msg-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #111;
}
.msg-time {
  display: block; text-align: right;
  font-size: 10px; color: #888;
  margin-top: 3px;
}
.msg-out .msg-time { color: #7faa6e; }
.msg-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--slate); margin: 4px 0 2px;
}
.msg-label.out { text-align: right; }
.typing-indicator {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex; gap: 4px; align-items: center;
}
.dot {
  width: 6px; height: 6px; background: #aaa; border-radius: 50%;
  animation: typing .8s ease-in-out infinite;
}
.dot:nth-child(2) { animation-delay: .15s; }
.dot:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

.msg:nth-child(2) { animation-delay: .6s; opacity: 0; animation-fill-mode: both; }
.msg:nth-child(3) { animation-delay: 1.2s; opacity: 0; animation-fill-mode: both; }
.msg:nth-child(4) { animation-delay: 1.8s; opacity: 0; animation-fill-mode: both; }
.msg:nth-child(5) { animation-delay: 2.4s; opacity: 0; animation-fill-mode: both; }
.msg:nth-child(6) { animation-delay: 3.0s; opacity: 0; animation-fill-mode: both; }
.msg:nth-child(7) { animation-delay: 3.8s; opacity: 0; animation-fill-mode: both; }

/* ── SECTION BASE ───────────────────────────────────────────────── */
section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }

/* ── PROBLEM ────────────────────────────────────────────────────── */
.problem { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pain-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.pain-item {
  display: flex; gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all .2s;
}
.pain-item:hover {
  border-color: rgba(201,150,58,.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.pain-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #FEF2F2;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.pain-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.pain-text p { font-size: 13.5px; color: var(--slate); line-height: 1.5; }

.problem-stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.problem-stat-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,150,58,.15) 0%, transparent 70%);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 18px; font-weight: 500; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.stat-sub { font-size: 14px; color: var(--slate-light); line-height: 1.6; }
.stat-divider { height: 1px; background: var(--border-dark); margin: 28px 0; }
.stat-list { display: flex; flex-direction: column; gap: 12px; }
.stat-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,.7);
}
.stat-list-item::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.how { background: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.step {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-icon {
  font-size: 28px; margin-bottom: 12px; display: block;
}
.step h3 {
  font-size: 16px; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.step-connector {
  position: absolute; top: 50%; right: -14px;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 12px; font-weight: 700;
  z-index: 1;
  transform: translateY(-50%);
}

.flow-bar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.flow-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.flow-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-arrow { color: var(--border-dark); font-size: 16px; }

/* ── DEMO SECTION ───────────────────────────────────────────────── */
.demo { background: var(--white); }
.demo-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.demo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,150,58,.08) 0%, transparent 70%);
}
.play-btn {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 0 rgba(201,150,58,.4);
  animation: ring 2.5s ease-in-out infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(201,150,58,.4); }
  70% { box-shadow: 0 0 0 20px rgba(201,150,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,150,58,0); }
}
.demo-label {
  font-size: 14px; color: var(--slate-light);
  position: relative; z-index: 1;
}
.demo-label strong { color: var(--white); }

/* ── OUTCOMES TABLE ─────────────────────────────────────────────── */
.outcomes { background: var(--cream); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.outcome-row {
  display: contents;
}
.outcome-cell {
  background: var(--white);
  padding: 22px 28px;
  display: flex; align-items: flex-start; gap: 14px;
}
.outcome-cell.header {
  background: var(--navy);
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--slate-light);
  padding: 14px 28px;
  display: flex; align-items: center; gap: 0;
}
.outcome-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.outcome-feature { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.outcome-desc { font-size: 13px; color: var(--slate); line-height: 1.5; }
.outcome-benefit {
  background: var(--cream);
  font-size: 13.5px; color: var(--text-mid);
  line-height: 1.55;
  padding: 22px 28px;
  display: flex; align-items: center;
}
.outcome-benefit::before {
  content: '→ ';
  color: var(--gold);
  font-weight: 600; margin-right: 6px;
  flex-shrink: 0;
}

.compliance-strip {
  margin-top: 2px;
  background: var(--green-pale);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 16px 28px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--green);
  font-weight: 500;
}
.compliance-strip .badge-popia {
  background: var(--green);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  flex-shrink: 0;
}

/* ── PRICING ────────────────────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream);
  transition: all .25s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,150,58,.4);
}
.price-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  border-width: 2px;
}
.price-card.featured:hover { border-color: var(--gold-light); }
.price-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
}
.price-header { padding: 28px 28px 20px; }
.price-tier {
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.price-card.featured .price-name { color: var(--white); }
.price-desc { font-size: 13px; color: var(--slate); line-height: 1.5; }
.price-card.featured .price-desc { color: var(--slate-light); }
.price-amount-block {
  padding: 0 28px 24px;
  border-bottom: 1px solid var(--border);
}
.price-card.featured .price-amount-block { border-color: var(--border-dark); }
.price-amount {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.price-card.featured .price-amount { color: var(--gold); }
.price-period { font-size: 14px; color: var(--slate); }
.price-card.featured .price-period { color: var(--slate-light); }
.price-range { font-size: 12px; color: var(--slate); margin-top: 2px; }
.price-card.featured .price-range { color: rgba(255,255,255,.4); }
.price-features { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-line {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-mid);
}
.price-card.featured .feature-line { color: rgba(255,255,255,.8); }
.feature-line::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-card.featured .feature-line::before { color: var(--gold); }
.price-footer { padding: 0 28px 28px; }

.btn-price { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13.5px; color: var(--slate);
}
.pricing-note a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,150,58,.4); }

/* ── PRODUCT SUITE TEASER ───────────────────────────────────────── */
.suite { background: var(--navy); padding: 80px 0; }
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.suite-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  padding: 28px;
  position: relative;
  transition: all .2s;
}
.suite-card.active {
  border-color: var(--gold);
  background: rgba(201,150,58,.06);
}
.suite-card.coming {
  opacity: .55;
  cursor: not-allowed;
}
.suite-card:not(.coming):not(.active):hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.03);
}
.suite-card-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.badge-live { background: var(--gold); color: var(--navy); }
.badge-soon { background: var(--border-dark); color: var(--slate-light); }
.suite-card-icon { font-size: 28px; margin-bottom: 14px; }
.suite-card-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.suite-card-desc { font-size: 13px; color: var(--slate-light); line-height: 1.55; }

/* ── CTA SECTION ────────────────────────────────────────────────── */
.cta-section {
  background: var(--cream);
  padding: 96px 0;
}
.cta-box {
  background: var(--navy);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(201,150,58,.15) 0%, transparent 60%);
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-box p {
  font-size: 17px; color: var(--slate-light);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
  margin-bottom: 36px;
}
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #22C35E;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.cta-sub {
  font-size: 13px; color: rgba(255,255,255,.35);
  position: relative; z-index: 1;
}

/* ── FORMS (Book a Demo + Contact pages) ──────────────────────────── */
.forms-section { background: var(--cream); padding: 64px 0; }
.forms-section .section-header { margin-bottom: 40px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-card .form-subtitle {
  font-size: 14px; color: var(--slate);
  margin-bottom: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .form-group.full { grid-column: 1 / -1; }
.form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,58,.15);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-actions { margin-top: 28px; }
.form-actions .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
.form-note {
  font-size: 12px; color: var(--slate);
  margin-top: 16px;
}
.form-success {
  font-size: 14px; color: var(--green);
  font-weight: 500;
  margin-top: 12px;
  display: none;
}
.form-success.visible { display: block; }

/* ── LEGAL PAGES (Privacy Policy, Terms of Use) ──────────────────── */
.legal-page {
  background: var(--cream);
  padding: 100px 0 64px;
  min-height: 80vh;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-content .legal-updated {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 8px 0 16px 20px;
  padding: 0;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,150,58,.3);
}
.legal-content a:hover {
  color: var(--gold-light);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,.5);
}
.footer-brand span { color: var(--gold); }
.footer-logo-link { display: inline-block; }
.footer-logo-link:hover { opacity: .9; }
.footer-logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--slate-light);
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.popia-note {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 11.5px; color: var(--slate-light);
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
}
.popia-note::before {
  content: '🔒';
  font-size: 12px;
}
.powered-by {
  margin-top: 20px;
  text-align: center;
  font-size: 12px; color: rgba(255,255,255,.2);
}
.powered-by a { color: rgba(255,255,255,.35); }
.powered-by a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-frame { width: 260px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-benefit { background: rgba(201,150,58,.04); border-top: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .suite-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 40px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 12px 20px; }
  .nav-suite { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
  .nav-toggle .nav-toggle-icon-bar + .nav-toggle-icon-bar { margin-top: 0; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--border-dark);
    padding: 16px 24px 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(0,0,0,.3);
  }
  nav.nav-open .nav-menu { display: flex; }
  .nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--slate-light);
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a:hover { color: var(--white); }
  .nav-menu .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 20px;
    color: var(--navy);
    font-weight: 600;
  }
  .nav-menu .btn:hover { color: var(--navy); }
}

@media (max-width: 600px) {
  .suite-grid { grid-template-columns: 1fr; }
  .flow-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .flow-arrow { display: none; }
  .container { padding: 0 16px; }
  .footer-links { flex-direction: column; gap: 8px; }
  .popia-note { flex-direction: column; align-items: flex-start; text-align: left; padding: 12px 16px; }
}

/* ── COOKIE CONSENT BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 20px 24px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-light);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner .cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cookie-banner a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner a:hover { color: var(--gold); }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner .btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
}
.cookie-banner .btn-cookie-accept {
  background: var(--gold);
  color: var(--navy);
}
.cookie-banner .btn-cookie-accept:hover {
  background: var(--gold-light);
}
.cookie-banner .btn-cookie-reject {
  background: transparent;
  color: var(--slate-light);
  border: 1px solid var(--border-dark);
}
.cookie-banner .btn-cookie-reject:hover {
  background: rgba(255,255,255,.06);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner .cookie-banner-inner { flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner .btn-cookie { flex: 1; }
}
