/* Agent Dilu Marketing Site — Design System */
:root {
  /* Core palette — elegant slate + refined indigo */
  --primary:        #4f46e5;
  --primary-dark:   #4338ca;
  --primary-deep:   #1e1b4b;
  --primary-light:  #eef2ff;
  --primary-border: #c7d2fe;
  --primary-glow:   rgba(79, 70, 229, 0.22);

  --highlight:      #6366f1;
  --highlight-soft: #eef2ff;
  --violet:         #7c3aed;
  --violet-light:   #ede9fe;
  --gold:           #a78bfa;
  --gold-soft:      #f5f3ff;

  /* Aliases used across components */
  --blue:           var(--primary);
  --blue-dark:      var(--primary-dark);
  --blue-light:     var(--primary-light);
  --blue-border:    var(--primary-border);
  --accent:         var(--primary);
  --accent-dark:    var(--primary-dark);
  --accent-dim:     rgba(79, 70, 229, 0.08);
  --accent-glow:    var(--primary-glow);

  /* Surfaces — cool, airy neutrals */
  --bg:             #f8fafc;
  --bg-white:       #ffffff;
  --bg-muted:       #f1f5f9;
  --bg-warm:        #fafbff;
  --bg-navy:        #0f172a;
  --bg-navy-soft:   #1e293b;

  /* Text — slate tones */
  --text:           #0f172a;
  --text-body:      #334155;
  --text-muted:     #64748b;
  --text-faint:     #94a3b8;

  /* Borders & shadows */
  --border:         #e2e8f0;
  --border-light:   #f1f5f9;
  --shadow-sm:      0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:      0 12px 40px rgba(15, 23, 42, 0.07);
  --shadow-lg:      0 28px 64px rgba(15, 23, 42, 0.09);
  --shadow-accent:  0 14px 40px var(--primary-glow);

  /* Typography */
  --font-brand:     'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:      'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif:     'Instrument Serif', Georgia, serif;

  /* Radius */
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Layout */
  --nav-h: 76px;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ─── Typography ─── */
.brand-text {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow-accent { color: var(--highlight); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.85rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.65rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 700; }
.text-accent { color: var(--primary-dark); }
.text-blue { color: var(--primary); }
.text-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 34rem;
  font-weight: 400;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head .lead { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  box-shadow: 0 18px 44px var(--primary-glow);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4f46e5 100%);
}
.btn-secondary {
  background: var(--bg-white);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary-border);
  background: var(--primary-light);
  color: var(--primary-deep);
}
.btn-blue {
  background: linear-gradient(135deg, var(--violet) 0%, #6d28d9 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; border-radius: var(--r-lg); }

/* ─── Nav ─── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.site-nav .nav-logo .brand-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.nav-logo .brand-text { font-size: 1.05rem; color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-muted); }
.nav-links a.nav-highlight { color: var(--primary-dark); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--bg-muted);
  outline: none;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  overflow: visible;
}
.hero .container.hero-layout {
  width: min(1240px, 100% - 48px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(167, 139, 250, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 92%, rgba(79, 70, 229, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 40% 35% at 70% 60%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    linear-gradient(175deg, #ffffff 0%, var(--bg) 55%, #f1f5f9 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black, transparent);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1.02fr;
  gap: 2rem;
  align-items: stretch;
}
.hero-copy {
  max-width: none;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 0.75rem;
}
.hero-copy h1 {
  font-size: clamp(2.55rem, 4.5vw, 4.25rem);
  line-height: 1.06;
}
.hero-copy .lead {
  max-width: none;
  font-size: clamp(1.06rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  margin-top: 0.25rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  background: var(--highlight-soft);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-tagline {
  margin: 1.65rem 0 1.35rem;
  padding: 1.2rem 1.3rem;
  font-size: clamp(1.28rem, 2.35vw, 1.65rem);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.45;
  background: linear-gradient(135deg, var(--highlight-soft) 0%, var(--bg-white) 100%);
  border: 1px solid var(--primary-border);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.hero-tagline-accent {
  color: var(--primary-dark);
  font-weight: 700;
}
.hero-platform-row {
  display: flex;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 18%, #eef2ff 58%, #f5f3ff 100%);
}
.hero-platform-flag-cell {
  flex: 0 0 auto;
  width: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--border-light);
}
.hero-platform-message-cell {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.9rem 1.1rem;
}
.hero-platform-flag-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #fbbf24;
  box-shadow:
    0 4px 16px rgba(139, 0, 0, 0.14),
    0 0 0 5px rgba(255, 182, 18, 0.18);
}
.hero-platform-flag {
  font-size: 1.95rem;
  line-height: 1;
}
.hero-platform-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--primary-deep);
  text-align: left;
}
.hero-copy .lead {
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
}
.hero-pricing-promise {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin: 1.1rem 0 0;
  padding: 0.7rem 1.05rem;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.07) 0%, rgba(167, 139, 250, 0.1) 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.hero-pricing-promise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.15rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.hero-pricing-promise strong {
  font-weight: 700;
  color: var(--primary-deep);
}
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.hero-contact-btn {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.hero-contact-btn .btn-whatsapp-icon {
  color: currentColor;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-faint);
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  min-height: 100%;
  justify-content: center;
}
.hero-stat-panel {
  flex: 0 0 auto;
  margin-top: -0.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-stat-row {
  display: flex;
  flex: 0 0 auto;
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  font-size: 0.8rem;
}
.hero-stat-cell {
  flex: 1;
  padding: 0.85rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.hero-stat-cell:last-child {
  border-right: none;
}
.hero-stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
}
.hero-stat-cell--glyphs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2.15rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-cell--glyphs span:nth-child(2) {
  font-family: var(--font-display);
  font-style: italic;
}
.hero-card {
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
}
.hero-card img {
  width: 88%;
  max-width: 88%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  margin-inline: auto;
  filter: none;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Stats strip ─── */
.stats-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.stat-cell {
  text-align: center;
  padding: 0.75rem;
  border-right: 1px solid var(--border-light);
}
.stat-cell:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
}
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stats-strip-agents {
  margin-top: -0.5rem;
  padding-bottom: 2rem;
}
.agents-promo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.agents-promo-bar:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.agents-promo-title {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.agents-promo-avatars {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  flex: 1;
}
.agents-promo-agent {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
.agents-promo-agent img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-muted);
}
.agents-promo-agent img[src*="megamart"] {
  object-fit: contain;
  padding: 0.25rem;
}
.agents-promo-agent figcaption {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
}
.agents-promo-arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s;
}
.agents-promo-bar:hover .agents-promo-arrow {
  transform: translateX(4px);
}

/* ─── Sections ─── */
.section { padding: 5.5rem 0; }
.section-alt { background: #ffffff; }
.section-muted { background: var(--bg-muted); }

/* ─── Feature bento ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bento-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}
.bento-card.span-2 { grid-column: span 2; }
.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--primary-light), #fff);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
}
.bento-card h3 { margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Split sections ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.check-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── Phone demo ─── */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 300px;
  background: #0b1220;
  border-radius: 32px;
  border: 3px solid #1e293b;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.phone-bar {
  height: 24px;
  background: #060a12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-bar span {
  width: 72px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
}
.phone-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
}
.phone-avatar img { width: 100%; height: 100%; object-fit: cover; }
.phone-name { font-size: 0.85rem; font-weight: 600; color: #f1f5f9; }
.phone-status { font-size: 0.7rem; color: #818cf8; }
.phone-chat {
  min-height: 280px;
  max-height: 320px;
  overflow-y: auto;
  padding: 1rem;
  background: #0d1320;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.msg {
  max-width: 82%;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.msg.show { opacity: 1; transform: translateY(0); }
.msg-in { background: #1e293b; color: #e2e8f0; align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-out { background: #005c4b; color: #ecfdf5; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-media { padding: 0.3rem; }
.msg-media.msg-out { background: #005c4b; }
.msg-img {
  display: block;
  width: 100%;
  max-width: 168px;
  border-radius: 10px;
}
.msg-time { font-size: 0.62rem; opacity: 0.5; margin-top: 3px; text-align: right; }
.typing {
  display: flex;
  gap: 4px;
  padding: 0.6rem 0.85rem;
  background: #1e293b;
  border-radius: 14px;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.3s;
}
.typing.show { opacity: 1; }
.typing span {
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}
.phone-foot {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem;
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.phone-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: #1e293b;
  border-radius: 99px;
  font-size: 0.72rem;
  color: #64748b;
}
.phone-send {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* ─── Voice section ─── */
.voice-panel {
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: #e2e8f0;
  box-shadow: var(--shadow-lg);
}
.voice-panel h2, .voice-panel h3, .voice-panel h4 { color: #fff; }
.voice-panel .lead { color: #c7d2fe; }
.wave-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 1rem;
}
.wave-bar {
  width: 4px;
  height: 12px;
  background: #a5b4fc;
  border-radius: 99px;
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(odd) { animation-delay: 0.1s; }
.wave-bar:nth-child(3n) { animation-delay: 0.25s; }
@keyframes wave {
  0%, 100% { height: 12px; opacity: 0.4; }
  50% { height: 36px; opacity: 1; }
}
.voice-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.voice-stat {
  padding: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  text-align: center;
}
.voice-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #a5b4fc;
}
.voice-stat .lbl { font-size: 0.72rem; color: #94a3b8; margin-top: 2px; }
.voice-feats { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.voice-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.voice-feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--r-md);
  font-size: 1.1rem;
}
.voice-feat h4 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--text); }
.voice-feat p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
}
.step-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Capabilities & industries ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
}
.info-card .bento-icon { margin-bottom: 0; flex-shrink: 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.industry-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.industry-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.industry-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  border-radius: var(--r-md);
  font-size: 1.1rem;
}
.about-logo-box {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-logo-box img { max-width: 200px; margin: 0 auto 1rem; }
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-deep);
}

/* ─── Pricing ─── */
.pricing-block { margin-bottom: 3rem; }
.pricing-block:last-child { margin-bottom: 0; }
.pricing-block-head { margin-bottom: 1.25rem; }
.pricing-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.pricing-note { font-size: 0.85rem; color: var(--text-faint); margin: 0; line-height: 1.5; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.price-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-border), var(--shadow-accent);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-card.popular { border-color: #c4b5fd; box-shadow: 0 0 0 1px #ede9fe; }
.price-ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  padding: 4px 36px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(45deg);
}
.price-ribbon-free { background: linear-gradient(135deg, var(--primary), #6366f1); color: #fff; }
.price-ribbon-pop { background: linear-gradient(135deg, var(--violet), #6d28d9); color: #fff; }
.price-name { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.75rem; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}
.price-card.featured .price-amount { color: var(--primary); }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.price-billed-total {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.price-features { margin-bottom: 1.5rem; margin-top: 0.85rem; }
.price-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.price-features strong { color: var(--text); }
.price-feature-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  font-weight: 400;
}
.price-card .btn { width: 100%; }

/* Billing cycle toggle (pricing) */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.billing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.billing-toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}
.billing-save-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
}
.billing-toggle-btn.active .billing-save-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.price-savings {
  font-size: 0.78rem;
  color: #166534;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.85rem;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--blue-border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.faq-chevron {
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--text-faint);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 520px; }
.faq-a-inner a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a-inner a:hover { color: var(--blue-dark, #1d4ed8); }
.faq-a-inner {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CTA banner ─── */
.cta-banner {
  padding: 5rem 0;
}
.cta-box {
  position: relative;
  padding: 3.5rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  border-radius: var(--r-xl);
  color: #e2e8f0;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(167, 139, 250, 0.15), transparent 45%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; margin-bottom: 1rem; }
.cta-box .lead { margin-inline: auto; color: #c7d2fe; max-width: 520px; }
.cta-box .eyebrow-accent { color: #a5b4fc; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}
.cta-box .btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.cta-box .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* ─── Footer ─── */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #94a3b8;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 260px;
}
.footer-brand .brand-text { color: #fff; font-size: 1rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a:hover { color: #e2e8f0; }

/* ─── Page templates (register, legal) ─── */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.page-hero .lead { margin-inline: auto; }
.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  background: var(--highlight-soft);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  color: var(--text-body);
}
.legal-page {
  padding: 3rem 0 5rem;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--text);
}
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.legal-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-content .highlight {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: var(--r-sm);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.legal-content .warning {
  background: #fefce8;
  border: 1px solid #eab308;
  border-radius: var(--r-sm);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.last-updated {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ─── Features page ─── */
.features-nav-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.features-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.features-nav::-webkit-scrollbar { display: none; }
.features-nav a {
  flex-shrink: 0;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-muted);
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.features-nav a:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
  border-color: var(--primary-border);
}
.features-page .feature-category {
  scroll-margin-top: calc(var(--nav-h) + 3.5rem);
}
.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feature-detail-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.4rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.section-alt .feature-detail-card {
  background: var(--bg-white);
}
.feature-detail-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}
.feature-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--r-md);
  font-size: 1.25rem;
}
.feature-detail-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.feature-detail-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.features-see-all {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── Demo videos ─── */
.demos-page {
  padding: 3rem 0 5rem;
}
.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 420px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .demos-grid {
    max-width: 1100px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .demos-grid .demo-card:first-child:last-child {
    max-width: 420px;
  }
}
.demo-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}
.demo-video {
  position: relative;
  background: #0b1220;
}
.demo-video--short {
  aspect-ratio: 9 / 16;
}
.demo-video--wide {
  aspect-ratio: 16 / 9;
}
.demo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.demo-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.demo-card-body h2 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.demo-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.demo-card-body > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.demo-yt-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}
.demo-yt-link:hover {
  color: var(--primary-dark);
}

/* ─── AI Agents showcase ─── */
.agents-page {
  padding: 3rem 0 5rem;
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}
.agent-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agent-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}
.agent-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-muted);
}
.agent-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.agent-card-body {
  padding: 1.5rem;
  text-align: center;
}
.agent-card-body h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.agent-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.agent-support {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.agent-support-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp-icon {
  flex-shrink: 0;
}

/* ─── Register page ─── */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.register-card {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.register-card h3 { margin-bottom: 0.5rem; }
.register-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.register-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}
.register-steps { display: flex; flex-direction: column; gap: 1.25rem; max-width: 640px; margin: 0 auto; }
.register-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.register-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
}
.register-step h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.register-step p { font-size: 0.88rem; color: var(--text-muted); }
.register-cta {
  margin-top: 2.5rem;
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: var(--r-xl);
  color: #e2e8f0;
}
.register-cta h3 { color: #fff; margin-bottom: 0.5rem; }
.register-cta p { color: #c7d2fe; margin-bottom: 1.25rem; font-size: 0.95rem; }
.timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.timeline-card {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.timeline-card.fast { border-color: var(--accent); }
.timeline-card.pending { border-color: var(--blue-border); }
.timeline-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.tag-green { background: var(--accent-dim); color: var(--accent-dark); }
.tag-blue { background: var(--blue-light); color: var(--blue-dark); }
.timeline-duration {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.pricing-pointer {
  padding: 2.5rem;
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.pricing-pointer h3 { margin-bottom: 0.5rem; }
.pricing-pointer p { color: var(--text-muted); margin-bottom: 1.25rem; }

@media (max-width: 768px) {
  .register-grid, .timeline-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: none; margin-inline: auto; align-self: auto; }
  .hero-actions, .check-list { justify-content: center; }
  .hero-contact { justify-content: center; }
  .hero-pricing-promise { margin-inline: auto; justify-content: center; text-align: left; }
  .hero-visual { order: -1; align-items: center; max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-card img { width: 88%; max-width: 88%; height: auto; object-fit: contain; margin-inline: auto; }
  .split, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav.menu-open {
    height: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo toggle actions"
      "links links links"
      "cta cta cta";
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
  }
  .nav-logo { grid-area: logo; min-width: 0; }
  .menu-toggle {
    display: flex;
    grid-area: toggle;
    margin-left: 0;
  }
  .nav-actions {
    grid-area: actions;
    justify-self: end;
  }
  .nav-links {
    display: none;
    grid-area: links;
  }
  .nav-actions .btn-secondary {
    display: none;
  }
  .nav-actions .btn-primary {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .site-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.15rem;
    padding: 0.45rem 0 0.65rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--border-light);
  }
  .site-nav.menu-open .nav-links a {
    display: block;
    padding: 0.8rem 0.85rem;
    font-size: 0.95rem;
  }
  .site-nav.menu-open .nav-actions {
    grid-area: cta;
    width: 100%;
    padding: 0 0 0.85rem;
    gap: 0.55rem;
  }
  .site-nav.menu-open .nav-actions .btn-secondary {
    display: inline-flex;
    flex: 1;
    justify-content: center;
  }
  .site-nav.menu-open .nav-actions .btn-primary {
    flex: 1;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
  body.nav-menu-open {
    overflow: hidden;
  }
  .hero-stat-cell { padding: 0.65rem 0.45rem; font-size: 0.72rem; }
  .hero-stat-cell strong { font-size: 1.15rem; }
  .hero-stat-cell--glyphs { font-size: 1.75rem; gap: 0.5rem; }
  .hero-platform-flag-cell { width: 4.75rem; padding: 0.75rem 0.5rem; }
  .hero-platform-message-cell { padding: 0.75rem 0.85rem; }
  .hero-platform-flag-badge { width: 2.85rem; height: 2.85rem; border-width: 2px; box-shadow: 0 3px 12px rgba(139, 0, 0, 0.12), 0 0 0 4px rgba(255, 182, 18, 0.15); }
  .hero-platform-flag { font-size: 1.65rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-promo-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }
  .agents-promo-avatars { gap: 0.85rem; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid var(--border-light); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .bento, .card-grid, .steps, .pricing-grid, .feature-detail-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .price-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; }
}
