/* =====================================================================
   AloeVoice — Landing Page (redesign)
   ===================================================================== */

:root {
  --color-primary:        #3EA76F;
  --color-primary-dark:   #152D20;
  --color-primary-light:  #EBF6F0;
  --color-accent:         #E77462;
  --color-accent-hover:   #d4614f;
  --color-text:           #230F10;
  --color-text-secondary: #5C4A4B;
  --color-text-muted:     #8A7A7B;
  --color-bg:             #FAFBF9;
  --color-surface:        #FFFFFF;
  --color-border:         #E2DDD8;
  --color-dark-bg:        #0B1A12;
  --color-dark-surface:   #132A1B;
  --color-dark-border:    rgba(255, 255, 255, 0.08);
  --color-dark-text:      #ffffff;
  --color-dark-text-mute: #a1a1aa;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 25, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 25, 20, 0.12);

  --nav-h: 70px;
  --max-w: 1460px;
}

/* =================== reset =================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.shell {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section { position: relative; }
.section-pad { padding: 124px 0; }
.section-pad-tight { padding: 94px 0 124px; }

.section-light { background: var(--color-bg); color: var(--color-text); }
.section-dark  { background: var(--color-dark-bg); color: var(--color-dark-text); }

.section-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
  max-width: 780px;
  margin-bottom: 18px;
}

.section-headline em {
  font-style: italic;
  color: var(--color-primary);
}

.section-headline-light { color: var(--color-dark-text); }
.section-headline-light em { color: var(--color-primary); }

.section-sub {
  max-width: 720px;
  font-size: 20px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.section-sub-light { color: var(--color-dark-text-mute); }

.mono { font-family: var(--font-mono); }

/* =================== buttons =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-large { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(231, 116, 98, 0.32);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(231, 116, 98, 0.4);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(231, 116, 98, 0.32);
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.section-dark .btn-ghost,
.hero .btn-ghost,
.final-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.section-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.final-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* =================== nav =================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.nav-scrolled {
  background: rgba(11, 26, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-dark-border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links > a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links > a:hover { color: #fff; }

.nav-links > a:not(.nav-cta):not(.nav-ghost)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--color-primary);
  transition: right 0.25s ease;
}
.nav-links > a:not(.nav-cta):not(.nav-ghost):hover::after { right: 0; }

.nav-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 7px 14px !important;
  font-size: 13px !important;
}
.nav-ghost:hover { border-color: var(--color-primary); }

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(231, 116, 98, 0.28);
}
.nav-cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: 42px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 18px; height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border-radius: 1px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =================== hero =================== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 86px) 0 104px;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(62, 167, 111, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #0B1A12 0%, #132A1B 50%, #0B1A12 100%);
  color: var(--color-dark-text);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 20%; right: 10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(62, 167, 111, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  to { transform: translateY(-30px) scale(1.05); opacity: 0.85; }
}

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

.hero-text { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(62, 167, 111, 0.1);
  border: 1px solid rgba(62, 167, 111, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(62, 167, 111, 0.18);
  animation: heroReveal 0.6s ease forwards;
  opacity: 0;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary);
  animation: heroDotPulse 1.6s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 22px;
  animation: heroReveal 0.6s ease forwards 0.2s;
  opacity: 0;
}
.hero-headline em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-sub {
  font-size: 21px;
  color: var(--color-dark-text-mute);
  max-width: 640px;
  margin-bottom: 32px;
  animation: heroReveal 0.6s ease forwards 0.4s;
  opacity: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: heroReveal 0.6s ease forwards 0.6s;
  opacity: 0;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-orb {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle at 50% 50%, rgba(62, 167, 111, 0.32) 0%, transparent 65%);
  filter: blur(20px);
  border-radius: 50%;
  animation: heroOrb 6s ease-in-out infinite alternate;
}
@keyframes heroOrb {
  to { transform: scale(1.12); opacity: 0.8; }
}

.hero-lottie {
  width: 400px;
  height: 400px;
  position: relative;
  z-index: 1;
}

.hero-svg-fallback {
  position: absolute;
  width: 320px;
  height: 320px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.hero-svg-ring   { transform-origin: center; animation: heroRing 6s linear infinite; }
.hero-svg-ring-2 { animation-duration: 10s; animation-direction: reverse; }
@keyframes heroRing {
  to { transform: rotate(360deg); }
}
.hero-svg-pulse  { transform-origin: center; animation: heroPulse 2.4s ease-in-out infinite; }
@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* hero stats bar */
.hero-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 0;
  border-top: 1px solid var(--color-dark-border);
  border-bottom: 1px solid var(--color-dark-border);
  animation: heroReveal 0.6s ease forwards 0.8s;
  opacity: 0;
  position: relative;
  z-index: 1;
}
.hero-stat {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid var(--color-dark-border);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat-number,
.hero-stat-suffix { color: var(--color-primary); }
.hero-stat span:not(.hero-stat-suffix):not(.hero-stat-number) {
  display: block;
  font-size: 13px;
  color: var(--color-dark-text-mute);
  letter-spacing: 0.02em;
}

/* =================== reveal-on-scroll =================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.problem-grid > .reveal-on-scroll:nth-child(1),
.steps > .reveal-on-scroll:nth-child(1),
.why-grid > .reveal-on-scroll:nth-child(1),
.pricing-grid > .reveal-on-scroll:nth-child(1) { transition-delay: 0s; }
.problem-grid > .reveal-on-scroll:nth-child(2),
.steps > .reveal-on-scroll:nth-child(2),
.why-grid > .reveal-on-scroll:nth-child(2),
.pricing-grid > .reveal-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.problem-grid > .reveal-on-scroll:nth-child(3),
.steps > .reveal-on-scroll:nth-child(3),
.why-grid > .reveal-on-scroll:nth-child(3),
.pricing-grid > .reveal-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.problem-grid > .reveal-on-scroll:nth-child(4),
.pricing-grid > .reveal-on-scroll:nth-child(4) { transition-delay: 0.36s; }
.pricing-grid > .reveal-on-scroll:nth-child(5) { transition-delay: 0.48s; }
.pricing-grid > .reveal-on-scroll:nth-child(6) { transition-delay: 0.60s; }
.pricing-grid > .reveal-on-scroll:nth-child(7) { transition-delay: 0.72s; }

/* =================== problem =================== */
.problem-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  margin-bottom: 18px;
  background: rgba(231, 116, 98, 0.1);
  color: var(--color-accent);
  position: relative;
}
.problem-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(231, 116, 98, 0.25);
  animation: iconPulse 2.4s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 0; }
}
.problem-icon-fire  { color: #e74c3c; background: rgba(231, 76, 60, 0.1); }
.problem-icon-coin  { color: #d4a017; background: rgba(212, 160, 23, 0.1); }
.problem-icon-box   { color: var(--color-text-secondary); background: rgba(92, 74, 75, 0.08); }
.problem-icon-alert { color: var(--color-accent); }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--color-text);
}
.problem-card p {
  font-size: 17px;
  color: var(--color-text-secondary);
}

/* =================== how it works =================== */
.steps {
  list-style: none;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 134px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(62, 167, 111, 0.3) 20%, rgba(62, 167, 111, 0.3) 80%, transparent);
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 10px 8px;
}

.step-lottie {
  width: 160px; height: 160px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(62, 167, 111, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.step-lottie lottie-player {
  width: 148px; height: 148px;
}

.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 22px;
  font-family: var(--font-display);
  box-shadow: 0 0 0 6px rgba(62, 167, 111, 0.18), 0 0 30px rgba(62, 167, 111, 0.45);
  position: relative;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--color-dark-text);
  margin-bottom: 12px;
}
.step p {
  font-size: 18px;
  color: var(--color-dark-text-mute);
  max-width: 360px;
  margin: 0 auto;
}

/* =================== transparency =================== */
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.transparency-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.transparency-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--color-text-secondary);
}
.transparency-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-primary-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%233EA76F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8l3 3 7-7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* dashboard mock */
.dashboard-mock {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  animation: dashFloat 6s ease-in-out infinite alternate;
}
@keyframes dashFloat {
  to { transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(-12px); }
}

.dashboard-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f5f3ef;
  border-bottom: 1px solid var(--color-border);
}
.dashboard-mock-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #d8cfc6;
}
.dashboard-mock-dot:nth-child(1) { background: #ed6a5e; }
.dashboard-mock-dot:nth-child(2) { background: #f4be4f; }
.dashboard-mock-dot:nth-child(3) { background: #61c454; }
.dashboard-mock-title {
  margin-left: 14px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.dashboard-mock-body { padding: 22px; }

.dashboard-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.dash-stat {
  background: linear-gradient(135deg, var(--color-primary-light), #fff);
  border: 1px solid rgba(62, 167, 111, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 600;
}
.dash-stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-primary-dark);
}
.dash-stat-trend {
  font-size: 11px;
  color: var(--color-text-muted);
}
.dash-stat-trend-up {
  color: var(--color-primary);
  font-weight: 600;
}

.dashboard-mock-table {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.dashboard-mock-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 8px;
  padding: 11px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.dashboard-mock-row:last-child { border-bottom: 0; }
.dashboard-mock-row-head {
  background: #fafafa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 600;
}

.dash-pill {
  display: inline-flex;
  width: fit-content;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 600;
}
.dash-tag {
  display: inline-flex;
  width: fit-content;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.dash-tag-success { background: rgba(62, 167, 111, 0.16); color: var(--color-primary); }
.dash-tag-info    { background: rgba(91, 142, 201, 0.16); color: #3a6fa5; }
.dash-tag-muted   { background: rgba(0, 0, 0, 0.05); color: var(--color-text-muted); }

/* =================== why us =================== */
.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 167, 111, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.why-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(62, 167, 111, 0.12);
  border: 1px solid rgba(62, 167, 111, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-dark-text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 17px;
  color: var(--color-dark-text-mute);
}

/* =================== testimonial =================== */
.testimonial-section { padding: 100px 0; }
.testimonial-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 30px 20px;
}
.testimonial-mark {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
  color: rgba(62, 167, 111, 0.18);
  pointer-events: none;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 24px;
}
.testimonial-attr {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* =================== pricing =================== */
.pricing-table-wrap {
  margin-top: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: left;
  word-break: break-word;
}

.pricing-table th {
  background: #f4f8f5;
  color: var(--color-primary-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pricing-table td:first-child {
  color: var(--color-text);
  font-weight: 700;
}

.pricing-table tr:nth-child(even) td {
  background: #fbfcfb;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  vertical-align: middle;
}

.pricing-chip-popular {
  background: rgba(62, 167, 111, 0.16);
  color: var(--color-primary-dark);
}

.pricing-chip-best {
  background: rgba(231, 116, 98, 0.18);
  color: #7b2a1d;
}

.pricing-foot {
  margin-top: 28px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* =================== final CTA =================== */
.final-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(62, 167, 111, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(231, 116, 98, 0.16) 0%, transparent 55%),
    linear-gradient(135deg, #0B1A12 0%, #132A1B 50%, #0B1A12 100%);
  background-size: 200% 200%;
  animation: ctaGradient 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaGradient {
  0%   { background-position: 0% 50%, 100% 50%, 0% 0%; }
  100% { background-position: 100% 50%, 0% 50%, 100% 100%; }
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-cta-inner .eyebrow,
.final-cta-inner .section-headline,
.final-cta-inner .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.final-cta-inner .hero-cta {
  justify-content: center;
  margin-top: 30px;
  animation: none;
  opacity: 1;
}

/* =================== footer =================== */
.site-footer {
  background: #0B1A12;
  color: #ffffff;
  padding: 40px 0 50px;
  border-top: 1px solid var(--color-dark-border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--color-dark-text-mute);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-copy {
  font-size: 13px;
  color: var(--color-dark-text-mute);
}

/* =================== responsive =================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-text { max-width: 720px; margin: 0 auto; }
  .hero-cta  { justify-content: center; }
  .hero-visual { height: 360px; }
  .hero-lottie { width: 320px; height: 320px; }

  .transparency-grid { grid-template-columns: 1fr; gap: 40px; }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 50px; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 26, 18, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 22px 26px;
    border-top: 1px solid var(--color-dark-border);
    box-shadow: 0 18px 30px rgba(0,0,0,0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links > a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-dark-border);
    text-align: left;
    font-size: 16px;
  }
  .nav-links > a::after { display: none; }
  .nav-links > .nav-ghost,
  .nav-links > .nav-cta { margin-top: 10px; text-align: center; }
  .nav-toggle { display: flex; }

  .section-pad { padding: 80px 0; }
  .section-pad-tight { padding: 60px 0 80px; }

  .hero { padding: calc(var(--nav-h) + 50px) 0 60px; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px 0; }
  .hero-stat { border-right: 0; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--color-dark-border); }
  .hero-stat strong { font-size: 30px; }
  .hero-visual { height: 300px; }
  .hero-lottie { width: 280px; height: 280px; }

  .problem-grid { grid-template-columns: 1fr; }

  .step-lottie {
    width: 140px;
    height: 140px;
  }
  .step-lottie lottie-player {
    width: 128px;
    height: 128px;
  }

  .pricing-table th,
  .pricing-table td {
    font-size: 12px;
    padding: 10px 8px;
  }

  .pricing-chip {
    display: block;
    margin: 6px 0 0;
    width: fit-content;
  }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .shell { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-headline { font-size: 28px; }
  .section-headline { font-size: 26px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: 0 !important; padding: 12px 0; border-bottom: 1px solid var(--color-dark-border); }
  .hero-stat:last-child { border-bottom: 0; }
  .hero-visual { height: 240px; }
  .hero-lottie { width: 220px; height: 220px; }
  .pricing-table th,
  .pricing-table td {
    font-size: 11px;
    padding: 8px 6px;
  }
}

/* respect prefers-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;
  }
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
}
