/* ════════════════════════════════════════════════════════════════════════
   BolBadlo · Landing Page — Editorial Saffron design system
   Cream paper · marigold saffron · Instrument Serif italic display ·
   Tiro Devanagari Hindi accents · ink CTAs · crafted line icons.
   ════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Surfaces */
  --cream:   #FBF5E9;
  --cream-2: #F4EBD9;
  --cream-3: #EADFC6;
  --paper:   #FFFDF7;

  /* Ink */
  --ink:   #1A1410;
  --ink-2: #4A3F35;
  --ink-3: #7A6E5E;
  --muted: #A89A85;

  /* Brand */
  --marigold:      #E86A22;
  --marigold-dark: #C8551A;
  --marigold-soft: #FBE4D3;
  --haldi:         #D4A026;
  --haldi-soft:    #F7E9BE;
  --leaf:          #2E7D5B;
  --leaf-soft:     #D4E8DC;
  --rose:          #B8443E;
  --rose-soft:     #F4D9D6;
  --vermillion:    var(--marigold-dark); /* deep accent for links/small text; better contrast on cream than bright marigold */

  /* Lines & shadow */
  --hair:    rgba(26, 20, 16, 0.08);
  --hair-2:  rgba(26, 20, 16, 0.14);
  --shadow-xs: 0 1px 2px rgba(26, 20, 16, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(26, 20, 16, 0.05), 0 1px 3px rgba(26, 20, 16, 0.04);
  --shadow:    0 8px 20px -4px rgba(232, 106, 34, 0.18), inset 0 -2px 0 rgba(0,0,0,0.15);
  --shadow-ink:0 8px 24px -6px rgba(26, 20, 16, 0.35), inset 0 -2px 0 rgba(0,0,0,0.18);
  --shadow-lg: 0 24px 48px -16px rgba(26, 20, 16, 0.18), 0 8px 20px -8px rgba(26, 20, 16, 0.10);

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

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Geist', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hindi:   var(--font-body); /* legacy alias; Hindi faces dropped in English rebrand */

  --nav-h: 68px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Keyboard focus ring (accessibility) */
:focus-visible {
  outline: 2px solid var(--marigold-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip to content (keyboard / screen-reader users) */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: top 160ms ease;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.ic {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hindi {
  font-family: var(--font-hindi);
  color: var(--ink-3);
  font-weight: 400;
}

/* ════════════ NAVBAR ════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(251, 245, 233, 0.78);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  transition: background 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(251, 245, 233, 0.92);
  border-bottom-color: var(--hair);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Wordmark brand — "bol·badlo" */
.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.nav-logo {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--marigold);
  margin: 0 3px;
  transform: translateY(-4px);
  font-size: 0;
}
.nav-name { font: inherit; color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn-nav-cta) {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color 160ms ease;
}
.nav-links a:not(.btn-nav-cta):hover { color: var(--ink); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 200ms ease, transform 140ms ease;
}
.btn-nav-cta:hover { background: #2A2017; }
.btn-nav-cta:active { transform: scale(0.97); }

/* Language toggle pill */
.lang-toggle {
  display: inline-flex;
  background: var(--cream-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  padding: 6px 10px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  letter-spacing: 0.02em;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--ink); color: var(--cream); }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 160ms ease;
}
.nav-mobile-toggle:hover { background: var(--cream-2); }
.nav-mobile-toggle span {
  display: block;
  width: 20px; height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 240ms ease, opacity 200ms ease;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 12px 24px -12px rgba(26, 20, 16, 0.12);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 14px 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--hair);
}
.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-menu .btn-nav-cta {
  color: var(--cream);
  justify-content: center;
  border-bottom: none;
  margin-top: 12px;
  padding: 14px 16px;
}
.lang-toggle-mobile { margin-top: 12px; align-self: flex-start; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 106, 34, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -140px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 38, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--marigold-soft);
  border: 1px solid rgba(232, 106, 34, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--marigold-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-highlight { color: var(--marigold); }

.hero-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--ink);
  line-height: 1.15;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-subtitle strong { color: var(--ink); font-weight: 600; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}
.hero-pills li {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* Hero outcome rotator: "Win [dynamic phrase]" cycles every few seconds */
.hero-rotator {
  margin-top: 18px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
  min-height: 1.4em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-rotator-prefix {
  color: var(--ink);
  opacity: 0.55;
  font-weight: 500;
}
.hero-rotator-text {
  color: var(--vermillion);
  font-weight: 700;
  transition: opacity 280ms ease;
  display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator-text { transition: none; }
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
}
.hero-stars { color: var(--haldi); font-size: 13px; letter-spacing: 1px; }
.hero-proof-text { font-size: 12px; color: var(--ink-3); font-weight: 500; }

.hero-cta-group {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-cta-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}

/* Primary CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: var(--shadow-ink);
  transition: background 200ms ease, transform 160ms ease, box-shadow 220ms ease;
}
.btn-primary:hover { background: #2A2017; }
.btn-primary:active { transform: scale(0.985); }
.btn-large { padding: 17px 28px; font-size: 16px; border-radius: 16px; }

/* Secondary / ghost CTA */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hair-2);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 160ms ease;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--cream-2); }
.btn-ghost:active { transform: scale(0.985); }

/* Hero phone mockup */
.hero-phone { justify-self: center; perspective: 1200px; }
.phone-frame {
  width: 280px;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.phone-frame:hover { transform: rotate(0deg) translateY(-4px); }
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 18px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: var(--cream);
  border-radius: 26px;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mock-header {
  padding: 24px 18px 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  flex-shrink: 0;
}
.mock-avatar::before { content: 'g'; }
.mock-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--marigold);
  margin: 0 2px;
  transform: translateY(-3px);
}
.mock-chat {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.mock-bubble {
  max-width: 86%;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.45;
  border-radius: 16px;
  letter-spacing: -0.003em;
}
.mock-bubble.bot {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-bottom-left-radius: 4px;
  color: var(--ink);
  align-self: flex-start;
}
.mock-bubble.user {
  background: var(--ink);
  color: var(--cream);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.mock-input {
  padding: 14px;
  border-top: 1px solid var(--hair);
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.mock-input > span:first-child {
  flex: 1;
  padding: 9px 14px;
  background: var(--cream);
  border-radius: 999px;
}
.mock-mic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--marigold);
  color: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px -2px rgba(232, 106, 34, 0.18);
  text-indent: 9999px;
  overflow: hidden;
  position: relative;
  font-size: 0;
  flex-shrink: 0;
}
.mock-mic::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFDF7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='3' width='6' height='12' rx='3'/%3E%3Cpath d='M5 11a7 7 0 0 0 14 0'/%3E%3Cpath d='M12 18v3'/%3E%3C/svg%3E") center / 18px no-repeat;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-phone { order: -1; }
  .phone-frame { width: 240px; transform: rotate(0); }
  .phone-screen { height: 460px; }
}

/* ════════════ Hero Voice Demo (phone frame) ════════════ */
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--marigold) url('/img/aanya.jpg') center 22% / cover no-repeat;
  color: transparent;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.phone-headtext {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-body);
  font-style: normal;
}
.phone-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.phone-status {
  font-size: 11px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  margin-top: 1px;
}
.phone-dot {
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
}
.phone-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* Scenario picker — horizontal scrollable pills inside the phone */
.demo-scenarios {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin: -2px -4px 0;
  padding-left: 4px;
  padding-right: 4px;
}
.demo-scenarios::-webkit-scrollbar { display: none; }
.demo-scenario-btn {
  appearance: none;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
  letter-spacing: -0.005em;
}
.demo-scenario-btn:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}
.demo-scenario-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.demo-state {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.demo-state[hidden] { display: none; }

.phone-prompt-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--marigold);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-style: normal;
}
.phone-script {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
}
.demo-mic {
  appearance: none;
  background: var(--marigold);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  margin: 4px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 16px -4px rgba(232, 106, 34, 0.20);
  transition: transform 140ms ease, box-shadow 200ms ease, background 180ms ease;
}
.demo-mic:hover { background: #D85A18; transform: translateY(-1px); }
.demo-mic:active { transform: scale(0.97); }
.demo-mic-icon { display: inline-grid; place-items: center; }
.demo-hint {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 8px;
  text-align: center;
}

/* Recording state */
.demo-state-recording,
.demo-state-processing,
.demo-state-error { align-items: center; justify-content: center; padding: 20px 8px; }
.demo-state-recording p,
.demo-state-processing p { text-align: center; font-size: 13px; color: var(--ink-2); }
.demo-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 48px;
  margin-bottom: 4px;
}
.demo-wave span {
  width: 4px;
  background: var(--marigold);
  border-radius: 2px;
  animation: demoWave 1s ease-in-out infinite;
}
.demo-wave span:nth-child(1) { animation-delay: -1.0s; }
.demo-wave span:nth-child(2) { animation-delay: -0.85s; }
.demo-wave span:nth-child(3) { animation-delay: -0.7s; }
.demo-wave span:nth-child(4) { animation-delay: -0.55s; }
.demo-wave span:nth-child(5) { animation-delay: -0.4s; }
.demo-wave span:nth-child(6) { animation-delay: -0.25s; }
.demo-wave span:nth-child(7) { animation-delay: -0.1s; }
@keyframes demoWave {
  0%, 100% { height: 10px; }
  50% { height: 44px; }
}
.demo-recording-label {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.demo-mic-stop {
  background: var(--ink);
}
.demo-mic-stop:hover { background: #1A1410; }

/* Processing state */
.demo-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--hair);
  border-top-color: var(--marigold);
  border-radius: 50%;
  margin: 8px auto 16px;
  animation: demoSpin 0.8s linear infinite;
}
@keyframes demoSpin { to { transform: rotate(360deg); } }

/* Result state */
.demo-result-bubble {
  width: 100%;
  max-width: none !important;
}
.demo-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.demo-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.demo-score-num {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 28px;
  font-weight: 500;
  color: var(--marigold);
  line-height: 1;
}
.demo-score-out {
  font-size: 11px;
  color: var(--ink-3);
}
.demo-feedback {
  flex: 1;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-2);
  font-family: var(--font-body);
  font-style: normal;
}
.demo-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 8px;
}
.demo-try-again {
  appearance: none;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}
.demo-try-again:hover { border-color: var(--ink-2); color: var(--ink); }
.demo-save-btn {
  padding: 8px 14px !important;
  font-size: 12px !important;
  border-radius: 999px !important;
}

.demo-link-btn {
  appearance: none;
  background: none;
  border: none;
  color: var(--marigold);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 860px) {
  .hero-pills { justify-content: flex-start; }
}

/* ════════════ Testimonials Section ════════════ */
.testimonials {
  padding: 96px 0 72px;
  background: var(--cream);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(26, 20, 16, 0.18);
}
.testimonial-card-featured {
  background: linear-gradient(180deg, #FFF8EE 0%, var(--paper) 60%);
  border-color: rgba(232, 106, 34, 0.25);
  box-shadow: 0 14px 36px -22px rgba(232, 106, 34, 0.4);
}
.testimonial-outcome {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.testimonial-card-featured .testimonial-outcome {
  background: rgba(232, 106, 34, 0.08);
  border-color: rgba(232, 106, 34, 0.2);
  color: var(--marigold);
}
.testimonial-outcome .ic {
  color: currentColor;
  stroke: currentColor;
}
.testimonial-quote {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-3);
  color: var(--ink-2);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Initial fallback shows only when no <img> is present */
.testimonial-avatar:not(:has(img))::before { content: attr(data-init); }
.testimonial-meta { line-height: 1.3; min-width: 0; }
.testimonial-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testimonial-role {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}
.testimonials-footer {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-3);
}
.testimonials-footer a {
  color: var(--marigold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.testimonials-footer a:hover {
  color: #D85A18;
}

@media (max-width: 860px) {
  .testimonials { padding: 64px 0 48px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 20px; }
  .testimonial-quote { font-size: 16px; }
}

/* ════════════ Floating WhatsApp CTA ════════════ */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: #25D366;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.55);
  transition: transform 160ms ease, box-shadow 200ms ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(37, 211, 102, 0.65);
}
.wa-float svg { flex-shrink: 0; }
.wa-float-label { letter-spacing: -0.01em; }

@media (max-width: 480px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 11px 14px;
  }
  .wa-float-label { display: none; }
}

.footer-wa-icon {
  margin-right: 6px;
  font-size: 14px;
}

/* ════════════ Section heads ════════════ */
.section-title {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-align: center;
}
.section-subtitle {
  margin: 12px auto 0;
  max-width: 580px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}

section { padding: 80px 0; }
section:nth-of-type(even) { background: var(--paper); }

/* ════════════ USE CASES ════════════ */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.usecase-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 220ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.usecase-card:hover {
  border-color: var(--hair-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.usecase-icon {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  color: var(--marigold-dark);
  margin-bottom: 14px;
  font-size: 28px;
}
.usecase-card:hover .usecase-icon {
  color: var(--marigold);
}
.usecase-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.usecase-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.usecase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.usecase-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--cream-2);
  border: 1px solid var(--hair);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ════════════ HOW IT WORKS ════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 56px;
}
.step-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 28px 22px 24px;
  text-align: left;
}
.step-number {
  position: absolute;
  top: -14px;
  left: 22px;
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-ink);
}
.step-icon {
  width: 30px; height: 30px;
  color: var(--marigold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 28px;
}
.step-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.step-connector {
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--marigold);
  align-self: center;
}
@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-connector { transform: rotate(90deg); }
}

/* ════════════ FEATURES ════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 26px 22px 24px;
  transition: border-color 220ms ease, transform 240ms ease;
}
.feature-card:hover {
  border-color: var(--hair-2);
  transform: translateY(-2px);
}
.feature-icon {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  color: var(--marigold-dark);
  margin-bottom: 14px;
  font-size: 26px;
}
.feature-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ════════════ COMPARISON TABLE ════════════ */
.table-wrapper {
  margin-top: 48px;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 600px;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--hair);
  color: var(--ink-2);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}
.compare-table thead th {
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--hair-2);
}
.compare-table .highlight-col {
  background: var(--marigold-soft);
  color: var(--marigold-dark);
  font-weight: 600;
}
.compare-table thead .highlight-col {
  background: var(--marigold);
  color: var(--paper);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.table-logo {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 3px;
  transform: translateY(-3px);
  font-size: 0;
}
.compare-table .check,
.compare-table .cross {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 0;
  text-indent: -9999px;
  position: relative;
}
.compare-table .check { background: var(--leaf-soft); }
.compare-table .check::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7D5B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.compare-table .cross { background: var(--rose-soft); }
.compare-table .cross::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8443E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.compare-table .highlight-col .check { background: rgba(255, 253, 247, 0.6); }
.compare-table .highlight-col .check::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8551A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E");
}
.compare-table .price-row td {
  background: var(--cream);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.compare-table .price-row .highlight-col strong {
  background: var(--marigold);
  color: var(--paper);
  padding: 4px 12px;
  border-radius: 999px;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: -0.005em;
}
.compare-table tbody tr:last-child td { border-bottom: none; }

/* Warning icon variant (partial-yes / depends) */
.compare-table .warn {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #FFE4B5;
  font-size: 0;
  position: relative;
}
.compare-table .warn::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B07A1F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 9v4M12 17h.01M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.compare-table small {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink-3);
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 4px;
  text-transform: none;
}
.compare-table thead th small {
  margin-top: 2px;
  font-weight: 400;
}
.compare-table .price-row td small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 4px;
}
.compare-table .price-row .highlight-col small {
  color: var(--marigold);
}
.compare-table .price-row strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: block;
}
.compare-table .price-row .highlight-col strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 16px;
}
.compare-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-style: normal;
}
.compare-footnote strong {
  font-style: normal;
  color: var(--marigold);
}

/* ════════════ PRICING ════════════ */
.pricing { background: var(--cream-2); }
.pricing-card {
  max-width: 480px;
  margin: 48px auto 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-card::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 106, 34, 0.20) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-badge {
  position: absolute;
  top: 18px; right: 22px;
  background: var(--marigold);
  color: var(--paper);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-header { position: relative; }
.pricing-header h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--cream);
}
.pricing-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.price-main {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.025em;
}
.price-period {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 253, 247, 0.7);
}
.price-monthly {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 253, 247, 0.7);
}
.pricing-trial {
  margin: 24px 0;
  padding: 14px 16px;
  background: rgba(255, 253, 247, 0.06);
  border: 1px solid rgba(255, 253, 247, 0.12);
  border-radius: 14px;
  position: relative;
}
.trial-badge {
  display: inline-block;
  background: var(--marigold);
  color: var(--paper);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-trial p {
  font-size: 13.5px;
  color: rgba(255, 253, 247, 0.85);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--cream);
}
.pf-check {
  width: 20px; height: 20px;
  background: var(--marigold);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0;
  text-indent: -9999px;
  position: relative;
}
.pf-check::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFDF7' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.btn-pricing {
  background: var(--marigold);
  color: var(--paper);
  width: 100%;
  box-shadow: var(--shadow);
}
.btn-pricing:hover { background: var(--marigold-dark); }
.pricing-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 253, 247, 0.6);
  text-align: center;
  position: relative;
}

/* ════════════ FAQ ════════════ */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease;
}
.faq-item.open {
  border-color: var(--marigold-soft);
  background: var(--paper);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq-question:hover { background: rgba(232, 106, 34, 0.03); }
.faq-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  background: var(--cream-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 200ms ease, color 200ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-icon {
  background: var(--marigold);
  color: var(--paper);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq-item.open .faq-answer { max-height: 360px; }

/* ════════════ FINAL CTA ════════════ */
.final-cta { background: var(--cream); padding: 64px 0 88px; }
.cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 106, 34, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 38, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--cream);
  position: relative;
}
.cta-card > p {
  margin: 18px auto 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 253, 247, 0.75);
  position: relative;
}
.cta-features-mini {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  position: relative;
}
.cta-features-mini span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 253, 247, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-features-mini span::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--marigold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFDF7' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center / 11px no-repeat;
  flex-shrink: 0;
}
.btn-cta-final {
  margin-top: 28px;
  background: var(--marigold);
  color: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
}
.btn-cta-final:hover { background: var(--marigold-dark); }
.cta-subtext {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255, 253, 247, 0.55);
  position: relative;
}

/* ════════════ FOOTER ════════════ */
.footer {
  padding: 48px 0 32px;
  background: var(--ink);
  color: var(--cream);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.footer-name {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
}
.footer-logo {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--marigold);
  margin: 0 3px;
  transform: translateY(-3px);
  font-size: 0;
}
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 253, 247, 0.6);
  margin-top: 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 253, 247, 0.7);
  font-weight: 500;
  transition: color 160ms ease;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 247, 0.08);
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255, 253, 247, 0.45);
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 32px) 0 48px; }
  .pricing-card { padding: 28px 22px 24px; }
  .cta-card { padding: 40px 24px; border-radius: 24px; }
  .faq-question { padding: 16px 18px; font-size: 14.5px; }
  .faq-answer p { padding: 0 18px 18px; font-size: 14px; }

  /* Hero title: clamp floor is too tall for phones, give it a phone-scaled size */
  .hero-title { font-size: clamp(34px, 10vw, 50px); }
  /* Dual CTA stacks full-width for tappable targets instead of wrapping raggedly */
  .hero-cta-group { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost { width: 100%; }
}

/* ════════════ Reduced motion ════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════ SEO content block ════════════ */
.seo-content {
  background: var(--cream);
  padding: 72px 0;
  border-top: 1px solid rgba(26, 20, 16, 0.06);
}
.seo-content-inner {
  max-width: 760px;
}
.seo-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.seo-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
  letter-spacing: -0.005em;
}
.seo-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(26, 20, 16, 0.82);
  margin: 0 0 14px;
}
.seo-content .seo-content-lede {
  font-size: 17px;
  color: rgba(26, 20, 16, 0.65);
  margin-bottom: 22px;
}
.seo-content a {
  color: var(--vermillion);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.seo-content a:hover { color: var(--ink); }
.seo-list {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0 14px;
}
.seo-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(26, 20, 16, 0.82);
  margin-bottom: 8px;
}
.seo-langlinks {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(26, 20, 16, 0.6);
}

/* ════════════ Footer cols (multi-column footer) ════════════ */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 12px 0 28px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 253, 247, 0.55);
  margin: 0 0 12px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 253, 247, 0.72);
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--cream); }

@media (max-width: 720px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .seo-content h2 { font-size: 24px; }
  .seo-content h3 { font-size: 17px; }
}

/* ════════════ Generic article / blog page styles ════════════ */
.article-page {
  background: var(--cream);
  min-height: 100vh;
  min-height: 100dvh;
}
.article-hero {
  padding: calc(var(--nav-h) + 56px) 0 32px;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(232, 106, 34, 0.04) 100%);
}
.article-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vermillion);
  margin-bottom: 14px;
}
.article-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 820px;
}
.article-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 20, 16, 0.78);
  max-width: 720px;
  margin: 0 0 8px;
}
.article-meta {
  font-size: 13px;
  color: rgba(26, 20, 16, 0.5);
  margin-top: 18px;
}
.article-body {
  padding: 48px 0 72px;
}
.article-hero .container,
.article-body .container { max-width: 760px; }
.article-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 10px;
}
.article-body p, .article-body li {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 20, 16, 0.86);
}
.article-body p { margin: 0 0 14px; }
.article-body ul, .article-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.article-body li { margin-bottom: 8px; }
.article-body a {
  color: var(--vermillion);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.article-body a:hover { color: var(--ink); }
.article-body blockquote {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 22px 0;
  font-style: normal;
  color: rgba(26, 20, 16, 0.74);
}
.article-cta-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 28px 30px;
  margin: 36px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.article-cta-card p {
  margin: 0;
  font-size: 16px;
  color: var(--cream);
  font-weight: 600;
}
.article-cta-card a {
  background: var(--vermillion);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
}
.article-cta-card a:hover { background: #d05a17; color: var(--cream); }

/* Blog index */
.blog-index { padding: calc(var(--nav-h) + 56px) 0 72px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.blog-card {
  background: white;
  border: 1px solid rgba(26, 20, 16, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  color: var(--ink);
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(26, 20, 16, 0.18);
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 8px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 20, 16, 0.68);
  margin: 0;
}
.blog-card .blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vermillion);
}

/* Hindi page typography tweak */
[lang="hi"], [lang="hi-IN"] {
  font-family: "Inter", "Noto Sans Devanagari", system-ui, sans-serif;
}

/* ════════════════════════════════════════════════════
   TYPOGRAPHY OVERHAUL — bold sans (SuperKalam-style)
   Italic serif is now reserved for the brand wordmark only.
   Everywhere else: tight, confident, bold sans.
   ════════════════════════════════════════════════════ */

/* Brand wordmark keeps editorial italic serif — it IS the logo. */
.nav-brand, .footer-name {
  font-family: var(--font-display) !important;
  font-style: italic !important;
}

/* Hero title — huge, tight, bold sans */
.hero-title {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}
.hero-highlight {
  font-weight: 800;
  color: var(--marigold);
}

/* Section titles — bold sans, big but not screaming */
.section-title {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

/* Card/feature/step/usecase headings — bold sans */
.usecase-card h3,
.feature-card h3,
.step-card h3,
.pricing-header h3,
.faq-question {
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* Avatars (Aanya in phone, testimonials, demo) — bold sans capitals */
.phone-avatar,
.testimonial-avatar,
.demo-avatar {
  font-weight: 700 !important;
}

/* Pricing/score numbers — tight, bold */
.price-main,
.demo-score-num,
.compare-table .price-row strong {
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Testimonial quotes — clean weight + quote marks instead of italic */
.testimonial-quote {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.testimonial-quote::before { content: '"'; opacity: 0.4; margin-right: 1px; }
.testimonial-quote::after  { content: '"'; opacity: 0.4; margin-left: 1px; }

/* Hero subtitle — slight weight bump for impact */
.hero-subtitle {
  font-weight: 400;
}
.hero-subtitle strong { font-weight: 700; color: var(--ink); }

/* Section subtitles stay regular */
.section-subtitle {
  font-weight: 400;
  color: var(--ink-2);
}

/* Demo header tightening */
.phone-name { font-weight: 700; }
.demo-status, .phone-status { font-weight: 500; }

/* Compare table headline tweak */
.compare-table thead .highlight-col {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

/* ════════════ BPO Role-play section ════════════ */
.roleplay {
  padding: 64px 0;
  background: var(--cream, #FBF5E9);
  border-bottom: 1px solid var(--hair, #E8E1D2);
}
.roleplay-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink, #1A1410);
  text-align: center;
  margin: 0 0 8px;
}
.roleplay-sub {
  text-align: center;
  font-size: 15px;
  color: var(--ink-2, #4A4036);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.roleplay-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.roleplay-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.roleplay-q {
  appearance: none;
  background: var(--paper, #FFFDF7);
  border: 1px solid var(--hair, #E8E1D2);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink, #1A1410);
  line-height: 1.35;
  transition: border-color 160ms ease, transform 140ms ease;
}
.roleplay-q small {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-3, #8A7E6E);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.roleplay-q:hover { border-color: var(--marigold, #E86A22); transform: translateX(2px); }
.roleplay-q.active {
  border-color: var(--marigold, #E86A22);
  background: linear-gradient(135deg, #FFF5E6, var(--paper, #FFFDF7));
  box-shadow: 0 8px 20px -14px rgba(232,106,34,0.4);
}
.roleplay-q-num {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--cream, #FBF5E9);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2, #4A4036);
  flex-shrink: 0;
}
.roleplay-q.active .roleplay-q-num { background: var(--marigold, #E86A22); color: var(--paper, #FFFDF7); }
.roleplay-phone { justify-self: center; }

@media (max-width: 860px) {
  .roleplay-grid { grid-template-columns: 1fr; gap: 28px; }
  .roleplay-phone { order: -1; }
}

/* ════════════ Trust badge row ════════════ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.trust-badge strong { color: var(--marigold); font-weight: 700; }
.trust-stars { color: var(--haldi); letter-spacing: 1px; font-size: 11px; }

/* Meet Aanya, humanize the AI tutor (avatar swap-ready for a real character illustration) */
.meet-aanya { padding: 72px 0; background: var(--cream); }
.meet-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 880px;
}
.meet-avatar {
  position: relative;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--marigold) url('/img/aanya.jpg') center 18% / cover no-repeat;
  display: grid; place-items: center;
  box-shadow: 0 14px 32px -10px rgba(232, 106, 34, 0.5);
  flex-shrink: 0;
}
.meet-avatar-mark {
  display: none;
}
.meet-status-dot {
  position: absolute;
  bottom: 7px; right: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--leaf);
  border: 3px solid var(--cream);
}
.meet-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.meet-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 54ch;
  margin-bottom: 18px;
}
.meet-traits { display: flex; flex-wrap: wrap; gap: 8px; }
.meet-trait {
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  background: var(--paper); border: 1px solid var(--hair);
  border-radius: 999px; padding: 6px 12px;
}
@media (max-width: 640px) {
  .meet-aanya { padding: 56px 0; }
  .meet-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 22px; }
  .meet-quote { max-width: none; }
  .meet-traits { justify-content: center; }
}

/* Built-with logo strip (real tech: Claude, Razorpay, WhatsApp) */
.logostrip {
  padding: 26px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--paper);
}
.logostrip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.logostrip-label { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.logostrip-logos { display: flex; align-items: center; gap: 30px; }
.logostrip-logos img {
  width: auto;
  opacity: 0.5;
  transition: opacity 200ms ease;
}
.logostrip-logos img:hover { opacity: 0.85; }
@media (max-width: 640px) {
  .logostrip-inner { flex-direction: column; gap: 16px; }
  .logostrip-logos { gap: 24px; }
}
.trust-live {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.trust-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
  animation: trustPulse 2s ease-in-out infinite;
}
@keyframes trustPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@media (max-width: 860px) {
  .trust-row { justify-content: flex-start; }
}
