/* ============================
   Global: prevent horizontal scroll
   ============================ */
html {
  overflow-x: clip;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

/* ============================
   Design Tokens
   ============================ */
:root {
  --primary: #1a73e8;
  --primary-hover: #1557b0;
  --primary-light: #e8f0fe;
  --heading: #202124;
  --body: #5f6368;
  --green: #1e8e3e;
  --green-light: #e6f4ea;
  --border: #dadce0;
  --surface: #f8f9fa;
  --accent-orange: #f9ab00;
  --accent-red: #ea4335;
  --accent-purple: #7b1fa2;
  --gradient-primary: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #669df6 100%);
  --gradient-hero: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 40%, #f8f9fa 100%);
  --gradient-stats: linear-gradient(135deg, #1557b0 0%, #1a73e8 40%, #4285f4 100%);
  --gradient-footer: linear-gradient(135deg, #202124 0%, #303134 100%);
  --shadow-card: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  --shadow-card-hover: 0 2px 6px 0 rgba(60,64,67,0.3), 0 6px 16px 4px rgba(60,64,67,0.15);
  --shadow-card-vibrant: 0 4px 12px rgba(26,115,232,0.25);
  --radius-card: 5px;
  --radius-card-lg: 5px;
  --radius-btn: 5px;
  --nav-height: 56px;
}

/* ============================
   Navigation
   ============================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 50%, rgba(255,255,255,0.95) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 3px rgba(60,64,67,0.08);
}

.nav-logo {
  color: var(--heading);
}

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

@media (max-width: 767px) {
  .site-nav > div {
    height: 46px;
  }

  .nav-logo-img {
    height: 17px;
  }

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

  :root {
    --nav-height: 46px;
  }
}

.nav-link {
  color: var(--heading);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--heading);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #fff;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  overflow-y: auto;
}

.mobile-menu.is-open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

/* Menu header: logo centered + X close */
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  flex-shrink: 0;
}

.mobile-menu__header-spacer {
  width: 32px;
}

.mobile-menu__logo-img {
  height: 20px;
  width: auto;
}

.mobile-menu__close {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu__close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--heading);
  border-radius: 1px;
}

.mobile-menu__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  gap: 0;
  margin-bottom: auto;
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  color: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s ease, opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__links > :nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__links > :nth-child(2) { transition-delay: 0.27s; }
.mobile-menu.is-open .mobile-menu__links > :nth-child(3) { transition-delay: 0.34s; }
.mobile-menu.is-open .mobile-menu__links > :nth-child(4) { transition-delay: 0.41s; }
.mobile-menu.is-open .mobile-menu__links > :nth-child(5) { transition-delay: 0.48s; }

.mobile-menu__link:hover {
  color: var(--primary);
}

.mobile-menu .cta-button {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
}

.mobile-menu.is-open .cta-button {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu promo card */
.mobile-menu__promo {
  margin: 0 20px;
  padding: 20px;
  width: calc(100% - 40px);
  border-radius: 12px;
  background: #0a0a0a;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mobile-menu__promo-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-menu__promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f5e6a3 100%);
  color: #0a0a0a;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 50px;
  flex-shrink: 0;
  line-height: 1;
}

.mobile-menu__promo-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

/* Timer */
.mobile-menu__promo-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-menu__promo-timer-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mobile-menu__promo-timer-blocks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-menu__promo-timer-block {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mobile-menu__promo-timer-block small {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-left: 1px;
}

.mobile-menu__promo-timer-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-weight: 600;
}

.mobile-menu__promo-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-menu__promo-old {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.mobile-menu__promo-new {
  color: #d4af37;
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu__promo-btn {
  display: block;
  width: 100%;
  padding: 10px 32px;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f5e6a3 100%);
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  text-align: center;
}

.mobile-menu__promo:active .mobile-menu__promo-btn {
  transform: scale(0.97);
}

/* ============================
   Hero Video Background
   ============================ */
.hero-video {
  position: relative;
  overflow: hidden;
  min-height: calc(60vh + 40px);
  margin-top: var(--nav-height);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-video {
    min-height: calc(88vh - 60px);
    margin-top: var(--nav-height);
  }
}

.hero-content {
  padding: 50px 24px 0;
}

/* ============================
   Hero Rotating Title
   ============================ */
.hero-title {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  margin-top: 11px;
  font-size: 1.175rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.hero-buttons .cta-button {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1.35rem, 2.5vw, 1.625rem);
  }
  .hero-subtitle br {
    display: none;
  }
  .hero-buttons .cta-button {
    padding: 12px 32px;
    font-size: 0.9375rem;
  }
}


.hero-video__bg {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 1;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.275) 0%, rgba(0,0,0,0.175) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 2;
}

/* ============================
   Hero Industries — Glass Dock
   ============================ */
.hero-industries-bar {
  text-align: center;
  margin-top: auto;
}

.hero-industries-title {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero-industries {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-industry {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: default;
}

.hero-industry__icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.1s ease-out;
}

/* Label — white text below icon, fade in-down */
.hero-industry__label {
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  transform: translateX(-50%) translateY(-3px);
  font-size: 7px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  letter-spacing: 0.01em;
  background: none;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

/* Show label on hover — fade in-down */
.hero-industry.dock-active .hero-industry__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 768px) {
  .hero-industries-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .hero-industries {
    gap: 4px;
    padding: 10px;
    border-radius: 9999px;
  }
  .hero-industry {
    padding: 5px 12px;
  }
  .hero-industry__icon {
    width: 24px;
    height: 24px;
  }
  .hero-industry__label {
    font-size: 8px;
  }
}

@media (min-width: 1200px) {
  .hero-industries-title {
    font-size: 13px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  .hero-industries {
    gap: 4px;
    padding: 10px;
    border-radius: 9999px;
  }
  .hero-industry {
    padding: 5px 14px;
  }
  .hero-industry__icon {
    width: 28px;
    height: 28px;
  }
  .hero-industry__label {
    font-size: 9px;
  }
}

@media (min-width: 1600px) {
  .hero-industries-title {
    font-size: 14px;
  }
  .hero-industry__icon {
    width: 32px;
    height: 32px;
  }
  .hero-industry__label {
    font-size: 10px;
  }
}

/* ============================
   CTA Button
   ============================ */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(26,115,232,0.3);
}

.cta-button:hover {
  box-shadow: 0 4px 16px rgba(26,115,232,0.4);
}

.cta-button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(26,115,232,0.3);
}

/* Outline variant */
.cta-button--outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: none;
}

.cta-button--outline:hover {
  background-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(26,115,232,0.15);
}

/* Light outline variant (for dark/video backgrounds) */
.cta-button--outline-light {
  background: #fff;
  color: var(--heading);
  border: 1px solid #fff;
  box-shadow: none;
}

.cta-button--outline-light:hover {
  background: rgba(255,255,255,0.9);
  border-color: #fff;
  box-shadow: none;
}

/* Dark outline variant (black border + text) */
.cta-button--outline-dark {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--heading);
  box-shadow: none;
}

.cta-button--outline-dark:hover {
  background: var(--heading);
  color: #fff;
  box-shadow: 0 2px 8px rgba(32,33,36,0.25);
}

/* White variant (for dark/colored backgrounds) */
.cta-button--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cta-button--white:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Small variant */
.cta-button--small {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

/* ============================
   Section Utilities
   ============================ */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 1.875rem;
  }
}

.section-subheading {
  color: var(--body);
  text-align: center;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   Pain Cards (Problem section)
   ============================ */

/* Carousel container — grid on desktop, horizontal scroll on mobile */
.pain-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .pain-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin-top: 32px;
  }

  .pain-carousel::-webkit-scrollbar {
    display: none;
  }

  .pain-carousel .pain-card {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
  }
}

.pain-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pain-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-card__text {
  background: #fff;
  border: none;
  border-radius: var(--radius-card-lg);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(60,64,67,0.08), 0 1px 3px rgba(60,64,67,0.06);
}

/* Pain swipe indicator */
.pain-indicator {
  display: none;
}

@media (max-width: 767px) {
  .pain-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
  }

  .pain-dot {
    display: block;
    height: 8px;
    border-radius: 4px;
    width: 28px;
    background: var(--border);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Active = small circle, colored */
  .pain-dot--active {
    width: 8px;
  }

  .pain-dot--active[data-color="blue"] {
    background: var(--primary);
  }

  .pain-dot--active[data-color="green"] {
    background: var(--green);
  }

  .pain-dot--active[data-color="orange"] {
    background: var(--accent-orange);
  }
}

/* ============================
   Step Cards (How It Works)
   ============================ */

/* Carousel — grid desktop, scroll mobile */
.step-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

@media (max-width: 767px) {
  .step-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin-top: 32px;
  }

  .step-carousel::-webkit-scrollbar {
    display: none;
  }

  .step-carousel .step-card {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
  }
}

/* Card wrapper — transparent, like pain-card */
.step-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

/* Mockup panel */
.step-card__mockup {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-mockup--betalen {
  background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
}

.step-mockup--onboarding {
  background: linear-gradient(135deg, #e6f4ea 0%, #ceead6 100%);
}

.step-mockup--resultaat {
  background: linear-gradient(135deg, #f3e8fd 0%, #e8d5f5 100%);
}

/* Content panel — white card, like pain-card__text */
.step-card__content {
  background: #fff;
  border: none;
  border-radius: var(--radius-card-lg);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(60,64,67,0.08), 0 1px 3px rgba(60,64,67,0.06);
}

/* Step badge */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.step-badge[data-color="blue"] {
  background: #e8f0fe;
  color: var(--primary);
}

.step-badge[data-color="green"] {
  background: #e6f4ea;
  color: var(--green);
}

.step-badge[data-color="purple"] {
  background: #f3e8fd;
  color: var(--accent-purple);
}

/* Desktop connector line (removed) */

/* Step swipe indicator (mobile only) */
.step-indicator {
  display: none;
}

@media (max-width: 767px) {
  .step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
  }

  .step-dot {
    display: block;
    height: 8px;
    border-radius: 4px;
    width: 28px;
    background: var(--border);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }

  .step-dot--active {
    width: 8px;
  }

  .step-dot--active[data-color="blue"] {
    background: var(--primary);
  }

  .step-dot--active[data-color="green"] {
    background: var(--green);
  }

  .step-dot--active[data-color="purple"] {
    background: var(--accent-purple);
  }
}

/* ============================
   Mockup 1: Payment Screen
   ============================ */
.mockup-pay {
  width: 70%;
  max-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.mockup-pay__header {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mockup-pay__amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 10px;
}

.mockup-pay__methods {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 12px;
}

.mockup-pay__chip {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--body);
  border: 1px solid var(--border);
}

.mockup-pay__chip--active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.mockup-pay__btn {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 6px;
  width: 100%;
}

.mockup-pay__check {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  opacity: 0;
  animation: check-appear 0.4s ease-out 2s forwards;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.mockup-pay__check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: checkmark-draw 0.5s ease-out 2.2s forwards;
}

@keyframes check-appear {
  to { opacity: 1; }
}

@keyframes checkmark-draw {
  to { stroke-dashoffset: 0; }
}

/* ============================
   Mockup 2: Video Call
   ============================ */
.mockup-call {
  width: 85%;
  max-width: 280px;
  background: #1a1a2e;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.mockup-call__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.mockup-call__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.mockup-call__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e8e3e;
  animation: pulse-live 1.5s ease-in-out infinite;
}

.mockup-call__timer {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}

.mockup-call__avatars {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.mockup-call__avatar {
  width: 70px;
  height: 55px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.mockup-call__avatar svg {
  width: 22px;
  height: 22px;
}

.mockup-call__avatar span {
  font-size: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.mockup-call__avatar--you {
  background: rgba(255, 255, 255, 0.1);
}

.mockup-call__avatar--us {
  background: rgba(30, 142, 62, 0.25);
  border: 1px solid rgba(30, 142, 62, 0.4);
}

.mockup-call__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mockup-call__ctrl {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mockup-call__ctrl--end {
  background: var(--accent-red);
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================
   Mockup 3: Google Maps Result
   ============================ */
.mockup-result {
  width: 85%;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mockup-result__map {
  height: 60px;
  background: linear-gradient(135deg, #e8eaed 0%, #d2e3fc 60%, #ceead6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-result__pin {
  animation: pin-bounce 0.6s ease-out 0.5s both;
}

@keyframes pin-bounce {
  0% { transform: translateY(-20px); opacity: 0; }
  60% { transform: translateY(3px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.mockup-result__card {
  padding: 10px 14px 12px;
}

.mockup-result__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.mockup-result__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
}

.mockup-star {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0);
  animation: star-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mockup-star:nth-child(1) { animation-delay: 1s; }
.mockup-star:nth-child(2) { animation-delay: 1.15s; }
.mockup-star:nth-child(3) { animation-delay: 1.3s; }
.mockup-star:nth-child(4) { animation-delay: 1.45s; }
.mockup-star:nth-child(5) { animation-delay: 1.6s; }

.mockup-result__rating {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--body);
  margin-left: 4px;
  opacity: 0;
  animation: check-appear 0.3s ease-out 1.8s forwards;
}

@keyframes star-pop {
  to { opacity: 1; transform: scale(1); }
}

.mockup-result__rank {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
}

.mockup-result__arrow {
  animation: rank-up 0.6s ease-out 2s both;
}

@keyframes rank-up {
  0% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================
   Combo Cards (Service + Pricing merged)
   ============================ */
/* ============================
   Service Tabs
   ============================ */
.service-tabs {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--surface);
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  background: transparent;
  border: none;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.service-tab:not(:last-child) {
  border-right: 1px solid var(--border);
}

.service-tab:hover {
  background: #fff;
  color: var(--heading);
}

.service-tab.active {
  background: #fff;
  color: var(--heading);
  box-shadow: 0 1px 3px rgba(60,64,67,0.1);
}

.service-tab[data-target="panel-allin1"] {
  background: #0a0a0a;
  color: #fff;
}

.service-tab[data-target="panel-allin1"]:hover {
  background: #1a1a1a;
  color: #fff;
}

.service-tab[data-target="panel-allin1"].active {
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.service-tab__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.service-tab__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.service-tab__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.55;
  line-height: 1;
}

.service-tab__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-tab[data-target="panel-allin1"] .service-tab__label {
  color: #d4af37;
  opacity: 1;
}

/* Service Panels */
.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
  animation: panelFade 0.3s ease;
}

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

/* Panel nav arrows (desktop only) */
.service-panel {
  position: relative;
}

.panel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--heading);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.panel-nav:hover {
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.panel-nav--prev {
  left: -20px;
}

.panel-nav--next {
  right: -20px;
}

#panel-allin1 .panel-nav {
  border-color: rgba(212,175,55,0.3);
}

.service-panel__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: visible;
}

@media (min-width: 768px) {
  .service-panel__inner {
    grid-template-columns: 1fr 320px;
  }
}

.service-panel__info {
  padding: 40px;
}

.service-panel__pricing {
  padding: 0;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.service-panel__pricing-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

/* Discount banner */
.discount-banner {
  background: var(--gradient-primary, linear-gradient(135deg, #1a73e8, #1557b0));
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .discount-banner {
    border-radius: 0 4px 0 0;
  }
}

.discount-banner__label {
  text-transform: uppercase;
  white-space: nowrap;
}

.discount-banner__timer {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Green discount banner for Website panel */
#panel-web .discount-banner {
  background: linear-gradient(135deg, #1e8e3e 0%, #34a853 50%, #5bb974 100%);
}

/* Green CTA button for Website panel */
#panel-web .cta-button {
  background: linear-gradient(135deg, #1e8e3e 0%, #34a853 50%, #5bb974 100%);
}

#panel-web .cta-button:hover {
  box-shadow: 0 4px 16px rgba(30,142,62,0.4);
}

.pricing-old {
  font-size: 1.25rem;
  color: var(--body);
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 500;
}

/* Desktop pricing row — true-center current price */
.desktop-pricing__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
}

.desktop-pricing__row .pricing-old {
  justify-self: end;
  margin-right: 8px;
}

/* ============================
   Alles-in-1 — Premium dark/gold
   ============================ */
#panel-allin1 .service-panel__inner {
  background: #0a0a0a;
  border: 1px solid #d4af37;
  border-radius: 5px;
}

#panel-allin1 .cta-button {
  border-radius: 5px;
}

#panel-allin1 .service-panel__info {
  background: #0a0a0a;
}

#panel-allin1 .sp-title,
#panel-allin1 h3 {
  color: #fff;
}

#panel-allin1 .service-panel__info > p.text-body,
#panel-allin1 .text-body,
#panel-allin1 .service-panel__info li {
  color: rgba(255, 255, 255, 0.65);
}

#panel-allin1 .service-panel__info .text-xs.font-semibold {
  color: #d4af37;
}

#panel-allin1 .sp-icon {
  stroke: #d4af37;
}

#panel-allin1 .service-panel__info li svg {
  color: #d4af37;
  stroke: #d4af37;
}

#panel-allin1 .service-panel__pricing {
  background: #111;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

#panel-allin1 .service-panel__pricing .text-body,
#panel-allin1 .service-panel__pricing .text-xs {
  color: rgba(255, 255, 255, 0.5);
}

#panel-allin1 .service-panel__pricing .text-heading,
#panel-allin1 .service-panel__pricing .font-bold {
  color: #fff;
}

#panel-allin1 .pricing-old {
  color: rgba(255, 255, 255, 0.4);
}

#panel-allin1 .service-panel__pricing .bg-border,
#panel-allin1 .service-panel__pricing .h-px {
  background: rgba(212, 175, 55, 0.15) !important;
}

#panel-allin1 .discount-banner {
  background: #d4af37;
  color: #0a0a0a;
}

#panel-allin1 .discount-banner__timer {
  color: #0a0a0a;
  opacity: 0.75;
}

#panel-allin1 .cta-button {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f5e6a3 100%);
  color: #0a0a0a;
  border: none;
  background-image: none;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f5e6a3 100%);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  font-weight: 700;
}

#panel-allin1 .cta-button:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f5e6a3 100%);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

/* ============================
   Mobile-only pricing layout
   ============================ */

/* Hidden by default (desktop), shown on mobile */
.mobile-pricing,
.mobile-korting-badge,
.mobile-pricing-cta {
  display: none;
}

/* Swipe indicator — hidden on desktop */
.swipe-indicator {
  display: none;
}

@media (max-width: 767px) {
  /* === Hide tabs, show both panels as horizontal carousel === */
  .service-tabs-wrapper {
    display: none !important;
  }

  /* 20px spacing between subheading and cards */
  #diensten .section-subheading {
    margin-bottom: 20px !important;
  }

  .service-panel {
    display: block !important;
    animation: none !important;
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* Horizontal scroll carousel */
  #pricing {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  #pricing::-webkit-scrollbar {
    display: none;
  }

  /* === Card styling: rounded, shadow, accent top border === */
  .service-panel__inner {
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(60,64,67,0.08), 0 1px 3px rgba(60,64,67,0.06);
    overflow: hidden;
  }

  /* Blue accent for GMB */
  #panel-gmb .service-panel__inner {
    border-top: 4px solid var(--primary);
  }

  /* Green accent for Website */
  #panel-web .service-panel__inner {
    border-top: 4px solid var(--green);
  }

  /* Gold accent for Alles-in-1 */
  #panel-allin1 .service-panel__inner {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid #d4af37;
    border-radius: 16px;
  }

  #panel-allin1 .mobile-pricing__line {
    background: rgba(212, 175, 55, 0.2);
  }

  #panel-allin1 .mobile-pricing__label {
    color: rgba(255, 255, 255, 0.5);
  }

  #panel-allin1 .mobile-pricing__amount {
    color: #fff;
  }

  #panel-allin1 .mobile-pricing__old {
    color: rgba(255, 255, 255, 0.4);
  }

  #panel-allin1 .mobile-pricing__btw {
    color: rgba(255, 255, 255, 0.5);
  }

  #panel-allin1 .mobile-pricing__mollie {
    color: rgba(255, 255, 255, 0.4);
  }

  #panel-allin1 .mobile-pricing__methods span {
    color: rgba(255, 255, 255, 0.35);
  }

  .mobile-korting-badge--gold {
    background: #d4af37 !important;
    color: #0a0a0a !important;
  }

  /* Hide desktop pricing column on mobile */
  .service-panel__pricing {
    display: none !important;
  }

  /* Tighten description margin so spacing to underline is even */
  .service-panel__info > p.text-body {
    margin-bottom: 0 !important;
  }

  /* Show mobile pricing block */
  .mobile-pricing {
    display: block;
    margin-bottom: 24px;
  }

  .mobile-pricing__line {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
  }

  .mobile-pricing__label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--body);
    margin-bottom: 6px;
  }

  .mobile-pricing__amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1;
    display: block;
  }

  .mobile-pricing__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .mobile-pricing__old {
    justify-self: end;
    margin-right: 8px;
    font-size: 1rem;
    color: var(--body);
    text-decoration: line-through;
    opacity: 0.55;
    font-weight: 500;
  }

  .mobile-pricing__btw {
    font-size: 0.75rem;
    color: var(--body);
    margin-top: 4px;
  }

  .mobile-pricing__mollie {
    font-size: 0.6875rem;
    color: var(--body);
    margin-top: 12px;
  }

  .mobile-pricing__methods {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }

  .mobile-pricing__methods span {
    font-size: 0.6875rem;
    color: var(--body);
    opacity: 0.6;
  }

  /* Mobile korting badge for Website panel */
  .mobile-korting-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, #1e8e3e 0%, #34a853 50%, #5bb974 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: -28px -24px 24px -24px;
    padding: 10px 24px;
    border-radius: 0;
  }

  /* Smaller icon on mobile */
  .sp-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .sp-icon-mobile {
    width: 20px !important;
    height: 20px !important;
  }

  /* Title 2px smaller on mobile */
  .sp-title {
    font-size: calc(1.5rem - 2px) !important;
  }

  /* Card info padding */
  .service-panel__info {
    padding: 28px 24px;
    text-align: center;
  }

  /* Center icon + label row */
  .service-panel__info > .flex.items-center {
    justify-content: center;
  }

  /* Center title */
  .service-panel__info .sp-title {
    text-align: center;
  }

  /* Center bulletpoints (keep text left-aligned but center the block) */
  .service-panel__info > ul {
    display: inline-block;
    text-align: left;
  }

  /* Center mobile pricing content */
  .mobile-pricing {
    text-align: center;
  }


  .mobile-pricing__methods {
    justify-content: center;
  }

  /* Center korting badge text */
  .mobile-korting-badge {
    justify-content: center;
  }

  /* Mobile CTA at bottom of card */
  .mobile-pricing-cta {
    display: block;
    text-align: center;
    margin-top: 24px;
  }

  /* === Swipe indicator dots === */
  .swipe-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
  }

  .swipe-dot {
    display: block;
    height: 8px;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Inactive = wide streak, gray */
  .swipe-dot {
    width: 28px;
    background: var(--border);
  }

  /* Active = small circle, colored */
  .swipe-dot--active {
    width: 8px;
  }

  /* Blue circle (GMB active) */
  .swipe-dot--active[data-color="blue"] {
    background: var(--primary);
  }

  /* Green circle (Website active) */
  .swipe-dot--active[data-color="green"] {
    background: var(--green);
  }

  /* Purple circle (Alles-in-1 active) */
  .swipe-dot--active[data-color="purple"] {
    background: #d4af37;
  }
}


/* ============================
   Pricing
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card--featured {
  border-top-width: 1px;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 0 0 5px 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(26,115,232,0.3);
}

/* Featured pricing card glow */
.pricing-card--featured {
  border-top-width: 1px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(26,115,232,0.1);
}

/* ============================
   Features Grid
   ============================ */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--body);
}

/* ============================
   Feature Showcase (carousel wrapper)
   ============================ */
.feature-showcase {
  display: block;
  width: 100%;
}

/* ============================
   Dienst Blocks (Wat krijgt u precies)
   ============================ */
.dienst-block--alt {
  background: var(--surface);
}

/* Full-width hero image */
.dienst-hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: none;
}

@media (min-width: 768px) {
  .dienst-hero-image {
    display: block;
  }
}

.dienst-hero-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dienst-hero-image__placeholder {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0,0,0,0.08);
  border-radius: 16px;
}

@media (min-width: 768px) {
  .dienst-hero-image__placeholder {
    height: 400px;
  }
}

.dienst-hero-image__placeholder--blue {
  background: linear-gradient(145deg, #f0f6ff 0%, #e8f0fe 40%, #dce8fc 100%);
}

.dienst-hero-image__placeholder--green {
  background: linear-gradient(145deg, #f0faf3 0%, #e6f4ea 40%, #d4edda 100%);
}

.dienst-hero-image__upload-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--body);
  opacity: 0.6;
}

.dienst-hero-image__upload-hint span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Floating price badge */
.dienst-price-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 2;
}

.dienst-price-badge__old {
  font-size: 0.8125rem;
  color: var(--body);
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 500;
  line-height: 1;
}

.dienst-price-badge__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -0.02em;
}

.dienst-price-badge__label {
  font-size: 0.6875rem;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Korting badge */
.dienst-korting-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #1e8e3e 0%, #34a853 50%, #5bb974 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(30,142,62,0.35);
  z-index: 2;
}

/* Two-column layout below image */
.dienst-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .dienst-columns {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }
}

.dienst-col {
  min-width: 0;
}

/* Content area */
.dienst-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.dienst-badge--blue {
  background: var(--primary-light);
  color: var(--primary);
}

.dienst-badge--green {
  background: var(--green-light);
  color: var(--green);
}

.dienst-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .dienst-title {
    font-size: 2.25rem;
  }
}

.dienst-description {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.dienst-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
}

.dienst-read-more:hover {
  text-decoration: underline;
}

.dienst-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dienst-expandable.is-expanded {
  max-height: 300px;
}

/* ============================
   Feature Showcase (tabbed visual)
   ============================ */
/* Feature card (single carousel card) */
.feature-card {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  border-top: 3px solid var(--primary);
}

.dienst-block--alt .feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-top-color: var(--green);
}

/* Card header */
.feature-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.feature-card__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  line-height: 1;
}

.feature-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--heading);
}

.feature-card__icon--blue,
.feature-card__icon--green {
  color: var(--heading);
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  transition: opacity 0.2s ease;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.feature-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dienst-block:not(.dienst-block--alt) .feature-card__badge {
  background: rgba(26, 115, 232, 0.08);
  color: var(--primary);
}

.dienst-block--alt .feature-card__badge {
  background: rgba(30, 142, 62, 0.08);
  color: var(--green);
}

/* Nav area: counter + arrows */
.feature-card__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-card__counter {
  font-size: 0.75rem;
  color: var(--body);
  font-weight: 500;
  opacity: 0.6;
}

.feature-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--body);
  padding: 0;
  transition: color 0.2s ease;
}

.feature-card__arrow:hover {
  color: var(--primary);
}

.dienst-block--alt .feature-card__arrow:hover {
  color: var(--green);
}

/* Card body (scenes area) */
.feature-card__body {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* GMB card: same fixed height as website card (JS locks height) */

/* Description per scene */
.feature-card__desc {
  font-size: 0.8125rem;
  color: var(--body);
  line-height: 1.6;
  padding: 0 28px 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0;
  transition: opacity 0.25s ease;
  height: 4.2em;
  overflow: hidden;
}

/* Progress bar */
.feature-card__progress {
  height: 3px;
  background: var(--border);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.feature-card__progress-fill {
  height: 100%;
  width: 12.5%;
  border-radius: 0 0 16px 16px;
  transition: width 0.4s ease;
}

.dienst-block:not(.dienst-block--alt) .feature-card__progress-fill {
  background: var(--primary);
}

.dienst-block--alt .feature-card__progress-fill {
  background: var(--green);
}

/* Footer badge */
.feature-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--body);
  opacity: 0.7;
}

.feature-card__footer svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .feature-card__body {
    padding: 24px 16px;
    overflow: hidden;
  }
  .feature-card__desc {
    padding: 12px 16px 16px;
    font-size: 0.75rem;
  }
  .feature-card__header {
    padding: 16px;
  }
  .feature-card__footer {
    padding: 12px 16px;
  }
  .feature-card__badge {
    display: none;
  }
  .feature-card__nav {
    gap: 4px;
  }
}

.feature-preview__scene {
  display: none;
  width: 100%;
  animation: sceneFadeIn 0.35s ease;
}

.feature-preview__scene.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@keyframes sceneFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Mini Mockups ---- */

/* Shared mockup styles */
.mini-mockup {
  width: 100%;
  font-family: inherit;
}

/* Categories mockup */
.mock-categories {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mock-cat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
  padding: 4px 10px;
  background: var(--green-light);
  border-radius: 6px;
  border: 1px solid rgba(30,142,62,0.15);
  margin-bottom: 2px;
}

.mock-cat-status__pct {
  margin-left: auto;
  font-weight: 700;
}

.mock-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
}

.mock-cat-item--active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.mock-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.mock-cat-item--active .mock-cat-dot {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
}

.mock-cat-label {
  font-size: 0.8125rem;
  color: var(--heading);
  font-weight: 500;
}

.mock-cat-badge {
  margin-left: auto;
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.mock-cat-badge--primary {
  background: var(--primary-light);
  color: var(--primary);
}

.mock-cat-badge--secondary {
  background: var(--surface);
  color: var(--body);
}

/* SEO description mockup */
.mock-editor {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.mock-editor__bar {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.mock-editor__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-editor__body {
  padding: 14px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--body);
}

.mock-editor mark {
  background: rgba(26,115,232,0.15);
  color: var(--primary);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* Services mockup */
.mock-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.mock-service-card__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  background: var(--primary-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-service-card__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--heading);
}

.mock-service-card__price {
  font-size: 0.6875rem;
  color: var(--body);
  margin-top: 2px;
}

/* Hours mockup */
.mock-hours {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.mock-hours__row:nth-child(odd) {
  background: var(--surface);
}

.mock-hours__day {
  font-weight: 600;
  color: var(--heading);
}

.mock-hours__time {
  color: var(--body);
}

.mock-hours__row--today {
  background: var(--primary-light);
  border: 1px solid rgba(26,115,232,0.2);
}

.mock-hours__row--today .mock-hours__day {
  color: var(--primary);
}

.mock-hours__badge {
  font-size: 0.5625rem;
  background: var(--primary);
  color: #fff;
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 6px;
}

.mock-hours__row--closed .mock-hours__time {
  color: #ea4335;
  font-weight: 600;
}

.mock-hours__special {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  color: var(--body);
  padding: 5px 10px;
  margin-top: 2px;
  background: var(--surface);
  border-radius: 6px;
  border: 1px dashed var(--border);
}

/* Photos mockup */
.mock-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-photo {
  aspect-ratio: 1 / 0.7;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mock-photo--blue { background: linear-gradient(135deg, #e8f0fe, #d2e3fc); }
.mock-photo--light { background: linear-gradient(135deg, #f0f6ff, #e8f0fe); }

.mock-photo--hero {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.mock-photo__label {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 0.5625rem;
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--heading);
}

.mock-photos-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mock-photos__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.mock-photos__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mock-photos__stat-val {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading);
}

.mock-photos__stat-label {
  font-size: 0.5625rem;
  color: var(--body);
}

/* Reviews mockup */
.mock-reviews {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}

.mock-review__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.mock-review__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary);
}

.mock-review__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--heading);
}

.mock-review__stars {
  margin-left: auto;
  color: #f9ab00;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.mock-review__text {
  font-size: 0.6875rem;
  color: var(--body);
  line-height: 1.5;
}

.mock-review__reply {
  margin-top: 4px;
  padding: 6px 8px;
  background: var(--primary-light);
  border-radius: 6px;
  font-size: 0.625rem;
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

/* Review summary */
.mock-reviews__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.mock-reviews__avg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.mock-reviews__avg-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}

.mock-reviews__avg-stars {
  color: #f9ab00;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.mock-reviews__avg-count {
  font-size: 0.5625rem;
  color: var(--body);
}

.mock-reviews__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-reviews__bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--body);
}

.mock-reviews__bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
}

.mock-reviews__bar-fill {
  height: 100%;
  border-radius: 2px;
  background: #f9ab00;
}

/* Posts mockup */
.mock-post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.mock-post__image {
  height: 80px;
  background: linear-gradient(135deg, #e8f0fe, #d2e3fc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-post__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mock-post__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.mock-post__desc {
  font-size: 0.6875rem;
  color: var(--body);
  line-height: 1.5;
}

.mock-post__cta {
  display: inline-block;
  margin-top: auto;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 4px;
  max-width: 100px;
  text-align: center;
}

.mock-posts-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mock-posts__stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.mock-posts__stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  color: var(--body);
}

.mock-posts__stat svg {
  color: var(--primary);
}

/* Attributes mockup */
.mock-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-attr {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--heading);
}

.mock-attr__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-attr__check svg {
  width: 10px;
  height: 10px;
  color: #fff;
}

/* ---- Website mockups ---- */

/* Audit score */
.mock-audit {
  width: 100%;
}

.mock-audit__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  justify-items: center;
}

.mock-audit__gauge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0deg 324deg, var(--border) 324deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mock-audit__gauge-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mock-audit__score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.mock-audit__label {
  font-size: 0.5625rem;
  color: var(--body);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mock-audit__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.mock-audit__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--heading);
  padding: 6px 10px;
  line-height: 1;
}

.mock-audit__item + .mock-audit__item {
  border-top: 1px solid var(--border);
}

.mock-audit__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-audit__dot--pass { background: var(--green); }
.mock-audit__dot--warn { background: #f9ab00; }
.mock-audit__dot--fail { background: #ea4335; }

.mock-audit__barchart {
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: end;
  gap: 6px;
  height: 100px;
  width: 100%;
  max-width: 160px;
}

.mock-audit__vbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 30px;
}

.mock-audit__vbar-track {
  flex: 1;
  width: 22px;
  display: flex;
  align-items: flex-end;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.mock-audit__vbar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height 0.8s ease;
}

.mock-audit__vbar-val {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}

.mock-audit__vbar-label {
  font-size: 0.5rem;
  color: var(--body);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.mock-audit__scores {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.mock-audit__score-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--heading);
  padding: 6px 10px;
  line-height: 1;
}

.mock-audit__score-row + .mock-audit__score-row {
  border-top: 1px solid var(--border);
}

.mock-audit__score-label {
  flex: 1;
  color: var(--body);
  line-height: 1;
}

.mock-audit__score-val {
  font-weight: 700;
  color: var(--heading);
  min-width: 20px;
  text-align: right;
  line-height: 1;
}

.mock-audit__score-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  flex-shrink: 0;
}

/* Speed bars */
.mock-speed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.mock-speed__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-speed__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.mock-speed__name {
  font-weight: 600;
  color: var(--heading);
}

.mock-speed__value {
  font-weight: 700;
}

.mock-speed__value--good { color: var(--green); }
.mock-speed__value--ok { color: #f9ab00; }

.mock-speed__bar {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden;
}

.mock-speed__fill {
  height: 100%;
  border-radius: 4px;
  animation: barFill 1s ease forwards;
  transform-origin: left;
}

.mock-speed__fill--good { background: var(--green); }
.mock-speed__fill--ok { background: #f9ab00; }
.mock-speed__fill--fail { background: #ea4335; }
.mock-speed__value--fail { color: #ea4335; }

/* Before/after comparison layout */
.mock-speed-compare {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.mock-speed-compare__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-speed-compare__header {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 4px 0;
  border-radius: 4px;
}

.mock-speed-compare__header--before {
  color: #ea4335;
  background: rgba(234,67,53,0.08);
}

.mock-speed-compare__header--after {
  color: var(--green);
  background: var(--green-light);
}

.mock-speed-compare__arrow {
  color: var(--body);
  flex-shrink: 0;
  margin-top: 20px;
}

@keyframes barFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Google snippet mockup */
.mock-snippet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  width: 100%;
}

.mock-snippet__url {
  font-size: 0.6875rem;
  color: var(--body);
  margin-bottom: 4px;
}

.mock-snippet__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 4px;
  line-height: 1.3;
}

.mock-snippet__desc {
  font-size: 0.75rem;
  color: var(--body);
  line-height: 1.5;
}

.mock-snippet mark {
  background: none;
  font-weight: 700;
  color: var(--heading);
}

/* Code mockup */
.mock-code {
  background: #1e1e2e;
  border-radius: 10px;
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', monospace;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.mock-code__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
}

.mock-code__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-code__body {
  padding: 14px;
  font-size: 0.6875rem;
  line-height: 1.8;
  color: #cdd6f4;
  flex: 1;
}

.mock-code .hl-tag { color: #f38ba8; }
.mock-code .hl-attr { color: #a6e3a1; }
.mock-code .hl-val { color: #f9e2af; }

/* Typing cursor */
.mock-code__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #89b4fa;
  vertical-align: text-bottom;
  animation: code-blink 0.8s step-end infinite;
  margin-left: 1px;
}

@keyframes code-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Compression mockup */
.mock-compress {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.mock-compress__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.mock-compress__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-compress__icon--before {
  background: #fce8e6;
  color: #ea4335;
}

.mock-compress__icon--after {
  background: var(--green-light);
  color: var(--green);
}

.mock-compress__size {
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading);
}

.mock-compress__label {
  font-size: 0.625rem;
  color: var(--body);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mock-compress__arrow {
  color: var(--green);
  animation: arrowPulse 1.5s ease infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(4px); }
}

/* Mobile mockup */
.mock-mobile {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: flex-end;
}

.mock-device {
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.mock-device--phone {
  width: 80px;
  height: 150px;
}

.mock-device--tablet {
  width: 130px;
  height: 110px;
}

.mock-device--desktop {
  width: 170px;
  height: 120px;
}

/* Mobile: hide tablet, only show phone + desktop */
@media (max-width: 767px) {
  .mock-device--tablet {
    display: none;
  }
  .mock-device--phone {
    width: 70px;
    height: 130px;
  }
  .mock-device--desktop {
    width: 140px;
    height: 100px;
  }
  .mock-mobile {
    gap: 16px;
  }
}

.mock-device__notch {
  width: 30px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 6px auto 0;
}

.mock-device__screen {
  margin: 4px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--green-light) 0%, #fff 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mock-device__check {
  color: var(--green);
}

.mock-device__label {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
}

/* Report mockup */
.mock-report {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mock-report__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading);
}

.mock-report__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
}

.mock-report__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  animation: barGrow 0.8s ease forwards;
  transform-origin: bottom;
}

.mock-report__bar--1 { height: 40%; background: rgba(30,142,62,0.2); animation-delay: 0.1s; }
.mock-report__bar--2 { height: 55%; background: rgba(30,142,62,0.35); animation-delay: 0.2s; }
.mock-report__bar--3 { height: 45%; background: rgba(30,142,62,0.25); animation-delay: 0.3s; }
.mock-report__bar--4 { height: 70%; background: rgba(30,142,62,0.5); animation-delay: 0.4s; }
.mock-report__bar--5 { height: 85%; background: rgba(30,142,62,0.7); animation-delay: 0.5s; }
.mock-report__bar--6 { height: 100%; background: var(--green); animation-delay: 0.6s; }

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.mock-report__legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--body);
}

/* Sitemap mockup */
.mock-sitemap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-sitemap__row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--surface);
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.6875rem;
  color: var(--heading);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.mock-sitemap__row--indent {
  margin-left: 20px;
}

.mock-sitemap__icon {
  color: var(--green);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Editor meta bar (gmb-2) ---- */
.mock-editor__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  color: var(--body);
}

.mock-editor__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-editor__meta-item--pass {
  color: var(--green);
  font-weight: 600;
}

/* ---- Posts grid (gmb-7) ---- */
.mock-posts-grid {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

@media (max-width: 767px) {
  .mock-posts-grid .mock-post {
    height: 190px;
  }
  .mock-posts-grid .mock-post__desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.mock-posts-grid .mock-post {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.mock-posts-grid .mock-post__image {
  height: 86px;
  flex-shrink: 0;
}

.mock-post__image--green {
  background: linear-gradient(135deg, #e6f4ea, #ceead6);
}

/* Snippets wrapper — multiple snippet cards stacked */
.mock-snippets-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* ---- Snippet sitelinks (web-3) ---- */
.mock-snippet__sitelinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.mock-snippet__link {
  font-size: 0.6875rem;
  color: #1a0dab;
  font-weight: 500;
  padding: 4px 0;
  cursor: default;
}

/* ---- Compress stats (web-6) ---- */
.mock-compress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mock-compress__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mock-compress__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mock-compress__stat-value {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--heading);
}

.mock-compress__stat-value--green {
  color: var(--green);
}

.mock-compress__stat-label {
  font-size: 0.625rem;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Mobile: compact card scenes ---- */
@media (max-width: 767px) {
  /* Global: slightly larger text in mockups for readability */
  .mini-mockup {
    font-size: 0.8125rem;
  }

  /* Audit: compact on mobile */
  .mock-audit__columns {
    gap: 10px;
  }
  .mock-audit__gauge {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  .mock-audit__gauge-inner {
    width: 60px;
    height: 60px;
  }
  .mock-audit__score {
    font-size: 1rem;
  }
  .mock-audit__barchart {
    height: 70px;
    gap: 5px;
    max-width: 130px;
  }
  .mock-audit__vbar-track {
    max-width: 20px;
  }
  .mock-audit__vbar-label {
    font-size: 0.4375rem;
  }
  .mock-audit__score-row {
    font-size: 0.625rem;
  }
  .mock-audit__items {
    gap: 4px;
  }
  .mock-audit__item {
    font-size: 0.6875rem;
  }

  /* Core Web Vitals: keep side-by-side but compact */
  .mock-speed-compare {
    gap: 8px;
  }
  .mock-speed-compare__arrow {
    margin-top: 16px;
  }
  .mock-speed-compare__arrow svg {
    width: 16px;
    height: 16px;
  }
  .mock-speed-compare__col {
    gap: 6px;
  }
  .mock-speed-compare__header {
    font-size: 0.5625rem;
    padding: 3px 0;
  }
  .mock-speed__metric {
    gap: 2px;
  }
  .mock-speed__header {
    font-size: 0.6875rem;
  }
  .mock-speed__bar {
    height: 4px;
  }

  /* Compression: keep side-by-side but smaller */
  .mock-compress {
    gap: 10px;
  }
  .mock-compress__file {
    padding: 10px 14px;
  }
  .mock-compress__icon {
    width: 28px;
    height: 28px;
  }
  .mock-compress__size {
    font-size: 0.875rem;
  }
  .mock-compress__stats {
    gap: 16px;
  }
  .mock-compress__stat-value {
    font-size: 0.8125rem;
  }

  /* Services: 2 columns on mobile */
  .mock-services {
    grid-template-columns: 1fr 1fr;
  }
  .mock-service-card {
    padding: 10px 8px;
  }
  .mock-service-card__name {
    font-size: 0.75rem;
  }

  /* Categories: tighter spacing */
  .mock-categories {
    gap: 6px;
  }
  .mock-cat-item {
    padding: 8px 12px;
  }
  .mock-cat-label {
    font-size: 0.75rem;
  }
  .mock-cat-status {
    padding: 6px 10px;
    font-size: 0.625rem;
  }

  /* Hours: tighter rows */
  .mock-hours {
    gap: 4px;
  }
  .mock-hours__row {
    padding: 5px 10px;
    font-size: 0.6875rem;
  }
  .mock-hours__special {
    font-size: 0.625rem;
    padding: 6px 10px;
  }

  /* Reviews summary: keep side-by-side but compact */
  .mock-reviews__summary {
    padding: 10px;
    gap: 12px;
  }
  .mock-reviews__avg-num {
    font-size: 1.25rem;
  }
  .mock-review {
    padding: 10px;
  }
  .mock-reviews {
    gap: 8px;
  }

  /* Photos */
  .mock-photos-wrap {
    height: 100%;
  }
  .mock-photo {
    aspect-ratio: 1 / 0.95;
  }
  .mock-photos__stats {
    gap: 16px;
    margin-top: auto;
    padding: 12px 0 0;
  }
  .mock-photos__stat-val {
    font-size: 0.75rem;
  }

  /* Posts */
  .mock-post__image {
    height: 48px;
  }
  .mock-post__body {
    padding: 10px;
  }
  .mock-post__title {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }
  .mock-post__desc {
    font-size: 0.625rem;
  }
  .mock-posts__stats {
    gap: 10px;
  }
  .mock-posts__stat {
    font-size: 0.625rem;
  }

  /* Snippets */
  .mock-snippet {
    padding: 12px;
  }
  .mock-snippet__title {
    font-size: 0.8125rem;
  }
  .mock-snippet__desc {
    font-size: 0.6875rem;
  }

  /* Editor */
  .mock-editor__body {
    font-size: 0.6875rem;
    padding: 12px;
  }

  /* Attributes: tighter pills */
  .mock-attr {
    padding: 6px 10px;
    font-size: 0.6875rem;
    gap: 5px;
  }
  .mock-attr__check {
    width: 14px;
    height: 14px;
  }
  .mock-attr__check svg {
    width: 8px;
    height: 8px;
  }

  /* Sitemap */
  .mock-sitemap {
    gap: 5px;
  }
  .mock-sitemap__row {
    font-size: 0.75rem;
  }

  /* Code */
  .mock-code__body {
    font-size: 0.6875rem;
  }

  /* Report bars */
  .mock-report__bars {
    height: 120px;
  }
}

/* ---- Mobile responsive wrap (web-7) ---- */
.mock-mobile-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mock-mobile__score {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mock-mobile__score-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.mock-mobile__score-fill {
  width: 100%;
  height: 100%;
  background: var(--green);
  border-radius: 3px;
}

.mock-mobile__score-label {
  font-size: 0.6875rem;
  color: var(--body);
}

.mock-mobile__score-label strong {
  color: var(--green);
  font-weight: 700;
}

/* Benefit highlight box */
.dienst-highlight {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.dienst-block--alt .dienst-highlight {
  background: #fff;
}

.dienst-highlight__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.dienst-highlight__title--blue {
  color: var(--primary);
}

.dienst-highlight__title--green {
  color: var(--green);
}

/* CTA area */
.dienst-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dienst-cta__button {
  width: 100%;
  text-align: center;
  padding: 14px 36px;
  font-size: 1rem;
}

/* Green CTA for Website block */
.dienst-block--alt .dienst-cta__button {
  background: linear-gradient(135deg, #1e8e3e 0%, #34a853 50%, #5bb974 100%);
}

.dienst-block--alt .dienst-cta__button:hover {
  box-shadow: 0 4px 16px rgba(30,142,62,0.4);
}

.dienst-cta__payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dienst-cta__payment-label {
  font-size: 0.75rem;
  color: var(--body);
}

.dienst-cta__payment-methods {
  display: flex;
  gap: 12px;
}

.dienst-cta__payment-methods span {
  font-size: 0.6875rem;
  color: var(--body);
  opacity: 0.6;
}

/* ============================
   Stats Bar (horizontal strip)
   ============================ */
.stats-bar {
  background: #f8f9fa;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stats-bar__item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  flex: 1;
}

.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: #dadce0;
}

.stats-bar__value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stats-bar__symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
  .stats-bar__symbol {
    font-size: 1.875rem;
  }
}

.stats-bar__label {
  font-size: 0.7rem;
  color: var(--body);
  opacity: 0.65;
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .stats-bar__item + .stats-bar__item::before {
    display: none;
  }
  .stats-bar__item:nth-child(odd) {
    border-right: 1px solid #dadce0;
  }
}

/* ============================
   Review Cards (photo-first design)
   ============================ */
/* Review column: wraps photo card + content card */
/* Review carousel */
.review-carousel {
  overflow: hidden;
  margin-top: 48px;
}

.review-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.review-carousel__track::-webkit-scrollbar {
  display: none;
}

.review-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

@media (max-width: 1023px) {
  .review-column {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 639px) {
  .review-column {
    min-width: calc(100% - 32px);
  }
}

/* Dot indicators */
.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dot {
  display: block;
  width: 28px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.review-dot--active {
  width: 8px;
  background: var(--primary);
}

/* Photo card — standalone card with just the image */
.review-photo-card {
  background: transparent;
  border: 1px solid #1a73e8;
  border-radius: 5px;
  padding: 0;
  height: 225px;
  flex-shrink: 0;
}

.review-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content card — standalone card with the review text */
.review-content-card {
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 8px;
}

.review-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
  line-height: 1.3;
}

.review-card__text {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.6;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
}

.review-card__company {
  font-size: 0.75rem;
  color: var(--body);
  margin-top: 1px;
}

.review-card__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  color: #9aa0a6;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.review-card__link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.review-card__link svg {
  width: 16px;
  height: 16px;
}

/* Reviews CTA area */
.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

/* ============================
   FAQ Accordion
   ============================ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  border-left: 1px solid var(--border);
  transition: border-left-color 0.2s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-left-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
  gap: 12px;
}

.faq-question:hover {
  background: var(--surface);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius-card);
}

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

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.6;
}

/* ============================
   Form Select
   ============================ */
.form-select {
  width: 100%;
  padding: 14px;
  padding-right: 36px;
  font-size: 1rem;
  color: var(--heading);
  background-color: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.form-select:focus {
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group.has-error .form-select {
  border-color: #d93025;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: #0a0a0a;
  padding: 64px 0 40px;
}

/* Top: brand + CTA */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-logo-img {
  height: 56px;
  width: auto;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.footer-cta {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.footer-cta:hover {
  background: #e8e8e8;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 40px 0;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-heading {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer-bottom__line {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.1);
}

/* ============================
   Material Design Form Inputs
   ============================ */

/* Intake grid */
.intake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

@media (min-width: 768px) {
  .intake-grid {
    grid-template-columns: 1fr 0.35fr;
    gap: 32px;
    align-items: stretch;
  }
}

.intake-grid > * {
  min-width: 0;
}

/* ============================
   Intake Sidebar (contact + FAQ) — dark panel
   ============================ */
.intake-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

/* Contact header */
.intake-sidebar__contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.intake-sidebar__swipe-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}

.intake-sidebar__swipe-hint svg {
  opacity: 0.5;
}

/* Contact strip — pill buttons on dark */
.intake-sidebar__contact {
  padding: 10px 20px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.intake-sidebar__contact::-webkit-scrollbar {
  display: none;
}

.intake-sidebar__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.intake-sidebar__contact-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.intake-sidebar__contact-item svg {
  color: #fff;
  flex-shrink: 0;
  opacity: 0.5;
}

/* FAQ section */
.intake-sidebar__faq {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intake-sidebar__faq-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.sidebar-faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.sidebar-faq-q:hover {
  color: #fff;
}

.sidebar-faq-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: rgba(255,255,255,0.3);
}

.sidebar-faq-q[aria-expanded="true"] .sidebar-faq-chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.6);
}

.sidebar-faq-a {
  display: none;
  padding: 0 0 12px;
}

.sidebar-faq-a[aria-hidden="false"] {
  display: block;
}

.sidebar-faq-a p {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 767px) {
  .intake-sidebar {
    order: 2;
    margin-top: 20px;
  }
}

/* Fix fieldset min-width so date/time pickers can scroll */
fieldset {
  min-width: 0;
}

/* Section underline */
.section-underline {
  width: 48px;
  height: 3px;
  border-radius: 0;
  background: var(--primary);
}

/* Full-width card wrapper */
.intake-card {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 32px 24px;
}

@media (min-width: 640px) {
  .intake-card {
    padding: 40px 36px;
  }
}

/* Form — sits directly on gray wrapper */
.intake-form {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Inputs and dropdown white on gray */
.intake-form .form-input,
.intake-form .custom-select__trigger {
  background: #fff;
}

/* Form row — 2 columns on sm+ */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Base form group */
.form-group {
  position: relative;
  padding-top: 4px;
  padding-bottom: 20px;
}

/* Standard label (non-floating — used by select, fieldset legends) */
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--body);
  margin-bottom: 6px;
}

/* Base form input — outlined style */
.form-input {
  width: 100%;
  padding: 14px;
  font-size: 0.875rem;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-input::placeholder {
  color: transparent;
}

.form-input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* ---- Floating label group ---- */
.form-group--float {
  padding-top: 0;
  padding-bottom: 20px;
}

.form-group--float .form-input {
  padding: 18px 14px 6px;
  height: 48px;
}

.form-group--float .form-label {
  position: absolute;
  left: 15px;
  top: 24px;
  transform: translateY(-50%);
  font-size: 0.8125rem;
  font-weight: 400;
  color: #9aa0a6;
  pointer-events: none;
  transition: top 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              font-size 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              font-weight 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
  margin: 0;
  line-height: 1;
}

/* Float up on focus or when filled */
.form-group--float .form-input:focus + .form-label,
.form-group--float .form-input:not(:placeholder-shown) + .form-label {
  top: 6px;
  transform: translateY(0);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary);
}

/* Filled but not focused — muted label */
.form-group--float .form-input:not(:placeholder-shown):not(:focus) + .form-label {
  color: var(--body);
}

/* ---- Custom Select (dienst dropdown) ---- */
.form-group--select {
  position: relative;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  padding: 18px 40px 6px 14px;
  font-size: 1rem;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
}

.custom-select__trigger:focus,
.form-group--select.is-open .custom-select__trigger {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.custom-select__text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--heading);
  font-size: 0.8125rem;
}

.custom-select__text:empty {
  display: block;
}

.custom-select__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.form-group--select.is-open .custom-select__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(60, 64, 67, 0.12), 0 2px 8px rgba(60, 64, 67, 0.06);
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-group--select.is-open .custom-select__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  gap: 12px;
}

.custom-select__option:not(:last-child) {
  border-bottom: 1px solid #f1f3f4;
}

.custom-select__option:hover {
  background: #f8f9fa;
}

.custom-select__option.is-selected {
  background: rgba(26, 115, 232, 0.06);
}

.custom-select__option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.custom-select__option-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading);
}

.custom-select__option-desc {
  font-size: 0.75rem;
  color: var(--body);
}

.custom-select__option-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

/* Select label — centered by default, floats on open/selected */
.form-group--select .form-label {
  left: 15px;
  top: 24px;
  transform: translateY(-50%);
  font-size: 0.8125rem;
  font-weight: 400;
  color: #9aa0a6;
}

.form-group--select.is-open .form-label,
.form-group--select.has-value .form-label {
  top: 6px;
  transform: translateY(0);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary);
}

.form-group--select.has-value:not(.is-open) .form-label {
  color: var(--body);
}

.form-group--select.has-error .form-label {
  color: #d93025;
}

.form-group--select.has-error .custom-select__trigger {
  border-color: #d93025;
}

/* ---- KVK Search ---- */
.kvk-status {
  position: absolute;
  right: 12px;
  top: 22px;
  transform: translateY(-50%);
  display: none;
}

.kvk-status .kvk-spinner,
.kvk-status .kvk-check {
  display: none;
}

#kvk-group.is-loading .kvk-status {
  display: block;
}
#kvk-group.is-loading .kvk-status .kvk-spinner {
  display: block;
  animation: kvk-spin 0.8s linear infinite;
}

#kvk-group.is-found .kvk-status {
  display: block;
}
#kvk-group.is-found .kvk-status .kvk-check {
  display: block;
}
#kvk-group.is-found .form-input {
  border-color: #1e8e3e;
  background: rgba(30, 142, 62, 0.04);
}

@keyframes kvk-spin {
  to { transform: rotate(360deg); }
}

/* KVK names dropdown (bedrijfsnaam autocomplete) */
.kvk-names-dropdown {
  position: absolute;
  top: calc(100% - 18px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(60, 64, 67, 0.12), 0 2px 8px rgba(60, 64, 67, 0.06);
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: none;
}

.kvk-names-dropdown.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.kvk-names-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  gap: 8px;
}

.kvk-names-dropdown__item:not(:last-child) {
  border-bottom: 1px solid #f1f3f4;
}

.kvk-names-dropdown__item:hover {
  background: #f8f9fa;
}

.kvk-names-dropdown__item.is-selected {
  background: rgba(26, 115, 232, 0.06);
}

.kvk-names-dropdown__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading);
}

.kvk-names-dropdown__type {
  font-size: 0.75rem;
  color: var(--body);
  white-space: nowrap;
}

/* When bedrijfsnaam is in dropdown mode */
#bedrijf-group.is-dropdown .form-input {
  cursor: pointer;
  caret-color: transparent;
}

#bedrijf-group.is-dropdown .form-input::after {
  content: '';
}

/* Tooltip trigger inside float group */
.tooltip-trigger--field {
  position: absolute;
  right: 12px;
  top: 20px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--body);
  z-index: 1;
  line-height: 1;
}

.tooltip-trigger--field:hover {
  color: var(--primary);
}

/* ---- Error states ---- */
.form-group.has-error .form-input {
  border-color: #d93025;
}

.form-group.has-error .form-label {
  color: #d93025;
}

/* Error on floating label — override focus/filled blue */
.form-group--float.has-error .form-input:focus + .form-label,
.form-group--float.has-error .form-input:not(:placeholder-shown) + .form-label,
.form-group--float.has-error .form-select + .form-label,
.form-group--float.has-error .form-select:focus + .form-label {
  color: #d93025;
}

.form-error {
  display: none;
  position: absolute;
  bottom: 2px;
  left: 0;
  font-size: 0.75rem;
  color: #d93025;
  line-height: 1.2;
}

.form-group--float .form-error {
  left: 14px;
  bottom: 4px;
}

.form-group.has-error .form-error {
  display: block;
}

/* ============================
   Tooltip
   ============================ */
.tooltip-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
}

.tooltip-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 50%;
}

.tooltip-card {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.tooltip-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================
   Date Picker Chips
   ============================ */
.date-picker-container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.date-picker-container::-webkit-scrollbar {
  display: none;
}

.date-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  scroll-snap-align: start;
  min-width: 64px;
  user-select: none;
  -webkit-user-select: none;
}

.date-chip:hover {
  border-color: var(--primary);
  background: #e8f0fe;
}

.date-chip:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.date-chip.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.date-chip__day {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.date-chip.is-selected .date-chip__day {
  opacity: 1;
}

.date-chip__date {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}

.date-chip__month {
  font-size: 0.625rem;
  opacity: 0.7;
}

.date-chip.is-selected .date-chip__month {
  opacity: 1;
}

/* Swipe hint */
.date-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #9aa0a6;
}

.date-swipe-hint svg {
  animation: nudge-right 1.5s ease-in-out infinite;
}

@keyframes nudge-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

/* ============================
   Time Picker Slots
   ============================ */
.time-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 6px;
}

.time-slot {
  padding: 8px 6px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--heading);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

/* Collapsed state: show only 2 rows */
.time-picker-grid--collapsed {
  max-height: 82px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.time-picker-grid--expanded {
  max-height: 500px;
  transition: max-height 0.3s ease;
}

.time-picker-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: none;
  border: 1px dashed var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.time-picker-toggle:hover {
  background: rgba(26, 115, 232, 0.04);
  border-color: var(--primary);
}
.time-picker-toggle svg {
  transition: transform 0.3s ease;
}
.time-picker-toggle.is-expanded svg {
  transform: rotate(180deg);
}

.time-slot:hover {
  border-color: var(--primary);
  background: #e8f0fe;
  color: var(--primary);
}

.time-slot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.time-slot.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* ============================
   Time picker reveal animation
   ============================ */
#time-picker-section {
  overflow: hidden;
}

#time-picker-section.is-visible {
  display: block;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Modal
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s ease;
}

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

/* ============================
   Animated Checkmark
   ============================ */
.checkmark-container {
  display: flex;
  justify-content: center;
}

.checkmark-svg {
  width: 64px;
  height: 64px;
}

.checkmark-circle {
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  stroke-linecap: round;
}

.checkmark-check {
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.modal-overlay.is-open .checkmark-circle {
  animation: circleAnim 0.5s ease 0.2s forwards;
}

.modal-overlay.is-open .checkmark-check {
  animation: checkAnim 0.35s ease 0.55s forwards;
}

@keyframes circleAnim {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkAnim {
  to {
    stroke-dashoffset: 0;
  }
}

/* ============================
   Trust Bar Pills
   ============================ */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.8125rem;
  color: var(--body);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Dark variant for video/dark backgrounds */
.trust-pill--dark {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* ============================
   Section Image (for public/images)
   ============================ */
.section-image {
  width: 100%;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================
   GMB Mockup Enhancement
   ============================ */
.gmb-mockup {
  position: relative;
}

.gmb-mockup::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(26,115,232,0.15), rgba(30,142,62,0.1));
  z-index: -1;
}

/* ============================
   Colored icon circles
   ============================ */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-circle--blue {
  background: var(--primary-light);
}

.icon-circle--green {
  background: var(--green-light);
}

.icon-circle--red {
  background: #fce8e6;
}

.icon-circle--orange {
  background: #fef7e0;
}

.icon-circle--yellow {
  background: #fef7e0;
}

/* ============================
   Reduced Motion
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .modal-overlay.is-open .checkmark-circle,
  .modal-overlay.is-open .checkmark-check {
    stroke-dashoffset: 0;
  }

  .faq-answer {
    transition: none;
  }

  .stat-number {
    /* Skip counter animation */
  }
}

/* ============================
   Responsive helpers
   ============================ */
@media (max-width: 640px) {
  .tooltip-card {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 5px 5px 0 0;
    transform: translateY(8px);
  }

  .tooltip-card.is-visible {
    transform: translateY(0);
  }

  .time-picker-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================
   Sticky CTA Bar (desktop + mobile)
   ============================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  pointer-events: none;
  will-change: transform, opacity;
  padding: 0 12px;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 12px;
  padding: 12px 12px 12px 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.sticky-cta.is-visible .sticky-cta__inner {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.sticky-cta__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.sticky-cta__sub {
  font-size: 0.6875rem;
  color: var(--body);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(26, 115, 232, 0.35);
}

.sticky-cta__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.sticky-cta__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sticky-cta__btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(26, 115, 232, 0.45);
}

.sticky-cta__btn:hover::after {
  opacity: 1;
}

.sticky-cta__btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.sticky-cta.is-visible .sticky-cta__btn {
  animation: cta-glow 2s ease-in-out infinite;
}

.sticky-cta__btn:hover {
  animation: none !important;
}

@keyframes cta-glow {
  0%, 100% {
    box-shadow:
      0 2px 12px rgba(26, 115, 232, 0.35),
      0 0 0 0 rgba(26, 115, 232, 0.4);
  }
  50% {
    box-shadow:
      0 2px 12px rgba(26, 115, 232, 0.35),
      0 0 20px 8px rgba(26, 115, 232, 0.25);
  }
}

/* Mobile: safe area + full-width feel */
@media (max-width: 767px) {
  .sticky-cta {
    padding: 0 24px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .sticky-cta__inner {
    max-width: 360px;
    margin: 0 auto 10px;
    padding: 10px 10px 10px 24px;
  }
  .sticky-cta__label {
    font-size: 0.75rem;
  }
  .sticky-cta__sub {
    font-size: 0.625rem;
  }
  .sticky-cta__btn {
    padding: 9px 20px;
    font-size: 0.75rem;
  }
}

/* Desktop: centered pill */
@media (min-width: 768px) {
  .sticky-cta {
    padding: 0 16px;
  }
  .sticky-cta__inner {
    max-width: 460px;
    margin-bottom: 20px;
    padding: 14px 14px 14px 24px;
  }
  .sticky-cta.is-visible .sticky-cta__inner:hover {
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(0, 0, 0, 0.06);
  }
}
