/* ============================================================
   GREENLABZ â€“ PREMIUM CSS DESIGN SYSTEM
   Desktop: Dark | Mobile: Light
   ============================================================ */

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

/* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --green: #16a34a;
  --green-light: #22c55e;
  --green-glow: rgba(22, 163, 74, .25);
  --green-subtle: rgba(22, 163, 74, .10);

  --dark-bg: #060d08;
  --dark-surface: #0e1a10;
  --dark-card: #111d13;
  --dark-border: rgba(255, 255, 255, .07);
  --dark-muted: rgba(255, 255, 255, .45);
  --dark-text: #e8f5ea;

  --light-bg: #f4f7f4;
  --light-surface: #ffffff;
  --light-card: #ffffff;
  --light-border: #e2ebe2;
  --light-muted: #6b7280;
  --light-text: #0e1a10;

  --accent-gold: #f59e0b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .25);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, .4);
  --shadow-lg: 0 20px 80px rgba(0, 0, 0, .55);
  --shadow-green: 0 0 40px rgba(22, 163, 74, .3);

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: .18s cubic-bezier(.4, 0, .2, 1);
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--dark-bg);
  color: var(--dark-text);
  line-height: 1.65;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ticker-bar {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* â”€â”€ SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 99px;
}

/* â”€â”€ SELECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::selection {
  background: var(--green);
  color: #fff;
}

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

.text-green {
  color: var(--green-light);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* â”€â”€ PILL TAG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-subtle);
  color: var(--green-light);
  border: 1px solid rgba(34, 197, 94, .2);
  backdrop-filter: blur(8px);
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--dark-text);
  border: 1.5px solid var(--dark-border);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

/* â”€â”€ SECTION BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section {
  position: relative;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--dark-text);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--dark-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
}

/* â”€â”€ CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, var(--green-subtle) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(34, 197, 94, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card:hover::before {
  opacity: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(6, 13, 8, .85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .4);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark-muted);
  transition: var(--transition-fast);
  letter-spacing: .01em;
}

.nav-links a:hover {
  color: var(--dark-text);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-label-mobile { display: none; }
.cta-label-desktop { display: inline; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 13, 8, .97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  transition: var(--transition-fast);
}

.nav-mobile-menu a:hover {
  color: var(--green-light);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(22, 163, 74, .12) 0%, transparent 70%);
  pointer-events: none;
  max-width: 100vw;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  max-width: 600px;
}

.hero-pill {
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--green-light) 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--dark-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark-muted);
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

/* â”€â”€ Hero Visual (Conversion System) â”€â”€ */
/* ──────────────────────────────────────────
   Hero Visual: Search-to-Lead Flow (Refined)
   ────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
}

.flow-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  padding: 40px 0;
}

/* Connector Path SVG (Desktop) */
.flow-path-svg {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 150px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.path-bg {
  stroke: rgba(22, 163, 74, 0.12);
  stroke-width: 2.5;
  stroke-dasharray: 10 10;
}

.path-glow {
  stroke: var(--green-light);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 80 1000;
  stroke-dashoffset: 1080;
  filter: drop-shadow(0 0 12px var(--green-light));
  animation: light-run 4.5s infinite linear;
}

@keyframes light-run {
  0% { stroke-dashoffset: 1080; }
  100% { stroke-dashoffset: 0; }
}

/* Flow Steps */
.flow-steps {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Ensure cards are aligned at the top */
  width: 100%;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 23%;
  opacity: 0;
  transform: translateY(30px);
  animation: none;
  position: relative;
}

.hero-visual.visible .flow-step {
  animation: step-appear .9s cubic-bezier(.4, 0, .2, 1) forwards;
}

.step-search { animation-delay: 0.2s; }
.step-ranking { animation-delay: 1.2s; }
.step-website { animation-delay: 2.2s; }
.step-lead { animation-delay: 3.2s; }

.step-card {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.step-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(22, 163, 74, 0.15);
}

.step-card:hover .card-glow { opacity: 1; }

.step-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--dark-muted);
  transition: color 0.3s;
}

.flow-step:hover .step-label { color: var(--green-light); }

/* Card Contents */
.google-logo { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }
.search-bar-wrapper { width: 100%; position: relative; }
.search-bar {
  width: 100%;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.search-icon { opacity: 0.5; font-size: 0.6rem; }

.rank-badge-wrapper { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.rank-badge {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-light);
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}
.verified-check {
  position: absolute;
  top: -5px;
  right: -15px;
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.rank-graph { display: flex; gap: 4px; align-items: flex-end; width: 100%; justify-content: center; }
.graph-bar { width: 12px; background: rgba(255, 255, 255, 0.1); border-radius: 2px 2px 0 0; transition: 1s cubic-bezier(.4, 0, .2, 1); }
.flow-step.step-ranking:hover .graph-bar { background: var(--green-light); opacity: 0.6; }

.site-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-chrome {
  display: flex;
  gap: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-chrome span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.site-frame {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 82px;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(34, 197, 94, 0.14), transparent 34%);
  opacity: 0.8;
  pointer-events: none;
}

.site-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 16%, rgba(255, 255, 255, 0.05) 32%, transparent 48%);
  transform: translateX(-130%);
  opacity: 0;
}

.hero-visual.visible .step-website .site-frame::after {
  animation: site-sheen 3.8s ease-in-out infinite 1.1s;
  opacity: 1;
}

.site-badge,
.site-title,
.site-copy span,
.site-cta-dot {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-badge {
  width: 34%;
  height: 6px;
}

.site-title {
  width: 72%;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.site-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-copy span:nth-child(1) { width: 88%; height: 6px; }
.site-copy span:nth-child(2) { width: 76%; height: 6px; }
.site-copy span:nth-child(3) { width: 62%; height: 6px; }

.site-cta-row {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.site-cta-pill {
  width: 68%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 128, 61, 0.8), rgba(34, 197, 94, 0.98));
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.28);
  transform-origin: left center;
}

.site-cta-dot {
  width: 10px;
  height: 10px;
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.35);
}

.hero-visual.visible .step-website .site-cta-pill {
  animation: cta-breathe 2.8s ease-in-out infinite 0.7s;
}

@keyframes cta-breathe {
  0%, 100% { transform: scaleX(1); box-shadow: 0 0 18px rgba(22, 163, 74, 0.24); }
  50% { transform: scaleX(1.04); box-shadow: 0 0 24px rgba(22, 163, 74, 0.38); }
}

@keyframes site-sheen {
  0% { transform: translateX(-130%); }
  45%, 100% { transform: translateX(140%); }
}

.success-icon-premium {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green-light), #15803d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
  z-index: 2;
}

.success-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--green-light);
  border-radius: 50%;
  opacity: 0;
  animation: ring-pulse 2s infinite;
}

.typing-text { 
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--green-light);
  width: 0;
  animation: none;
  animation-delay: 0.5s;
}

.hero-visual.visible .typing-text {
  animation: 
    typing 2.5s steps(25, end) forwards,
    blink .8s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--green-light); }
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

.lead-text { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }

/* Hero video treatments */
.hero-video-mobile {
  display: none;
  position: relative;
  margin-top: 24px;
}

.hero-video-mobile-glow,
.hero-video-desktop-glow {
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.08) 26%, transparent 72%);
  filter: blur(30px);
}

.hero-video-screen {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 2;
}

.hero-video-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.hero-video-element {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050806;
}


.hero-visual-video-only .flow-container {
  display: none;
}
.hero-video-desktop {
  position: absolute;
  top: 42%;
  left: -14%;
  width: clamp(560px, 42vw, 760px);
  aspect-ratio: 9 / 16;
  display: block;
  pointer-events: none;
  z-index: 1;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-video-desktop-glow {
  width: 136%;
  height: 136%;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  filter: blur(76px);
}

.hero-video-desktop-shell {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  opacity: 1;
}

.hero-video-screen-desktop {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.38;
  box-shadow: none;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 64% 82% at 50% 50%, #000 22%, rgba(0, 0, 0, 0.98) 42%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.14) 83%, transparent 92%);
  mask-image: radial-gradient(ellipse 64% 82% at 50% 50%, #000 22%, rgba(0, 0, 0, 0.98) 42%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.14) 83%, transparent 92%);
}

.hero-video-screen-desktop::before {
  display: none;
}

.hero-video-screen-desktop::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(4, 9, 6, 0.03) 40%, rgba(4, 9, 6, 0.16) 58%, rgba(4, 9, 6, 0.44) 76%, rgba(4, 9, 6, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 9, 6, 0.42) 0%, rgba(4, 9, 6, 0.08) 18%, rgba(4, 9, 6, 0.04) 48%, rgba(4, 9, 6, 0.08) 72%, rgba(4, 9, 6, 0.5) 100%),
    linear-gradient(90deg, rgba(4, 9, 6, 0.48) 0%, rgba(4, 9, 6, 0.06) 18%, rgba(4, 9, 6, 0.04) 82%, rgba(4, 9, 6, 0.48) 100%);
}

.hero-video-screen-desktop .hero-video-element {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.98) contrast(1.08);
}

.hero-video-mobile-glow {
  width: 260px;
  height: 260px;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  opacity: 0.5;
}

.hero-video-mobile-frame {
  position: relative;
  width: min(100%, 356px);
  margin: 0 auto;
  padding: 7px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(243, 247, 244, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(6, 13, 8, 0.06), 0 6px 18px rgba(22, 163, 74, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-video-mobile-frame::before {
  content: "";
  position: absolute;
  inset: -10px 22px auto;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  filter: blur(18px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-video-mobile-speaker {
  display: block;
  width: 24%;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto 6px;
  background: linear-gradient(90deg, rgba(12, 18, 12, 0.18), rgba(12, 18, 12, 0.06));
  opacity: 0.55;
}

.hero-video-screen-mobile {
  border-radius: 24px;
  background: #080d09;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-video-screen-mobile::before {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-video-screen-mobile::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 82%, rgba(240, 247, 241, 0.24) 100%),
    linear-gradient(90deg, rgba(8, 13, 9, 0.08) 0%, rgba(8, 13, 9, 0) 14%, rgba(8, 13, 9, 0) 86%, rgba(8, 13, 9, 0.1) 100%),
    radial-gradient(circle at 100% 100%, rgba(240, 247, 241, 0.22), transparent 24%);
}

/* ──────────────────────────────────────────
   Mobile Premium Flow (Vertical)
   ────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-video-desktop { display: none; }
  .hero-visual { min-height: auto; padding: 60px 0; }
  .flow-steps { flex-direction: column; gap: 40px; align-items: center; }
  .flow-step { width: 100%; max-width: 320px; }
  .flow-path-svg { display: none; }
  
  .mobile-connector {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-light), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    border-color: rgba(22, 163, 74, 0.15);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.06);
  }
  
  .step-label { color: var(--light-muted); font-weight: 700; }
  .search-bar { background: #f4f7f4; color: var(--light-text); border-color: #e2ebe2; }
  .site-frame { background: rgba(255, 255, 255, 0.72); border-color: rgba(22, 163, 74, 0.12); }
  .site-badge, .site-copy span, .site-cta-dot { background: #dce7dd; }
  .site-title { background: rgba(15, 23, 15, 0.18); }
  .site-frame::before { background: radial-gradient(circle at 78% 18%, rgba(34, 197, 94, 0.10), transparent 36%); }
  .lead-text { color: var(--light-text); }
  .graph-bar { background: #e2ebe2; }
}

.dash-stat-lbl {
  font-size: .68rem;
  color: var(--dark-muted);
  font-weight: 500;
  margin-top: 2px;
}

.dash-stat-delta {
  font-size: .72rem;
  color: var(--green-light);
  font-weight: 700;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(14, 26, 16, .9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.float-card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 30px;
  left: -35px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.float-card-label {
  font-size: .68rem;
  color: var(--dark-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.float-card-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-light);
  margin-top: 2px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TICKER BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ticker-bar {
  padding: 16px 0;
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}

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

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark-muted);
}

.ticker-item strong {
  color: var(--green-light);
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dark-border);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROBLEM SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.problem {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #080f09 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.problem-item:hover,
.problem-item.active {
  border-color: rgba(239, 68, 68, .4);
  background: rgba(239, 68, 68, .06);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(239, 68, 68, .08);
}

.problem-item.active .problem-icon {
  background: var(--red);
  color: #fff;
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.problem-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.problem-item p {
  font-size: .85rem;
  color: var(--dark-muted);
  line-height: 1.6;
}

.problem-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loss-card {
  background: var(--dark-card);
  border: 1px solid rgba(239, 68, 68, .2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 0 32px rgba(239, 68, 68, .06);
}

.loss-card-title {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(239, 68, 68, .8);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.loss-bar-row {
  margin-bottom: 14px;
}

.loss-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--dark-muted);
  margin-bottom: 6px;
}

.loss-bar-track {
  height: 6px;
  background: var(--dark-border);
  border-radius: 99px;
  overflow: hidden;
}

.loss-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #ef4444, #f87171);
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

/* Reality Card Styles */
.reality-header {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-muted);
  margin-bottom: 16px;
}

.reality-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reality-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reality-lbl {
  font-size: .85rem;
  color: var(--dark-muted);
}

.reality-val {
  font-weight: 800;
  font-size: 1rem;
}

.reality-val.val-bad {
  color: #ef4444;
}

.reality-val.val-good {
  color: var(--green-light);
}

.reality-sep {
  height: 1px;
  background: var(--dark-border);
  margin: 4px 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOLUTION / WOW SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.solution {
  padding: 140px 0;
  background: linear-gradient(180deg, #080f09 0%, var(--dark-surface) 100%);
  position: relative;
  overflow: hidden;
}

.solution-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(22, 163, 74, .08) 0%, transparent 70%);
  pointer-events: none;
}

.solution-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.solution-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 920px;
  margin: 48px auto 64px;
}

.solution-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244, 247, 246, .88);
  transition: border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(12px);
}

.solution-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, .95) 0%, rgba(34, 197, 94, .45) 65%, transparent 70%);
  box-shadow: 0 0 10px rgba(74, 222, 128, .28);
  flex: 0 0 auto;
}

.solution-pill:hover {
  border-color: rgba(74, 222, 128, .28);
  color: var(--dark-text);
  background: linear-gradient(180deg, rgba(34, 197, 94, .08), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 24px rgba(0, 0, 0, .16);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.solution-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, .08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
    var(--dark-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  overflow: hidden;
  min-width: 0;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .45), rgba(34, 197, 94, 0));
}

.solution-card-num,
.solution-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, .16);
  background: rgba(22, 163, 74, .08);
  color: var(--green-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.solution-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-text);
  margin: 0;
  max-width: 24ch;
}

.solution-card p {
  font-size: .96rem;
  color: rgba(232, 245, 234, .7);
  line-height: 1.72;
  margin: 0;
  max-width: 42ch;
}

.solution-card-cta {
  border-color: rgba(34, 197, 94, .16);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, .12), transparent 38%),
    linear-gradient(180deg, rgba(22, 163, 74, .08), rgba(255, 255, 255, .015) 58%),
    var(--dark-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.solution-card-cta::after {
  content: '';
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, .13), transparent 68%);
  pointer-events: none;
}

.solution-card-cta h3 {
  max-width: 18ch;
}

.solution-card-cta p {
  max-width: 40ch;
}

.solution-card-button {
  margin-top: auto;
  align-self: flex-start;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  padding: 120px 0;
  background: var(--dark-surface);
}

.services-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  cursor: default;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  border: 1px solid rgba(34, 197, 94, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--green);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.service-card p {
  font-size: .88rem;
  color: var(--dark-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--green-subtle);
  color: var(--green-light);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY GREENLABZ
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}

.why-point:hover {
  background: rgba(255, 255, 255, .02);
  border-color: var(--dark-border);
}

.why-check {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.why-point p {
  font-size: .85rem;
  color: var(--dark-muted);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.metrics-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-green);
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: .85rem;
  color: var(--dark-muted);
  font-weight: 500;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-text);
}

.metric-delta {
  font-size: .78rem;
  color: var(--green-light);
  font-weight: 700;
  background: var(--green-subtle);
  padding: 3px 10px;
  border-radius: 99px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process {
  padding: 120px 0;
  background: var(--dark-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border) 20%, var(--green-subtle) 50%, var(--dark-border) 80%, transparent);
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 8px;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-light);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

.step-icon {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: .78rem;
  color: var(--dark-muted);
  line-height: 1.55;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-path-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-subtle);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: rgba(34, 197, 94, .25);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: var(--accent-gold);
  font-size: .9rem;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--dark-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-text);
}

.author-role {
  font-size: .75rem;
  color: var(--dark-muted);
}

/* ──────────────────────────────────────────
   STATS / PROOF CARDS
   ────────────────────────────────────────── */
.stats-stack {
  max-width: 1200px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 0;
}

.stats-card {
  position: relative;
  top: auto;
  z-index: 1;
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.018) 100%),
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08) 0%, transparent 42%),
    rgba(8, 14, 10, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0) 0%, rgba(34, 197, 94, 0.45) 50%, rgba(34, 197, 94, 0) 100%);
}

.stats-card::after {
  content: '';
  position: absolute;
  inset: auto 28px 22px 28px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.stats-card.active {
  animation: none;
  border-color: rgba(34, 197, 94, 0.18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.09) 0%, transparent 45%),
    rgba(8, 14, 10, 0.92);
}

.stats-card:nth-child(1),
.stats-card:nth-child(2),
.stats-card:nth-child(3),
.stats-card:nth-child(4) {
  top: auto;
}

.stats-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  height: 100%;
}

.stats-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.16);
  background: rgba(34, 197, 94, 0.08);
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 0 16px rgba(34, 197, 94, 0.04);
}

.stats-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-card-number {
  font-size: clamp(2.45rem, 3.2vw, 3.25rem);
  font-weight: 950;
  color: var(--dark-text);
  line-height: 0.95;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  text-shadow: 0 0 26px rgba(34, 197, 94, 0.1);
}

.stats-card-label {
  max-width: 16ch;
  font-size: 0.98rem;
  color: rgba(236, 241, 238, 0.78);
  font-weight: 600;
  line-height: 1.5;
}

.stats-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32), 0 0 26px rgba(34, 197, 94, 0.08);
}

@media (max-width: 1100px) {
  .stats-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .stats-stack {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 44px;
  }

  .stats-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .stats-card-inner {
    gap: 16px;
  }

  .stats-card-number {
    font-size: 2.35rem;
    margin-bottom: 10px;
  }

  .stats-card-label {
    max-width: none;
    font-size: 0.92rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RATGEBER / BLOG
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog {
  padding: 120px 0;
  background: var(--dark-surface);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(34, 197, 94, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-surface) 0%, #0e2010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--dark-border);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  background: var(--green-subtle);
  color: var(--green-light);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: .82rem;
  color: var(--dark-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.blog-date {
  font-size: .72rem;
  color: var(--dark-muted);
}

.blog-read-more {
  margin-left: auto;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-read-more {
  gap: 8px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WEBSITE AUDIT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.audit {
  background: #061109;
  padding: 100px 0;
  border-top: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.audit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(22, 163, 74, .08) 0%, transparent 60%);
  pointer-events: none;
}

.audit-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.audit-input-group {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, .03);
  padding: 8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
  max-width: 800px;
  margin: 40px auto 24px;
}

.audit-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  position: relative;
}

.audit-input-wrapper:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .1);
}

.audit-input {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  width: 100%;
  height: 52px;
  font-size: .95rem;
  outline: none;
}

/* Fix for white background on paste/autofill */
.audit-input:-webkit-autofill,
.audit-input:-webkit-autofill:hover,
.audit-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px #061109 inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.audit-input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.audit-submit {
  flex-shrink: 0;
  border-radius: 100px;
  padding: 0 32px;
  height: 52px;
}

.audit-note {
  font-size: .85rem;
  color: var(--dark-muted);
}

/* ── AUDIT MODAL SPECIALIZED STYLES ── */
.modal-audit {
  max-width: 500px !important;
  padding: 40px !important;
  text-align: center;
  background: #0a110c !important; /* Darker green-black */
  border: 1px solid rgba(34, 197, 94, .2) !important;
  box-shadow: 0 0 60px rgba(0, 0, 0, .6), 0 0 30px rgba(22, 163, 74, .1) !important;
  border-radius: 24px !important;
}

.audit-scanning-icon, .audit-success-icon, .audit-error-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: inline-block;
}

.audit-scanning-icon {
  animation: scan-pulse 2s infinite ease-in-out;
}

@keyframes scan-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .8; }
}

.audit-progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  margin: 32px 0 24px;
  overflow: hidden;
  position: relative;
}

.audit-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(22, 163, 74, .4);
}

.audit-status-messages {
  height: 24px;
  position: relative;
  overflow: hidden;
}

.status-msg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 0.85rem;
  color: var(--dark-muted);
  transition: all 0.5s ease;
  opacity: 0;
}

.status-msg.active {
  top: 0;
  opacity: 1;
}

.status-msg.prev {
  top: -100%;
  opacity: 0;
}

.audit-next-steps {
  margin-top: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audit-step {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.audit-step .step-icon {
  font-size: 1.5rem;
}

.audit-step strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 4px;
  color: #fff;
}

.audit-step p {
  font-size: .85rem;
  color: var(--dark-muted);
  margin: 0;
  line-height: 1.4;
}

.btn-block {
  width: 100% !important;
}

@media (max-width: 767px) {
  .audit-input-group {
    flex-direction: column;
    border-radius: 24px;
    padding: 12px;
    gap: 0;
  }
  
  .audit-input-wrapper:not(:last-child)::after {
    display: none;
  }
  
  .audit-input-wrapper {
    width: 100%;
    padding: 0 12px;
    margin-bottom: 4px;
  }
  
  .audit-submit {
    width: 100%;
    margin-top: 12px;
  }
}

.audit-analyze-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--dark-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.audit-orb {
  --orb-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--orb-size);
  height: var(--orb-size);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(134, 239, 172, 0.96) 32%, rgba(34, 197, 94, 0.96) 62%, rgba(21, 128, 61, 0.92) 100%);
  box-shadow: 0 0 0 1px rgba(134, 239, 172, 0.25), 0 0 18px rgba(34, 197, 94, 0.34), 0 0 42px rgba(22, 163, 74, 0.22);
  transform: translate3d(var(--orb-x, 0px), var(--orb-y, 0px), 0) scale(0.8);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.audit-grid.is-animated .audit-orb {
  opacity: 1;
  transform: translate3d(var(--orb-x, 0px), var(--orb-y, 0px), 0) scale(1);
}

.audit-grid.animation-complete .audit-orb {
  opacity: 0;
  transform: translate3d(var(--orb-x, 0px), var(--orb-y, 0px), 0) scale(0.7);
}

.audit-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.audit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.12), transparent 58%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.audit-card:hover {
  border-color: rgba(22, 163, 74, .3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .02);
}

.audit-card.is-target,
.audit-card.is-settled {
  border-color: rgba(34, 197, 94, 0.36);
  background: rgba(255, 255, 255, 0.028);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 22px rgba(34, 197, 94, 0.10);
}

.audit-card.is-target::after,
.audit-card.is-settled::after {
  opacity: 1;
}

.audit-card h4 {
  font-size: .95rem;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.audit-icon {
  font-size: 1rem;
  opacity: .8;
}

.audit-card p {
  font-size: .75rem;
  color: var(--dark-muted);
  line-height: 1.4;
}

.score-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--green-light) calc(var(--score) * 1%), rgba(255, 255, 255, .05) 0);
  position: relative;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, filter 0.5s ease;
}

.score-ring::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--dark-card);
  border-radius: 50%;
}

.score-value {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: color 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.audit-card.is-target .score-ring,
.audit-card.is-settled .score-ring {
  transform: scale(1.08);
  box-shadow: 0 0 0 1px rgba(134, 239, 172, 0.12), 0 0 0 8px rgba(34, 197, 94, 0.06), 0 0 24px rgba(34, 197, 94, 0.18);
  filter: saturate(1.08);
}

.audit-card.is-target .score-value,
.audit-card.is-settled .score-value {
  color: #ecfdf5;
  text-shadow: 0 0 18px rgba(134, 239, 172, 0.2);
}

.audit-card.is-target .score-value {
  transform: scale(1.08);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FINAL CTA
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.final-cta {
  padding: 160px 0;
  background: linear-gradient(135deg, #060d08 0%, #0e1a10 50%, #060d08 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.final-cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(22, 163, 74, .15) 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden;
}

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

.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--dark-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-trust {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.final-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--dark-muted);
  font-weight: 600;
}

.final-trust-item .ft-icon {
  color: var(--green-light);
  font-size: 1rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODAL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 0;
  width: 90vw;
  max-width: 500px;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(22, 163, 74, .15);
  max-height: 90vh;
  overflow: hidden;
  box-sizing: border-box;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-scroll {
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 22px 38px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 197, 94, 0.75) transparent;
  scrollbar-gutter: stable;
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--dark-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, .14);
  color: var(--dark-text);
}

.modal-logo {
  margin-bottom: 24px;
}

.modal-logo img {
  height: 86px;
  width: auto;
  filter: drop-shadow(0 14px 30px rgba(22, 163, 74, 0.18));
}

.modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.modal-sub {
  font-size: .9rem;
  color: var(--dark-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: var(--dark-text);
  font-family: inherit;
  font-size: .95rem;
  transition: var(--transition-fast);
  outline: none;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-light);
  background: rgba(22, 163, 74, .05);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .12);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-option {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: var(--dark-text);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease, color .24s ease, filter .24s ease;
  user-select: none;
}

.service-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.20), rgba(22, 163, 74, 0.08) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .24s ease;
  z-index: -1;
}

.service-option::after {
  content: '';
  position: absolute;
  inset: -120% auto auto -30%;
  width: 52%;
  height: 300%;
  transform: rotate(24deg) translateX(-180%);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: 0;
  transition: transform .55s ease, opacity .3s ease;
  pointer-events: none;
}

.service-option:hover {
  transform: translateY(-3px) scale(1.01);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(34, 197, 94, .48);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(34, 197, 94, 0.16), inset 0 1px 0 rgba(255,255,255,.05);
  filter: saturate(1.06);
}

.service-option:hover::before {
  opacity: 1;
}

.service-option:hover::after {
  opacity: .9;
  transform: rotate(24deg) translateX(340%);
}

.service-option.selected {
  background: rgba(22, 163, 74, .1);
  border-color: var(--green-light);
  color: var(--green-light);
  box-shadow: 0 0 0 1px var(--green-light), 0 14px 30px rgba(22, 163, 74, 0.14);
}

.service-option.selected::before {
  opacity: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
}

.modal-note {
  text-align: center;
  font-size: .75rem;
  color: var(--dark-muted);
  margin-top: 14px;
}

.modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 24px;
}

.modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(34, 197, 94, 0.72);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.modal-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 197, 94, 0.9);
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* ──────────────────────────────────────────
   PRICING & REFINEMENT
   ────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.pricing-category-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.pricing-category-box:hover {
  border-color: rgba(34, 197, 94, 0.1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.pcb-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pcb-icon {
  font-size: 1.6rem;
  width: 56px;
  height: 56px;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

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

.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: rgba(3, 8, 6, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
}

.pricing-card:hover {
  border-color: rgba(34, 197, 94, .3);
  transform: translateY(-4px);
  background: rgba(3, 8, 6, 0.7);
}

.pricing-card.featured {
  border-color: var(--green-light);
  background: linear-gradient(135deg, rgba(3, 8, 6, 0.6) 0%, rgba(22, 163, 74, .08) 100%);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Meist gewählt';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: #fff;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
  z-index: 2;
  animation: badge-pulse 2.5s infinite ease-in-out;
}

@keyframes badge-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 8px 24px rgba(22, 163, 74, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4); }
}

.pc-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.pc-desc {
  font-size: .95rem;
  color: var(--dark-muted);
  line-height: 1.6;
}

.pc-price {
  margin: 32px 0;
}

.price-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-light);
  display: block;
}

.price-sub {
  font-size: .85rem;
  color: var(--dark-muted);
  margin-top: 4px;
}

.pc-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pc-feature {
  display: flex;
  gap: 12px;
  font-size: .95rem;
  color: var(--dark-text);
}

.pf-check {
  color: var(--green-light);
  font-weight: 700;
}

.pricing-disclaimer {
  margin-top: 64px;
  text-align: center;
  color: var(--dark-muted);
  font-size: 1rem;
  font-style: italic;
}

@media (max-width: 1200px) {
  .pricing-row {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pricing {
    background: var(--light-bg);
  }

  .pricing-category-box {
    padding: 32px 20px;
    background: #fff;
    border-color: var(--light-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
  }

  .pcb-header {
    border-bottom-color: var(--light-border);
  }

  .pcb-icon {
    background: #f0fdf4;
    border-color: rgba(34, 197, 94, 0.1);
    box-shadow: none;
  }

  .pricing-grid,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    background: #fff;
    border-color: var(--light-border);
    padding: 32px 24px;
  }

  .pc-title,
  .pc-feature {
    color: var(--light-text);
  }

  .pc-desc,
  .price-sub,
  .pricing-disclaimer {
    color: var(--light-muted);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
  background: #030806;
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: .85rem;
  color: var(--dark-muted);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  font-size: .78rem;
  color: var(--dark-muted);
  flex-wrap: wrap;
  gap: 16px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-muted);
  font-size: .9rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--green-subtle);
  color: var(--green-light);
  border-color: rgba(34, 197, 94, .3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE LIGHT THEME
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  html {
    overflow-x: hidden !important;
    width: 100% !important;
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden !important;
    width: 100% !important;
    background: var(--light-bg);
    color: var(--light-text);
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.5; /* Tighten for mobile */
  }

  /* Disable animations on mobile to prevent scaling/rendering artifacts */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  ::-webkit-scrollbar-track {
    background: var(--light-bg);
  }

  .section-title {
    color: var(--light-text);
  }

  .section-sub,
  .text-muted {
    color: var(--light-muted);
  }

  /* Nav mobile */
  .nav-inner {
    padding: 0 16px;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .nav-logo img {
    height: 52px !important; /* Maximized for 72px header height */
  }

  .nav.scrolled {
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--light-border);
  }

  .nav-links {
    display: none;
  }


  .nav-cta {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-cta .btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    min-height: 42px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.16);
  }

  .cta-label-desktop {
    display: none;
  }

  .cta-label-mobile {
    display: inline;
  }

  .nav-mobile-toggle {
    display: flex;
    margin-right: -10px;
    z-index: 1001;
  }

  .nav-mobile-toggle span {
    background: var(--light-text);
  }

  /* Hero mobile */
  .hero {
    background: linear-gradient(180deg, #f0f7f1 0%, var(--light-bg) 100%);
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-bg-grid {
    opacity: .4;
  }

  .hero-glow {
    background: radial-gradient(ellipse, rgba(22, 163, 74, .08) 0%, transparent 70%);
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box !important;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem) !important;
    line-height: 1.15 !important;
    color: var(--light-text);
  }

  .hero-pill {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
    margin: 0 auto 12px !important;
    width: fit-content !important;
  }

  .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: var(--light-muted);
  }

  .hero-trust .trust-item {
    color: var(--light-muted);
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-trust {
    display: none;
  }

  .btn-outline {
    border-color: var(--light-border);
    color: var(--light-text);
  }

  .btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
  }

  .system-panel {
    background: #ffffff;
    /* Clean white UI on mobile */
    border-color: var(--light-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(22, 163, 74, 0.05);
  }

  .system-panel::after {
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.2), transparent);
  }

  .panel-header {
    background: #f8faf9;
    border-bottom: 1px solid var(--light-border);
  }

  .window-controls span {
    background: #e2ebe2;
  }

  .address-bar {
    background: #ffffff;
    border: 1px solid var(--light-border);
    color: var(--light-muted);
  }

  .panel-body {
    background: none;
    height: auto;
    flex-direction: column;
  }

  .mockup-sidebar {
    width: 100%;
    height: 40px;
    border-right: none;
    border-bottom: 1px solid var(--light-border);
    flex-direction: row;
    padding: 0 16px;
    justify-content: flex-start;
  }

  .sb-item {
    width: 16px;
    height: 16px;
    background: var(--light-border);
  }

  .sb-item.active {
    box-shadow: none;
  }

  .mockup-content {
    padding: 16px;
    gap: 12px;
  }

  .mockup-top-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mockup-metric-card {
    background: #ffffff;
    border: 1px solid var(--light-border);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mm-val {
    color: var(--light-text);
    margin-bottom: 0;
  }

  .mm-lbl {
    color: var(--light-muted);
  }

  .mockup-main-area {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .mockup-graph {
    background: #ffffff;
    border: 1px solid var(--light-border);
  }

  .mg-header {
    color: var(--light-text);
  }

  .mockup-mobile-device {
    display: none;
    /* Hide device in mobile layout to save space and keep it clean */
  }

  .hero-float-card {
    display: none;
    /* Hide float cards on mobile to reduce clutter as requested */
  }

  .hero-visual {
    display: none;
  }

  .ticker-bar {
    background: #fff;
    border-color: var(--light-border);
    overflow: hidden !important;
    position: relative;
    width: 100%;
  }

  .ticker-track {
    width: max-content !important;
    display: flex;
    overflow: visible;
  }

  .ticker-item {
    color: #6b7280;
  }

  /* Problem mobile */
  .problem {
    background: var(--light-bg);
  }

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

  .problem-item {
    background: #fff;
    border-color: var(--light-border);
  }

  .problem-item h4 {
    color: var(--light-text);
  }

  .problem-item p {
    color: var(--light-muted);
  }

  .loss-card {
    background: #fff;
    border-color: rgba(239, 68, 68, .15);
  }

  .loss-card-title {
    color: #ef4444; /* Brighter red for visibility */
  }

  .loss-bar-label {
    color: var(--light-text); /* Use dark text on light bg */
    font-weight: 600;
  }

  .loss-bar-track {
    background: #f1f3f1;
  }

  /* Reality Card Mobile Refinement */
  .reality-card {
    background: #fff !important;
    border-color: var(--light-border) !important;
    padding: 24px !important;
  }

  .reality-header {
    color: var(--light-muted);
    font-size: 0.7rem;
  }

  .reality-lbl {
    color: var(--light-text);
    font-size: 0.8rem;
  }

  .reality-val {
    font-size: 0.9rem;
  }

  .reality-sep {
    background: var(--light-border);
  }

  /* Solution mobile */
  .solution {
    background: var(--light-bg);
  }

  .solution-bg-orb {
    opacity: .3;
    max-width: 100vw;
    left: 50% !important;
    transform: translateX(-50%) !important;
    overflow: hidden;
  }

  .solution-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card {
    background:
      radial-gradient(circle at top right, rgba(34, 197, 94, .07), transparent 34%),
      var(--light-card);
    border-color: var(--light-border);
    box-shadow: 0 10px 30px rgba(6, 13, 8, .06);
  }

  .solution-card::before {
    background: linear-gradient(90deg, rgba(22, 163, 74, .28), rgba(22, 163, 74, 0));
  }

  .solution-card h3 {
    color: var(--light-text);
  }

  .solution-card p {
    color: var(--light-muted);
  }

  .solution-card-num,
  .solution-card-label {
    background: rgba(22, 163, 74, .06);
    border-color: rgba(22, 163, 74, .12);
    color: var(--green);
  }

  .solution-card-cta {
    background:
      radial-gradient(circle at top right, rgba(34, 197, 94, .10), transparent 38%),
      linear-gradient(180deg, rgba(22, 163, 74, .04), rgba(255, 255, 255, .92) 60%),
      var(--light-card);
  }

  .solution-card-button {
    width: 100%;
    justify-content: center;
  }

  .solution-pill {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 249, .94));
    border-color: rgba(2, 6, 23, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95);
    color: rgba(15, 23, 42, .86);
  }

  .solution-pill::before {
    box-shadow: 0 0 8px rgba(34, 197, 94, .16);
  }

  /* Services mobile */
  .services {
    background: #fff;
  }

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

  .card {
    background: var(--light-bg);
    border-color: var(--light-border);
  }

  .card:hover {
    border-color: rgba(22, 163, 74, .3);
  }

  .service-card h3 {
    color: var(--light-text);
  }

  .service-card p {
    color: var(--light-muted);
  }

  /* Why mobile */
  .why {
    background: var(--light-bg);
  }

  .why-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    /* overflow: visible !important; - Changed from hidden to prevent clipping */
  }

  .why-visual {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .metrics-card {
    width: 100% !important;
    max-width: 360px !important; /* Increased from 320px */
    margin: 0 auto !important;
    background: #fff;
    border-color: var(--light-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
    padding: 32px 24px 40px !important; /* Explicit padding for mobile */
  }

  .why-points {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin-top: 24px !important;
  }

  .why-point {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    display: flex !important;
  }

  .why .section-title br {
    display: none;
  }

  .why .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 10px;
    word-wrap: break-word;
  }

  .why-point h4 {
    color: var(--light-text);
  }

  .why-point p {
    color: var(--light-muted);
  }

  .why-point:hover {
    background: rgba(22, 163, 74, .04);
    border-color: rgba(22, 163, 74, .15);
  }

  .metrics-card {
    background: #fff;
    border-color: var(--light-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
  }

  .metric-row {
    border-color: var(--light-border);
  }

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

  .metric-value {
    color: var(--light-text);
  }

  /* Process mobile */
  .process {
    background: var(--light-bg);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .step-num {
    background: var(--light-surface);
    border-color: var(--light-border);
  }

  .step-title {
    color: var(--light-text);
  }

  .step-desc {
    color: var(--light-muted);
  }

  /* Testimonials mobile */
  .testimonials {
    background: #fff;
  }

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

  .testimonial-card {
    background: var(--light-bg);
    border-color: var(--light-border);
  }

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

  .author-name {
    color: var(--light-text);
  }

  .author-role {
    color: var(--light-muted);
  }

  /* Ratgeber visible on all pages */
  .blog {
    display: block;
  }

  /* Website Audit mobile */
  .audit {
    padding: 60px 0;
  }

  .audit-input-group {
    flex-direction: column;
  }

  .audit-submit {
    height: 52px;
  }

  .audit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .audit-card {
    padding: 24px 12px;
  }

  .audit-card h4 {
    font-size: .85rem;
    flex-direction: column;
    gap: 4px;
  }

  .audit-card p {
    font-size: .7rem;
  }

  .score-ring {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .audit-orb {
    --orb-size: 14px;
  }

  .score-ring::before {
    inset: 4px;
  }

  .score-value {
    font-size: 1.1rem;
  }

  .blog {
    background: var(--light-bg);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .blog-card {
    background: #fff;
    border-color: var(--light-border);
  }

  .blog-card h3 {
    color: var(--light-text);
  }

  .blog-card p {
    color: var(--light-muted);
  }

  .blog-date {
    color: var(--light-muted);
  }

  /* Final CTA mobile */
  .final-cta {
    background: linear-gradient(180deg, #e8f5ea 0%, var(--light-bg) 100%);
  }

  .final-cta h2 {
    color: var(--light-text);
  }

  .final-cta p {
    color: var(--light-muted);
  }

  .final-trust-item {
    color: var(--light-muted);
  }

  /* Modal mobile */
  .modal {
    background: #ffffff !important;
    border: 1px solid var(--light-border) !important;
    padding: 0 !important;
    width: 92% !important;
    margin: 20px auto !important;
    max-height: 85vh !important;
    overflow: hidden !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
  }

  .modal-scroll {
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 24px 20px 24px !important;
    scrollbar-color: rgba(22, 163, 74, 0.65) transparent !important;
  }

  .modal h3 {
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
    color: var(--light-text);
    margin-bottom: 8px !important;
  }

  .modal-sub {
    color: var(--light-muted);
  }

  .form-input,
  .form-select,
  .form-textarea {
    background: var(--light-bg);
    border-color: var(--light-border);
    color: var(--light-text);
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    color: #888;
  }

  .modal .service-option {
    background: #f4f7f4 !important;
    border: 1.5px solid #d1d9d1 !important;
    color: #0e1a10 !important;
    box-shadow: none !important;
  }

  .modal .service-option::before {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.06) 60%, transparent 100%) !important;
  }

  .modal .service-option:hover {
    background: #e8f5ea !important;
    border-color: var(--green) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.12) !important;
  }

  .modal .service-option:hover::after {
    opacity: .7 !important;
    transform: rotate(24deg) translateX(320%) !important;
  }

  .modal .service-option.selected {
    color: #fff !important;
    background: var(--green) !important;
    border-color: var(--green) !important;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.22) !important;
  }

  .modal-close {
    background: var(--light-bg);
    color: var(--light-muted);
  }

  .modal-close:hover {
    color: var(--light-text);
  }

  .modal-note {
    color: var(--light-muted);
  }

  .modal-scroll::-webkit-scrollbar {
    width: 7px;
  }

  .modal-scroll::-webkit-scrollbar-track {
    background: transparent;
    margin-block: 20px;
  }

  .modal-scroll::-webkit-scrollbar-thumb {
    background: rgba(22, 163, 74, 0.55);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer mobile */
  footer {
    background: var(--light-text);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col h5 {
    color: #fff;
  }

  .footer-col a {
    color: rgba(255, 255, 255, .5);
  }

  .footer-col a:hover {
    color: var(--green-light);
  }

  .footer-brand p {
    color: rgba(255, 255, 255, .5);
  }

  .footer-brand img {
    height: 56px !important; /* Maximized from 44px */
    margin-bottom: 24px;
  }

  .footer-bottom {
    color: rgba(255, 255, 255, .35);
  }

  .social-link {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
  }

  .pricing-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .pricing-category-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 16px !important;
    box-sizing: border-box !important;
    flex: none !important;
  }

  .pricing-grid, .pricing-grid-2 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 16px !important;
  }

  .pricing-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    gap: 16px;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: .95rem;
  }

  .modal h3 {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
    margin-top: 5px;
  }

  #articleContent h2 {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    color: var(--light-text) !important;
  }

  .step-label, 
  .blog-tag, 
  .blog-date,
  .badge-label,
  .final-trust-item,
  .footer-bottom span,
  .section-label {
    font-size: 0.75rem !important; /* Increase to ~12px for readability */
  }

  .modal {
    padding: 24px 20px !important;
    width: calc(100% - 32px) !important;
    margin: 16px auto !important;
    max-height: 85vh;
    overflow-y: auto;
  }
}

/* ──────────────────────────────────────────
   Hero Flow Keyframes
   ────────────────────────────────────────── */
@keyframes step-appear {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes light-run {
  0% { stroke-dashoffset: 1080; }
  100% { stroke-dashoffset: 0; }
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: var(--green-light); }
}

@keyframes bar-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes icon-flash {
  0% { transform: scale(1); filter: brightness(1); }
  40% { transform: scale(1.4); filter: brightness(2) drop-shadow(0 0 10px var(--green-light)); }
  100% { transform: scale(1); filter: brightness(1); }
}

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

@keyframes process-step-pulse {
  0% { transform: scale(1); filter: brightness(1); }
  45% { transform: scale(1.16); filter: brightness(1.2) drop-shadow(0 0 18px rgba(74, 222, 128, 0.38)); }
  100% { transform: scale(1); filter: brightness(1); }
}

@keyframes card-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* ──────────────────────────────────────────
   GLOBAL HOVER REFINEMENTS
   ────────────────────────────────────────── */

/* Premium Hover Utility */
.premium-hover {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
}

.premium-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--green-glow);
  border-color: var(--green-light);
  z-index: 10;
}

/* Specific Container Hovers */
.problem-item, 
.audit-card, 
.solution-card, 
.service-card, 
.why-point, 
.process-step, 
.pricing-card, 
.article-card,
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease,
              background 0.4s ease;
}

.problem-item:hover, 
.audit-card:hover, 
.solution-card:hover, 
.service-card:hover,
.service-card.active,
.why-point:hover,
.why-point.active,
.process-step:hover,
.process-step.active,
.pricing-card:hover, 
.article-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.02);
  z-index: 5;
}

.why-point.is-lit .why-check {
  animation: icon-flash 0.6s ease-out;
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.16), 0 0 20px rgba(34, 197, 94, 0.22);
}

.why-point.is-lit {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(34, 197, 94, 0.22);
}

.process-step.active .step-num,
.process-step.is-lit .step-num {
  animation: process-step-pulse 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

.process-step.is-lit {
  transform: translateY(-8px) scale(1.02);
  z-index: 5;
}

.process-step.is-lit .step-title {
  color: #ffffff;
}

.process-step.is-lit .step-desc {
  color: rgba(255, 255, 255, 0.76);
}

.process-step.is-lit .step-icon {
  color: var(--green-light);
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.3));
}

/* Icon Pop Effect on Hover & Scroll-Sync */
.service-card:hover .service-icon-wrap,
.service-card.active .service-icon-wrap,
.audit-card:hover .audit-icon,
.process-step:hover .step-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--green-light);
  filter: drop-shadow(0 0 10px var(--green-light));
}

/* ──────────────────────────────────────────
   FLOATING SCROLL SYSTEM
   ────────────────────────────────────────── */

/* Base Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.floating-element {
  animation: float 4s ease-in-out infinite;
}

.floating-element-delayed {
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* Scroll-Linked Floating (Parallax) */
.parallax-float {
  transition: transform 0.2s outset;
  will-change: transform;
}

/* Scroll Progress Indicator (Optional hidden utility) */
:root {
  --scroll-y: 0;
}

/* ============================================================
   FAQ SECTION [NEW]
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  gap: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--green-light);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(22, 163, 74, 0.03);
}

.faq-answer p {
  padding: 0 32px 24px;
  color: var(--dark-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Mobile Overrides for FAQ & Solution */
@media (max-width: 768px) {
  .faq {
    background: var(--light-bg);
    padding: 60px 0;
  }
  
  .faq-item {
    background: #fff;
    border-color: var(--light-border);
  }
  
  .faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    color: var(--light-text);
  }
  
  .faq-answer p {
    padding: 0 24px 20px;
    color: var(--light-muted);
  }

  /* Fix for Solution section readability */
  .solution .section-title {
    color: var(--light-text) !important;
  }
  
  .solution .section-sub {
    color: var(--light-muted) !important;
    opacity: 1 !important;
  }

  .modal-logo {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .modal-logo img {
    height: 88px !important;
    width: auto;
  }
}


/* ─────────────────────────────────────────
   SHOWCASES / BEFORE-AFTER
────────────────────────────────────────── */
.showcases {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(22, 163, 74, 0.10), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(34, 197, 94, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(8, 12, 10, 0.98) 0%, rgba(6, 10, 8, 1) 100%);
  overflow: hidden;
}

.showcases::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 24%, transparent 76%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.showcase-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.before-after-card {
  padding: 42px; /* Large padding for the big featured card */
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.before-after-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.before-after-copy,
.before-after-stage {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.before-after-stage {
  border: 1px solid rgba(255,255,255,0.05); /* Subtle inner border for the stage */
}

.before-after-copy {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.showcase-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.before-after-copy h3,
.showcase-body h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  margin: 0;
  color: var(--white);
}

.before-after-copy p,
.showcase-body p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

.showcase-meta,
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.showcase-points {
  display: grid;
  gap: 12px;
}

.showcase-point {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.showcase-point strong {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-point span {
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  font-size: 0.94rem;
}

.before-after-stage.has-real-shots {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.015));
}

.before-after-stage.has-real-shots .compare-screen {
  background: rgba(6,10,8,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.compare-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.before-after-stage.has-real-shots::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 16%, transparent 84%, rgba(255,255,255,0.02));
  z-index: 2;
}

.showcase-meta span,
.showcase-tags span {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.07);
  transition: background 0.2s, border-color 0.2s;
}

.showcase-tags span:hover {
  background: rgba(34, 197, 94, 0.13);
  border-color: rgba(34, 197, 94, 0.4);
}

.before-after-stage {
  --compare-position: 58%;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 34px;
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
}

.compare-screen {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.compare-before {
  z-index: 1;
}

.compare-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0 round 24px);
}

.mock-browser,
.mini-browser {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10,14,12,0.96), rgba(12,16,14,0.92));
  overflow: hidden;
}

.mock-browser-top,
.mini-browser-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-browser-top span,
.mini-browser-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.mock-browser-body {
  height: calc(100% - 51px);
  padding: 22px;
}

.is-before {
  background: linear-gradient(180deg, rgba(27, 31, 29, 0.95), rgba(17, 20, 18, 0.98));
}

.is-after {
  background: radial-gradient(circle at 85% 12%, rgba(22, 163, 74, 0.18), transparent 24%), linear-gradient(180deg, rgba(10, 14, 12, 0.98), rgba(8, 10, 9, 0.98));
}

.mock-banner {
  border-radius: 20px;
  height: 124px;
  margin-bottom: 18px;
}

.mock-banner-before {
  background:
    linear-gradient(135deg, rgba(86, 94, 90, 0.38), rgba(34, 39, 36, 0.7)),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

.mock-banner-after {
  background:
    linear-gradient(135deg, rgba(22, 163, 74, 0.30), rgba(8, 16, 11, 0.72)),
    radial-gradient(circle at 82% 14%, rgba(134, 239, 172, 0.36), transparent 22%);
}

.mock-block-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.mock-block {
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.mock-block.tall {
  height: 96px;
}

.mock-line,
.mini-line {
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  margin-top: 14px;
}

.mock-line.long,
.mini-line.long { width: 88%; }
.mock-line.medium,
.mini-line.medium { width: 64%; }
.mock-line.short,
.mini-line.short { width: 48%; }

.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.mock-kpi {
  height: 62px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.mock-kpi.accent {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.28), rgba(255,255,255,0.06));
}

.mock-before-cta,
.mock-after-cta,
.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  margin-top: 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mock-before-cta {
  color: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.mock-after-cta,
.mini-badge {
  color: #06240f;
  background: linear-gradient(135deg, #86efac, #22c55e);
  box-shadow: 0 18px 30px rgba(22, 163, 74, 0.22);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.compare-divider {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: var(--compare-position);
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.82), rgba(255,255,255,0.12));
  z-index: 3;
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(8, 12, 10, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.compare-handle span {
  width: 2px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.compare-chip {
  position: absolute;
  top: 30px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8, 12, 10, 0.68);
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
}

.compare-chip-before { left: 30px; }
.compare-chip-after { right: 30px; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcase-card {
  padding: 0 !important; /* Force override global .card padding */
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.showcase-visual {
  padding: 22px;
  min-height: 200px;
}

.showcase-visual.real-shot-visual {
  position: relative;
  padding: 22px;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  background: radial-gradient(circle at 18% 16%, rgba(255,255,255,0.10), transparent 28%), linear-gradient(180deg, rgba(255,255,255,0.02), rgba(8, 12, 10, 0.12));
}

.showcase-real-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}

.showcase-visual.real-shot-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(5,9,7,0.04) 0%, rgba(5,9,7,0.00) 40%, rgba(5,9,7,0.30) 100%);
  pointer-events: none;
}

.showcase-image-badges {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-image-badges span {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.30);
  background: rgba(6, 14, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--green-light);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(34,197,94,0.1);
}

.dental-visual {
  background: radial-gradient(circle at 18% 18%, rgba(255,255,255,0.12), transparent 32%), linear-gradient(135deg, rgba(63, 131, 248, 0.20), rgba(8, 12, 10, 0.34) 56%, rgba(22, 163, 74, 0.14));
}

.nature-visual {
  background: radial-gradient(circle at 84% 14%, rgba(134, 239, 172, 0.18), transparent 28%), linear-gradient(135deg, rgba(188, 247, 208, 0.08), rgba(8, 12, 10, 0.42) 62%, rgba(22, 163, 74, 0.12));
}

.craft-visual {
  background: radial-gradient(circle at 84% 14%, rgba(255,255,255,0.10), transparent 24%), linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(8, 12, 10, 0.42) 56%, rgba(22, 163, 74, 0.10));
}

.mini-browser {
  border-radius: 22px;
  min-height: 204px;
}

.mini-browser-body {
  padding: 18px;
}

.mini-hero {
  height: 92px;
  border-radius: 16px;
}

.mini-hero.dental {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.32), rgba(14, 22, 26, 0.8));
}

.mini-hero.nature {
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.24), rgba(13, 21, 16, 0.8));
}

.mini-hero.craft {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.26), rgba(18, 18, 18, 0.82));
}

.showcase-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
}

.showcase-body h3 {
  font-size: 1.45rem;
}

.showcase-body .showcase-kicker {
  font-size: 0.68rem;
  margin: 0 auto;
}

.showcase-tags {
  justify-content: center;
}

@media (max-width: 1120px) {
  .before-after-card {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .showcases {
    padding: 82px 0;
    background: linear-gradient(180deg, #f8faf8 0%, #f0f8f2 100%);
  }

  .showcases::before {
    background: radial-gradient(circle at 14% 8%, rgba(22, 163, 74, 0.08), transparent 34%);
  }

  .before-after-card,
  .before-after-copy,
  .before-after-stage,
  .showcase-card {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-color: rgba(22, 163, 74, 0.12) !important;
    box-shadow: 0 12px 30px rgba(6, 13, 8, 0.04) !important;
  }

  .before-after-copy h3,
  .showcase-body h3 {
    font-size: 1.2rem;
  }

  .showcase-body p {
    font-size: 0.94rem;
    line-height: 1.5;
  }
  .showcase-point strong {
    color: var(--light-text);
  }

  .before-after-copy p,
  .showcase-body p,
  .showcase-kicker,
  .showcase-meta span,
  .showcase-tags span,
  .showcase-point span {
    color: var(--light-muted);
  }

  .showcase-kicker,
  .showcase-meta span,
  .showcase-tags span,
  .compare-chip {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(22, 163, 74, 0.15) !important;
    color: var(--green) !important;
  }

  .before-after-stage {
    min-height: 360px;
    padding: 14px;
    border-radius: 26px;
  }

  .before-after-stage.has-real-shots {
    min-height: 410px;
  }

  .compare-screen {
    inset: 14px;
    border-radius: 18px;
  }

  .before-after-stage.has-real-shots::after {
    inset: 14px;
    border-radius: 18px;
  }

  .compare-divider {
    top: 14px;
    bottom: 14px;
  }

  .compare-handle {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.96);
    border-color: rgba(15,23,42,0.10);
  }

  .compare-handle span {
    background: rgba(15,23,42,0.55);
  }

  .compare-chip {
    color: var(--light-text);
    top: 24px;
  }

  .compare-chip-before { left: 24px; }
  .compare-chip-after { right: 24px; }

  .mock-browser,
  .mini-browser {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,247,0.98));
    border-color: rgba(15,23,42,0.06);
  }

  .mock-browser-top,
  .mini-browser-top {
    background: rgba(15,23,42,0.04);
    border-bottom-color: rgba(15,23,42,0.05);
  }

  .mock-browser-top span,
  .mini-browser-top span {
    background: rgba(15,23,42,0.18);
  }

  .is-before {
    background: linear-gradient(180deg, rgba(242,245,243,0.96), rgba(235,239,236,0.96));
  }

  .is-after {
    background: radial-gradient(circle at 85% 12%, rgba(22,163,74,0.14), transparent 24%), linear-gradient(180deg, rgba(248,250,248,0.98), rgba(240,245,241,0.98));
  }

  .mock-block,
  .mock-kpi,
  .mock-line,
  .mini-line {
    background: rgba(15,23,42,0.08);
    border-color: rgba(15,23,42,0.06);
  }

  .mock-before-cta {
    color: rgba(15,23,42,0.58);
    border-color: rgba(15,23,42,0.08);
    background: rgba(15,23,42,0.04);
  }

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

  .showcase-visual {
    min-height: 220px;
  }
  .showcase-visual.real-shot-visual {
    min-height: 0;
    padding: 12px;
  }

  .showcase-real-shot {
    height: 208px;
    border-radius: 18px;
  }

  .showcase-visual.real-shot-visual::after {
    inset: 12px;
    border-radius: 18px;
  }

  .showcase-image-badges {
    left: 22px;
    right: 22px;
    bottom: 20px;
    gap: 8px;
  }

  .showcase-image-badges span {
    padding: 7px 10px;
    font-size: 0.66rem;
  }
}


/* Pricing row desktop overflow fix */
.pricing-row > .pricing-category-box {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.pricing-row > .pricing-category-box .pricing-grid-2,
.pricing-row > .pricing-category-box .pricing-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.pricing-row > .pricing-category-box > .pricing-card {
  flex: 1 1 auto;
}

@media (min-width: 1201px) {
  .pricing-row {
    align-items: stretch;
  }

  .pricing-row > .pricing-category-box:last-child .pricing-card {
    padding: 36px;
  }
}


/* â”€â”€ COOKIE BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  width: min(480px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 19, 12, .96), rgba(6, 13, 8, .96));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
}

.cookie-banner__inner::before {
  content: '';
  position: absolute;
  inset: -35% auto auto -15%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, .18), rgba(34, 197, 94, 0));
  pointer-events: none;
}

.cookie-banner__copy,
.cookie-banner__actions {
  position: relative;
  z-index: 1;
}

.cookie-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(232, 245, 234, .72);
}

.cookie-banner__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .08);
}

.cookie-banner h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
  color: var(--dark-text);
}

.cookie-banner p {
  font-size: .95rem;
  line-height: 1.68;
  color: rgba(232, 245, 234, .72);
}

.cookie-banner p a {
  color: var(--green-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 16px;
}

.btn-ghost.cookie-btn {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: var(--dark-text);
}

.btn-ghost.cookie-btn:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .2);
}

@media (max-width: 767px) {
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-banner__inner {
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-banner h3 {
    font-size: 1rem;
  }

  .cookie-banner p {
    font-size: .9rem;
    line-height: 1.6;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}


.footer-col a[data-cookie-settings] {
  cursor: pointer;
}


/* ─────────────────────────────────────────
   DISCOVERY CALL MODAL
────────────────────────────────────────── */
.modal-discovery {
  max-width: 1040px;
}

.modal-scroll-discovery {
  padding: 36px 34px 34px;
}

.modal-logo-discovery img {
  height: 94px;
}

.discovery-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.discovery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  background: rgba(22, 163, 74, 0.08);
  color: var(--green-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.discovery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  margin-bottom: 22px;
}

.discovery-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 24px 50px rgba(0,0,0,0.16);
}

.discovery-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.topic-chip,
.duration-chip,
.calendar-day,
.calendar-slot {
  border: 1px solid var(--dark-border);
  background: rgba(255,255,255,0.04);
  color: var(--dark-text);
  border-radius: 16px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease, opacity .22s ease;
}

.topic-chip {
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  min-height: 52px;
  padding: 12px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.topic-chip:hover,
.duration-chip:hover,
.calendar-day:hover,
.calendar-slot:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.42);
  background: rgba(22, 163, 74, 0.08);
  box-shadow: 0 14px 28px rgba(10, 20, 12, 0.18);
}

.topic-chip.selected,
.duration-chip.is-active,
.calendar-day.is-active,
.calendar-slot.is-active {
  border-color: rgba(74, 222, 128, 0.9);
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.18), rgba(22, 163, 74, 0.1));
  color: #f4fff7;
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.32), 0 18px 34px rgba(22, 163, 74, 0.16);
}

.discovery-calendar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.discovery-schedule-note {
  margin-top: 8px;
  color: var(--dark-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.duration-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.duration-chip {
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  min-width: 82px;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 800;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.calendar-day {
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  padding: 14px 12px;
  text-align: left;
  min-height: 86px;
}

.calendar-day .day-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 10px;
}

.calendar-day .day-date {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.calendar-day .day-month {
  display: block;
  font-size: 0.8rem;
  color: var(--dark-muted);
}

.calendar-day.is-active .day-name,
.calendar-day.is-active .day-date,
.calendar-day.is-active .day-month {
  color: #f4fff7;
}

.calendar-slots-wrap {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.calendar-slots-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.calendar-slots-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

.calendar-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.calendar-slot {
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  padding: 12px 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.calendar-slot[disabled],
.calendar-slot.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.calendar-selection {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.12), rgba(22, 163, 74, 0.04));
  color: var(--dark-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.calendar-selection strong {
  color: #f4fff7;
}

.discovery-submit {
  margin-top: 2px;
}

@media (max-width: 991px) {
  .modal-discovery {
    max-width: 760px;
  }

  .discovery-layout {
    grid-template-columns: 1fr;
  }

  .calendar-days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .modal-discovery {
    width: calc(100% - 28px) !important;
    max-height: 88vh !important;
  }

  .modal-scroll-discovery {
    padding: 22px 18px 22px !important;
  }

  .modal-logo-discovery img {
    height: 84px !important;
  }

  .discovery-intro {
    margin-bottom: 20px;
  }

  .discovery-eyebrow {
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.18);
    color: var(--green);
  }

  .discovery-panel {
    background: #f8fbf8 !important;
    border: 1px solid #dfe7df !important;
    box-shadow: 0 18px 35px rgba(10, 18, 12, 0.08) !important;
    padding: 18px !important;
  }

  .topic-chip,
  .duration-chip,
  .calendar-day,
  .calendar-slot {
    background: #ffffff !important;
    border-color: #d7e0d8 !important;
    color: var(--light-text) !important;
    box-shadow: none !important;
  }

  .topic-chip.selected,
  .duration-chip.is-active,
  .calendar-day.is-active,
  .calendar-slot.is-active {
    color: #ffffff !important;
    background: linear-gradient(180deg, #16a34a, #15803d) !important;
    border-color: #15803d !important;
    box-shadow: 0 16px 28px rgba(22, 163, 74, 0.18) !important;
  }

  .calendar-day .day-name,
  .calendar-day .day-date,
  .calendar-day .day-month,
  .calendar-slots-meta,
  .discovery-schedule-note {
    color: var(--light-muted) !important;
  }

  .calendar-day.is-active .day-name,
  .calendar-day.is-active .day-date,
  .calendar-day.is-active .day-month {
    color: #ffffff !important;
  }

  .duration-switch {
    background: #eef4ef !important;
    border-color: #dfe7df !important;
    width: 100%;
    justify-content: space-between;
  }

  .discovery-calendar-top {
    flex-direction: column;
    align-items: stretch;
  }

  .discovery-topic-grid,
  .calendar-days,
  .calendar-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-slots-wrap {
    background: #ffffff !important;
    border-color: #dfe7df !important;
  }

  .calendar-selection {
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.10), rgba(22, 163, 74, 0.04)) !important;
    border-color: rgba(22, 163, 74, 0.18) !important;
    color: var(--light-text) !important;
  }

  .calendar-selection strong {
    color: var(--light-text) !important;
  }
}

.calendar-loading{padding:14px 16px;border:1px dashed rgba(34,197,94,.28);border-radius:16px;color:rgba(255,255,255,.72);font-size:.94rem;background:rgba(255,255,255,.02);}


/* Showcase carousel refresh */
/* ── iFrame Showcase Preview ──────────────────────────── */
.showcase-iframe-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #0d0d0d;
}

.showcase-iframe-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.showcase-iframe {
  width: 1280px;
  height: 900px;
  border: none;
  transform-origin: top left;
  transform: scale(0.28);
  display: block;
  pointer-events: none;
}

@media (max-width: 860px) {
  .showcase-iframe-visual {
    aspect-ratio: 16 / 9;
  }
  .showcase-iframe {
    transform: scale(calc((86vw) / 1280));
  }
}

@media (min-width: 861px) {
  .showcase-iframe {
    /* active card max 430px → 430/1280 ≈ 0.336 */
    transform: scale(0.336);
  }
}

/* Overlay to block interaction but keep visual */
.showcase-iframe-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.showcase-image-badges {
  z-index: 3;
}

/* Adjust scale for active (larger) card on desktop */
@media (min-width: 861px) {
  .showcase-slide.is-active .showcase-iframe {
    /* stays same scale, parent handles size */
  }
}

.showcase-carousel {
  position: relative;
  margin-top: 44px;
}

.showcase-carousel-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.showcase-carousel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.showcase-carousel-label,
.showcase-carousel-hint {
  display: none;
}

.showcase-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 10px;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.showcase-viewport::-webkit-scrollbar {
  display: none;
}

.showcase-track {
  display: flex;
  gap: 22px;
  align-items: stretch;
  width: max-content;
}

.showcase-slide {
  flex: 0 0 86vw;
  min-width: 86vw;
  scroll-snap-align: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease;
}

.showcase-slide .showcase-card {
  height: 100%;
  border-color: rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.92));
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.showcase-slide .showcase-card:hover {
  transform: none;
}

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 12, 10, 0.90), rgba(11, 17, 13, 0.82));
  color: rgba(247, 250, 248, 0.96);
  font-size: 1.14rem;
  font-weight: 800;
  box-shadow: 0 24px 48px rgba(8, 12, 10, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  z-index: 9;
}

.showcase-nav-prev {
  left: 10px;
}

.showcase-nav-next {
  right: 10px;
}

.showcase-nav:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(180deg, rgba(10, 16, 12, 0.96), rgba(8, 12, 10, 0.92));
  box-shadow: 0 28px 52px rgba(8, 12, 10, 0.30), 0 0 0 1px rgba(34, 197, 94, 0.12) inset;
}

.showcase-nav:focus-visible {
  outline: 2px solid rgba(34, 197, 94, 0.38);
  outline-offset: 4px;
}

.showcase-visual-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(8, 17, 13, 0.92), rgba(17, 24, 39, 0.94));
}

.showcase-visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 42%),
              radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 28%);
}

.placeholder-browser {
  position: absolute;
  inset: 22px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.placeholder-topbar {
  display: flex;
  gap: 6px;
}

.placeholder-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.15);
}

.placeholder-hero {
  width: 100%;
  border-radius: 18px;
  min-height: 118px;
}

.placeholder-hero--light {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(255, 255, 255, 0.96));
}

.placeholder-hero--dark {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(34, 197, 94, 0.22));
}

.placeholder-grid {
  display: grid;
  gap: 10px;
}

.placeholder-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.placeholder-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.placeholder-grid span,
.placeholder-line {
  display: block;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.08);
}

.placeholder-grid span {
  min-height: 54px;
}

.placeholder-grid.muted span {
  background: rgba(15, 23, 42, 0.05);
}

.placeholder-line {
  min-height: 13px;
}

.placeholder-line.wide {
  width: 72%;
}

.real-estate-visual {
  background: linear-gradient(145deg, rgba(11, 17, 32, 0.98), rgba(34, 197, 94, 0.22));
}

.tax-visual {
  background: linear-gradient(145deg, rgba(12, 16, 29, 0.98), rgba(15, 23, 42, 0.94));
}

@media (min-width: 861px) {
  .showcase-viewport {
    min-height: 646px;
    overflow: hidden;
    padding: 28px 94px 24px;
  }

  .showcase-track {
    position: relative;
    min-height: 594px;
    display: block;
    width: 100%;
    perspective: 1800px;
    transform-style: preserve-3d;
  }

  .showcase-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(35vw, 430px);
    min-width: 350px;
    max-width: 430px;
    opacity: 0;
    pointer-events: none;
    filter: blur(0.8px);
    scroll-snap-align: none;
  }

  .showcase-slide.is-active,
  .showcase-slide.is-prev,
  .showcase-slide.is-next,
  .showcase-slide.is-far-prev,
  .showcase-slide.is-far-next {
    opacity: 1;
  }

  .showcase-slide.is-active {
    z-index: 6;
    transform: translateX(-50%) translateY(0) scale(1) rotateY(0deg);
    filter: none;
    pointer-events: auto;
  }

  .showcase-slide.is-prev {
    z-index: 5;
    transform: translateX(calc(-50% - min(28vw, 320px))) translateY(22px) scale(0.9) rotateY(16deg);
    opacity: 0.72;
    filter: saturate(0.92);
    pointer-events: auto;
  }

  .showcase-slide.is-next {
    z-index: 5;
    transform: translateX(calc(-50% + min(28vw, 320px))) translateY(22px) scale(0.9) rotateY(-16deg);
    opacity: 0.72;
    filter: saturate(0.92);
    pointer-events: auto;
  }

  .showcase-slide.is-far-prev {
    z-index: 4;
    transform: translateX(calc(-50% - min(46vw, 520px))) translateY(46px) scale(0.78) rotateY(24deg);
    opacity: 0.28;
    filter: blur(1px) saturate(0.8);
  }

  .showcase-slide.is-far-next {
    z-index: 4;
    transform: translateX(calc(-50% + min(46vw, 520px))) translateY(46px) scale(0.78) rotateY(-24deg);
    opacity: 0.28;
    filter: blur(1px) saturate(0.8);
  }

  .showcase-slide.is-hidden {
    z-index: 1;
    transform: translateX(-50%) translateY(70px) scale(0.66);
    opacity: 0;
    filter: blur(1.4px);
  }

  .showcase-slide .showcase-card {
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16);
  }

  .showcase-slide.is-active .showcase-card {
    border-color: rgba(34, 197, 94, 0.14);
    box-shadow: 0 38px 88px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.46) inset;
  }

  .showcase-slide.is-active .showcase-card:hover {
    transform: translateY(-8px);
  }

  .showcase-slide.is-prev .showcase-card,
  .showcase-slide.is-next .showcase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 248, 0.88));
  }

  .showcase-slide.is-far-prev .showcase-card,
  .showcase-slide.is-far-next .showcase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 248, 0.76));
  }
}

@media (max-width: 860px) {
  .showcase-carousel-head {
    margin-bottom: 18px;
  }

  .showcase-carousel-label,
  .showcase-carousel-hint {
    font-size: 0.7rem;
    padding: 9px 12px;
  }

  .showcase-nav {
    display: none;
  }

  .showcase-viewport {
    min-height: 420px;
    overflow-x: scroll;
    overflow-y: hidden;
    display: block;
    width: 100%;
  }

  .showcase-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    padding-left: 5vw;
    padding-right: 5vw;
    width: max-content !important;
    min-height: 400px;
    align-items: flex-start;
  }

  .showcase-slide {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    min-width: 82vw !important;
    max-width: 82vw !important;
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    filter: none !important;
    top: auto !important;
    left: auto !important;
    scroll-snap-align: center;
  }

  .showcase-slide .showcase-card {
    height: 100%;
    min-height: 380px;
  }

  .placeholder-browser {
    inset: 16px;
    padding: 14px;
    border-radius: 18px;
  }

  .placeholder-hero {
    min-height: 88px;
  }

  .placeholder-grid span {
    min-height: 42px;
  }
}

/* === Showcase Live-Button === */
.showcase-live-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(6, 14, 8, 0.82);
  border: 1px solid rgba(34, 197, 94, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  color: #6ee7a0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  cursor: pointer;
}
.showcase-live-btn:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.75);
  color: #fff;
  transform: translateY(-2px);
}
.showcase-live-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   MOBILE CAROUSEL FIX – Extra small screens
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .showcase-viewport {
    min-height: 380px;
  }

  .showcase-track {
    gap: 12px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .showcase-slide {
    flex: 0 0 88vw !important;
    width: 88vw !important;
    min-width: 88vw !important;
    max-width: 88vw !important;
  }

  .showcase-slide .showcase-card {
    min-height: 340px;
  }

  .showcases {
    padding: 60px 0;
  }

  .showcase-header {
    padding: 0 1rem;
  }

  .showcase-carousel {
    margin-top: 28px;
  }

  .showcase-iframe-visual {
    aspect-ratio: 16 / 10;
  }
}
