/* ========================================
   Seora.ai — Shared Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; }

/* ---- Colors ---- */
:root {
  --dark: #111111;
  --dark-alt: #0F0F0F;
  --white: #FFFFFF;
  --light-gray: #F7F7F7;
  --light-gray-alt: #FAFAFA;
  --accent: #E8562A;
  --accent-hover: #d44a20;
  --text-dark: #111111;
  --text-white: #FFFFFF;
  --text-muted: #666666;
  --text-muted-light: #888888;
  --border: #E5E5E5;
  --green: #22C55E;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

.accent { color: var(--accent); }

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.label-dark {
  color: var(--text-muted-light);
}

.label-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--dark);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: #f5f5f5;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 72px;
  overflow-x: hidden;
  width: 100%;
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  border-bottom-color: var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo svg {
  width: 28px;
  height: 28px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.navbar-links a:hover {
  color: var(--accent);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-actions .signin-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.navbar-actions .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ---- Hero Section (Dark) ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 100px 24px 48px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-rotating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 56px;
}

.rotating-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.rotating-logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero p {
  font-size: 16px;
  color: #999;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-cta .demo-link {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.hero-cta .demo-link:hover { color: #fff; }

.hero-social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 0 auto; text-decoration: none;
  transition: opacity 0.3s ease;
}
.hero-social-proof:hover { opacity: 0.85; }
.hero-customers-img {
  height: 32px; width: auto;
}
.hero-proof-text {
  font-size: 15px; color: #999; font-weight: 400;
}
.hero-proof-text strong { color: #fff; font-weight: 700; }
.hero-blue-badge {
  height: 20px; width: 20px;
}

/* Hero badge image */
.hero-badge-img {
  text-align: center; margin: 0 auto 24px;
}
.hero-badge-pic {
  height: 160px; width: auto;
  display: block;
  margin: 0 auto;
}

/* Hero both text */
.hero-both-text {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 16px auto 8px;
  font-weight: 400;
}
.hero-both-text strong {
  color: rgba(255,255,255,0.85);
}

/* Laurel badge */
.hero-laurel-badge {
  text-align: center;
  margin: 0 auto 24px;
}
.laurel-wrap {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.laurel-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
  flex-shrink: 0;
}
.laurel-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
}
.laurel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 4px;
}
.laurel-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.laurel-main {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.laurel-stars {
  display: flex;
  gap: 3px;
  margin: 4px 0 2px;
}
.laurel-stars span {
  color: #f5a623;
  font-size: 18px;
  animation: starPop 0.4s ease both;
}
.laurel-stars span:nth-child(1) { animation-delay: 0.5s; }
.laurel-stars span:nth-child(2) { animation-delay: 0.65s; }
.laurel-stars span:nth-child(3) { animation-delay: 0.8s; }
.laurel-stars span:nth-child(4) { animation-delay: 0.95s; }
.laurel-stars span:nth-child(5) { animation-delay: 1.1s; }
@keyframes starPop {
  0% { opacity: 0; transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}
.laurel-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* Hero overtitle pill */
.hero-overtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.overtitle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: overtitlePulse 2s ease-in-out infinite;
}
@keyframes overtitlePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Hero reassurance line */
.hero-reassurance {
  font-size: 13px;
  color: #888;
  margin-top: 16px;
  letter-spacing: 0.3px;
}

/* Final CTA section */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #1a1a1a 100%);
}

/* ========== TESTIMONIALS V2 — MARQUEE ========== */
.testi-section { background: #fafafa; padding-bottom: 80px; overflow: hidden; }
.testi-header { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Marquee wrapper */
.testi-marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  margin-bottom: 20px;
}
.testi-marquee:hover .testi-track { animation-play-state: paused; }

/* Track */
.testi-track { display: flex; gap: 20px; width: max-content; }
.testi-track-left { animation: marqueeLeft 45s linear infinite; }
.testi-track-right { animation: marqueeRight 45s linear infinite; }

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card */
.testi-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column;
  width: 340px; flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 15px; color: #111; }
.testi-handle { font-size: 13px; color: #888; }
.testi-social { margin-left: auto; flex-shrink: 0; color: #bbb; }
.testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.testi-text { font-size: 14px; line-height: 1.65; color: #444; flex: 1; }

/* Testi chart */
.testi-chart { margin-top: 20px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
/* Testi stats row */
.testi-stats-row { display: flex; gap: 24px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.testi-stat-label { font-size: 12px; color: #888; margin-bottom: 4px; }
.testi-stat-value { font-size: 22px; font-weight: 800; color: #111; }
.testi-stat-up { font-size: 13px; font-weight: 600; color: #22C55E; }

/* ========== PRICING V2 (BLG style) ========== */
.pricing-section-v2 { background: #fff; }
.pricing-v2 {
  max-width: 920px; margin: 0 auto 24px;
  background: #fff; border: 2px solid #e8e8e8; border-radius: 20px;
  padding: 48px; position: relative;
}
.pricing-v2-inner { display: flex; gap: 48px; }
.pricing-v2-left { flex: 0 0 280px; }
.pricing-v2-right { flex: 1; }
.pricing-v2-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); background: rgba(232,86,42,0.08);
  padding: 5px 14px; border-radius: 6px; margin-bottom: 16px;
}
.pricing-v2-name {
  font-size: 40px; font-weight: 800; color: var(--accent); margin-bottom: 12px;
}
.pricing-v2-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.pv2-old { font-size: 16px; color: #aaa; text-decoration: line-through; }
.pv2-current { font-size: 48px; font-weight: 800; color: #111; }
.pv2-period { font-size: 16px; color: #888; }
.pricing-v2-spots {
  display: flex; align-items: flex-start; gap: 10px;
  background: #FFF5F0; border: 1px solid #FFE4D6; border-radius: 12px;
  padding: 14px 16px; margin-bottom: 24px;
  font-size: 14px; color: #333;
}
.pricing-v2-spots svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pricing-v2-spots strong { display: block; color: var(--accent); }
.pricing-v2-spots small { display: block; font-size: 12px; color: #888; margin-top: 2px; font-weight: 400; }
.pricing-v2-included {
  font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #111;
}
.pricing-v2-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pv2-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5; color: #333;
}
.pv2-check {
  color: #22C55E; font-size: 15px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* Agency V2 */
.agency-v2 {
  max-width: 720px; margin: 0 auto;
  background: #f7f7f7; border: 1px solid #e8e8e8; border-radius: 16px;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.agency-v2-info { flex: 1; }
.agency-v2-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: #111; color: #fff;
  padding: 4px 12px; border-radius: 6px; margin-bottom: 8px;
}
.agency-v2 h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.agency-v2 p { font-size: 14px; color: #888; margin: 0; }
.agency-v2-btns { display: flex; gap: 12px; }
.btn-outline {
  background: transparent; border: 1px solid #ddd; color: #333;
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: #999; background: #fff; }

/* ---- Section spacing ---- */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-gray {
  background: var(--light-gray);
  border: none;
}

/* ---- Accordion ---- */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
}

.accordion-header .icon {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

/* ---- Steps accordion ---- */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}

.step-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}

.step-item.active .step-content p {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

/* ---- Logo Marquee ---- */
.marquee-wrap {
  overflow: hidden;
  padding: 40px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track .logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-track .logo-item .logo-dot {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Feature Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card .feature-img {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  overflow: hidden;
}

/* ---- Feature Visual Styles ---- */
.feature-visual { padding: 0; position: relative; }

/* Card 1: Article SEO preview */
.fv-article-preview { width: 100%; height: 100%; display: flex; flex-direction: column; }
.fv-article-header { padding: 10px 14px 8px; background: #fff; border-bottom: 1px solid #eee; }
.fv-dot-row { display: flex; gap: 5px; }
.fv-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.fv-article-body { padding: 12px 14px; flex: 1; background: #fff; }
.fv-tag { display: inline-block; background: #E8562A15; color: var(--accent); font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 4px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.fv-title-line { height: 8px; background: #111; border-radius: 4px; margin-bottom: 4px; width: 85%; opacity: 0.15; }
.fv-title-line.short { width: 50%; }
.fv-text-line { height: 5px; background: #111; border-radius: 3px; margin-bottom: 3px; width: 100%; opacity: 0.08; }
.fv-text-line.medium { width: 65%; }
.fv-spacer { height: 6px; }
.fv-metrics-row { display: flex; gap: 12px; margin-top: 6px; padding-top: 8px; border-top: 1px solid #f0f0f0; }
.fv-metric { display: flex; flex-direction: column; align-items: center; }
.fv-metric-num { font-size: 14px; font-weight: 700; line-height: 1.2; }
.fv-metric-label { font-size: 8px; color: #999; text-transform: uppercase; letter-spacing: 0.3px; }

/* Card 2: Calendar */
.fv-calendar { width: 100%; height: 100%; padding: 12px 14px; background: #fff; }
.fv-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fv-cal-nav { display: flex; gap: 8px; font-size: 14px; color: #999; }
.fv-cal-nav span { cursor: pointer; }
.fv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.fv-cal-day { font-size: 9px; padding: 4px 2px; border-radius: 4px; color: #666; }
.fv-cal-day.head { font-weight: 600; color: #999; font-size: 8px; text-transform: uppercase; }
.fv-cal-day.published { background: #22C55E18; color: var(--green); font-weight: 600; }
.fv-cal-day.scheduled { background: #6366f118; color: #6366f1; font-weight: 600; }
.fv-cal-day.today { background: var(--accent); color: #fff; font-weight: 700; }
.fv-cal-legend { display: flex; gap: 12px; margin-top: 10px; justify-content: center; }
.fv-cal-legend span { font-size: 8px; color: #999; display: flex; align-items: center; gap: 4px; }
.fv-cal-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

/* Card 3: CMS Grid */
.fv-cms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; width: 100%; }
.fv-cms-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 4px; background: #fff; border-radius: 8px; border: 1px solid #f0f0f0; transition: transform 0.2s, box-shadow 0.2s; }
.fv-cms-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.fv-cms-item span { font-size: 9px; color: #666; font-weight: 500; }
.fv-cms-more { border-style: dashed; border-color: #ddd; }
.fv-cms-plus { font-size: 16px !important; font-weight: 700 !important; color: var(--accent) !important; }
.fv-cms-status { display: flex; align-items: center; gap: 6px; justify-content: center; padding: 0 14px 12px; }
.fv-cms-status span { font-size: 9px; color: var(--green); font-weight: 500; }
.fv-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: fv-pulse 2s infinite; }
@keyframes fv-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Card 4: Backlinks Network */
.fv-backlinks { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #fff; }
.fv-network-svg text { font-family: 'Inter', sans-serif; }

/* Card 5: LLM Dashboard */
.fv-llm-dashboard { width: 100%; height: 100%; padding: 12px 14px; background: #fff; display: flex; flex-direction: column; }
.fv-llm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fv-llm-badge { font-size: 8px; background: #22C55E18; color: var(--green); padding: 2px 8px; border-radius: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fv-llm-badge::before { content: ''; display: inline-block; width: 5px; height: 5px; background: var(--green); border-radius: 50%; margin-right: 4px; animation: fv-pulse 2s infinite; }
.fv-llm-platforms { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.fv-llm-row { display: flex; align-items: center; gap: 6px; }
.fv-llm-icon { width: 20px; height: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.fv-llm-name { font-size: 9px; color: #666; width: 52px; flex-shrink: 0; }
.fv-llm-bar-wrap { flex: 1; height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.fv-llm-bar { height: 100%; border-radius: 3px; transition: width 1s ease; }
.fv-llm-pct { font-size: 10px; font-weight: 600; color: #333; width: 28px; text-align: right; flex-shrink: 0; }
.fv-llm-trend { display: flex; align-items: center; gap: 6px; padding-top: 8px; border-top: 1px solid #f0f0f0; margin-top: 4px; }

/* Card 6: Audit */
.fv-audit { width: 100%; height: 100%; padding: 12px 14px; background: #fff; display: flex; align-items: center; gap: 14px; }
.fv-audit-score-wrap { flex-shrink: 0; }
.fv-audit-items { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.fv-audit-row { display: flex; align-items: center; gap: 6px; font-size: 9px; color: #555; }
.fv-audit-row span:nth-child(2) { flex: 1; }
.fv-audit-check { width: 16px; height: 16px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; }
.fv-audit-check.pass { background: #22C55E18; color: var(--green); }
.fv-audit-check.warn { background: #F59E0B18; color: #F59E0B; }
.fv-audit-check.fail { background: #EF444418; color: #EF4444; }
.fv-audit-status { font-size: 8px; font-weight: 600; flex-shrink: 0; }
.fv-audit-status.pass { color: var(--green); }
.fv-audit-status.warn { color: #F59E0B; }
.fv-audit-status.fail { color: #EF4444; }

/* Card 7: Reddit */
.fv-reddit { width: 100%; height: 100%; padding: 12px 14px; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.fv-reddit-post { background: #fafafa; border-radius: 8px; padding: 10px; }
.fv-reddit-header { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.fv-reddit-sub { font-size: 9px; font-weight: 600; color: #333; }
.fv-reddit-time { font-size: 8px; color: #999; margin-left: auto; }
.fv-reddit-body { margin-bottom: 6px; }
.fv-reddit-stats { display: flex; gap: 10px; font-size: 9px; color: #999; }
.fv-reddit-reply { display: flex; gap: 8px; padding-left: 8px; }
.fv-reddit-reply-bar { width: 2px; background: var(--accent); opacity: 0.3; border-radius: 1px; flex-shrink: 0; }
.fv-reddit-reply-author { font-size: 9px; font-weight: 600; color: var(--accent); margin-bottom: 4px; }

/* Card 8: Ranking Factors */
.fv-ranking { width: 100%; height: 100%; padding: 12px 14px; background: #fff; display: flex; flex-direction: column; }
.fv-ranking-header { font-size: 10px; font-weight: 600; color: #333; margin-bottom: 10px; }
.fv-ranking-item { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.fv-ranking-label { font-size: 8px; color: #666; width: 70px; flex-shrink: 0; }
.fv-ranking-bar-wrap { flex: 1; height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.fv-ranking-bar { height: 100%; border-radius: 3px; }
.fv-ranking-val { font-size: 10px; font-weight: 700; color: #333; width: 20px; text-align: right; flex-shrink: 0; }

/* Article Preview Visual */
.ap-visual { width: 100%; height: 100%; position: relative; display: flex; align-items: flex-end; }
.ap-visual svg { position: absolute; bottom: 0; left: 0; }
.ap-visual-overlay { position: relative; z-index: 1; padding: 12px 16px; width: 100%; }
.ap-stat { display: inline-block; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px; }

.feature-card .arrow-link {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.feature-card .arrow-link:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ---- Testimonial between features ---- */
.feature-testimonial {
  grid-column: 1 / -1;
  background: var(--accent);
  color: var(--white);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
  border: none;
}

.feature-testimonial .quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ---- Success Stories Carousel ---- */
.stories-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.stories-carousel::-webkit-scrollbar { display: none; }

.story-card {
  flex-shrink: 0;
  width: 280px;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 24px;
  scroll-snap-align: start;
  border: 1px solid #2a2a2a;
}

.story-card .story-brand {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 12px;
}

.story-card .story-metric {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.story-card .story-label {
  font-size: 13px;
  color: #888;
}

/* ---- Counter / Impact ---- */
.impact-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.impact-item {
  text-align: center;
}

.impact-number {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-label {
  font-size: 14px;
  color: #999;
}

/* ---- Testimonials Grid ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.testimonial-card .tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-card .tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #666;
  flex-shrink: 0;
}

.testimonial-card .tc-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-card .tc-role {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-card .tc-stars {
  color: #F59E0B;
  font-size: 13px;
  margin-bottom: 8px;
}

.testimonial-card .tc-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Pricing ---- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card .pricing-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-card .pricing-name {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-card .pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-card .price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.pricing-card .price-current {
  font-size: 42px;
  font-weight: 800;
}

.pricing-card .price-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-spots {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF5F0;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px 0 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-spots .fire {
  font-size: 16px;
}

.pricing-spots small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.pricing-features .pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-features .pf-check {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-inner {
  display: flex;
  gap: 40px;
}

.pricing-left {
  flex: 0 0 280px;
}

.pricing-right {
  flex: 1;
}

/* Agency plan */
.agency-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 700px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.agency-card .agency-info {
  flex: 1;
}

.agency-card .agency-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.agency-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.agency-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.agency-btns {
  display: flex;
  gap: 12px;
}

/* ---- FAQ Section ---- */
.faq-section {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 280px;
}

.faq-left h2 {
  font-size: 48px;
  font-weight: 800;
}

.faq-left p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

.faq-left a {
  color: var(--text-muted);
  text-decoration: underline;
}

.faq-right {
  flex: 1;
}

/* ---- Footer ---- */
.footer-cta {
  background: var(--dark);
  padding: 60px 0 0;
}

.footer-cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  max-width: 1000px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-cta-banner .grow-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 12px;
}

.footer-cta-banner h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-cta-banner h2 .accent {
  font-style: italic;
}

.footer-cta-banner .footer-cta-btn {
  margin: 24px 0 20px;
}

.footer-cta-banner .footer-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-banner .footer-checks span {
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-cta-banner .footer-checks .check-icon {
  color: var(--green);
}

.footer {
  background: var(--dark);
  padding: 48px 0 32px;
  color: #999;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #222;
}

.footer-links a {
  font-size: 14px;
  color: #999;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* Founders pill */
.founders-pill {
  display: flex; align-items: center; gap: 14px;
  width: fit-content; margin: 0 auto 40px;
  padding: 12px 28px 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
}
.founders-avatars {
  display: flex;
}
.founder-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; border: 2px solid #222;
}
.founder-avatar + .founder-avatar {
  margin-left: -12px;
}
.founders-info {
  display: flex; flex-direction: column; gap: 2px;
}
.founders-name {
  font-size: 15px; font-weight: 700; color: #fff;
}
.founders-loc {
  font-size: 13px; color: #999;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo svg {
  width: 24px;
  height: 24px;
}

.footer-address {
  font-size: 12px;
  color: #666;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #888;
  font-size: 18px;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: #666;
}

/* ---- Auth Pages (Sign In / Sign Up) ---- */
.auth-page {
  display: flex;
  min-height: calc(100vh - 72px);
}

.auth-left {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.auth-left h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.auth-left .auth-switch {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.auth-left .auth-switch a {
  color: var(--accent);
  font-weight: 600;
}

.auth-google-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: #FFF0EB;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.auth-google-btn:hover { background: #ffe5dc; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.auth-form .input-group {
  position: relative;
  margin-bottom: 20px;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  transition: border-color 0.2s;
}
.auth-form input:focus { border-color: var(--dark); }

.auth-form .eye-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  font-size: 18px;
}

.auth-form .forgot-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.auth-field {
  margin-bottom: 16px;
}
.auth-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.auth-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.auth-field input:focus {
  border-color: var(--accent);
}

.auth-submit {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.auth-submit:hover { background: #222; }

.auth-terms {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}
.auth-terms a {
  color: var(--text-dark);
  text-decoration: underline;
}

.auth-right {
  flex: 1;
  background: #f5f5f5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.auth-right .network-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.auth-right .network-bg svg {
  width: 100%;
  height: 100%;
}

.auth-testimonial {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.auth-testimonial .at-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.auth-testimonial .at-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #666;
}

.auth-testimonial .at-name {
  font-size: 18px;
  font-weight: 700;
}

.auth-testimonial .at-role {
  font-size: 14px;
  color: var(--text-muted);
}

.auth-testimonial .at-quote {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}

.auth-testimonial .at-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.blog-card .blog-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  position: relative;
  overflow: hidden;
}
.blog-card .blog-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232,86,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,0.1) 0%, transparent 50%);
}
.blog-card .blog-img::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 50px; height: 50px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.blog-card:nth-child(2n) .blog-img::after { border-radius: 8px; width: 40px; height: 40px; }
.blog-card:nth-child(3n) .blog-img { background: linear-gradient(135deg, #111, #2a1a14); }
.blog-card:nth-child(4n) .blog-img { background: linear-gradient(135deg, #0f1628, #1a2744); }
.blog-card:nth-child(5n) .blog-img { background: linear-gradient(135deg, #1a0f28, #2a1744); }

.blog-card .blog-img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-card .blog-body {
  padding: 16px;
}

.blog-card .blog-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .blog-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-card .blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-card .blog-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card .blog-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a, .pagination span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.pagination .active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.pagination a:hover {
  border-color: var(--dark);
}

/* ---- Search bar ---- */
.search-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.search-bar input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  font-size: 15px;
  background: transparent;
}

.search-bar button {
  padding: 14px 24px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* ---- Terms / Privacy content ---- */
.legal-content {
  padding: 60px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-content .legal-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ---- 404 Page ---- */
.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.page-404 h1 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ---- Success Story ---- */
.story-hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 24px;
}

.story-hero-inner {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.story-hero-stat {
  padding: 12px 0;
}

.story-hero-stat .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.story-hero-stat .stat-label {
  font-size: 12px;
  color: #888;
}

.story-hero-content {
  flex: 1;
}

.story-brand-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
}

.story-hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-hero-btns {
  display: flex;
  gap: 12px;
}

.story-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.challenge-card {
  text-align: center;
  padding: 32px 20px;
}

.challenge-card .challenge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.challenge-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.challenge-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.strategy-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.strategy-step {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.strategy-step:nth-child(even) {
  flex-direction: row-reverse;
}

.strategy-step .step-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.strategy-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.strategy-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.result-item {
  text-align: center;
  padding: 24px;
}

.result-item .result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
}

.result-item .result-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
}

.results-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.result-box {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 24px 40px;
  text-align: center;
  border: 1px solid #2a2a2a;
}

.result-box .result-box-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.result-box .result-box-value {
  font-size: 36px;
  font-weight: 800;
}

.result-box .result-box-sub {
  font-size: 12px;
  color: #666;
}

/* Verified Growth */
.verified-section {
  text-align: center;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.verified-screenshots {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.verified-screenshot {
  flex: 0 0 420px;
  background: var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
}

.verified-screenshot .vs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.verified-screenshot .vs-body {
  height: 200px;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* ---- AI Audit ---- */
.audit-hero {
  padding: 80px 24px 60px;
}

.audit-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.audit-hero .audit-desc {
  font-size: 16px;
  color: #999;
  max-width: 600px;
  margin: 0 auto 32px;
}

.audit-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.audit-icons .ai-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.audit-input {
  display: flex;
  max-width: 560px;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #333;
}

.audit-input input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  border: none;
}
.audit-input input::placeholder { color: #666; }

.audit-input button {
  padding: 16px 28px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.audit-tags {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.audit-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
}

.hiw-card .hiw-num {
  font-size: 80px;
  font-weight: 800;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hiw-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hiw-card .hiw-illustration {
  width: 100%;
  height: 180px;
  background: var(--light-gray);
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
}

/* ---- Affiliate ---- */
.affiliate-hero {
  padding: 60px 24px;
}

.affiliate-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.affiliate-dashboard {
  max-width: 600px;
  margin: 40px auto 0;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #2a2a2a;
}

.affiliate-dashboard .dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.affiliate-dashboard .dash-slider {
  width: 100%;
  height: 6px;
  background: #333;
  border-radius: 3px;
  margin-bottom: 24px;
  position: relative;
}

.affiliate-dashboard .dash-slider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}

.dash-earnings {
  display: flex;
  gap: 24px;
}

.dash-earning-card {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  background: #222;
}

.dash-earning-card .de-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.dash-earning-card .de-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.dash-earning-card.highlight {
  background: var(--green);
}

.dash-earning-card.highlight .de-value {
  color: var(--white);
}

/* Backlinks section */
.backlinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.backlink-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.backlink-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.backlink-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Affiliate How it Works ---- */
.aff-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aff-how-card {
  text-align: center;
  padding: 24px;
}

.aff-how-card .aff-how-img {
  width: 100%;
  height: 160px;
  background: var(--light-gray);
  border-radius: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
}

.aff-how-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aff-how-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Who is it for section */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.who-card {
  text-align: center;
  padding: 24px;
}

.who-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.who-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Core features */
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.core-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.core-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.core-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.core-card .core-img {
  width: 100%;
  height: 120px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
}

/* Article preview cards */
.article-preview {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-preview .ap-image {
  height: 280px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  position: relative;
}

.article-preview .ap-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.article-preview .ap-body {
  padding: 24px;
}

.article-preview h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.article-preview p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- How it works (3 steps, home) ---- */
.steps-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.steps-image {
  flex: 1;
  background: var(--light-gray);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.steps-image .mock-browser {
  width: 90%;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}

.mock-browser-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
}

.mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-browser-bar span:nth-child(1) { background: #FF5F56; }
.mock-browser-bar span:nth-child(2) { background: #FFBD2E; }
.mock-browser-bar span:nth-child(3) { background: #27C93F; }

.mock-browser-body {
  padding: 24px;
  min-height: 200px;
}

.steps-list {
  flex: 1;
}

/* ---- Trusted marquee home ---- */
.trusted-bar {
  text-align: center;
  padding: 24px 0 0;
  color: #888;
  font-size: 13px;
}

.trusted-bar strong {
  color: var(--text-dark);
}

/* ---- Quality content section ---- */
.quality-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.quality-tabs {
  display: flex;
  gap: 8px;
}

.quality-tabs button {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: var(--light-gray);
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.quality-tabs button.active {
  background: var(--dark);
  color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .testi-card { width: 300px; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: repeat(2, 1fr); }
  .story-challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-v2-inner { flex-direction: column; }
  .pricing-v2-left { flex: auto; }
  .pricing-v2 { padding: 32px; }
  .steps-section { flex-direction: column; }
  .faq-section { flex-direction: column; gap: 32px; }
  .faq-left { flex: auto; }
  .story-hero-inner { flex-direction: column; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-actions .signin-link { display: none; }
  .burger { display: flex; }

  /* Compact mobile header */
  .navbar { height: 60px; }
  .navbar-inner { height: 60px; padding: 0 16px; }
  .navbar-actions { gap: 12px; }
  .navbar-actions .btn { padding: 8px 16px; font-size: 13px; }
  .navbar-logo { font-size: 16px; }
  .navbar-logo svg { width: 24px; height: 24px; }

  .hero { padding: 72px 20px 32px; }
  .hero h1 { font-size: 32px; margin-bottom: 4px; }
  .hero-rotating { min-height: 44px; margin-bottom: 14px; }
  .rotating-logo { padding: 8px 18px; border-radius: 12px; }
  .rotating-logo img { height: 28px; }
  .hero p { font-size: 14px; margin-bottom: 20px; }
  .hero-cta { margin-bottom: 24px; }
  .section-title { font-size: 32px; }

  .testi-card { width: 280px; padding: 20px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .story-challenge-grid { grid-template-columns: 1fr; }
  .backlinks-grid { grid-template-columns: 1fr; }
  .aff-how-grid { grid-template-columns: 1fr; }
  .impact-grid { gap: 24px; flex-direction: row; }
  .impact-number { font-size: 40px; }
  .impact-label { font-size: 12px; }

  .auth-page { flex-direction: column; }
  .auth-right { display: none; }
  .auth-left { max-width: 100%; padding: 40px 24px; }

  .pricing-v2-features { grid-template-columns: 1fr; }
  .agency-v2 { flex-direction: column; text-align: center; }
  .agency-v2-btns { justify-content: center; }

  .verified-screenshot { flex: auto; width: 100%; }
  .results-bottom { flex-direction: column; align-items: center; }

  .footer-cta-banner h2 { font-size: 28px; }
  .footer-cta-banner { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-v2 { padding: 20px; }
  .impact-grid { flex-direction: row; gap: 16px; justify-content: space-between; }
  .impact-number { font-size: 32px; }
  .impact-label { font-size: 11px; }
  .impact-item { flex: 1; }
}

/* ========================================
   Seora.ai — Animations & Dynamic Elements
   ======================================== */

/* ---- Scroll reveal animations (trysoro-style) ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Fade in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Fade in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Scale in (trysoro fadeInScale) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* ---- Hero entrance animation (staggered on load) ---- */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.2s; }
.hero-anim-3 { animation-delay: 0.35s; }
.hero-anim-4 { animation-delay: 0.5s; }
.hero-anim-5 { animation-delay: 0.65s; }

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---- Button shine sweep effect (trysoro-style) ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: none;
  animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 70%, 100% { left: -100%; }
  85% { left: 150%; }
}

/* ---- Smooth card hover lift (trysoro-style) ---- */
.card-hover {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ---- Bounce-up animation for icons ---- */
.bounce-up {
  animation: bounceUp 3s ease-in-out infinite;
}

@keyframes bounceUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Smooth counter glow pulse ---- */
.counter-glow {
  animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(232,86,42,0.2); }
  50% { text-shadow: 0 0 40px rgba(232,86,42,0.5); }
}

/* ---- Floating gradient blobs ---- */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,86,42,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  animation: floatBlob 8s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  border-radius: 50%;
  animation: floatBlob 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

/* ---- Feature card hover effects ---- */
.feature-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ---- Gradient text effect ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #60A5FA 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---- Glowing accent button ---- */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,86,42,0.35);
}

/* ---- Animated counter glow ---- */
.impact-number {
  text-shadow: 0 0 40px rgba(232,86,42,0.3);
  transition: text-shadow 0.5s ease;
}
.impact-number:hover {
  text-shadow: 0 0 60px rgba(232,86,42,0.5);
}

/* ---- Testimonial card stagger ---- */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.6s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ---- Section divider gradient line ---- */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60A5FA);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ---- Animated marquee improvements ---- */
.marquee-wrap {
  overflow: hidden;
  padding: 32px 0;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent, #fff);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
  transition: color 0.3s;
}
.logo-item:hover {
  color: var(--text-dark);
}

.logo-dot {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #666;
}

/* ---- Story card animation ---- */
.story-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.story-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

/* ---- Pricing card glow ---- */
.pricing-card {
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent), #60A5FA, var(--accent));
  background-size: 300% 300%;
  border-radius: 22px;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pricing-card:hover::before {
  opacity: 1;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Smooth accordion transitions ---- */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-item.active .accordion-body {
  max-height: 300px;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
  display: inline-block;
}
.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

/* ---- Hero particles/dots background ---- */
.hero {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,86,42,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(34,197,94,0.04) 0%, transparent 50%);
}

/* ---- Smooth navbar transition ---- */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}

/* ---- Blog card image shimmer ---- */
.blog-card .blog-img::before {
  animation: shimmerBg 3s ease-in-out infinite;
}

@keyframes shimmerBg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---- Step item active indicator ---- */
.step-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-item.active::before {
  transform: scaleY(1);
}

/* ---- Pulse animation for live badges ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fv-llm-badge,
.fv-status-dot {
  animation: pulse 2s ease-in-out infinite;
}

/* ---- Skeleton loading shimmer for feature visuals ---- */
@keyframes skeletonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---- Footer CTA pattern animation ---- */
.footer-cta-banner {
  position: relative;
}
.footer-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,86,42,0.08) 0%, transparent 50%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Smooth link underline animation ---- */
.navbar-links a {
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.navbar-links a:hover::after {
  width: 100%;
}

/* ---- Feature testimonial bar ---- */
.feature-testimonial {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  border: 1px solid #2a2a2a;
  transition: transform 0.4s ease;
}
.feature-testimonial:hover {
  transform: scale(1.01);
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---- Smooth page transitions ---- */
body {
  animation: fadeInPage 0.6s ease-out;
}

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

/* ---- How It Works — 3-column illustrated cards ---- */
.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0 28px 28px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  overflow: hidden;
}
.hiw-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.hiw-step-illustration {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hiw-step-illustration svg {
  width: 100%;
  height: 100%;
}

.hiw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hiw-step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hiw-step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hiw-steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ---- Section subtitle ---- */
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== SCROLL PROGRESS BAR ========== */
.navbar-progress {
  position: absolute; top: 0; left: 0; height: 2px;
  background: var(--accent); width: 0%; transition: width 0.05s linear; z-index: 1001;
}

/* ========== HERO DASHBOARD MOCKUP ========== */
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.6); max-width: 480px;
  margin: 0 auto 32px; line-height: 1.6; text-align: center;
}
.hero-dashboard {
  position: relative; max-width: 700px; margin: 40px auto 32px; perspective: 1000px;
}
.browser-frame {
  background: #ffffff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}
.browser-bar {
  display: flex; align-items: center; gap: 12px; padding: 10px 16px;
  background: #f5f5f5; border-bottom: 1px solid #e5e5e5;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-url {
  font-size: 11px; color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.04);
  padding: 4px 12px; border-radius: 6px; flex: 1; text-align: center;
}
.browser-content { padding: 24px; }
.dash-grid {
  display: grid; grid-template-columns: 140px 1fr 140px; gap: 20px; align-items: center;
}
.dash-gauge-wrap { text-align: center; }
.dash-gauge { width: 100%; max-width: 120px; }
.gauge-fill { transition: stroke-dasharray 2s cubic-bezier(0.16, 1, 0.3, 1); }
.dash-gauge-label {
  font-size: 11px; color: rgba(0,0,0,0.5); margin-top: 8px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.dash-chart-wrap { text-align: center; }
.dash-chart-title { font-size: 11px; color: rgba(0,0,0,0.45); margin-bottom: 8px; }
.dash-chart { width: 100%; }
.chart-line { stroke-dasharray: 400; stroke-dashoffset: 400; transition: stroke-dashoffset 2s cubic-bezier(0.16,1,0.3,1); }
.chart-line.animated { stroke-dashoffset: 0; }
.chart-area { opacity: 0; transition: opacity 1s ease 1s; }
.chart-area.animated { opacity: 1; }
.chart-dot { opacity: 0; transition: opacity 0.5s ease 1.5s; }
.chart-dot.animated { opacity: 1; }
.dash-chart-stat { font-size: 13px; color: rgba(0,0,0,0.5); margin-top: 8px; }
.dash-stats { display: flex; flex-direction: column; gap: 10px; }
.dash-stat-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; padding: 8px 12px;
}
.dash-stat-icon { font-size: 18px; }
.dash-stat-num { font-size: 16px; font-weight: 700; color: #111; }
.dash-stat-label { font-size: 10px; color: rgba(0,0,0,0.45); text-transform: uppercase; letter-spacing: 0.5px; }

/* Floating badges */
.hero-float-badge {
  position: absolute; padding: 8px 16px;
  border: none; border-radius: 12px;
  font-size: 13px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: floatBadge 4s ease-in-out infinite; animation-delay: var(--float-delay, 0s);
}
.hero-float-badge:nth-child(2) { top: 10%; left: -40px; background: #E8562A; }
.hero-float-badge:nth-child(3) { top: 15%; right: -40px; background: #3b82f6; }
.hero-float-badge:nth-child(4) { bottom: 25%; right: -50px; background: #10b981; }
.hero-float-badge:nth-child(5) { bottom: 20%; left: -50px; background: #8b5cf6; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}

/* ========== HERO DUO MOCKUP ========== */
.hero-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 40px auto 24px; align-items: stretch;
}
.hero-duo-card { display: flex; flex-direction: column; }
.hero-duo-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5); margin-bottom: 10px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-duo-new {
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 800;
  padding: 2px 8px; border-radius: 4px; letter-spacing: 1px;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.hero-duo-frame {
  flex: 1; border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
}
.hero-duo-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: #e8e8e8; border-bottom: 1px solid #d0d0d0;
}
.hero-duo-topbar-dark { background: #2d2d2d; border-bottom-color: #444; }
.hero-duo-dots { display: flex; gap: 6px; }
.hero-duo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hero-duo-dots span:nth-child(1) { background: #ff5f57; }
.hero-duo-dots span:nth-child(2) { background: #febc2e; }
.hero-duo-dots span:nth-child(3) { background: #28c840; }
.hero-duo-url {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.04);
  padding: 4px 12px; border-radius: 6px; flex: 1;
}
.hero-duo-ai-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #e0e0e0;
}
.hero-duo-ai-logo {
  transition: opacity 0.3s ease;
}
.hero-duo-body { padding: 20px; flex: 1; }

/* Google side */
.hero-duo-google { background: #fff; }
.hd-searchbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid #dfe1e5; border-radius: 24px;
  margin-bottom: 20px; background: #fff; box-shadow: 0 1px 6px rgba(32,33,36,0.08);
  font-size: 14px; color: #202124;
}
.hd-result { margin-bottom: 16px; }
.hd-r-url { font-size: 12px; color: #202124; margin-bottom: 2px; }
.hd-result-hero .hd-r-url { color: #188038; font-weight: 600; }
.hd-result-hero .hd-r-url::before {
  content: ''; display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: #22c55e; margin-right: 6px; vertical-align: middle;
}
.hd-r-title { font-size: 15px; color: #1a0dab; margin-bottom: 3px; line-height: 1.3; }
.hd-result-hero .hd-r-title { font-size: 16px; font-weight: 600; }
.hd-r-desc { font-size: 12px; color: #4d5156; line-height: 1.5; }
.hd-r-badge {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 8px;
  background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
}
.hd-r-badge-ai { background: #dbeafe; color: #1e40af; }
.hd-result-grey { opacity: 0.4; }
.hd-result-grey .hd-r-url::before {
  content: ''; display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: #e0e0e0; margin-right: 6px; vertical-align: middle;
}
.hd-result-grey .hd-r-title { color: #999; }

/* ChatGPT side */
.hero-duo-chatgpt { background: #212121; }
.hd-msg { display: flex; gap: 10px; margin-bottom: 16px; }
.hd-avatar-user {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hd-avatar-ai {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #333; display: flex; align-items: center; justify-content: center;
}
.hd-ai-icon { border-radius: 50%; }
.hd-bubble-user {
  background: #2f2f2f; color: #e0e0e0; padding: 10px 14px;
  border-radius: 14px; font-size: 13px; line-height: 1.5;
}
.hd-bubble-ai {
  color: #d0d0d0; font-size: 13px; line-height: 1.6;
}
.hd-bubble-ai p { margin: 0 0 10px; }
.hd-bubble-ai strong { color: #fff; }

/* Tagline */
.hero-duo-tagline {
  text-align: center; font-size: 15px; color: rgba(255,255,255,0.55);
  max-width: 600px; margin: 0 auto 16px; line-height: 1.6;
}
.hero-duo-tagline strong { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .hero-duo { grid-template-columns: 1fr; gap: 16px; max-width: 400px; }
  .hero-duo-body { padding: 16px; }
  .hd-searchbar { font-size: 12px; padding: 8px 12px; }
}

/* ========== STATS BANNER ========== */
.stats-banner {
  background: #111; padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1.2; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

/* ========== PRODUCT DEMO ========== */
.demo-wrapper { max-width: 800px; margin: 0 auto; }
.demo-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.demo-tab {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  border: 1px solid #e5e5e5; border-radius: 50px; background: #fff;
  font-size: 14px; font-weight: 600; color: #666; cursor: pointer; transition: all 0.3s ease;
}
.demo-tab:hover { border-color: var(--accent); color: var(--accent); }
.demo-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(232,86,42,0.3); }
.demo-tab.active svg { stroke: #fff; }
.demo-tab:not(.active) { animation: tabPulse 2.5s ease-in-out infinite; }
.demo-tab:nth-child(2):not(.active) { animation-delay: 0.3s; }
.demo-tab:nth-child(3):not(.active) { animation-delay: 0.6s; }
.demo-tab:nth-child(4):not(.active) { animation-delay: 0.9s; }
@keyframes tabPulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 3px rgba(232,86,42,0.1); }
}
.demo-dashboard { position: relative; }
.demo-dashboard .browser-frame { background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06); }
.demo-dashboard .browser-bar { background: #f8f8f8; border-bottom: 1px solid #e5e5e5; }
.demo-dashboard .browser-url { color: #999; background: #f0f0f0; }
.demo-panel { display: none; min-height: 300px; animation: fadeInPanel 0.4s ease; }
.demo-panel.active { display: block; }
@keyframes fadeInPanel { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.demo-panel-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.demo-caption { text-align: center; font-size: 14px; color: #888; margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }

/* ========== COMPARISON CARDS ========== */
.compare-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 900px; margin: 48px auto 0;
}
.compare-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column;
}
.compare-card-highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(232,86,42,0.1);
  position: relative;
}
.compare-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.compare-card-head {
  text-align: center; padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.compare-card-head h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.compare-card-price { font-size: 15px; color: #888; }
.compare-card-highlight .compare-card-price { font-size: 20px; color: #111; font-weight: 700; }
.compare-card-highlight .compare-card-price .accent { font-size: 28px; }
.compare-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.compare-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #444; line-height: 1.4;
}
.comp-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: #22C55E15; color: #22C55E; font-size: 12px; font-weight: 700;
}
.comp-cross {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: #ef444415; color: #ef4444; font-size: 12px; font-weight: 700;
}
/* crossed-out text for missing features */
.compare-list li:has(.comp-cross) { color: #bbb; }

@media (max-width: 768px) {
  .compare-cards { grid-template-columns: 1fr; max-width: 400px; }
  .compare-card-highlight { order: -1; }
}

/* (old carousel + badge removed — replaced by testi-grid and pricing-v2) */

/* ========== FOOTER ROCKET ========== */
.footer-rocket { margin-bottom: 16px; animation: rocketBob 3s ease-in-out infinite; }
@keyframes rocketBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ========== RESPONSIVE - NEW ELEMENTS ========== */
@media (max-width: 1024px) {
  .dash-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dash-stats { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
  .demo-panel-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-dashboard { margin: 24px auto 16px; max-width: 340px; }
  .browser-content { padding: 16px; }
  .dash-grid { grid-template-columns: 100px 1fr; gap: 12px; align-items: start; }
  .dash-gauge { max-width: 90px; }
  .dash-gauge-label { font-size: 9px; margin-top: 4px; }
  .dash-chart-wrap { grid-column: auto; }
  .dash-chart-title { font-size: 10px; }
  .dash-chart-stat { font-size: 11px; }
  .dash-stats { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .dash-stat-pill { padding: 6px 10px; gap: 8px; }
  .dash-stat-icon { font-size: 14px; }
  .dash-stat-num { font-size: 14px; }
  .dash-stat-label { font-size: 8px; }
  .browser-bar { padding: 8px 12px; }
  .browser-dots span { width: 8px; height: 8px; }
  .browser-url { font-size: 10px; }
  .hero-float-badge { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 28px; }
  .demo-tabs { gap: 6px; }
  .demo-tab { padding: 8px 14px; font-size: 12px; }
  .demo-tab svg { width: 14px; height: 14px; }
  .testi-card { width: 280px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-subtitle { font-size: 15px; }
  .hero-overtitle { font-size: 10px; letter-spacing: 0.8px; padding: 6px 14px; }
  .hero-reassurance { font-size: 11px; }
  .hero-dashboard { max-width: 300px; }
  .dash-grid { grid-template-columns: 80px 1fr; gap: 10px; }
  .dash-gauge { max-width: 75px; }
  .browser-content { padding: 12px; }
}

/* ========== PROBLEM SECTION ========== */
.problem-section { overflow: hidden; }
.section-subtitle-light {
  text-align: center; max-width: 620px; margin: 0 auto 56px;
  color: #666; font-size: 17px; line-height: 1.7;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.problem-card {
  background: #f7f7f7; border: 1px solid #e5e5e5;
  border-radius: 16px; padding: 32px 24px; transition: all 0.3s ease;
}
.problem-card:hover {
  background: #fff; border-color: rgba(232,86,42,0.3);
  transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.problem-icon { margin-bottom: 20px; }
.problem-card h3 {
  font-size: 18px; font-weight: 700; color: #111; margin-bottom: 12px; line-height: 1.3;
}
.problem-card p {
  font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px;
}
.problem-stat {
  background: #fff; border-radius: 10px; padding: 14px 16px;
  border: 1px solid #e5e5e5;
}
.problem-stat-number {
  display: block; font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 4px;
}
.problem-stat-text {
  font-size: 12px; color: #888; line-height: 1.5;
}
.problem-bottom-line {
  text-align: center; margin-top: 48px; padding: 24px;
  background: rgba(232,86,42,0.08); border: 1px solid rgba(232,86,42,0.2);
  border-radius: 12px;
}
.problem-bottom-line p {
  font-size: 17px; color: #ccc; margin: 0;
}

/* ========== URGENCY SECTION ========== */
.urgency-section { overflow: hidden; }

/* Evolution cards grid */
/* ========== EVO CARDS — LIQUID GLASS 3D ========== */
.evo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 24px; perspective: 1200px;
  position: relative;
}

/* Sequential card reveal */
.evo-card[data-step] {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.evo-grid.evo-revealed .evo-card[data-step] {
  animation: evoCardIn 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.evo-grid.evo-revealed .evo-card[data-step="1"] { animation-delay: 0s; }
.evo-grid.evo-revealed .evo-card[data-step="2"] { animation-delay: 0.2s; }
.evo-grid.evo-revealed .evo-card[data-step="3"] { animation-delay: 0.4s; }
.evo-grid.evo-revealed .evo-card[data-step="4"] { animation-delay: 0.6s; }

@keyframes evoCardIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Year badge pulse on reveal */
.evo-grid.evo-revealed .evo-card[data-step="1"] .evo-card-year { animation: evoYearPop 0.4s ease 0.3s both; }
.evo-grid.evo-revealed .evo-card[data-step="2"] .evo-card-year { animation: evoYearPop 0.4s ease 0.5s both; }
.evo-grid.evo-revealed .evo-card[data-step="3"] .evo-card-year { animation: evoYearPop 0.4s ease 0.7s both; }
.evo-grid.evo-revealed .evo-card[data-step="4"] .evo-card-year { animation: evoYearPop 0.4s ease 0.9s both; }

@keyframes evoYearPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.evo-card {
  position: relative; border-radius: 24px; text-align: center;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
  cursor: default;
}
.evo-card:hover {
  transform: translateY(-8px) rotateX(4deg) scale(1.02);
}

/* Glass inner */
.evo-card-inner {
  position: relative; z-index: 2; padding: 28px 22px 22px;
  border-radius: 24px; height: 100%; display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.6) 100%
  );
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(255,255,255,0.2),
    0 8px 32px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* Specular highlight on glass */
.evo-card-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

/* Ambient glow behind card */
.evo-card-glow {
  position: absolute; inset: -4px; border-radius: 28px; z-index: 0;
  opacity: 0; transition: opacity 0.5s ease;
  filter: blur(16px);
}
.evo-card:hover .evo-card-glow { opacity: 1; }

.evo-past .evo-card-glow { background: rgba(34,197,94,0.2); }
.evo-recent .evo-card-glow { background: rgba(245,158,11,0.2); }
.evo-now .evo-card-glow { background: rgba(232,86,42,0.2); }
.evo-danger .evo-card-glow { background: rgba(239,68,68,0.25); }

/* Year badge */
.evo-card-year {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(0,0,0,0.04);
  color: inherit;
}

/* Icon orb — frosted sphere */
.evo-card-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.6),
    0 4px 12px rgba(0,0,0,0.08);
}
.evo-card-icon-wrap span { font-size: 26px; position: relative; z-index: 1; }
.evo-card-icon-wrap::after {
  content: '';
  position: absolute; top: 4px; left: 12px;
  width: 20px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  filter: blur(2px);
}

.evo-icon-green {
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.08));
  border: 1px solid rgba(34,197,94,0.3);
}
.evo-icon-amber {
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.08));
  border: 1px solid rgba(245,158,11,0.3);
}
.evo-icon-orange {
  background: linear-gradient(135deg, rgba(232,86,42,0.2), rgba(232,86,42,0.08));
  border: 1px solid rgba(232,86,42,0.3);
}
.evo-icon-red {
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(239,68,68,0.08));
  border: 1px solid rgba(239,68,68,0.3);
}

/* Text */
.evo-card h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
  color: #1a1a1a;
}
.evo-card p {
  font-size: 13px; line-height: 1.55; margin-bottom: 16px;
  color: #555;
}

/* Color accents per era */
.evo-past .evo-card-year { color: #16a34a; background: rgba(34,197,94,0.1); }
.evo-recent .evo-card-year { color: #1E40AF; background: rgba(245,158,11,0.1); }
.evo-now .evo-card-year { color: #E8562A; background: rgba(232,86,42,0.1); }
.evo-danger .evo-card-year { color: #dc2626; background: rgba(239,68,68,0.12); }

/* Subtle tint on glass per card */
.evo-past .evo-card-inner {
  background: linear-gradient(135deg, rgba(240,253,244,0.7), rgba(255,255,255,0.5), rgba(240,253,244,0.4));
}
.evo-recent .evo-card-inner {
  background: linear-gradient(135deg, rgba(255,251,235,0.7), rgba(255,255,255,0.5), rgba(255,251,235,0.4));
}
.evo-now .evo-card-inner {
  background: linear-gradient(135deg, rgba(255,245,242,0.7), rgba(255,255,255,0.5), rgba(255,245,242,0.4));
}
.evo-danger .evo-card-inner {
  background: linear-gradient(135deg, rgba(254,242,242,0.7), rgba(255,255,255,0.5), rgba(254,226,226,0.5));
  border-color: rgba(252,165,165,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(255,255,255,0.2),
    0 8px 32px rgba(239,68,68,0.1),
    0 2px 8px rgba(239,68,68,0.06);
}

/* Progress bar */
.evo-card-bar-wrap { margin-top: auto; width: 100%; }
.evo-card-bar {
  height: 5px; background: rgba(0,0,0,0.06); border-radius: 3px;
  overflow: hidden; margin-bottom: 6px;
}
.evo-bar-fill {
  height: 100%; border-radius: 3px; width: 0;
  background: var(--bar-color);
  transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}
.evo-bar-label {
  font-size: 10px; opacity: 0.4; text-transform: uppercase; letter-spacing: 0.5px;
  color: #666;
}
.evo-bar-pulse { animation: barPulse 2s ease-in-out infinite; }
@keyframes barPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}

/* Timeline connector */
.evo-timeline-line {
  max-width: 700px; margin: 0 auto 40px; padding: 0 20px;
  height: 4px; background: rgba(0,0,0,0.06); border-radius: 2px;
  overflow: hidden; position: relative;
}
.evo-timeline-progress {
  height: 100%; border-radius: 2px; width: 0;
  background: linear-gradient(90deg, #22C55E, #f59e0b, #E8562A, #ef4444);
  transition: width 2s cubic-bezier(0.16,1,0.3,1);
}

/* Section arrow transition */
.section-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin: 12px auto 32px; color: #bbb;
}
.section-arrow-text {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; color: #999;
}
.section-arrow-icon {
  width: 28px; height: 28px; color: var(--accent); opacity: 0.6;
  animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Stats row */
.urgency-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.urgency-stat {
  text-align: center; padding: 28px 20px; background: #fff;
  border-radius: 16px; border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.urgency-stat-icon { font-size: 28px; margin-bottom: 8px; }
.urgency-stat-num {
  font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1;
  margin-bottom: 8px;
}
.urgency-stat-text { font-size: 13px; color: #888; line-height: 1.5; }

/* Urgency inline stats */
.urgency-inline {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(232,86,42,0.06), rgba(232,86,42,0.02));
  border: 1px solid rgba(232,86,42,0.12);
  border-radius: 16px; padding: 20px 12px;
}
.urgency-inline-item {
  flex: 1; text-align: center;
}
.urgency-inline-num {
  display: block; font-size: 28px; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.urgency-inline-text {
  font-size: 11px; color: #999; line-height: 1.3;
}
.urgency-inline-sep {
  width: 1px; height: 36px; background: rgba(0,0,0,0.08); flex-shrink: 0;
}

/* Soft CTA box */
.soft-cta-box {
  text-align: center; padding: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.soft-cta-box p {
  font-size: 16px; color: #666; margin: 0;
}

/* ========== BEFORE/AFTER SECTION ========== */
.before-after-section { overflow: hidden; }
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto;
}
.ba-card {
  border-radius: 16px; overflow: hidden; transition: transform 0.3s ease;
}
.ba-card:hover { transform: translateY(-4px); }
.ba-before {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(239,68,68,0.2);
}
.ba-after {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(34,197,94,0.3);
}
.ba-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
}
.ba-header-before { background: rgba(239,68,68,0.08); }
.ba-header-after { background: rgba(34,197,94,0.08); }
.ba-badge-before {
  font-size: 12px; font-weight: 800; color: #ef4444; background: rgba(239,68,68,0.15);
  padding: 4px 12px; border-radius: 20px; letter-spacing: 1px;
}
.ba-badge-after {
  font-size: 12px; font-weight: 800; color: #22C55E; background: rgba(34,197,94,0.15);
  padding: 4px 12px; border-radius: 20px; letter-spacing: 1px;
}
.ba-emoji { font-size: 24px; }
.ba-body { padding: 20px; }
.ba-line {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
  font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.ba-x {
  color: #ef4444; font-weight: 700; font-size: 12px; min-width: 20px;
  height: 20px; display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1); border-radius: 50%; flex-shrink: 0; margin-top: 1px;
}
.ba-check {
  color: #22C55E; font-weight: 700; font-size: 12px; min-width: 20px;
  height: 20px; display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,0.1); border-radius: 50%; flex-shrink: 0; margin-top: 1px;
}
.ba-bottom {
  padding: 14px 20px; margin: 0 20px 20px; border-radius: 10px;
}
.ba-bottom-before { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.1); }
.ba-bottom-after { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.1); }
.ba-result-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); display: block; margin-bottom: 4px; }
.ba-result-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ========== RESULTS TIMELINE ========== */
.timeline-section { overflow: hidden; }
/* ========== TIMELINE V2 — horizontal steps ========== */
.tl-v2 { max-width: 900px; margin: 48px auto 0; position: relative; }

/* Horizontal progress bar */
.tl-v2-bar {
  height: 4px; background: #e8e8e8; border-radius: 4px;
  margin-bottom: 0; position: absolute; top: 8px; left: 0; right: 0;
}
.tl-v2-bar-fill {
  height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), #22C55E);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-v2.animated .tl-v2-bar-fill { width: 100%; }

/* Steps row */
.tl-v2-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  position: relative;
}

/* Each step */
.tl-v2-step {
  text-align: center; display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-v2.animated .tl-v2-step { opacity: 1; transform: translateY(0); }
.tl-v2.animated .tl-v2-step:nth-child(1) { transition-delay: 0s; }
.tl-v2.animated .tl-v2-step:nth-child(2) { transition-delay: 0.15s; }
.tl-v2.animated .tl-v2-step:nth-child(3) { transition-delay: 0.3s; }
.tl-v2.animated .tl-v2-step:nth-child(4) { transition-delay: 0.45s; }
.tl-v2.animated .tl-v2-step:nth-child(5) { transition-delay: 0.6s; }

/* Dot on the bar */
.tl-v2-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid #e0e0e0;
  z-index: 2; margin-bottom: 16px; flex-shrink: 0;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.tl-v2.animated .tl-v2-dot { border-color: var(--accent); }
.tl-v2.animated .tl-v2-dot.active { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 0 4px rgba(232,86,42,0.15); }
.tl-v2.animated .tl-v2-dot.success { border-color: #22C55E; background: #22C55E; box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }

/* When label */
.tl-v2-when {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: #999; margin-bottom: 12px;
}
.tl-v2-icon { font-size: 28px; margin-bottom: 8px; }
.tl-v2-step h4 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; }
.tl-v2-step p { font-size: 13px; color: #888; line-height: 1.5; margin: 0; }
.tl-v2-metric {
  margin-top: 10px; padding: 4px 12px; background: rgba(232,86,42,0.06);
  border-radius: 20px; font-size: 13px; font-weight: 700; color: #333;
  display: inline-block;
}

/* Mobile: 2-3 cols or vertical */
@media (max-width: 768px) {
  .tl-v2-steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .tl-v2-bar { display: none; }
}
@media (max-width: 480px) {
  .tl-v2-steps { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .tl-v2-step p { font-size: 12px; }
}

/* ========== MID-PAGE CTA ========== */
.midpage-cta {
  padding: 80px 0; overflow: hidden;
  background: #0a0a0a;
}
.midpage-cta-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 64px 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  max-width: 720px; margin: 0 auto;
}
.midpage-cta-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--primary); margin-bottom: 20px;
}
.midpage-cta-inner h2 {
  font-size: 32px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 32px;
}
.midpage-cta-inner .btn {
  margin-bottom: 24px;
}
.midpage-cta-checks {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.45);
}
.midpage-dot {
  display: inline-block; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.25); vertical-align: middle;
}

/* ========== GUARANTEE SECTION ========== */
.guarantee-section { overflow: hidden; }
.guarantee-card {
  display: flex; align-items: center; gap: 40px; padding: 48px;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 50%, #f0f7ff 100%);
  border: 2px solid #22C55E; border-radius: 20px; max-width: 800px; margin: 0 auto;
}
.guarantee-shield { flex-shrink: 0; }
.guarantee-content { flex: 1; }
.guarantee-content h2 { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 16px; }
.guarantee-content p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 24px; }
.guarantee-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.guarantee-point {
  display: flex; align-items: center; gap: 8px; font-size: 14px; color: #333; font-weight: 500;
}
.guarantee-check {
  color: #22C55E; font-weight: 700; font-size: 12px; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,0.1); border-radius: 50%; flex-shrink: 0;
}

/* ========== ANIMATED MOCKUPS ========== */
.mockup-block {
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.mockup-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.mockup-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
}
.mockup-block-icon-img {
  background: none;
  border-radius: 50%;
}
.mockup-block-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.mockup-block-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 2px 0 0;
}
.mockup-block-new {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mockup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1000px; margin: 0 auto 48px; align-items: stretch;
}
.mockup-label {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  grid-column: auto;
}
.mockup-label strong {
  color: rgba(255,255,255,0.8);
}
.mockup-label-arrow {
  display: inline-block;
  margin-left: 4px;
  animation: arrowBounce 1.5s ease-in-out infinite;
  color: rgba(255,255,255,0.4);
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.mockup-frame {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
}
.mockup-frame[data-mockup="chatgpt"] {
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.mockup-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: #e8e8e8;
  border-bottom: 1px solid #d0d0d0;
}
.mockup-topbar-dark {
  background: #2d2d2d; border-bottom-color: #444;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url-bar {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 6px;
  padding: 5px 12px; font-size: 11px; color: #666;
}
.mockup-topbar-dark .mockup-url-bar {
  background: #444; color: #aaa;
}
.mockup-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }

/* Google mockup */
.mockup-google {
  background: #fff;
}
.mg-searchbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid #dfe1e5;
  border-radius: 24px; margin-bottom: 24px;
  background: #fff; box-shadow: 0 1px 6px rgba(32,33,36,0.08);
  font-size: 14px; color: #202124;
}
.mg-query { color: #202124; font-size: 14px; }
.mg-cursor {
  font-weight: 300; color: #202124;
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.mg-results {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 16px; flex: 1;
}
.mg-result {
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s ease;
}
.mg-result.visible { opacity: 1; transform: translateY(0); }
.mg-r-url { font-size: 12px; color: #202124; margin-bottom: 2px; }
.mg-r-url::before { content: ''; display: inline-block; width: 16px; height: 16px; border-radius: 50%; background: #e8e8e8; margin-right: 6px; vertical-align: middle; }
.mg-r-title {
  font-size: 16px; color: #1a0dab; margin-bottom: 3px;
  line-height: 1.3; cursor: pointer;
}
.mg-r-title:hover { text-decoration: underline; }
.mg-r-desc { font-size: 13px; color: #4d5156; line-height: 1.5; }
.mg-missing {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: #fef2f2;
  border: 1px solid #fecaca; border-radius: 8px;
  font-size: 13px; color: #991b1b; font-weight: 500;
  opacity: 0; transform: translateY(8px);
  transition: all 0.5s ease;
}
.mg-missing.visible { opacity: 1; transform: translateY(0); }

/* ChatGPT mockup */
.mockup-topbar-chatgpt {
  background: #171717; border-bottom: 1px solid #2a2a2a;
}
.mockup-topbar-chatgpt .mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-topbar-chatgpt .mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-topbar-chatgpt .mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-chatgpt-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #e0e0e0;
}
.mockup-chatgpt {
  background: #212121;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mc-messages {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 16px;
}
.mc-msg {
  display: flex; gap: 10px; align-items: flex-start;
}
.mc-msg.mc-hidden { opacity: 0; transform: translateY(10px); transition: all 0.5s ease; }
.mc-msg.mc-visible { opacity: 1; transform: translateY(0); }
.mc-avatar {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}
.mc-avatar-user {
  background: #7C3AED; color: #fff;
}
.mc-avatar-ai {
  background: #10A37F; border-radius: 50%;
}
.mc-bubble {
  border-radius: 12px; padding: 10px 14px;
  font-size: 13px; line-height: 1.6; max-width: 88%;
}
.mc-bubble-user {
  background: #303030; color: #e0e0e0;
  border-radius: 18px;
}
.mc-bubble-ai {
  background: transparent; color: #d1d1d1;
}
.mc-ai-intro {
  margin-bottom: 10px; font-size: 13px;
}
.mc-ai-list {
  display: flex; flex-direction: column; gap: 6px;
}
.mc-ai-item {
  font-size: 13px; color: #c0c0c0; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mc-ai-item:last-child { border-bottom: none; }
.mc-ai-item strong { color: #e8e8e8; }
.mc-type-hidden { opacity: 0; transition: opacity 0.4s ease; }
.mc-type-visible { opacity: 1; }
.mc-missing-gpt {
  background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5; margin-bottom: 12px;
}
.mc-inputbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: #303030;
  border-radius: 24px; border: 1px solid #424242;
}
.mc-input-placeholder {
  font-size: 13px; color: #888;
}

/* Problem stats row */
.problem-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.ps-item {
  text-align: center; padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.ps-num {
  display: block; font-size: 32px; font-weight: 800;
  color: var(--accent); margin-bottom: 4px;
}
.ps-text { font-size: 13px; color: #999; }

/* ========== EVO CARD SCROLL ANIMATIONS ========== */
.evo-card {
  opacity: 0; transform: translateY(30px) rotateX(-6deg) scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.evo-card.evo-visible {
  opacity: 1; transform: translateY(0) rotateX(0deg) scale(1);
}
.evo-card-icon-wrap span { transition: transform 0.4s ease; }
.evo-card.evo-visible .evo-card-icon-wrap span {
  animation: iconBounce 0.6s ease 0.3s both;
}
@keyframes iconBounce {
  0% { transform: scale(0.5) rotate(-10deg); }
  60% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.evo-danger.evo-visible {
  animation: dangerShake 0.5s ease 0.8s both;
}
@keyframes dangerShake {
  0%, 100% { transform: translateX(0) rotateX(0deg); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

/* ========== NOWORRY SECTION ========== */
.noworry-section { overflow: hidden; }
.noworry-words {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 600px; margin: 0 auto 28px;
}
.nw-word {
  display: inline-block; padding: 8px 20px;
  background: #fff; border: 1px solid #e0e0e0;
  border-radius: 24px; font-size: 16px; font-weight: 600;
  color: #333; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0; transform: translateY(16px) scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nw-word.nw-word-visible {
  opacity: 1; transform: translateY(0) scale(1);
}
.noworry-sub {
  font-size: 18px; color: #555; line-height: 1.7;
  max-width: 560px; margin: 0 auto 48px;
}
.noworry-sub strong {
  color: #222;
}
.noworry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto 48px;
}
.noworry-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px; padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; transform: translateY(24px);
}
.noworry-card.nw-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.noworry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.noworry-jargon {
  font-size: 15px; color: #aaa; margin-bottom: 16px;
  font-weight: 600; letter-spacing: 0.5px;
}
.strikethrough {
  position: relative; display: inline-block;
}
.strikethrough::after {
  content: ''; position: absolute; left: -4px; right: -4px;
  top: 50%; height: 2px; background: #ef4444;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.noworry-card.nw-visible .strikethrough::after {
  transform: scaleX(1);
}
.noworry-simple {
  font-size: 16px; color: #111; font-weight: 600;
  line-height: 1.5; margin-bottom: 16px; min-height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.noworry-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(34,197,94,0.1); color: #16a34a;
  border-radius: 20px; font-size: 13px; font-weight: 600;
}
.noworry-bottom {
  font-size: 18px; color: #666; line-height: 1.6;
}
.noworry-bottom strong {
  color: var(--accent); font-weight: 700;
}

/* ========== GEO SECTION ========== */
.geo-section { overflow: hidden; }
.geo-new-badge {
  display: inline-block; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 18px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}
.geo-split {
  display: flex; align-items: stretch; justify-content: center;
  gap: 24px; max-width: 800px; margin: 0 auto 40px;
}
.geo-split-card {
  flex: 1; border-radius: 20px; padding: 32px 24px; text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}
.geo-split-card:hover { transform: translateY(-6px); }

/* SEO Card — dark with blue tint, floating */
.geo-card-seo {
  background: linear-gradient(160deg, #1a2332 0%, #162038 40%, #111827 100%);
  border: 1px solid rgba(66,133,244,0.2);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.3),
    0 16px 48px rgba(66,133,244,0.1),
    inset 0 1px 0 rgba(66,133,244,0.1);
}
.geo-card-seo:hover {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.4),
    0 24px 64px rgba(66,133,244,0.18),
    inset 0 1px 0 rgba(66,133,244,0.15);
  border-color: rgba(66,133,244,0.35);
}

/* GEO Card — dark with orange glow, floating */
.geo-card-highlight {
  background: linear-gradient(160deg, #2a1a12 0%, #1f1510 40%, #1a1210 100%);
  border: 1px solid rgba(232,86,42,0.25);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.3),
    0 16px 48px rgba(232,86,42,0.1),
    inset 0 1px 0 rgba(232,86,42,0.1);
}
.geo-card-highlight:hover {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.4),
    0 24px 64px rgba(232,86,42,0.18),
    inset 0 1px 0 rgba(232,86,42,0.15);
  border-color: rgba(232,86,42,0.4);
}
.geo-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #ef4444; color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
  animation: pulseBadge 2s ease-in-out infinite;
}
.geo-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
}
.geo-status-known { background: rgba(34,197,94,0.1); color: #22C55E; }
.geo-status-new { background: rgba(239,68,68,0.1); color: #ef4444; }
.geo-split-plus {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: var(--accent); min-width: 40px;
}
.geo-result-line {
  display: block; width: fit-content; margin: 24px auto 36px;
  font-size: 17px; font-weight: 700; color: #fff;
  letter-spacing: 0.3px;
  padding: 14px 36px; border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.3),
    0 16px 48px rgba(232,86,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.geo-platforms {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
}
.geo-platform {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #ccc; font-weight: 500;
}
.geo-platform img {
  background: #fff; border-radius: 6px; padding: 2px;
}
.geo-urgency { font-size: 16px; line-height: 1.7; max-width: 500px; margin: 0 auto; text-align: center; }

/* France urgency alert */
.geo-france-alert {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(232,86,42,0.08));
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 16px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.geo-france-badge {
  display: inline-block;
  background: linear-gradient(135deg, #002395, #ED2939);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.geo-france-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}
.geo-france-text {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
}
.geo-france-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 10px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}
.geo-france-clock {
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .geo-split { flex-direction: column; gap: 16px; }
  .geo-split-plus { transform: rotate(90deg); }
  .geo-platforms { gap: 16px; }
  .geo-france-alert { padding: 20px; }
  .geo-france-title { font-size: 18px; }
  .geo-france-cta { flex-direction: column; text-align: center; }
}

/* ========== REVEAL ANIMATION ========== */
.reveal-up {
  opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.revealed {
  opacity: 1; transform: translateY(0);
}

/* ========== NEW SECTIONS RESPONSIVE ========== */
@media (max-width: 768px) {
  .mockup-block { padding: 20px; margin-bottom: 32px; }
  .mockup-block-title { font-size: 18px; }
  .mockup-grid { grid-template-columns: 1fr; gap: 16px; }
  .mockup-google, .mockup-chatgpt { min-height: 260px; }
  .mg-r-title { font-size: 14px; }
  .problem-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ps-item { padding: 14px 8px; }
  .ps-num { font-size: 22px; }
  .ps-text { font-size: 11px; }
  .evo-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; perspective: 800px; }
  .evo-card-inner { padding: 22px 16px 18px; }
  .evo-timeline-line { display: none; }
  .urgency-stats-row { grid-template-columns: 1fr; gap: 16px; }
  .urgency-stat-num { font-size: 32px; }
  .stories-carousel { gap: 12px; margin-top: 24px !important; }
  .story-card { width: 200px; padding: 18px; }
  .story-card .story-metric { font-size: 22px; }
  .story-card .story-brand { font-size: 11px; margin-bottom: 8px; }
  .soft-cta-box { flex-direction: column; padding: 24px 16px; }
  .soft-cta-box .btn { width: 100%; text-align: center; box-sizing: border-box; font-size: 14px; white-space: normal; }
  .noworry-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .noworry-card { padding: 24px 16px; }
  .noworry-simple { font-size: 14px; min-height: 42px; }
  .noworry-sub { font-size: 15px; margin-bottom: 32px; }
  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .urgency-timeline { padding-left: 0; }
  .urgency-line { left: 28px; }
  .midpage-cta-inner { padding: 40px 24px; }
  .midpage-cta-inner h2 { font-size: 24px; }
  .midpage-cta-checks { flex-wrap: wrap; justify-content: center; }
  .guarantee-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .guarantee-points { grid-template-columns: 1fr; }
  .guarantee-point { justify-content: center; }
}
@media (max-width: 480px) {
  .mockup-content { padding: 14px; }
  .mg-searchbar { padding: 8px 12px; }
  .mc-bubble { font-size: 13px; padding: 10px 12px; }
  .evo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .evo-card-inner { padding: 18px 14px 16px; border-radius: 18px; }
  .evo-card { border-radius: 18px; }
  .evo-card-icon-wrap { width: 44px; height: 44px; }
  .evo-card-icon-wrap span { font-size: 20px; }
  .evo-card h4 { font-size: 13px; }
  .evo-card p { font-size: 12px; }
  .midpage-cta-inner h2 { font-size: 20px; }
  .noworry-grid { grid-template-columns: 1fr; gap: 12px; }
  .noworry-card { padding: 20px 16px; }
  .noworry-jargon { font-size: 13px; margin-bottom: 12px; }
  .noworry-simple { font-size: 13px; min-height: auto; }
  .noworry-sub { font-size: 14px; }
  .noworry-bottom { font-size: 15px; }
}

/* ========== GLOBAL MOBILE FIXES (375px) ========== */
@media (max-width: 480px) {
  /* Midpage CTA — add padding, stack checks */
  .midpage-cta { padding: 40px 0; }
  .midpage-cta-inner { padding: 40px 20px; }
  .midpage-cta-inner .btn { width: 100%; text-align: center; }
  .midpage-cta-checks { flex-direction: column; gap: 6px; }
  .midpage-dot { display: none; }

  /* Pricing V2 — features single col, smaller text */
  .pricing-v2 { padding: 20px 16px; }
  .pricing-v2-inner { gap: 32px; }
  .pricing-v2-left { flex: auto; }
  .pricing-v2-name { font-size: 32px; }
  .pv2-current { font-size: 40px; }
  .pricing-v2-features { grid-template-columns: 1fr; gap: 12px; }

  /* Agency V2 — stack buttons */
  .agency-v2 { flex-direction: column; text-align: center; padding: 24px 20px; }
  .agency-v2-btns { flex-direction: column; width: 100%; }
  .agency-v2-btns .btn { width: 100%; text-align: center; }

  /* Footer CTA — smaller button text */
  .footer-cta-banner h2 { font-size: 24px; }
  .footer-cta-banner .footer-cta-btn .btn { font-size: 14px; padding: 14px 24px; white-space: normal; }
  .footer-cta-banner .footer-checks { flex-direction: column; gap: 8px; align-items: center; }
  .footer-cta-banner { padding: 32px 20px; }

  /* Compare cards */
  .compare-cards { gap: 16px; }
  .compare-card { padding: 24px 20px; }

  /* Section titles */
  .section-title { font-size: 24px; }

  /* Extra compact header on small phones */
  .navbar { height: 56px; }
  .navbar-inner { height: 56px; padding: 0 14px; max-width: 100%; }
  .navbar-actions .btn { padding: 7px 14px; font-size: 12px; }
  .navbar-logo { font-size: 15px; gap: 6px; }
  .navbar-logo svg { width: 22px; height: 22px; }
  .burger span { width: 20px; height: 2px; }
  .burger { gap: 4px; }

  /* Hero mobile fixes */
  .hero .container { padding: 0 16px; }
  .hero h1 { font-size: 22px; line-height: 1.3; }
  .hero-subtitle { font-size: 14px; }
  .hero-cta .btn { font-size: 14px; padding: 14px 24px; white-space: normal; width: 100%; text-align: center; box-sizing: border-box; }
  .hero-reassurance { font-size: 12px; }
  .founders-pill { max-width: 100%; }
  .hero-both-text { font-size: 13px; }
  .laurel-main { font-size: 22px; }
  .geo-split-card { padding: 24px 16px; }

  /* All large buttons — centered, full width */
  .btn-lg { width: 100%; box-sizing: border-box; text-align: center; font-size: 14px; padding: 14px 20px; white-space: normal; }
}
