/* ==========================================================================
   SMG Wachstum — Landing Page v2
   Mobile-first, visual rhythm: cream > DARK > cream > DARK > IG-GRADIENT > cream
   ========================================================================== */

/* --- 1. Design Tokens --- */

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg-base: #faf7f4;
  --bg-surface: #fff8f5;
  --bg-elevated: #ffffff;
  --bg-dark: #1a1028;
  --bg-dark-surface: #241838;

  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-glow: rgba(139, 92, 246, 0.15);

  --secondary: #f97066;
  --secondary-light: #fca5a1;

  --gold: #f59e0b;

  /* SMG Brand Gradient (kept as alias for consistency) */
  --smg-gradient: linear-gradient(135deg, var(--ig-1), var(--ig-2), var(--ig-3), var(--ig-4), var(--ig-5));

  --ig-1: #FEDA75;
  --ig-2: #FA7E1E;
  --ig-3: #D62976;
  --ig-4: #962FBF;
  --ig-5: #4F5BD5;
  --ig-gradient: linear-gradient(135deg, var(--ig-1), var(--ig-2), var(--ig-3), var(--ig-4), var(--ig-5));

  --text: #1a1a2e;
  --text-soft: #3c3c58;
  --text-muted: #6a6a8c;
  --text-faint: #9898bb;

  --shadow-sm: 0 1px 3px rgba(139, 92, 246, 0.06), 0 1px 2px rgba(139, 92, 246, 0.04);
  --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.08), 0 2px 6px rgba(139, 92, 246, 0.04);
  --shadow-lg: 0 12px 40px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(139, 92, 246, 0.06);

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px; --s16: 64px;

  --r-sm: 6px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.15s; --t-med: 0.3s; --t-slow: 0.5s;

  --section-sm: clamp(40px, 6vw, 56px);
  --section: clamp(48px, 8vw, 80px);
  --section-lg: clamp(56px, 10vw, 96px);
}


/* --- 2. Base --- */

html:has(body.page-template-page-smg-wachstum) {
  background: #faf7f4 !important;
}

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

body.page-template-page-smg-wachstum {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.page-template-page-smg-wachstum h1,
body.page-template-page-smg-wachstum h2,
body.page-template-page-smg-wachstum h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

body.page-template-page-smg-wachstum h1 { font-size: clamp(38px, 9vw, 72px); }
body.page-template-page-smg-wachstum h2 { font-size: clamp(28px, 5vw, 48px); }
body.page-template-page-smg-wachstum h3 { font-size: clamp(20px, 3vw, 28px); }

body.page-template-page-smg-wachstum img { max-width: 100%; display: block; }
body.page-template-page-smg-wachstum a { color: var(--accent); text-decoration: none; }
body.page-template-page-smg-wachstum a.w-btn-primary { color: #fff; }
body.page-template-page-smg-wachstum a.w-btn-ghost { color: var(--accent); }
body.page-template-page-smg-wachstum a.w-nav-login { color: var(--text-muted); font-size: 14px; }
body.page-template-page-smg-wachstum a.w-nav-login:hover { color: var(--accent); }


/* --- 3. Container --- */

.w-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--s5);
  padding-right: var(--s5);
}

@media (min-width: 768px) {
  .w-container { padding-left: var(--s6); padding-right: var(--s6); }
}


/* --- 4. Button System --- */

.w-btn-primary, .w-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.w-btn-primary {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  border-radius: var(--r-md);
  padding: 16px 32px;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
}

.w-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease);
}

.w-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,92,246,0.35); }
.w-btn-primary:hover::before { left: 100%; }
.w-btn-primary:active { transform: translateY(0) scale(0.98); }

.w-btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--r-md);
  padding: 14px 30px;
}

.w-btn-ghost:hover { background: var(--accent-glow); transform: translateY(-2px); }
.w-btn-ghost:active { transform: translateY(0); }


/* --- 5. Scroll Reveal --- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }


/* --- 6. Keyframe Animations --- */

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

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes spin-border {
  from { --border-angle: 0deg; }
  to { --border-angle: 360deg; }
}

@keyframes morph-blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%; }
  75% { border-radius: 40% 60% 50% 70% / 60% 40% 60% 30%; }
}

@keyframes gradient-sweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(139,92,246,0.4); }
  100% { box-shadow: 0 0 0 16px transparent; }
}

@keyframes chipIn {
  from { opacity: 0; transform: translateX(16px) scale(0.92); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}


/* --- 7. Navigation --- */

.w-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 var(--s5);
  transition: background var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}

.w-nav.scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

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

.w-nav-logo {
  display: flex;
  align-items: center;
}

.w-nav-logo img { height: 24px; width: auto; }

/* Nav links — hidden on mobile, shown on desktop */
.w-nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.w-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--t-fast);
}

.w-nav-links a:hover { color: var(--accent); }

/* Burger button — mobile only */
.w-nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  margin-left: var(--s3);
}

/* CTA in nav — hidden on mobile */
.w-nav-cta {
  display: none;
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
}

/* Mobile nav panel */
.w-nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(250, 247, 244, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: var(--s6) var(--s5);
  gap: var(--s5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
  animation: chipIn 0.25s var(--ease);
}

.w-nav-links.open a {
  font-size: 17px;
  padding: var(--s2) 0;
}

@media (min-width: 900px) {
  .w-nav { height: 68px; padding: 0 var(--s6); }
  .w-nav-links { display: flex; }
  .w-nav-cta { display: inline-flex; }
  .w-nav-burger { display: none; }
}


/* --- 8. Hero --- */

.w-hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 var(--section-sm);
  background:
    radial-gradient(ellipse 80% 70% at 25% 35%, rgba(139,92,246,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 75% 55%, rgba(249,112,102,0.04) 0%, transparent 60%);
}

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

.w-hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s2);
}

.w-hero-h1 {
  background: linear-gradient(135deg, var(--ig-1), var(--ig-2), var(--ig-3), var(--ig-4), var(--ig-5), var(--ig-1));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-sweep 8s ease infinite;
  margin-bottom: var(--s4);
  line-height: 1.08;
}

.w-hero-sub {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: var(--s4);
  /* Full text visible on all devices */
}

@media (min-width: 768px) {
  .w-hero-sub {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: var(--s6);
  }
}

.w-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--s5);
}

/* Show only first 2 bullets on mobile */
.w-hero-bullets li:nth-child(n+3) { display: none; }

@media (min-width: 768px) {
  .w-hero-bullets li:nth-child(n+3) { display: flex; }
  .w-hero-bullets { gap: 10px; margin-bottom: var(--s6); }
}

.w-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 500;
}

.w-hero-bullets li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.w-hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s3);
}

.w-hero-secondary {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--t-fast);
}

.w-hero-secondary:hover { color: var(--accent-light); }

.w-hero-micro {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: var(--s6);
}

.w-hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.w-hero-trust-faces { display: flex; }

.w-trust-face {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  object-fit: cover;
}

.w-trust-face + .w-trust-face { margin-left: -10px; }

/* Hero visual — shown on mobile (smaller), full on desktop */
.w-hero-visual {
  position: relative;
  margin-top: var(--s6);
}

/* Hide float chips on mobile (absolute positioning breaks) */
.w-float { display: none; }

.w-hero-image {
  width: 60%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  position: relative; z-index: 2;
  border-radius: var(--r-xl);
  border: 3px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.4) inset;
}

@media (min-width: 768px) {
  .w-hero-image {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

.w-float {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(139,92,246,0.15);
  border: 1px solid rgba(255,255,255,0.8);
  white-space: nowrap;
}

.w-float--follower {
  top: 10%; right: -4px;
  color: var(--accent);
  opacity: 0;
  animation: chipIn 0.6s var(--ease) 0.8s forwards, float 6s ease-in-out 1.4s infinite;
}

.w-float--reach {
  bottom: 18%; left: -8px;
  color: #16a34a;
  opacity: 0;
  animation: chipIn 0.6s var(--ease) 1.2s forwards, float 7s ease-in-out 1.8s infinite;
}

/* Blobs */
.w-blob {
  position: absolute;
  width: 250px; height: 250px;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  animation: morph-blob 12s ease-in-out infinite;
}

.w-blob--1 { background: var(--accent); top: 40px; right: -60px; }
.w-blob--2 { background: var(--secondary); bottom: -40px; left: -60px; }
.w-blob--3 { background: var(--accent); top: -80px; right: -80px; width: 350px; height: 350px; filter: blur(100px); opacity: 0.18; }
.w-blob--4 { background: var(--secondary); bottom: -80px; left: -80px; width: 350px; height: 350px; filter: blur(100px); opacity: 0.18; }

@media (min-width: 768px) {
  .w-hero { padding: 80px 0 var(--section); }

  .w-hero-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: center;
  }

  .w-hero-sub { font-size: 18px; }

  .w-hero-cta-group {
    flex-direction: row;
    align-items: center;
  }

  .w-hero-visual {
    margin-top: 0;
  }

  /* Show float chips on desktop */
  .w-float { display: block; }

  .w-blob { width: 300px; height: 300px; }
}


/* --- 9. Social Proof Bar (DARK) --- */

.w-proof-bar {
  overflow: hidden;
  padding: var(--s5) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(139,92,246,0.15);
  border-bottom: 1px solid rgba(139,92,246,0.15);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

/* JS drives transform via translate3d — no CSS animation */
.w-proof-track {
  display: flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
}

.w-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.w-proof-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

/* Hover pause handled by JS */


/* --- 9b. Value Proposition --- */

.w-value {
  padding: var(--section) 0;
  background: var(--bg-surface);
}

.w-value-eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.w-value-h2 {
  text-align: center;
  margin-bottom: var(--s3);
}

.w-value-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--s12);
}

.w-value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

.w-value-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-xl);
  padding: var(--s8);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.w-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.w-value-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s4);
}

.w-value-icon svg {
  width: 24px; height: 24px;
  color: var(--accent);
}

.w-value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--s2);
}

.w-value-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.w-value-urgency {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  margin-top: var(--s8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .w-value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s8);
  }
}


/* --- 9c. Audience --- */

.w-audience {
  padding: var(--section) 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 40%, var(--bg-base) 100%);
}

.w-audience-h2 {
  text-align: center;
  margin-bottom: var(--s10);
}

.w-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}

.w-audience-item {
  text-align: center;
  padding: var(--s5);
}

.w-audience-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto var(--s2);
}

@media (min-width: 768px) {
  .w-audience-img {
    width: 88px;
    height: 88px;
  }
}

.w-audience-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: var(--s2);
}

.w-audience-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .w-audience-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s8);
  }

  .w-audience-item h3 { font-size: 16px; }
  .w-audience-item p { font-size: 14px; }
}


/* --- 10. How it Works — Steps --- */

.w-steps {
  padding: var(--section) 0;
}

.w-steps-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.w-steps-h2 { margin-bottom: var(--s8); }

.w-steps-list {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: var(--s6);
}

.w-steps-line {
  position: absolute;
  top: 24px; left: 21px; bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--secondary));
  border-radius: 1px;
}

.w-step {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

.w-step:last-child { margin-bottom: 0; }

.w-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--smg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139,107,80,0.25);
}

.w-step-body { padding-top: 8px; }

.w-step-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

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

.w-steps-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-bottom: var(--s6);
  padding: var(--s4);
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

.w-timeline-item { display: flex; flex-direction: column; gap: 2px; }

.w-timeline-when {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.w-timeline-what {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}

.w-steps-cta {
  display: flex;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .w-steps-cta {
    display: inline-flex;
    width: auto;
  }
}

.w-steps-micro {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--s3);
}

.w-steps-right { /* image column */ }

.w-steps-image {
  max-width: 100%;
  margin-top: 32px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .w-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .w-steps-image { margin-top: 0; }

  .w-steps-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --- 11. Compare (Uns vs. Bots) --- */

.w-compare {
  padding: var(--section-sm) 0 var(--section);
}

.w-compare-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

.w-compare-col {
  padding: var(--s6);
}

.w-compare-bad {
  background: #f5f0ee;
}

.w-compare-good {
  background: var(--bg-elevated);
  border-left: none;
  border-top: 3px solid;
  border-image: var(--smg-gradient) 1;
}

.w-compare-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: var(--s4);
}

.w-compare-bad .w-compare-head { color: var(--text-muted); }
.w-compare-bad .w-compare-head svg { color: #dc2626; width: 20px; height: 20px; }

.w-compare-good .w-compare-head { color: var(--text); }
.w-compare-good .w-compare-head svg { color: var(--accent); width: 20px; height: 20px; }

.w-compare-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.w-compare-col li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 4px;
}

.w-compare-bad li {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.2);
}

.w-compare-good li {
  color: var(--text-soft);
  font-weight: 500;
}

@media (min-width: 600px) {
  .w-compare-card {
    grid-template-columns: 1fr 1fr;
  }

  .w-compare-good {
    border-top: none;
    border-left: 3px solid;
    border-image: linear-gradient(to bottom, var(--ig-1), var(--ig-3), var(--ig-5)) 1;
  }
}


/* --- 12. Featured Testimonial (DARK) --- */

.w-featured-proof {
  padding: var(--section-lg) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.w-featured-quote-mark {
  position: absolute;
  top: 8%;
  left: 8%;
  font-size: clamp(120px, 20vw, 280px);
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(139, 92, 246, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.w-featured-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.w-featured-result {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  background: var(--smg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--s1);
}

.w-featured-time {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-light);
  margin-bottom: var(--s6);
}

.w-featured-quote {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: var(--s8);
  border: none;
  padding: 0;
}

.w-featured-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}

.w-featured-author strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.w-featured-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* IG ring in dark context */
.w-featured-proof .w-ig-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  padding: 3px;
  background: var(--ig-gradient);
  flex-shrink: 0;
}

.w-featured-proof .w-ig-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  object-fit: cover;
}


/* --- 13. Stats (IG Gradient Background) --- */

.w-stats {
  padding: var(--section) 0;
  background: var(--smg-gradient);
  position: relative;
}

.w-stats-h2 {
  text-align: center;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  margin-bottom: var(--s10);
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.w-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}

.w-stat-card {
  text-align: center;
  padding: var(--s6) var(--s5);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.w-stat-number {
  font-family: var(--font-mono);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.w-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .w-stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
}


/* --- 14. Pricing --- */

.w-pricing {
  padding: var(--section-lg) 0;
  background: var(--bg-surface);
  position: relative;
}

/* Subtle dot pattern overlay */
.w-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.w-pricing-bridge {
  text-align: center;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: var(--s3);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.w-pricing-h2 {
  text-align: center;
  margin-bottom: var(--s3);
  position: relative;
  z-index: 1;
}

.w-pricing-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto var(--s3);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.w-pricing-anchor {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--s8);
  position: relative;
  z-index: 1;
}

.w-pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.w-pricing-toggle button {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.08);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: background var(--t-med), color var(--t-med), border-color var(--t-med);
}

.w-pricing-toggle button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.w-pricing-toggle button:hover:not(.active) {
  border-color: var(--accent-light);
  color: var(--accent);
}

.w-pricing-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  margin-left: 4px;
}

.w-pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.w-pricing-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-xl);
  padding: var(--s6);
  position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.w-pricing-card:hover { box-shadow: var(--shadow-md); }

/* Featured card — animated IG gradient border */
.w-pricing-card.w-pricing-card--featured {
  order: -1;
  padding: var(--s8);
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from var(--border-angle, 0deg), #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5, #FEDA75) border-box;
  animation: spin-border 4s linear infinite;
  box-shadow: var(--shadow-md);
}

.w-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--smg-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.w-pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--s1);
}

.w-pricing-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--s5);
  line-height: 1.5;
}

.w-pricing-price { margin-bottom: var(--s1); }

.w-pricing-amount {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.w-pricing-period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.w-pricing-daily {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 4px;
  margin-bottom: var(--s5);
}

.w-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s5);
}

.w-pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.w-pricing-features li:last-child { border-bottom: none; }

.w-pricing-features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.w-pricing-micro {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--s2);
  text-align: center;
}

.w-pricing-trial {
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: var(--s3);
  position: relative;
  z-index: 1;
}

/* Guarantee box */
.w-guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  max-width: 640px;
  margin: var(--s8) auto 0;
  padding: var(--s5);
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
  border: 1px solid rgba(139, 92, 246, 0.12);
  position: relative;
  z-index: 1;
}

.w-guarantee-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--accent);
}

.w-guarantee-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: var(--s1);
}

.w-guarantee-box p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .w-pricing-grid {
    flex-direction: row;
    gap: 28px;
  }

  .w-pricing-card { flex: 1; }

  .w-pricing-card--featured {
    transform: scale(1.03);
  }

  .w-pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

@media (max-width: 480px) {
  .w-pricing-card .w-btn-primary,
  .w-pricing-card .w-btn-ghost {
    width: 100%;
    text-align: center;
    min-height: 50px;
    font-size: 15px;
  }
}


/* --- 15. Testimonials (JS-driven Marquee) --- */

.w-testimonials {
  padding: var(--section) 0;
  background: var(--bg-surface);
}

.w-testimonials-h2 {
  text-align: center;
  margin-bottom: var(--s3);
}

.w-testimonials-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto var(--s10);
  line-height: 1.7;
}

.w-testi-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  margin-bottom: 20px;
}

/* JS drives transform via translate3d — no CSS animation needed */
.w-testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.w-testi-card {
  min-width: 260px;
  max-width: 310px;
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-lg);
  padding: 24px;
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.w-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.w-ig-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: var(--ig-gradient);
  flex-shrink: 0;
  margin-bottom: 12px;
}

.w-ig-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.w-testi-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.w-testi-meta {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.w-testi-meta span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}


/* --- 16. Founder --- */

.w-founder {
  padding: var(--section) 0;
  background: var(--bg-surface);
}

.w-founder-box {
  background: var(--bg-elevated);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Accent line left edge */
.w-founder-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  display: none;
}

.w-founder-photo-wrap {
  display: flex;
  justify-content: center;
}

.w-founder-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background:
    linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
    var(--ig-gradient) border-box;
  box-shadow: 0 0 32px rgba(139,92,246,0.2);
}

.w-founder-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.w-founder-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: var(--s5);
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
}

.w-founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
}

.w-f-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--bg-surface);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 5px 12px;
  border-radius: var(--r-full);
}

/* Video card */
.w-founder-video {
  margin-top: var(--s6);
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: var(--s6) var(--s5) var(--s5);
  text-align: center;
  border: 1px solid rgba(139,92,246,0.15);
}

.w-founder-video-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s5);
}

.w-founder-video-frame { max-width: 860px; margin: 0 auto; }

.w-founder-video-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.w-founder-video-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

@media (min-width: 768px) {
  .w-founder-box {
    grid-template-columns: auto 1fr;
    gap: var(--s10);
    padding: var(--s10);
    text-align: left;
  }

  .w-founder-box::before { display: block; }
  .w-founder-badges { justify-content: flex-start; }
  .w-founder-img { width: 140px; height: 140px; }
  .w-founder-quote { font-size: 19px; }

  .w-founder-video {
    padding: var(--s8) var(--s10) var(--s8);
  }
}


/* --- 17. FAQ --- */

.w-faq {
  padding: var(--section) 0;
}

.w-faq-h2 {
  text-align: center;
  margin-bottom: var(--s8);
}

.w-faq-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.w-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.w-faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

.w-faq-btn:hover { color: var(--accent); }
.w-faq-item.active .w-faq-btn { color: var(--accent); }

.w-faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform 0.3s var(--ease);
}

.w-faq-item.active .w-faq-icon { transform: rotate(45deg); }

.w-faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.w-faq-item.active .w-faq-content {
  max-height: 400px;
  padding: 0 0 20px;
}

@media (max-width: 480px) {
  .w-faq-btn { padding: 22px 0; font-size: 14px; }
}


/* --- 18. Final CTA --- */

.w-final-cta {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: var(--section-lg) 0;
  position: relative;
  overflow: hidden;
}

.w-final-cta .w-container { position: relative; z-index: 2; }

.w-final-cta h2 {
  background: linear-gradient(135deg, var(--accent-light), var(--secondary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--s4);
}

.w-final-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto var(--s8);
  line-height: 1.7;
}

.w-final-cta .w-btn-primary {
  font-size: 17px;
  padding: 18px 36px;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
  animation: pulse-ring 2s infinite;
}

.w-final-cta .w-btn-primary:hover {
  box-shadow: 0 8px 32px rgba(139,92,246,0.5);
  animation: none;
}

.w-final-micro {
  display: block;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--s3);
}

.w-final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s6);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}


/* --- 19. Footer --- */

.w-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 80px; /* Extra bottom padding for mobile sticky CTA */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.w-footer-inner { text-align: center; }

.w-footer-brand { margin-bottom: var(--s5); }

.w-footer-brand img {
  height: 20px; width: auto;
  margin: 0 auto;
  opacity: 0.6;
}

.w-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  margin-bottom: var(--s5);
}

.w-footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color var(--t-fast);
}

.w-footer-links a:hover { color: rgba(255, 255, 255, 0.9); }

.w-footer-copy {
  font-size: 12px;
  margin-top: var(--s2);
  opacity: 0.35;
}

@media (min-width: 768px) {
  .w-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .w-footer-brand { margin-bottom: 0; }
  .w-footer-brand img { margin: 0; }
  .w-footer-links { margin-bottom: 0; }
}


/* --- 20. Mobile Sticky CTA --- */

.w-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 999;
  padding: var(--s3) var(--s5) calc(var(--s3) + env(safe-area-inset-bottom));
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}

.w-sticky-cta.visible { opacity: 1; transform: none; }

.w-sticky-cta .w-btn-primary {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
}

.w-sticky-micro {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: var(--s2);
}

@media (min-width: 900px) {
  .w-sticky-cta { display: none; }
}


/* --- 21. Decorative Image Elements --- */

.w-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Orb visible on mobile (glow behind hero text) */
.w-deco-orb {
  display: block;
}

/* Scatter + blobs: desktop only */
.w-deco-scatter,
.w-deco-blob-1,
.w-deco-blob-2 {
  display: none;
}

/* Sparkles: always visible (on gradient bg) */
.w-deco-sparkles {
  display: block;
}

@media (min-width: 768px) {
  .w-deco-scatter,
  .w-deco-blob-1,
  .w-deco-blob-2 { display: block; }
}

/* Social scatter — Hero section background */
.w-deco-scatter {
  bottom: -5%;
  right: -5%;
  width: 70%;
  max-width: 700px;
  opacity: 0.08;
}

/* Glossy blob 1 — Value Prop section */
.w-deco-blob-1 {
  top: -80px;
  right: -120px;
  width: 320px;
  opacity: 0.18;
  transform: rotate(-15deg);
}

/* Glossy blob 2 — Steps section (mirrored) */
.w-deco-blob-2 {
  bottom: -60px;
  left: -100px;
  width: 280px;
  opacity: 0.15;
  transform: rotate(30deg) scaleX(-1);
}

/* Hero orb — dark bg, screen blend makes black invisible */
.w-deco-orb {
  top: 0;
  right: -15%;
  width: 80%;
  max-width: 350px;
  opacity: 0.45;
  mix-blend-mode: screen;
}

@media (min-width: 768px) {
  .w-deco-orb {
    top: 10%;
    right: 5%;
    width: 50%;
    max-width: 500px;
    opacity: 0.5;
  }
}

/* Sparkles — Stats section overlay (added when image ready) */
.w-deco-sparkles {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: screen;
}

/* Ensure sections with decorations have relative positioning */
.w-hero,
.w-value,
.w-steps,
.w-stats {
  position: relative;
  overflow: hidden;
}


/* --- 22. Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
  .w-float, .w-float--follower, .w-float--reach { animation: none; opacity: 1; }
  .w-proof-track { animation: none; }
  .w-blob { animation: none; }
  .w-hero-h1 { animation: none; background-size: 100% 100%; }
  .w-final-cta .w-btn-primary { animation: none; }
  .w-pricing-card--featured { animation: none; }
  [data-reveal] { transition-duration: 0.3s; }
}


/* --- 22. Print --- */

@media print {
  .w-nav, .w-sticky-cta, .w-blob, .w-float, .w-proof-bar { display: none; }

  body.page-template-page-smg-wachstum { background: #fff; color: #000; }

  .w-hero-h1 { -webkit-text-fill-color: var(--text); background: none; }

  .w-pricing-card--featured { animation: none; border: 2px solid #333; }

  .w-featured-proof, .w-final-cta, .w-footer { background: #fff; color: #000; }

  .w-featured-proof .w-featured-quote { color: #333; }
  .w-final-cta h2 { -webkit-text-fill-color: var(--text); background: none; }

  .w-stats { background: #eee; }
  .w-stats-h2 { color: #000 !important; -webkit-text-fill-color: #000; text-shadow: none; }
  .w-stat-number { color: #333; text-shadow: none; }
  .w-stat-label { color: #555; }
  .w-stat-card { background: rgba(255,255,255,0.5); backdrop-filter: none; }
}
