/* ==========================================================================
   LEAD4LINKED — Website Stylesheet
   LinkedIn Blue Theme | Based on Konekt Design System
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Backgrounds — LinkedIn-matched medium navy */
  --bg-primary: #1C3250;
  --bg-secondary: #23415F;
  --bg-tertiary: #2B4F70;
  --bg-elevated: #325D80;

  /* Brand — LinkedIn Blue */
  --brand-indigo: #0A66C2;
  --brand-purple: #0077B5;
  --brand-violet: #378FE9;

  /* Accent */
  --accent-gold: #F7D775;
  --accent-gold-dark: #D4A843;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A1BFDB;
  --text-tertiary: #6B8BAF;

  /* Glass */
  --glass-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.10);
  --glass-hover: rgba(255,255,255,0.09);

  /* Semantic */
  --success: #10B981;
  --success-bg: rgba(16,185,129,0.15);
  --error: #EF4444;
  --error-bg: rgba(239,68,68,0.15);
  --warning: #F59E0B;
  --warning-bg: rgba(245,158,11,0.15);
  --info: #378FE9;
  --info-bg: rgba(55,143,233,0.15);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #004182, #0A66C2, #378FE9);
  --gradient-brand-h: linear-gradient(90deg, #004182, #0A66C2, #378FE9);
  --gradient-gold: linear-gradient(135deg, #F7D775, #D4A843);
  --gradient-glass: linear-gradient(135deg, rgba(10,102,194,0.12), rgba(55,143,233,0.06));
  --gradient-glow: radial-gradient(ellipse at center, rgba(10,102,194,0.2), transparent 70%);

  /* Spacing */
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px;  --space-8: 32px; --space-10: 40px;
  --space-12: 48px;--space-16: 64px; --space-20: 80px;--space-24: 96px;
  --space-32: 128px;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --text-xs:   clamp(0.6875rem, 0.65rem + 0.1vw,  0.75rem);
  --text-sm:   clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem  + 0.18vw, 1rem);
  --text-lg:   clamp(1.0625rem, 1rem    + 0.25vw, 1.125rem);
  --text-xl:   clamp(1.1875rem, 1.1rem  + 0.35vw, 1.25rem);
  --text-2xl:  clamp(1.4rem,    1.2rem  + 0.75vw, 1.75rem);
  --text-3xl:  clamp(1.75rem,   1.5rem  + 1vw,    2.25rem);
  --text-4xl:  clamp(2rem,      1.6rem  + 1.5vw,  2.75rem);
  --text-5xl:  clamp(2.5rem,    2rem    + 2vw,    3.5rem);
  --text-hero: clamp(2.5rem,    1.8rem  + 3vw,    4rem);

  /* Radius */
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px;
  --radius-xl: 20px; --radius-2xl: 24px; --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow-brand: 0 0 20px rgba(10,102,194,0.35);
  --shadow-glow-brand-strong: 0 0 40px rgba(10,102,194,0.5);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.6s cubic-bezier(0.34,1.56,0.64,1);

  /* Z-Index */
  --z-behind: -1; --z-base: 1; --z-dropdown: 10;
  --z-sticky: 20; --z-overlay: 50; --z-modal: 60;
  --z-nav: 100; --z-max: 999;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  /* Subtle grid — pure CSS, no DOM element, no fixed-position issues */
  background-image:
    linear-gradient(rgba(10,102,194,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,102,194,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* bg-ambient removed — background handled on body directly */
.bg-ambient, .bg-grid, .bg-blob, .bg-blob-1, .bg-blob-2 { display: none; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.7; }

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
  background-size: 200%;
}

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

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }

.section { padding: var(--space-24) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-header h2 { margin-bottom: var(--space-4); }
.section-header p { max-width: 600px; margin: 0 auto; }

.section-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--brand-violet);
  background: rgba(10,102,194,0.1); border: 1px solid rgba(10,102,194,0.2);
  margin-bottom: var(--space-4);
}

.section-num {
  display: block; font-size: var(--text-sm);
  color: var(--text-tertiary); margin-bottom: var(--space-2);
  font-weight: 600; letter-spacing: 1px;
}

/* ==========================================================================
   5. GLASS EFFECT
   ========================================================================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-brand);
  border-color: rgba(10,102,194,0.25);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); font-size: var(--text-sm); font-weight: 600;
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: all var(--transition-base);
  text-decoration: none; line-height: 1.4; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #004182, #0A66C2, #378FE9);
  color: #fff;
  box-shadow: 0 2px 12px rgba(10,102,194,0.3);
}
.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(10,102,194,0.5);
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: rgba(10,102,194,0.3);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--brand-indigo);
  background: rgba(10,102,194,0.08);
  color: var(--text-primary);
}
.btn-large { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-small { padding: 6px 14px; font-size: var(--text-xs); }

/* ==========================================================================
   7. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, rgba(0,65,130,0.9), rgba(10,102,194,0.9));
  text-align: center; padding: 10px var(--space-6);
  font-size: var(--text-xs); font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  border-bottom: 1px solid rgba(10,102,194,0.3);
  animation: slideDown 0.5s ease;
}
.announcement-bar a {
  color: var(--accent-gold); font-weight: 700; text-decoration: underline;
  transition: opacity var(--transition-fast);
}
.announcement-bar a:hover { opacity: 0.8; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ==========================================================================
   8. NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.nav.scrolled {
  background: rgba(8,15,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-6); max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, #004182, #0A66C2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #fff;
  box-shadow: 0 2px 8px rgba(10,102,194,0.4);
}
.nav-logo span { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: none; align-items: center; gap: var(--space-8);
}
.nav-links a {
  font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition-fast); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--brand-indigo);
  transform: scaleX(0); transition: transform var(--transition-base);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: var(--space-3); }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 4px; padding: 6px 10px;
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: var(--text-xs); font-weight: 600; color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.lang-current:hover { color: var(--text-primary); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-elevated); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); overflow: hidden; min-width: 120px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition-base); z-index: var(--z-dropdown);
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: var(--space-3); padding: 10px 14px;
  font-size: var(--text-sm); cursor: pointer; transition: background var(--transition-fast);
  color: var(--text-secondary);
}
.lang-option:hover, .lang-option.active { background: rgba(10,102,194,0.1); color: var(--text-primary); }
.lang-option.active { font-weight: 600; }

/* Mobile nav */
.nav-mobile-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none;
  padding: 4px; cursor: pointer;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-secondary); border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: calc(var(--z-nav) - 1);
  background: var(--bg-primary);
  padding: 100px var(--space-6) var(--space-8);
  flex-direction: column; gap: var(--space-6);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: var(--text-xl); font-weight: 700;
  color: var(--text-secondary); transition: color var(--transition-fast);
}
.nav-mobile-menu a:hover { color: var(--text-primary); }
.nav-mobile-close {
  position: absolute; top: var(--space-4); right: var(--space-6);
  background: none; border: none; font-size: 1.5rem; color: var(--text-secondary);
}

/* ==========================================================================
   9. HERO
   ========================================================================== */
.hero {
  padding: 160px 0 100px;
  position: relative; text-align: center; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(10,102,194,0.18), transparent 70%);
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; } 50% { opacity: 1; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(10,102,194,0.1); border: 1px solid rgba(10,102,194,0.25);
  font-size: var(--text-xs); font-weight: 600; color: var(--brand-violet);
  margin-bottom: var(--space-6);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-violet);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  font-size: var(--text-hero); font-weight: 800; margin-bottom: var(--space-6);
  max-width: 800px; margin-left: auto; margin-right: auto;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--text-lg); color: var(--text-secondary);
  max-width: 580px; margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-6);
}

.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); flex-wrap: wrap;
  font-size: var(--text-xs); color: var(--text-tertiary);
}
.hero-trust span { display: flex; align-items: center; gap: var(--space-2); }
.hero-trust svg { color: var(--success); flex-shrink: 0; }

/* CSV Preview */
.csv-preview-wrap {
  margin-top: var(--space-12);
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.csv-preview {
  background: var(--bg-secondary);
  border: 1px solid rgba(10,102,194,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(10,102,194,0.1);
}
.csv-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.csv-topbar-left { display: flex; align-items: center; gap: var(--space-3); }
.csv-dots { display: flex; gap: 6px; }
.csv-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.csv-dots span:nth-child(1) { background: #FF5F57; }
.csv-dots span:nth-child(2) { background: #FEBC2E; }
.csv-dots span:nth-child(3) { background: #28C840; }
.csv-filename { font-size: var(--text-xs); color: var(--text-tertiary); font-weight: 500; }
.csv-live-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-pill); padding: 3px 10px;
  font-size: 10px; font-weight: 700; color: var(--success); text-transform: uppercase;
}
.csv-live-badge span { width: 5px; height: 5px; border-radius: 50%; background: var(--success); animation: pulseDot 1.5s infinite; }

.csv-table-wrap { overflow-x: auto; }
.csv-table { width: 100%; border-collapse: collapse; font-size: var(--text-xs); }
.csv-table th {
  padding: 10px 14px; text-align: left;
  background: rgba(10,102,194,0.06);
  color: var(--text-tertiary); font-weight: 600; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}
.csv-table td {
  padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary); white-space: nowrap;
}
.csv-table tr:hover td { background: rgba(10,102,194,0.04); color: var(--text-primary); }
.csv-table tr:last-child td { border-bottom: none; }
.csv-url { color: var(--brand-indigo) !important; font-size: 10px; }
.csv-new-row td { color: var(--success) !important; background: rgba(16,185,129,0.04); }
.csv-new-badge {
  display: inline-block; background: var(--success-bg); color: var(--success);
  border-radius: var(--radius-pill); padding: 1px 6px; font-size: 9px; font-weight: 700;
  margin-left: 4px;
}

.csv-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  background: var(--bg-tertiary);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--text-xs); color: var(--text-tertiary);
}

/* ==========================================================================
   10. PRICE COMPARISON HOOK
   ========================================================================== */
.price-hook { padding: var(--space-20) 0; }
.price-hook-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: var(--space-6); max-width: 800px; margin: 0 auto;
}
.price-hook-vs {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800;
  color: var(--text-tertiary); text-align: center;
}
.price-hook-card {
  padding: var(--space-8); border-radius: var(--radius-xl); text-align: center;
}
.price-hook-card.theirs {
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2);
}
.price-hook-card.ours {
  background: rgba(10,102,194,0.08); border: 1px solid rgba(10,102,194,0.3);
  box-shadow: var(--shadow-glow-brand);
}
.price-hook-label {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: var(--space-3);
}
.theirs .price-hook-label { color: var(--error); }
.ours .price-hook-label { color: var(--brand-violet); }
.price-hook-amount {
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  margin-bottom: var(--space-2);
}
.theirs .price-hook-amount { font-size: 3rem; color: var(--error); }
.ours .price-hook-amount { font-size: 3rem; color: var(--brand-violet); }
.price-hook-sub { font-size: var(--text-xs); color: var(--text-tertiary); margin-bottom: var(--space-4); }
.price-hook-breakdown { font-size: var(--text-xs); color: var(--text-tertiary); line-height: 1.8; }
.price-hook-breakdown s { color: var(--error); opacity: 0.7; }

/* ==========================================================================
   11. SOCIAL PROOF / INTEGRATIONS BAR
   ========================================================================== */
.social-proof {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.social-proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-8); flex-wrap: wrap;
}
.social-proof-label {
  font-size: var(--text-xs); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-tertiary); white-space: nowrap;
}
.integrations-row {
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap;
  justify-content: center;
}
.integration-chip {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 5px 14px; border-radius: var(--radius-pill);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: var(--text-xs); font-weight: 600; color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.integration-chip:hover { border-color: rgba(10,102,194,0.3); color: var(--text-primary); }
.trust-chips {
  display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap;
  justify-content: center;
}
.trust-chip {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--text-tertiary);
}
.trust-chip svg { color: var(--success); }

/* ==========================================================================
   12. PROBLEMS SECTION
   ========================================================================== */
.problems { padding: var(--space-24) 0; }
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.problem-card {
  padding: var(--space-8); border-radius: var(--radius-xl);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--error), rgba(239,68,68,0.3));
}
.problem-number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--error); opacity: 0.8; line-height: 1; margin-bottom: var(--space-3);
}
.problem-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.problem-card p { font-size: var(--text-sm); color: var(--text-secondary); }

/* ==========================================================================
   13. SOLUTION BANNER
   ========================================================================== */
.solution-banner {
  padding: var(--space-12) 0;
}
.solution-inner {
  background: linear-gradient(135deg, rgba(0,65,130,0.3), rgba(10,102,194,0.15));
  border: 1px solid rgba(10,102,194,0.25);
  border-radius: var(--radius-2xl); padding: var(--space-12) var(--space-16);
  text-align: center; position: relative; overflow: hidden;
}
.solution-inner::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-glow); pointer-events: none;
}
.solution-inner h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.solution-inner p { max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   14. HOW IT WORKS
   ========================================================================== */
.how-it-works { padding: var(--space-24) 0; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6); position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px; background: linear-gradient(90deg, transparent, rgba(10,102,194,0.3), rgba(10,102,194,0.3), transparent);
}
.step-card { text-align: center; padding: var(--space-6); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #004182, #0A66C2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  color: #fff; margin: 0 auto var(--space-4);
  box-shadow: 0 4px 16px rgba(10,102,194,0.4);
  position: relative; z-index: 1;
}
.step-card h4 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step-card p { font-size: var(--text-sm); color: var(--text-secondary); }

/* ==========================================================================
   15. BEFORE / AFTER COMPARISON
   ========================================================================== */
.comparison { padding: var(--space-24) 0; }
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6);
  max-width: 860px; margin: 0 auto;
}
.comparison-col {
  border-radius: var(--radius-xl); padding: var(--space-8); overflow: hidden;
}
.comparison-col.before {
  background: rgba(30,10,10,0.4); border: 1px solid rgba(239,68,68,0.15);
}
.comparison-col.after {
  background: rgba(10,102,194,0.06); border: 1px solid rgba(10,102,194,0.25);
}
.comparison-col-header {
  font-size: var(--text-sm); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding-bottom: var(--space-5);
  margin-bottom: var(--space-5); border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: var(--space-2);
}
.before .comparison-col-header { color: var(--error); }
.after .comparison-col-header { color: var(--brand-violet); }
.comparison-item {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-3) 0; font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-item:last-child { border-bottom: none; }
.comparison-item svg { flex-shrink: 0; margin-top: 2px; }
.before .comparison-item svg { color: var(--error); }
.after .comparison-item svg { color: var(--success); }
.before .comparison-item span { color: var(--text-secondary); }
.after .comparison-item span { color: var(--text-primary); }

/* ==========================================================================
   16. USE CASES
   ========================================================================== */
.use-cases { padding: var(--space-24) 0; }
.use-cases-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
}
.usecase-card {
  padding: var(--space-6); border-radius: var(--radius-xl);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}
.usecase-card:hover {
  transform: translateY(-4px); border-color: rgba(10,102,194,0.3);
  box-shadow: var(--shadow-glow-brand);
}
.usecase-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,65,130,0.4), rgba(10,102,194,0.3));
  border: 1px solid rgba(10,102,194,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4); font-size: 1.25rem;
}
.usecase-card h4 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.usecase-card p { font-size: var(--text-sm); color: var(--text-secondary); }

/* ==========================================================================
   17. INTEGRATIONS MARQUEE
   ========================================================================== */
.marquee-section { padding: var(--space-12) 0; overflow: hidden; }
.marquee-label {
  text-align: center; font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text-tertiary);
  margin-bottom: var(--space-6);
}
.marquee-track { display: flex; gap: var(--space-4); animation: marqueeScroll 30s linear infinite; width: max-content; }
.marquee-wrap { overflow: hidden; 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(to right, var(--bg-primary), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.marquee-item {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   18. FEATURES GRID
   ========================================================================== */
.features { padding: var(--space-24) 0; }
.features-grid-6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5);
}
.feature-card {
  padding: var(--space-8); border-radius: var(--radius-xl);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  transition: all var(--transition-base); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-base);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(10,102,194,0.25); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: var(--space-5);
  background: linear-gradient(135deg, rgba(0,65,130,0.35), rgba(10,102,194,0.2));
  border: 1px solid rgba(10,102,194,0.2);
}
.feature-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.feature-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }

/* ==========================================================================
   19. STATS BAR
   ========================================================================== */
.stats-bar { padding: var(--space-20) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6); text-align: center;
}
.stat-item { padding: var(--space-8) var(--space-4); }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1; margin-bottom: var(--space-2);
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: var(--text-sm); color: var(--text-secondary); }

/* ==========================================================================
   20. TESTIMONIALS
   ========================================================================== */
.testimonials { padding: var(--space-24) 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
}
.testimonial-card {
  padding: var(--space-8); border-radius: var(--radius-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-brand);
  border-color: rgba(10,102,194,0.25);
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg {
  width: 14px; height: 14px; fill: var(--accent-gold); flex-shrink: 0;
}
.testimonial-result {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border-radius: var(--radius-pill); font-size: var(--text-xs); font-weight: 700;
  background: var(--success-bg); color: var(--success);
  align-self: flex-start;
}
.testimonial-card blockquote {
  font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7;
  flex: 1; font-style: italic; position: relative; padding-left: var(--space-5);
}
.testimonial-card blockquote::before {
  content: '"'; position: absolute; left: 0; top: -4px;
  font-size: 2rem; font-family: Georgia, serif; line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-size: var(--text-sm); font-weight: 600; }
.testimonial-author .role { font-size: var(--text-xs); color: var(--text-tertiary); }

/* ==========================================================================
   21. PRICING
   ========================================================================== */
.pricing { padding: var(--space-24) 0; }

/* Credit ladder */
.pricing-credits-title {
  font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-3);
  display: flex; align-items: center; gap: var(--space-3);
}
.pricing-credits-sub { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-8); }

.credits-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  margin-bottom: var(--space-16);
}
.credits-table { width: 100%; border-collapse: collapse; }
.credits-table th {
  padding: 12px 20px; text-align: left; background: rgba(10,102,194,0.06);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-tertiary);
  border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap;
}
.credits-table td {
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: var(--text-sm); color: var(--text-secondary); white-space: nowrap;
}
.credits-table tr:last-child td { border-bottom: none; }
.credits-table tr:hover td { background: rgba(10,102,194,0.04); color: var(--text-primary); }
.credits-table .col-price { font-weight: 700; color: var(--text-primary); }
.credits-table .col-saving {
  color: var(--success); font-size: var(--text-xs); font-weight: 700;
}
.credits-table .col-evaboot { color: var(--text-tertiary); text-decoration: line-through; font-size: var(--text-xs); }
.credit-row-highlight td { background: rgba(10,102,194,0.06) !important; }
.credit-row-highlight .col-price { color: var(--brand-violet) !important; font-size: var(--text-base); }

/* Billing toggle */
.billing-toggle {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 4px; position: relative; margin-bottom: var(--space-8);
}
#toggleSlider {
  position: absolute; top: 4px; height: calc(100% - 8px);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); z-index: 0;
}
.billing-opt {
  padding: 10px 22px; font-size: 13px; font-weight: 600;
  color: var(--text-tertiary); cursor: pointer; border-radius: 11px;
  transition: color var(--transition-base); position: relative; z-index: 1;
  user-select: none;
}
.billing-opt.active { color: #fff; }
.billing-opt .badge {
  background: var(--success-bg); color: var(--success);
  border-radius: var(--radius-pill); padding: 1px 7px; font-size: 10px; font-weight: 700;
  margin-left: 4px;
}

/* Premium cards */
.pricing-premium-title {
  font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-3);
}
.pricing-premium-sub { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-8); }

.pricing-cards {
  display: flex; gap: var(--space-6); overflow-x: auto;
  padding-bottom: var(--space-4); scrollbar-width: none;
}
.pricing-cards::-webkit-scrollbar { display: none; }
.pricing-card {
  flex: 1; min-width: 260px; max-width: 340px;
  border-radius: var(--radius-xl); padding: var(--space-8);
  background: var(--glass-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(10,102,194,0.5);
  box-shadow: var(--shadow-glow-brand);
}
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes borderRotate { to { --angle: 360deg; } }
.pricing-card.featured::before {
  content: ''; position: absolute; inset: -2px; border-radius: calc(var(--radius-xl) + 2px);
  background: conic-gradient(from var(--angle), #004182, #0A66C2, #378FE9, #004182);
  animation: borderRotate 4s linear infinite; z-index: -2;
}
.pricing-card.featured::after {
  content: ''; position: absolute; inset: 1px; border-radius: calc(var(--radius-xl) - 1px);
  background: var(--bg-secondary); z-index: -1;
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-brand); color: #fff; padding: 4px 16px;
  border-radius: var(--radius-pill); font-size: var(--text-xs); font-weight: 700;
  white-space: nowrap;
}
.pricing-name { font-size: var(--text-lg); font-weight: 700; margin-bottom: 4px; }
.pricing-desc { font-size: var(--text-xs); color: var(--text-tertiary); margin-bottom: var(--space-5); }
.pricing-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: var(--space-5); }
.pricing-price { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; }
.pricing-period { font-size: var(--text-sm); color: var(--text-tertiary); }
.pricing-billed { font-size: var(--text-xs); color: var(--text-tertiary); margin-bottom: var(--space-5); min-height: 18px; }
.pricing-strike { color: var(--text-tertiary); text-decoration: line-through; margin-right: 4px; transition: opacity var(--transition-base); }
.pricing-leads-included {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  background: rgba(10,102,194,0.1); border: 1px solid rgba(10,102,194,0.15);
  font-size: var(--text-xs); font-weight: 600; color: var(--brand-violet);
  margin-bottom: var(--space-5);
}
.pricing-divider { height: 1px; background: var(--glass-border); margin-bottom: var(--space-5); }
.pricing-features { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.pricing-feature { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); }
.pricing-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--success); }
.pricing-feature span { color: var(--text-secondary); }
.pricing-cta { width: 100%; }

.pricing-note {
  text-align: center; font-size: var(--text-xs); color: var(--text-tertiary);
  margin-top: var(--space-8); display: flex; align-items: center;
  justify-content: center; gap: var(--space-4); flex-wrap: wrap;
}
.pricing-note span { display: flex; align-items: center; gap: 6px; }
.pricing-note svg { color: var(--success); }

.pricing-divider-section {
  display: flex; align-items: center; gap: var(--space-6);
  margin: var(--space-16) 0 var(--space-8);
}
.pricing-divider-section::before, .pricing-divider-section::after {
  content: ''; flex: 1; height: 1px; background: var(--glass-border);
}
.pricing-divider-label {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-tertiary); white-space: nowrap;
}

/* ==========================================================================
   22. FAQ
   ========================================================================== */
.faq { padding: var(--space-24) 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition-base);
}
.faq-item.open { border-color: rgba(10,102,194,0.3); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-primary);
  padding: var(--space-5) var(--space-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  cursor: pointer; text-align: left;
}
.faq-question h3 { font-size: var(--text-base); font-weight: 600; }
.faq-question svg {
  width: 18px; height: 18px; color: var(--text-tertiary); flex-shrink: 0;
  transition: transform var(--transition-base), color var(--transition-base);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--brand-indigo); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7;
}

/* ==========================================================================
   23. FINAL CTA
   ========================================================================== */
.cta-section { padding: var(--space-24) 0; }
.cta-inner {
  background: linear-gradient(135deg, rgba(0,65,130,0.35), rgba(10,102,194,0.2));
  border: 1px solid rgba(10,102,194,0.3); border-radius: var(--radius-2xl);
  padding: var(--space-24) var(--space-16); text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(10,102,194,0.2), transparent 60%);
  pointer-events: none;
}
.cta-inner h2 { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.cta-inner p { max-width: 520px; margin: 0 auto var(--space-8); }
.cta-buttons { display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-5); flex-wrap: wrap; margin-top: var(--space-6);
  font-size: var(--text-xs); color: var(--text-tertiary);
}
.cta-trust span { display: flex; align-items: center; gap: var(--space-2); }
.cta-trust svg { color: var(--success); }

/* ==========================================================================
   24. FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12); margin-bottom: var(--space-12);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-tagline { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary); transition: all var(--transition-fast);
}
.footer-social a:hover { background: rgba(10,102,194,0.15); border-color: rgba(10,102,194,0.3); color: var(--brand-indigo); }

.footer-column h4 {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: var(--space-5); color: var(--text-primary);
}
.footer-column ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-column li a {
  font-size: var(--text-sm); color: var(--text-tertiary);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}
.footer-column li a:hover { color: var(--text-primary); transform: translateX(3px); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-6); border-top: 1px solid var(--glass-border);
  gap: var(--space-4); flex-wrap: wrap;
}
.footer-copyright { font-size: var(--text-xs); color: var(--text-tertiary); }
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { font-size: var(--text-xs); color: var(--text-tertiary); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--text-primary); }

/* ==========================================================================
   25. ANIMATIONS & SCROLL
   ========================================================================== */
.animate-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* scroll-progress is inside .scroll-progress-wrap — no standalone fixed rule */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(10,102,194,0.3); }
  50%       { box-shadow: 0 0 40px rgba(10,102,194,0.6); }
}

/* ==========================================================================
   26. RESPONSIVE
   ========================================================================== */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }
}

@media (max-width: 1023px) {
  .price-hook-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .price-hook-vs { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  .problems-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .features-grid-6 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-cards { flex-direction: column; }
  .pricing-card { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .solution-inner { padding: var(--space-8); }
  .cta-inner { padding: var(--space-10) var(--space-6); }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .billing-opt { padding: 10px 14px; font-size: 12px; }
}

/* ==========================================================================
   27. SUPPLEMENTAL — HTML-specific classes
   ========================================================================== */

/* Scroll progress wrap */
.scroll-progress-wrap {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: calc(var(--z-nav) + 10); pointer-events: none;
}
.scroll-progress { height: 100%; background: var(--gradient-brand); width: 0%; transition: width 0.1s linear; }

/* --- HERO (two-column split) --- */
.hero-section { padding: 160px 0 80px; position: relative; overflow: hidden; }
.hero-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-12); align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .section-badge { display: inline-flex; margin-bottom: var(--space-5); }
.hero-content h1 { font-size: var(--text-hero); margin-bottom: var(--space-5); line-height: 1.1; }
.hero-sub { font-size: var(--text-lg); max-width: 520px; margin-bottom: var(--space-8); line-height: 1.7; }
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--space-5);
  font-size: var(--text-xs); color: var(--text-tertiary);
}
.hero-trust span { display: flex; align-items: center; gap: var(--space-2); }
.hero-visual { position: relative; z-index: 2; }

/* CSV Mockup */
.csv-mockup {
  background: var(--bg-secondary);
  border: 1px solid rgba(10,102,194,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 48px rgba(10,102,194,0.12);
}
.csv-chrome {
  display: flex; align-items: center; gap: var(--space-4);
  padding: 10px var(--space-5);
  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.csv-chrome-dots { display: flex; gap: 6px; }
.csv-chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
.csv-chrome-dots span:nth-child(1) { background: #FF5F57; }
.csv-chrome-dots span:nth-child(2) { background: #FEBC2E; }
.csv-chrome-dots span:nth-child(3) { background: #28C840; }
.csv-filename {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--text-xs); color: var(--text-tertiary); font-weight: 500;
}
.csv-link { color: var(--brand-indigo) !important; font-size: 11px; }
.csv-row { transition: background var(--transition-fast); }
.csv-row-new {
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.csv-row-new.visible { opacity: 1; transform: translateY(0); }
.csv-row-new td { color: var(--success) !important; background: rgba(16,185,129,0.04) !important; }
.csv-export-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(10,102,194,0.15); border: 1px solid rgba(10,102,194,0.25);
  border-radius: var(--radius-pill); padding: 3px 10px;
  font-size: var(--text-xs); font-weight: 600; color: var(--brand-violet);
  cursor: pointer; transition: all var(--transition-fast);
}
.csv-export-btn:hover { background: rgba(10,102,194,0.25); }
.csv-count { font-size: var(--text-xs); color: var(--text-tertiary); }

/* --- PRICE COMPARISON HOOK --- */
.hook-section { padding: var(--space-20) 0; }
.hook-cards {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: var(--space-6); max-width: 760px; margin: 0 auto;
}
.hook-card { padding: var(--space-8); }
.hook-card-bad { border-color: rgba(239,68,68,0.2) !important; background: rgba(239,68,68,0.04) !important; }
.hook-card-good {
  border-color: rgba(10,102,194,0.35) !important;
  background: rgba(10,102,194,0.07) !important;
  box-shadow: var(--shadow-glow-brand);
}
.hook-card-badge {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: var(--space-5);
}
.hook-card-badge-bad { color: var(--error); }
.hook-card-badge-good { color: var(--brand-violet); }
.hook-breakdown { display: flex; flex-direction: column; gap: var(--space-3); }
.hook-line {
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--text-sm); color: var(--text-secondary);
}
.hook-price-small { font-weight: 700; color: var(--text-primary); }
.hook-divider { height: 1px; background: rgba(239,68,68,0.15); }
.hook-total-line { display: flex; align-items: center; justify-content: space-between; }
.hook-total { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; }
.hook-total.bad { color: var(--error); }
.hook-total.good { color: var(--brand-violet); }
.hook-big-price { margin-bottom: var(--space-3); }
.hook-good-items { display: flex; flex-direction: column; gap: var(--space-2); }
.hook-good-item { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--success); }
.hook-vs {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800;
  color: var(--text-tertiary); text-align: center; padding: var(--space-4);
}
.hook-saving-pill {
  display: inline-flex; margin-top: var(--space-5);
  padding: 5px 14px; border-radius: var(--radius-pill);
  background: var(--success-bg); color: var(--success);
  font-size: var(--text-xs); font-weight: 700;
}

/* --- SOCIAL PROOF --- */
.proof-section {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.proof-title {
  text-align: center; font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text-tertiary);
  margin-bottom: var(--space-5);
}
.proof-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.proof-chip {
  padding: 6px 16px; border-radius: var(--radius-pill);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: var(--text-xs); font-weight: 600; color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.proof-chip:hover { border-color: rgba(10,102,194,0.3); color: var(--text-primary); }
.proof-trust { display: flex; justify-content: center; gap: var(--space-6); flex-wrap: wrap; }
.proof-trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--text-tertiary);
}

/* --- PROBLEMS --- */
.problems-section { padding: var(--space-24) 0; }
.problem-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.problem-icon-1 { background: rgba(239,68,68,0.12); color: var(--error); }
.problem-icon-2 { background: rgba(245,158,11,0.12); color: var(--warning); }
.problem-icon-3 { background: rgba(239,68,68,0.12); color: var(--error); }
.problem-card { padding: var(--space-8); }
.problem-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.problem-card p { font-size: var(--text-sm); }

/* --- SOLUTION --- */
.solution-section { padding: var(--space-16) 0; }
.solution-banner {
  background: linear-gradient(135deg, rgba(0,65,130,0.3), rgba(10,102,194,0.15));
  border-color: rgba(10,102,194,0.3) !important;
  padding: var(--space-16); text-align: center;
  position: relative; overflow: hidden;
}
.solution-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(10,102,194,0.2), transparent 60%);
  pointer-events: none;
}
.solution-banner > * { position: relative; z-index: 1; }
.solution-banner h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.solution-banner p { max-width: 560px; margin: 0 auto var(--space-8); }
.solution-badge {
  display: inline-flex; padding: 6px 16px; border-radius: var(--radius-pill);
  background: rgba(10,102,194,0.12); border: 1px solid rgba(10,102,194,0.25);
  font-size: var(--text-xs); font-weight: 700; color: var(--brand-violet);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--space-5);
}

/* --- HOW IT WORKS --- */
.how-section { padding: var(--space-24) 0; }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5); position: relative;
}
.how-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: var(--space-6); position: relative;
}
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #004182, #0A66C2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  color: #fff; margin-bottom: var(--space-5);
  box-shadow: 0 4px 20px rgba(10,102,194,0.4); flex-shrink: 0;
}
.how-step-num-optional {
  background: linear-gradient(135deg, #1c3a5a, #2a5a8a);
  box-shadow: 0 4px 16px rgba(10,102,194,0.2);
}
.how-step-content h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.how-step-content p { font-size: var(--text-sm); }
.how-step-content small { font-size: var(--text-xs); color: var(--text-tertiary); font-weight: 400; }
.how-connector { display: none; }

/* --- COMPARISON TABLE --- */
.compare-section { padding: var(--space-24) 0; }
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 14px 20px; text-align: left; font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: var(--text-sm); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-col-bad { color: var(--error); }
.compare-col-good { color: var(--success); }
.compare-feature { color: var(--text-secondary); font-weight: 500; }
.compare-bad { color: var(--error); opacity: 0.85; }
.compare-good { color: var(--success); }
.compare-x { color: var(--error); font-weight: 700; margin-right: 4px; }
.compare-check { color: var(--success); font-weight: 700; margin-right: 4px; }
.compare-row-highlight td { background: rgba(10,102,194,0.06); }
.compare-price-bad { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--error) !important; }
.compare-price-good { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--success) !important; }

/* --- USE CASES (grid alias) --- */
.usecases-section { padding: var(--space-24) 0; }
.usecases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.usecase-card { padding: var(--space-6); }
.usecase-card h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }

/* --- MARQUEE outer (alias) --- */
.marquee-outer { overflow: hidden; position: relative; padding: var(--space-4) 0; }
.marquee-outer::before, .marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-outer::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }

/* --- FEATURES (grid alias) --- */
.features-section { padding: var(--space-24) 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.feature-badge {
  display: inline-flex; margin-top: var(--space-4);
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: var(--text-xs); font-weight: 700;
}
.feature-badge-pro { background: rgba(10,102,194,0.15); color: var(--brand-violet); }
.feature-badge-business { background: rgba(247,215,117,0.15); color: var(--accent-gold); }

/* --- STATS --- */
.stats-section { padding: var(--space-20) 0; }
.stat-item { padding: var(--space-8) var(--space-4); text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1; margin-bottom: var(--space-2);
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: var(--text-sm); color: var(--text-secondary); }

/* --- TESTIMONIALS --- */
.testimonials-section { padding: var(--space-24) 0; }
.testimonial-card { padding: var(--space-8); }
.testimonial-stars { font-size: 0.9rem; color: var(--accent-gold); letter-spacing: 2px; margin-bottom: var(--space-2); }
.testimonial-quote {
  font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7;
  font-style: italic; margin-bottom: var(--space-5);
  position: relative; padding-left: var(--space-5);
}
.testimonial-quote::before {
  content: '\201C'; position: absolute; left: 0; top: -4px;
  font-size: 2rem; font-family: Georgia, serif; line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-meta { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.testimonial-meta strong { font-size: var(--text-sm); font-weight: 600; }
.testimonial-meta span { font-size: var(--text-xs); color: var(--text-tertiary); }
.testimonial-location { font-size: var(--text-xs); color: var(--text-tertiary); }
.testimonial-badge {
  display: inline-flex; padding: 3px 10px; border-radius: var(--radius-pill);
  background: var(--success-bg); color: var(--success);
  font-size: var(--text-xs); font-weight: 700; white-space: nowrap;
}

/* --- PRICING --- */
.pricing-section { padding: var(--space-24) 0; }
.pricing-layer { margin-bottom: var(--space-20); }
.pricing-layer-header { text-align: center; margin-bottom: var(--space-10); }
.pricing-layer-header h3 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.pricing-layer-header p { color: var(--text-secondary); }

/* Credit table */
.credit-table-wrap { overflow-x: auto; }
.credit-table { width: 100%; border-collapse: collapse; }
.credit-table th {
  padding: 12px 20px; text-align: left;
  background: rgba(10,102,194,0.06);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-tertiary);
  border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap;
}
.credit-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: var(--text-sm); color: var(--text-secondary); white-space: nowrap; }
.credit-table tr:last-child td { border-bottom: none; }
.credit-table tr:hover td { background: rgba(10,102,194,0.04); color: var(--text-primary); }
.credit-row-featured td { background: rgba(10,102,194,0.07) !important; }
.credit-row-featured strong { color: var(--brand-violet); }
.credit-row-badge {
  display: inline-flex; padding: 1px 8px; border-radius: var(--radius-pill);
  background: rgba(10,102,194,0.15); color: var(--brand-violet);
  font-size: 10px; font-weight: 700; margin-left: 6px;
}
.credit-price { font-weight: 700; color: var(--text-primary); }
.credit-perlead { color: var(--text-tertiary); font-size: var(--text-xs); }
.credit-vs { }
.credit-vs-text { color: var(--text-tertiary); font-size: var(--text-xs); text-decoration: line-through; }

/* Billing toggle */
.billing-toggle { display: flex; justify-content: center; margin-bottom: var(--space-10); }
.billing-toggle-inner {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 4px; position: relative; gap: 0;
}
.billing-slider {
  position: absolute; top: 4px; left: 4px; height: calc(100% - 8px);
  width: calc(50% - 4px); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px; transition: left 0.35s cubic-bezier(0.34,1.56,0.64,1); z-index: 0;
}
.billing-btn {
  padding: 10px 22px; font-size: var(--text-sm); font-weight: 600;
  color: var(--text-tertiary); background: none; border: none;
  border-radius: 11px; transition: color var(--transition-base);
  position: relative; z-index: 1; cursor: pointer; display: flex; align-items: center; gap: var(--space-2);
}
.billing-btn.active { color: #fff; }
.billing-save-tag {
  background: var(--success-bg); color: var(--success);
  border-radius: var(--radius-pill); padding: 1px 7px;
  font-size: 10px; font-weight: 700; transition: opacity var(--transition-base);
}

/* Plan cards */
.pricing-layer-plans .pricing-layer-header { margin-top: var(--space-8); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.plan-card {
  padding: var(--space-8); position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card-featured {
  border-color: rgba(10,102,194,0.5) !important;
  box-shadow: var(--shadow-glow-brand);
}
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes borderRotate { to { --angle: 360deg; } }
.plan-card-featured::before {
  content: ''; position: absolute; inset: -2px; border-radius: calc(var(--radius-xl) + 2px);
  background: conic-gradient(from var(--angle), #004182, #0A66C2, #378FE9, #004182);
  animation: borderRotate 4s linear infinite; z-index: -2;
}
.plan-card-featured::after {
  content: ''; position: absolute; inset: 1px; border-radius: calc(var(--radius-xl) - 1px);
  background: var(--bg-secondary); z-index: -1;
}
.plan-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-brand); color: #fff;
  padding: 4px 16px; border-radius: var(--radius-pill);
  font-size: var(--text-xs); font-weight: 700; white-space: nowrap;
}
.plan-name { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-1); }
.plan-leads {
  font-size: var(--text-xs); color: var(--brand-violet); font-weight: 600;
  margin-bottom: var(--space-5);
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill);
  background: rgba(10,102,194,0.1); border: 1px solid rgba(10,102,194,0.15);
}
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: var(--space-2); }
.plan-price-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; }
.plan-price-mo { font-size: var(--text-sm); color: var(--text-tertiary); }
.plan-billed { font-size: var(--text-xs); color: var(--text-tertiary); min-height: 18px; margin-bottom: var(--space-5); }
.plan-features {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.plan-features li { display: flex; align-items: flex-start; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-secondary); }
.plan-features svg { flex-shrink: 0; margin-top: 2px; }
.plan-cta { width: 100%; text-align: center; }
.pricing-guarantee {
  text-align: center; font-size: var(--text-xs); color: var(--text-tertiary);
  margin-top: var(--space-8);
}

/* --- FAQ --- */
.faq-section { padding: var(--space-24) 0; }
.faq-q-text { font-size: var(--text-base); font-weight: 600; }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition-base), color var(--transition-base); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--brand-indigo); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body p { padding: 0 var(--space-6) var(--space-5); font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }

/* --- FINAL CTA --- */
.final-cta-section { padding: var(--space-24) 0; }
.final-cta-box {
  background: linear-gradient(135deg, rgba(0,65,130,0.35), rgba(10,102,194,0.2)) !important;
  border-color: rgba(10,102,194,0.3) !important;
  padding: var(--space-24) var(--space-16);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(10,102,194,0.25), transparent 60%);
}
.final-cta-box > * { position: relative; z-index: 1; }
.final-cta-box h2 { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.final-cta-box p { max-width: 500px; margin: 0 auto var(--space-8); }
.final-cta-trust {
  display: flex; justify-content: center; gap: var(--space-5); flex-wrap: wrap;
  margin-top: var(--space-6); font-size: var(--text-xs); color: var(--text-tertiary);
}
.final-cta-trust span { display: flex; align-items: center; gap: var(--space-2); }

/* --- FOOTER --- */
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: var(--space-12); margin-bottom: var(--space-12);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-logo { display: inline-flex; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary); transition: all var(--transition-fast);
}
.footer-social-link:hover { background: rgba(10,102,194,0.15); border-color: rgba(10,102,194,0.3); color: var(--brand-indigo); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.footer-col h4 {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: var(--space-5); color: var(--text-primary);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: var(--text-tertiary); transition: color var(--transition-fast), transform var(--transition-fast); display: inline-block; }
.footer-col a:hover { color: var(--text-primary); transform: translateX(3px); }
.footer-powered { font-size: var(--text-xs); color: var(--text-tertiary); }
.footer-powered a { color: var(--brand-indigo); transition: color var(--transition-fast); }
.footer-powered a:hover { color: var(--brand-violet); }

/* Mobile language row */
.mobile-lang-row { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.lang-btn {
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition-fast);
}
.lang-btn:hover { border-color: rgba(10,102,194,0.3); color: var(--text-primary); }

/* Responsive overrides for new classes */
@media (max-width: 1023px) {
  .hero-container { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hook-cards { grid-template-columns: 1fr; max-width: 420px; }
  .hook-vs { display: none; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .hero-section { padding: 130px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr 1fr; }
  .compare-wrap { font-size: var(--text-xs); }
  .final-cta-box { padding: var(--space-10) var(--space-6); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .how-steps { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .plans-grid { max-width: 100%; }
}

/* ==========================================================================
   28. LIGHT MODE (keep minimal)
   ========================================================================== */
.light-mode {
  --bg-primary: #f0f4fa;
  --bg-secondary: #e8eef8;
  --bg-tertiary: #dde5f3;
  --bg-elevated: #ffffff;
  --text-primary: #0d1526;
  --text-secondary: #3d5278;
  --text-tertiary: #7a90b0;
  --glass-bg: rgba(255,255,255,0.7);
  --glass-border: rgba(10,102,194,0.12);
  --glass-hover: rgba(10,102,194,0.08);
}
.light-mode body { background: var(--bg-primary); color: var(--text-primary); }
.light-mode .bg-grid { opacity: 0.5; }
.light-mode .bg-blob { opacity: 0.05 !important; }
.light-mode .testimonial-card { background: #fff; box-shadow: 0 4px 20px rgba(10,102,194,0.08); }

/* ==========================================================================
   29. COMPETITOR COMPARISON TABLE
   ========================================================================== */
.competitors-section { padding: var(--section-pad) 0; }

.comp-table-wrap {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.comp-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  font-size: 0.88rem;
}

.comp-table thead tr {
  background: rgba(10,102,194,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comp-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
}

.comp-table thead .comp-feature-col {
  text-align: left;
  color: var(--text-primary);
  min-width: 220px;
}

.comp-table thead .comp-our-col {
  background: rgba(10,102,194,0.18);
  border-left: 1px solid rgba(10,102,194,0.3);
  border-right: 1px solid rgba(10,102,194,0.3);
  color: var(--brand-indigo);
}

.comp-our-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-light);
}

.comp-logo-icon {
  width: 24px;
  height: 24px;
  font-size: 0.65rem;
  border-radius: 6px;
}

.comp-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.comp-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.comp-table tbody td {
  padding: 13px 16px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.84rem;
  vertical-align: middle;
}

.comp-feature {
  text-align: left !important;
  color: var(--text-primary) !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  line-height: 1.4;
}

.comp-our {
  background: rgba(10,102,194,0.10);
  border-left: 1px solid rgba(10,102,194,0.25);
  border-right: 1px solid rgba(10,102,194,0.25);
  font-weight: 600;
}

.comp-cell-yes { color: #10B981; }
.comp-cell-no  { color: rgba(239,68,68,0.9); }
.comp-cell-mid { color: var(--text-tertiary); }

.comp-check { color: #10B981; font-weight: 700; margin-right: 4px; }
.comp-x     { color: rgba(239,68,68,0.9); font-weight: 700; margin-right: 4px; }

.comp-cell-text { font-size: 0.8rem; }

.comp-footnote {
  padding: 12px 24px;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

/* Testimonials: 4-col grid for 16 cards */
@media (min-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   30. EVABOOT-STYLE SOCIAL PROOF (companies · ratings · source badges)
   ========================================================================== */

/* "X companies save time with us" + brand logos row */
.proof-companies {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.proof-companies-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 36px;
}
.proof-companies-title strong {
  color: var(--brand-light);
  font-weight: 800;
}
.proof-companies-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  filter: grayscale(1) brightness(1.6);
  opacity: 0.75;
  transition: opacity 0.4s, filter 0.4s;
}
.proof-companies-logos:hover { opacity: 1; }
.proof-company-logo {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

/* G2 trust pill — used at top of hero & elsewhere */
.g2-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.g2-pill-wrap-hero {
  margin-bottom: 22px;
  animation: g2FloatIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes g2FloatIn {
  0%   { opacity: 0; transform: translateY(-12px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0)     scale(1);    }
}
.g2-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,73,44,0);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.35s, border-color 0.25s;
}
.g2-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255,73,44,0.45);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,73,44,0.10);
}
.g2-pill-large {
  font-size: 0.94rem;
  padding: 11px 22px 11px 12px;
  gap: 12px;
}
.g2-pill-icon {
  width: 28px;
  height: 28px;
  background: #FF492C;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  flex-shrink: 0;
  font-family: var(--font-display);
  position: relative;
  box-shadow: 0 2px 8px rgba(255,73,44,0.35);
}
.g2-pill-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #FF492C;
  opacity: 0.6;
  animation: g2Pulse 2.4s ease-out infinite;
}
@keyframes g2Pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.5); opacity: 0;    }
  100% { transform: scale(1.5); opacity: 0;    }
}
.g2-pill-large .g2-pill-icon { width: 32px; height: 32px; font-size: 0.74rem; }
.g2-pill-score { font-weight: 800; font-family: var(--font-display); }
.g2-pill-stars {
  color: #FFB800;
  letter-spacing: 1.5px;
  font-size: 0.88rem;
  text-shadow: 0 0 8px rgba(255,184,0,0.3);
}
.g2-pill-divider { color: var(--text-tertiary); opacity: 0.5; }
.g2-pill-users { color: var(--text-secondary); font-weight: 600; }

/* New brand SVG inside .nav-logo-icon — center the SVG cleanly */
.nav-logo-icon svg { display: block; }
.comp-logo-icon svg { width: 16px; height: 16px; }

/* G2 pill icon — accommodate the real G2 SVG */
.g2-pill-icon img {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.g2-pill-large .g2-pill-icon img { width: 20px; height: 20px; }

/* ==========================================================================
   31. ANIMATED COMPETITOR ROTATOR (price hook left card)
   ========================================================================== */
.competitor-rotator { position: relative; }
.competitor-rotator-body,
.hook-card-badge .competitor-rotator-name {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.competitor-rotator.is-fading .competitor-rotator-body,
.competitor-rotator.is-fading .competitor-rotator-name {
  opacity: 0;
  transform: translateY(-4px);
}

.competitor-rotator-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.rotator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.rotator-dot:hover { background: rgba(255,255,255,0.35); }
.rotator-dot.active {
  background: var(--brand-light, #378FE9);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(55,143,233,0.4);
}

/* ==========================================================================
   32. INFINITE LOGO MARQUEE (replaces static company logos row)
   ========================================================================== */
.proof-marquee {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.proof-marquee-outer {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.proof-marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marqueeProof 45s linear infinite;
}
.proof-marquee-track:hover { animation-play-state: paused; }
.proof-marquee-logo {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.6);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
.proof-marquee-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.18);
}
@keyframes marqueeProof {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   33. SITE-WIDE ANIMATION POLISH
   ========================================================================== */

/* CTA primary button — gentle breathing glow */
.btn-primary {
  position: relative;
  animation: ctaBreathe 3.4s ease-in-out infinite;
}
@keyframes ctaBreathe {
  0%, 100% { box-shadow: 0 4px 14px rgba(10,102,194,0.25), 0 0 0 0 rgba(10,102,194,0.0); }
  50%      { box-shadow: 0 6px 22px rgba(10,102,194,0.45), 0 0 0 6px rgba(10,102,194,0.06); }
}

/* Section badge — subtle gradient shimmer */
.section-badge {
  position: relative;
  overflow: hidden;
}
.section-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: badgeShimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes badgeShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Hero CSV table — scanning line effect */
.csv-mockup {
  position: relative;
  overflow: hidden;
}
.csv-mockup::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 38px;
  background: linear-gradient(180deg, rgba(55,143,233,0) 0%, rgba(55,143,233,0.18) 50%, rgba(55,143,233,0) 100%);
  pointer-events: none;
  animation: csvScan 7s ease-in-out infinite;
  z-index: 1;
}
@keyframes csvScan {
  0%   { transform: translateY(-40px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(440px); opacity: 0; }
}

/* Stat counter bounce on intersection */
.stat-num.has-bounced {
  animation: statBounce 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes statBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.09); }
  100% { transform: scale(1); }
}

/* Testimonial card — subtle scale on hover (combined with existing tilt) */
.testimonial-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.testimonial-card:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(55,143,233,0.18);
}

/* Pricing plan cards — lift on hover */
.plan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}

/* Smooth scroll anchor offset (sticky-nav-friendly) */
section[id] { scroll-margin-top: 110px; }

/* Hero fineprint (anti-abuse disclaimer under CTA) */
.hero-fineprint {
  margin-top: 16px;
  font-size: 0.74rem;
  color: var(--text-tertiary);
  opacity: 0.8;
  line-height: 1.5;
  max-width: 520px;
}

/* ==========================================================================
   35. LANGUAGE SWITCH BANNER (geo-detected, dismissible)
   ========================================================================== */
.lang-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(28, 50, 80, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  max-width: 380px;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lang-banner.visible { opacity: 1; transform: translateY(0); }
.lang-banner-text { color: var(--text-primary); flex: 1; }
.lang-banner-cta {
  background: var(--gradient-brand);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lang-banner-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,102,194,0.4); }
.lang-banner-dismiss {
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.lang-banner-dismiss:hover { color: var(--text-primary); }

@media (max-width: 600px) {
  .lang-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; }
}

/* ==========================================================================
   36. COOKIE CONSENT BANNER (GDPR)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8500;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(28, 50, 80, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  max-width: 460px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); }
.cookie-banner-text { flex: 1; line-height: 1.55; }
.cookie-banner-learn {
  display: inline-block;
  margin-left: 4px;
  color: var(--brand-light);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner-accept {
  flex-shrink: 0;
  background: var(--gradient-brand);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cookie-banner-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,102,194,0.4); }

@media (max-width: 600px) {
  .cookie-banner { left: 16px; right: 16px; max-width: none; flex-direction: column; align-items: stretch; bottom: 100px; }
  .cookie-banner-accept { width: 100%; }
}

/* ==========================================================================
   37. FOMO TOAST (dynamic activity notifications, bottom-left)
   ========================================================================== */
.fomo-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  padding: 12px 36px 12px 14px;
  background: rgba(28, 50, 80, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 102, 194, 0.25);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.fomo-toast.visible {
  transform: translateX(0);
  opacity: 1;
}
.fomo-toast-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  position: relative;
}
.fomo-toast-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid #10B981;
  border-radius: 50%;
  opacity: 0.55;
  animation: fomoPulse 1.8s ease-out infinite;
}
@keyframes fomoPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.9); opacity: 0;    }
  100% { transform: scale(1.9); opacity: 0;    }
}
.fomo-toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.fomo-toast-body { flex: 1; min-width: 0; }
.fomo-toast-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.fomo-toast-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
.fomo-toast-time {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.fomo-toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.fomo-toast-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 600px) {
  .fomo-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* ==========================================================================
   38. "TRUSTED IN 47 COUNTRIES" subline
   ========================================================================== */
.proof-countries {
  margin-top: 18px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}
.proof-countries strong { color: var(--brand-light); font-weight: 700; }

/* ==========================================================================
   39B. LEGAL / ABOUT / CONTACT / BLOG PAGE STYLES
   ========================================================================== */
.legal-page {
  padding: 130px 0 80px;
  min-height: calc(100vh - 200px);
}
.legal-page .container { max-width: 860px; }
.legal-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.legal-meta {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin: 0;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-primary);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text-primary);
}
.legal-section p,
.legal-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.legal-section p { margin: 0 0 14px; }
.legal-section ul,
.legal-section ol { padding-left: 1.5em; margin: 0 0 14px; }
.legal-section li { margin-bottom: 8px; }
.legal-section a {
  color: var(--brand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: white; }

/* About page founder grid */
.about-founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.about-founder {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.about-founder h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 4px;
  color: var(--text-primary);
}
.about-role {
  font-size: 0.85rem;
  color: var(--brand-light);
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

/* Contact page grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.contact-card {
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.55;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.contact-list li { margin-bottom: 6px; }
.contact-list a { color: var(--brand-light); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Contact form */
.contact-form { max-width: 600px; }
.contact-form-honeypot { position: absolute; left: -9999px; }
.contact-form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.contact-form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form-row input:focus,
.contact-form-row select:focus,
.contact-form-row textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  background: rgba(255,255,255,0.06);
}
.contact-form-submit { margin-top: 8px; }
.contact-form-note {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 14px;
}

/* Blog landing page */
.blog-page {
  padding: 130px 0 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 64px;
}
.blog-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-top: 56px;
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}
.blog-section-title:first-of-type { margin-top: 48px; }
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55,143,233,0.4);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}
.blog-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* Blog article page */
.article-page {
  padding: 130px 0 60px;
}
.article-page .container { max-width: 760px; }
.article-header { margin-bottom: 48px; }
.article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 16px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.article-meta {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}
.article-toc {
  padding: 20px 24px;
  background: rgba(10,102,194,0.08);
  border: 1px solid rgba(10,102,194,0.2);
  border-radius: var(--radius-lg);
  margin: 32px 0 40px;
}
.article-toc h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin: 0 0 12px;
}
.article-toc ol {
  margin: 0;
  padding-left: 1.5em;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.article-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.article-toc a:hover { color: var(--brand-light); }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 48px 0 18px;
  color: var(--text-primary);
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.article-body ul,
.article-body ol {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  padding-left: 1.5em;
  margin: 0 0 18px;
}
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--brand-light); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { color: var(--text-primary); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.article-body th,
.article-body td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
}
.article-body th {
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(10,102,194,0.08);
}
.article-cta-box {
  margin: 40px 0;
  padding: 28px;
  background: var(--gradient-glass);
  border: 1px solid rgba(10,102,194,0.3);
  border-radius: var(--radius-xl);
  text-align: center;
}
.article-cta-box h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.article-cta-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.article-related {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.article-related h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.article-related a {
  display: block;
  padding: 16px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  transition: transform 0.2s, border-color 0.2s;
}
.article-related a:hover {
  transform: translateY(-2px);
  border-color: rgba(55,143,233,0.4);
}

/* ==========================================================================
   39C. ARTICLE TEMPLATE v2 UPGRADES (hero, TLDR, pull quotes, callouts, share, reading progress)
   ========================================================================== */

/* Reading progress bar (sticky at very top of viewport) */
.article-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 9500;
  pointer-events: none;
}
.article-reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #004182, #0A66C2, #378FE9);
  transform-origin: left;
  transition: width 0.1s linear;
}

/* Article hero illustration */
.article-hero-visual {
  margin: 32px 0 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(0,65,130,0.15), rgba(55,143,233,0.05));
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.article-hero-visual svg { width: 100%; max-width: 480px; height: auto; }

/* Author byline */
.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-tertiary);
}
.article-byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A66C2, #378FE9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.article-byline strong { color: var(--text-secondary); font-weight: 600; }

/* Share row */
.article-share-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.article-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.article-share-btn:hover {
  transform: translateY(-2px);
  background: rgba(10, 102, 194, 0.15);
  color: var(--brand-light);
}

/* TLDR / Key takeaways box */
.article-takeaways {
  margin: 32px 0 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(10,102,194,0.12), rgba(55,143,233,0.04));
  border: 1px solid rgba(10, 102, 194, 0.25);
  border-left: 4px solid var(--brand-light);
  border-radius: var(--radius-lg);
}
.article-takeaways h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin: 0 0 14px;
  font-weight: 700;
}
.article-takeaways ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.article-takeaways li { margin-bottom: 8px; }
.article-takeaways li::marker { color: var(--brand-light); }

/* Pull quote */
.article-pullquote {
  margin: 36px 0;
  padding: 24px 32px;
  border-left: 4px solid #FFD700;
  background: rgba(255, 215, 0, 0.04);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Callout boxes (3 types: tip / warning / insight) */
.article-callout {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  font-size: 0.96rem;
  line-height: 1.55;
}
.article-callout-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: white;
  font-family: var(--font-display);
}
.article-callout-body { flex: 1; color: var(--text-secondary); }
.article-callout-body strong { color: var(--text-primary); }
.article-callout-tip {
  background: rgba(10,102,194,0.08);
  border-left-color: #378FE9;
}
.article-callout-tip .article-callout-icon { background: #378FE9; }
.article-callout-warning {
  background: rgba(245,158,11,0.08);
  border-left-color: #F59E0B;
}
.article-callout-warning .article-callout-icon { background: #F59E0B; }
.article-callout-insight {
  background: rgba(168,85,247,0.08);
  border-left-color: #A855F7;
}
.article-callout-insight .article-callout-icon { background: #A855F7; }

/* Newsletter signup at bottom of article */
.article-newsletter {
  margin: 48px 0;
  padding: 28px 32px;
  background: var(--gradient-glass);
  border: 1px solid rgba(10,102,194,0.25);
  border-radius: var(--radius-xl);
  text-align: center;
}
.article-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.article-newsletter p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 20px;
}
.article-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.article-newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.article-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand-light);
}
.article-newsletter-form button {
  background: var(--gradient-brand);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s;
}
.article-newsletter-form button:hover { transform: translateY(-1px); }
@media (max-width: 600px) {
  .article-newsletter-form { flex-direction: column; }
}

/* ==========================================================================
   39. FOOTER TRUST STRIP
   ========================================================================== */
.footer-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 24px;
  padding: 18px 16px;
  margin-top: var(--space-12);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--text-tertiary);
}
.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-trust-item svg { flex-shrink: 0; }
.footer-trust-divider { color: rgba(255,255,255,0.18); user-select: none; }
@media (max-width: 600px) {
  .footer-trust-divider { display: none; }
}

/* ==========================================================================
   34. 4-COLUMN PRICING GRID (Starter + Pro + Outreach + Business)
   ========================================================================== */
.plans-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .plans-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plans-grid-4 { grid-template-columns: 1fr; }
}
.plans-grid-4 .plan-card { padding: 22px 20px; }
.plans-grid-4 .plan-name { font-size: 1.1rem; }
.plans-grid-4 .plan-price-num { font-size: 2.2rem; }
.plans-grid-4 .plan-features { font-size: 0.85rem; }

/* Multi-platform ratings strip (G2 · Capterra · Chrome) */
.ratings-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 44px;
}
.rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  min-width: 150px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.rating-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10,102,194,0.35);
}
.rating-card-stars {
  color: #FFB800;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.rating-card-score {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.rating-card-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-weight: 600;
}
.rating-card-platform img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* Testimonial source badge (G2 · Chrome · Capterra in card corner) */
.testimonial-card { position: relative; }
.testimonial-source {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-family: var(--font-display);
}
.testimonial-source-g2       { background: #FF492C; }
.testimonial-source-capterra { background: #FF9D28; }
.testimonial-source-chrome {
  background: conic-gradient(
    from 0deg,
    #EA4335 0deg 90deg,
    #FBBC04 90deg 180deg,
    #34A853 180deg 270deg,
    #4285F4 270deg 360deg
  );
  position: relative;
}
.testimonial-source-chrome::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: white;
  border-radius: 50%;
}
.testimonial-source-chrome::before {
  content: '';
  position: absolute;
  inset: 9px;
  background: #4285F4;
  border-radius: 50%;
  z-index: 1;
}

/* ==========================================================================
   28. ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-on-scroll, .stagger-children > * { opacity: 1; transform: none; }
}
