html { scroll-behavior: smooth; }

:root {
  --green: #00c896;
  --green-dark: #00a87d;
  --green-text: #00956e;
  --green-subtle: rgba(0, 200, 150, 0.08);
  --green-glow: rgba(0, 200, 150, 0.2);
  --green-border: rgba(0, 200, 150, 0.28);
  --navy: #0f172a;
  --navy-card: #1a2740;
  --navy-footer: #020617;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text-primary);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

/* === ANIMATIONS === */
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes pulse-ring-2 {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes dot-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glow-sweep {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes slide-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.animate-fade-up { animation: fade-up 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Scroll reveal — pure CSS, no hiding */
.scroll-reveal { animation: fade-up 0.7s ease both; }
.scroll-reveal.scroll-reveal-delay-1 { animation-delay: 0.08s; }
.scroll-reveal.scroll-reveal-delay-2 { animation-delay: 0.16s; }
.scroll-reveal.scroll-reveal-delay-3 { animation-delay: 0.24s; }
.scroll-reveal.scroll-reveal-delay-4 { animation-delay: 0.32s; }
.scroll-reveal.scroll-reveal-delay-5 { animation-delay: 0.4s; }

/* === COMMON === */
.green { color: var(--green-text); }
.green-bright { color: var(--green); }

.green-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: white;
  font-size: 13.5px; font-weight: 700;
  padding: 10px 20px; border-radius: 7px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.green-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--green-glow);
}
.green-btn-lg { font-size: 15px; padding: 13px 28px; }

.label {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); display: block;
}
.label-dark { color: var(--green); }

.dark-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.dark-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,200,150,0.2);
}

/* === NAV === */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-mark {
  width: 27px; height: 27px; background: var(--green);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.logo-text { font-size: 14.5px; font-weight: 800; color: var(--navy); letter-spacing: -0.025em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); font-weight: 700; }

/* === HERO === */
.hero {
  background: linear-gradient(160deg, #eaf7f3 0%, #f0f8f5 25%, #f5faf8 55%, #fff 100%);
  padding: 80px 0 68px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.hero a, .hero button { cursor: pointer; }
#hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 480px; gap: 52px; align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-subtle); border: 1px solid var(--green-border);
  border-radius: 100px; padding: 5px 13px; margin-bottom: 22px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: dot-breathe 2s ease infinite; }
.hero-badge span { font-size: 11.5px; font-weight: 700; color: var(--green-text); }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.05; letter-spacing: -0.038em; color: var(--navy); margin-bottom: 18px; }
.hero p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.65; max-width: 430px; margin-bottom: 30px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 44px; }
.hero-link { font-size: 13.5px; font-weight: 600; color: var(--text-secondary); text-decoration: none; }
.hero-link:hover { color: var(--text-primary); }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat-val { font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.stat-lbl { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.stat-div { width: 1px; height: 30px; background: #cbd5e1; }

/* === WORKFLOW PIPELINE VISUALIZER === */
/* Flip card outer wrapper — floats as a unit */
.flow-card-outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}

/* Toggle pill */
.flow-view-toggle {
  align-self: center;
  display: inline-flex;
  align-items: center;
  background: rgba(8,16,30,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}
.flow-view-track {
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,200,150,0.22) 0%, rgba(0,200,150,0.06) 100%);
  border: 1px solid rgba(0,200,150,0.3);
  box-shadow: 0 0 14px rgba(0,200,150,0.15);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.flow-view-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 10px 26px; border-radius: 100px;
  border: none; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.35);
  transition: color 0.25s;
  position: relative; z-index: 1;
  letter-spacing: -0.015em; white-space: nowrap;
}
.flow-view-btn.active { color: #fff; }
.flow-view-btn:hover:not(.active) { color: rgba(255,255,255,0.65); }

/* Flip card */
.flow-flip-card { perspective: 1400px; width: 100%; }
.flow-flip-inner {
  position: relative; width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.flow-flip-card.flipped .flow-flip-inner { transform: rotateY(180deg); }
.flow-flip-front, .flow-flip-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flow-flip-front { position: relative; }
.flow-flip-back {
  position: absolute; inset: 0;
  transform: rotateY(180deg);
  border-radius: 20px; overflow: hidden;
}
#agent-canvas { width: 100%; height: 100%; display: block; }

.flow-wrap {
  background: #0b1526;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12), 0 10px 28px rgba(0,0,0,0.22), 0 28px 60px rgba(0,0,0,0.16);
  padding: 16px 14px 12px;
  position: relative;
}
.flow-wrap::before {
  content: '';
  position: absolute;
  inset: -28px -18px -40px;
  background: radial-gradient(ellipse at 50% 55%, rgba(0,200,150,0.13) 0%, transparent 65%);
  z-index: -1;
  border-radius: 40px;
  pointer-events: none;
}

.flow-node { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }

/* === LOGOS === */
.logos-section {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.logos-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.logos-label { text-align: center; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; }

/* === LOGO TICKER === */
.logos-ticker-outer { overflow: hidden; width: 100%; position: relative; }
.logos-ticker-outer::before,
.logos-ticker-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.logos-ticker-outer::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logos-ticker-outer::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logos-ticker-track {
  display: flex; align-items: center; gap: 0;
  animation: ticker-scroll 26s linear infinite;
  white-space: nowrap; width: max-content;
}
.logos-ticker-item {
  display: inline-flex; align-items: center; gap: 0;
  padding: 0 36px; font-size: 15px; font-weight: 800;
  color: #b0bac8; letter-spacing: -0.02em;
  position: relative;
}
.logos-ticker-item::after {
  content: '·'; position: absolute; right: 0;
  color: #d1d5db; font-size: 18px;
}
.logos-ticker-item:hover { color: #64748b; }
.ticker-logo { height: 28px; width: 110px; object-fit: contain; object-position: center; display: block; filter: grayscale(1); opacity: 0.45; transition: opacity 0.2s; }
.ticker-logo.invert { filter: grayscale(1) invert(1); }
.logos-ticker-item:hover .ticker-logo { opacity: 0.7; }

/* === AI SECTION === */
.ai-section { background: #fff; padding: 28px 0; border-bottom: 1px solid var(--border); }
.ai-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.ai-label { font-size: 11.5px; font-weight: 600; color: var(--text-muted); white-space: nowrap; letter-spacing: 0.01em; }
.ai-pills { display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap; }
.ai-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}
.ai-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.1); opacity: 0.85; }
.ai-pill svg, .ai-pill img { width: 15px; height: 15px; border-radius: 3px; flex-shrink: 0; }

/* === SECTION WRAPPERS === */
.section { padding: 88px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.section-header p { font-size: 15.5px; line-height: 1.65; max-width: 480px; margin: 0 auto; }

.dark-section { background: var(--navy); color: white; }
.dark-section .section-header p { color: rgba(255,255,255,0.5); }
.dark-section .section-header h2 { color: white; }

/* === FEATURE CARDS === */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { padding: 28px; }
.feature-icon {
  width: 38px; height: 38px;
  background: rgba(0,200,150,0.1);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--green); flex-shrink: 0;
}
.feature-card h3 { font-size: 14.5px; font-weight: 700; color: white; margin-bottom: 8px; }
.feature-card p { font-size: 12.5px; color: rgba(255,255,255,0.47); line-height: 1.65; }

/* === HOW IT WORKS === */
.how-grid { display: grid; grid-template-columns: 360px 1fr; gap: 88px; align-items: start; }
.how-left h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.how-left p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; }
.step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  width: 42px; height: 42px;
  background: var(--green-subtle); border: 1px solid var(--green-border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--green-text); flex-shrink: 0;
}
.step-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.step-body p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.step-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--border); border-radius: 6px;
  padding: 5px 10px; margin-top: 10px;
  font-size: 11.5px; color: var(--text-muted);
}
.step-chip span { background: #f1f5f9; color: var(--text-secondary); font-weight: 700; font-size: 10.5px; padding: 2px 6px; border-radius: 4px; }

/* === BENEFITS === */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { padding: 30px; }
.benefit-icon {
  width: 40px; height: 40px; background: rgba(0,200,150,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--green);
}
.benefit-card h3 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: rgba(255,255,255,0.47); line-height: 1.65; }

/* === TESTIMONIALS === */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 52px; }
.testi-card {
  background: #1a2740; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 28px;
  transition: border-color 0.2s ease;
}
.testi-card:hover { border-color: rgba(0,200,150,0.2); }
.testi-quote { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.72; margin-bottom: 24px; }
.testi-quote strong { color: white; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 800; color: white; flex-shrink: 0;
}
.testi-name { font-size: 13.5px; font-weight: 700; color: white; }
.testi-role { font-size: 11.5px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.testi-wide { grid-column: span 2; }
.testi-wide-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.testi-metrics { display: flex; gap: 24px; flex-shrink: 0; }
.testi-metric-val { font-size: 34px; font-weight: 800; letter-spacing: -0.04em; }
.testi-metric-lbl { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 4px; }
.testi-metric-div { width: 1px; background: rgba(255,255,255,0.08); }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 72px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 44px; }
.big-stat-val { font-size: 34px; font-weight: 800; color: white; letter-spacing: -0.04em; }
.big-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 5px; }
.stats-div { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.price-card-featured {
  background: var(--navy); border: 1.5px solid var(--green);
  border-radius: 16px; padding: 30px; position: relative;
  box-shadow: 0 0 40px rgba(0,200,150,0.12);
}
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--green); border-radius: 100px;
  padding: 3px 12px; font-size: 10px; font-weight: 800;
  color: white; letter-spacing: 0.08em; white-space: nowrap;
}
.price-tier { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; }
.price-tier-dark { color: rgba(255,255,255,0.45); }
.price-amount { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 3px; }
.price-amount-dark { color: white; }
.price-period { font-size: 15px; font-weight: 500; }
.price-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.price-sub-dark { color: rgba(255,255,255,0.38); }
.price-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.price-desc-dark { color: rgba(255,255,255,0.55); }
.price-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.price-divider-dark { background: rgba(255,255,255,0.08); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-feature { display: flex; gap: 9px; font-size: 12.5px; color: #334155; align-items: flex-start; }
.price-feature-dark { color: rgba(255,255,255,0.7); }
.price-check { flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.price-check-green { color: var(--green-text); }
.price-check-bright { color: var(--green); }
.price-cta {
  display: block; text-align: center;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 11px; font-size: 13.5px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.price-cta:hover { border-color: var(--green-text); background: var(--green-subtle); }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding: 20px 0; user-select: none;
}
.faq-q:hover .faq-q-text { color: var(--green-text); }
.faq-q-text { font-size: 14.5px; font-weight: 700; color: var(--navy); transition: color 0.15s; }
.faq-icon {
  font-size: 20px; color: var(--text-muted); font-weight: 300;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s;
  flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green-text); }
.faq-item.open .faq-q-text { color: var(--green-text); }
.faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 300px; opacity: 1; padding-bottom: 20px; }
.faq-answer p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

/* === CTA SECTION === */
.cta-section {
  background: var(--navy); padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.1) 0%, transparent 70%);
  pointer-events: none; animation: glow-sweep 4s ease infinite;
}
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; position: relative; text-align: center; }
.cta-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 72px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.cta-nav-links { display: flex; gap: 24px; }
.cta-nav-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.cta-nav-links a:hover { color: rgba(255,255,255,0.8); }
.cta-h { font-size: 46px; font-weight: 800; letter-spacing: -0.035em; color: white; margin-bottom: 18px; line-height: 1.1; }
.cta-sub { font-size: 15.5px; color: rgba(255,255,255,0.48); max-width: 500px; margin: 0 auto 36px; line-height: 1.65; }
.cta-pills { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.07); }
.cta-pill { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.35); }

/* === FOOTER === */
footer { background: var(--navy-footer); padding: 56px 0 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 260px; margin: 14px 0 18px; }
.footer-col-label { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.22); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { font-size: 11.5px; color: rgba(255,255,255,0.22); text-decoration: none; }
.footer-socials a:hover { color: rgba(255,255,255,0.55); }

/* Logo dark */
.logo-text-dark { color: white; }

/* === STATS COUNTER === */
@keyframes stat-roll {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0%); opacity: 1; }
}
.stat-val { overflow: hidden; }
.stat-val.counting { animation: stat-roll 0.4s cubic-bezier(0.22, 1, 0.36, 1) both; }
.big-stat-val { overflow: hidden; }
.big-stat-val.counting { animation: stat-roll 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.page-hero h1 { font-size: 48px; font-weight: 800; letter-spacing: -0.035em; color: white; line-height: 1.1; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 520px; }

/* === CASE STUDY CARDS === */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cs-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none; display: flex; flex-direction: column;
}
.cs-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: var(--green-border); }
.cs-card-header {
  height: 120px; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 20px;
}
.cs-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: white;
}
.cs-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-text); background: var(--green-subtle);
  border: 1px solid var(--green-border);
  padding: 4px 10px; border-radius: 100px;
}
.cs-card-body { padding: 0 24px 24px; flex: 1; display: flex; flex-direction: column; }
.cs-client { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px; }
.cs-role { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.cs-metric {
  font-size: 30px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--green-text); margin-bottom: 4px;
}
.cs-metric-label { font-size: 11.5px; color: var(--text-muted); margin-bottom: 16px; }
.cs-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.cs-link {
  font-size: 13px; font-weight: 700; color: var(--green-text);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  transition: gap 0.15s ease;
}
.cs-card:hover .cs-link { gap: 8px; }

/* === CASE STUDIES PAGE === */
.cs-hero-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.cs-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.6); max-width: 520px;
  line-height: 1.65; margin-top: 14px;
}
.cs-title {
  font-size: 17px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* === FEATURES TOGGLE === */
.feat-toggle-wrap {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.feat-toggle {
  position: relative; display: inline-flex;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 4px;
}
.feat-toggle-btn {
  position: relative; z-index: 1;
  background: none; border: none; cursor: pointer;
  padding: 9px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease;
  font-family: inherit; white-space: nowrap;
}
.feat-toggle-btn.active { color: var(--navy); }
.feat-toggle-slider {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  background: white; border-radius: 100px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.feat-panel {
  animation: feat-fade-in 0.3s ease both;
}
@keyframes feat-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.feat-panel .feature-card {
  animation: feat-fade-in 0.35s ease both;
}
.feat-panel .feature-card:nth-child(2) { animation-delay: 0.06s; }
.feat-panel .feature-card:nth-child(3) { animation-delay: 0.12s; }
.feat-panel .feature-card:nth-child(4) { animation-delay: 0.18s; }
.feat-panel .feature-card:nth-child(5) { animation-delay: 0.24s; }
.feat-panel .feature-card:nth-child(6) { animation-delay: 0.30s; }

/* ================================================
   BLOG LISTING
   ================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--green-border);
}
.blog-card:hover .cs-link { gap: 8px; color: var(--green); }

.blog-card-header {
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
}
.blog-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body .cs-desc { flex: 1; }

.blog-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-meta-dot { color: var(--border); }

.blog-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.blog-filter-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.blog-filter-pill:hover { border-color: var(--green-border); color: var(--green-text); }
.blog-filter-pill.active {
  background: var(--green-subtle);
  border-color: var(--green-border);
  color: var(--green-text);
  font-weight: 700;
}

/* ================================================
   BLOG POST
   ================================================ */
.blog-back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  transition: opacity 0.15s;
}
.blog-back-link:hover { opacity: 0.75; }

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.blog-cover-wrap {
  background: var(--bg-light);
  padding: 0 0 40px;
}
.blog-cover-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--navy);
}
.blog-article {
  padding: 56px 0 80px;
}
.blog-prose {
  max-width: 720px;
  margin: 0 auto;
}

/* Prose typography for rendered markdown */
.blog-prose h2 {
  font-size: 28px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--navy); margin: 40px 0 16px; line-height: 1.2;
}
.blog-prose h3 {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin: 32px 0 12px;
}
.blog-prose p {
  font-size: 15.5px; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 20px;
}
.blog-prose a { color: var(--green-text); text-decoration: underline; }
.blog-prose a:hover { color: var(--green-dark); }
.blog-prose strong { color: var(--text-primary); }
.blog-prose ul, .blog-prose ol {
  margin: 0 0 20px 24px; color: var(--text-secondary);
  font-size: 15px; line-height: 1.75;
}
.blog-prose li { margin-bottom: 6px; }
.blog-prose blockquote {
  border-left: 3px solid var(--green);
  padding: 12px 20px; margin: 24px 0;
  background: var(--green-subtle); border-radius: 0 8px 8px 0;
}
.blog-prose blockquote p { color: var(--text-primary); margin-bottom: 0; }
.blog-prose code {
  background: #f1f5f9; padding: 2px 6px; border-radius: 4px;
  font-size: 13.5px; color: var(--navy);
}
.blog-prose pre {
  background: var(--navy); color: #e2e8f0;
  padding: 20px; border-radius: 12px; overflow-x: auto;
  margin: 24px 0; font-size: 13px; line-height: 1.7;
}
.blog-prose pre code {
  background: none; padding: 0; color: inherit;
}
.blog-prose img {
  width: 100%; border-radius: 12px; margin: 24px 0;
  border: 1px solid var(--border);
}
.blog-prose hr {
  border: none; height: 1px; background: var(--border);
  margin: 40px 0;
}
.blog-prose table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 14px;
}
.blog-prose th {
  text-align: left; padding: 10px 14px; font-weight: 700;
  color: var(--navy); border-bottom: 2px solid var(--border);
}
.blog-prose td {
  padding: 10px 14px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

/* === ROI CALCULATOR === */
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.roi-inputs {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.roi-inputs-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.roi-field {
  margin-bottom: 28px;
}
.roi-field:last-child {
  margin-bottom: 0;
}
.roi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.roi-field-header label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.roi-field-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-text);
  min-width: 48px;
  text-align: right;
}
.roi-field-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: block;
}
.roi-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}
.roi-field-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Slider */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 100px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 100px;
}
.roi-slider::-moz-range-track {
  height: 5px;
  border-radius: 100px;
  background: var(--border);
}

/* Radio buttons */
.roi-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.roi-radio {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
}
.roi-radio:hover {
  border-color: var(--green-border);
  color: var(--green-text);
}
.roi-radio.active {
  background: var(--green-subtle);
  border-color: var(--green-border);
  color: var(--green-text);
  font-weight: 700;
}

/* Checkboxes */
.roi-check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.roi-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}
.roi-check input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Results column */
.roi-results {
  position: sticky;
  top: 80px;
}
.roi-hero-metric {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.roi-hero-metric::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.roi-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.roi-hero-value {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

/* Metric cards */
.roi-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.roi-metric-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.roi-metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-border);
}
.roi-metric-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.roi-metric-label {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* 3-year savings */
.roi-three-year {
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.roi-three-year-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 4px;
}
.roi-three-year-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-text);
  letter-spacing: -0.03em;
}

/* Results CTA */
.roi-results-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 15px;
  padding: 14px 28px;
}

/* Ghost button */
.roi-ghost-btn {
  font-size: 15px;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.15s, color 0.15s;
}
.roi-ghost-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: white;
}

/* Before/After bars */
.roi-bars-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.roi-bar-row {
  margin-bottom: 20px;
}
.roi-bar-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.roi-bar-track {
  height: 44px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.roi-bar {
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 80px;
}
.roi-bar-before {
  background: linear-gradient(135deg, #334155 0%, var(--navy) 100%);
}
.roi-bar-after {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.roi-bar-text {
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}
.roi-bar-savings {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 20px;
  line-height: 1.65;
}
.roi-bar-savings strong {
  color: var(--green-text);
  font-weight: 800;
}

/* Timeline */
.roi-timeline {
  max-width: 720px;
  margin: 0 auto;
}
.roi-tl-track {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  position: relative;
  margin-bottom: 12px;
}
.roi-tl-fill {
  height: 100%;
  background: var(--green);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.roi-tl-marker {
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.roi-tl-marker-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--navy);
  box-shadow: 0 0 12px rgba(0,200,150,0.4);
}
.roi-tl-marker-label {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.roi-tl-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
  padding-top: 20px;
}
.roi-tl-meta {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.roi-tl-meta-val {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}
.roi-tl-meta-lbl {
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
}

/* Sticky CTA */
.roi-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  z-index: 40;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.roi-sticky-cta.visible {
  transform: translateY(0);
}
.roi-sticky-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-right: 8px;
}
.roi-sticky-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-text);
  letter-spacing: -0.03em;
}

/* Value pop animation */
@keyframes roi-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.roi-pop {
  animation: roi-pop 0.25s ease;
}

/* === HAMBURGER BUTTON (hidden on desktop) === */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   RESPONSIVE — TABLET (≤ 900px)
   ================================================ */
@media (max-width: 900px) {
  /* Nav */
  .nav-inner { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 58px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px 24px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 15px; }
  .nav-cta { display: none; }

  /* Hero */
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 14.5px; }
  .flow-card-outer { max-width: 420px; margin: 0 auto; }

  /* Logos */
  .logos-inner { padding: 0 24px; }

  /* Sections */
  .section-inner { padding: 0 24px; }
  .section-header h2 { font-size: 30px; }
  .section { padding: 64px 0; }

  /* Feature cards */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  /* How it works */
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-left h2 { font-size: 30px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-wide { grid-column: span 1; }
  .testi-wide-inner { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { gap: 36px; flex-wrap: wrap; justify-content: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pricing-grid > :last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }

  /* CTA */
  .cta-inner { padding: 0 24px; }
  .cta-h { font-size: 34px; }
  .cta-pills { gap: 16px; flex-wrap: wrap; }

  /* Footer */
  .footer-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Case studies */
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-inner { padding: 0 24px; }
  .page-hero h1 { font-size: 36px; }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-prose { padding: 0 24px; }
  .blog-cover-wrap .container { padding: 0 24px; }

  /* ROI Calculator */
  .roi-layout { grid-template-columns: 1fr; }
  .roi-results { position: static; }
  .roi-hero-value { font-size: 38px; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤ 580px)
   ================================================ */
@media (max-width: 580px) {
  /* Hero */
  .hero { padding: 40px 0 36px; cursor: auto; }
  .hero-inner { padding: 0 18px; gap: 28px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 13.5px; margin-bottom: 22px; }
  .hero-badge { margin-bottom: 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .hero-stats { gap: 18px; }
  .stat-val { font-size: 18px; }
  .stat-lbl { font-size: 10.5px; }
  .flow-card-outer { max-width: 100%; }

  /* Logos */
  .logos-inner { padding: 0 18px; }
  .ticker-logo { height: 22px; width: 80px; }
  .logos-ticker-item { padding: 0 20px; }

  /* Sections */
  .section-inner { padding: 0 18px; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 14px; }
  .section-header { margin-bottom: 36px; }

  /* Feature & benefit cards */
  .cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* How it works */
  .how-left h2 { font-size: 26px; }
  .step { gap: 16px; padding: 22px 0; }

  /* Testimonials */
  .testi-quote { font-size: 13.5px; }
  .testi-metrics { flex-direction: column; gap: 16px; }
  .testi-metric-div { width: 100%; height: 1px; }
  .testi-metric-val { font-size: 28px; }
  .stats-row { gap: 24px; }
  .big-stat-val { font-size: 28px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid > :last-child { grid-column: span 1; max-width: 100%; }

  /* FAQ */
  .faq-q-text { font-size: 13.5px; }

  /* CTA */
  .cta-inner { padding: 0 18px; }
  .cta-h { font-size: 26px; }
  .cta-sub { font-size: 14px; }
  .cta-pills { flex-direction: column; gap: 12px; align-items: center; }

  /* Footer */
  .footer-inner { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Case studies */
  .cs-grid { grid-template-columns: 1fr; }
  .page-hero-inner { padding: 0 18px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 14px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-prose { padding: 0 18px; }
  .blog-cover-wrap .container { padding: 0 18px; }
  .blog-prose h2 { font-size: 22px; }

  /* AI pills row */
  .ai-inner { padding: 0 18px; }

  /* ROI Calculator */
  .roi-inputs { padding: 24px 18px; }
  .roi-metrics-grid { grid-template-columns: 1fr; }
  .roi-hero-value { font-size: 30px; }
  .roi-check-group { grid-template-columns: 1fr; }
  .roi-sticky-cta .container { flex-direction: column; gap: 8px; text-align: center; }
  .roi-tl-meta { flex-direction: column; gap: 16px; align-items: center; }
}
