/* =====================================================
   CANINE CAR CARE — REDESIGN
   ===================================================== */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --green-900: #0d4a1a;
  --green-800: #115e21;
  --green-700: #1a7a2e;
  --green-600: #22963a;
  --green-500: #2db84a;
  --green-100: #e8f8ec;
  --green-50:  #f0fdf4;

  --gold-600:  #c49a00;
  --gold-500:  #e0b000;
  --gold-400:  #f5c800;
  --gold-300:  #ffd740;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white:    #ffffff;

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

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.20);

  --transition: .22s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  padding: .65em 1.5em;
  white-space: nowrap;
  line-height: 1.2;
}

.btn--lg { font-size: 1.05rem; padding: .8em 2em; border-radius: var(--radius-md); }

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn--primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold-400);
  color: var(--gray-900);
  border-color: var(--gold-400);
}
.btn--gold:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,0,.35);
}

/* ---- Pulse animation (gold glow) ---- */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0   rgba(245,200,0,.70); }
  60%  { box-shadow: 0 0 0 14px rgba(245,200,0,.00); }
  100% { box-shadow: 0 0 0 0   rgba(245,200,0,.00); }
}
.btn--pulse {
  animation: ctaPulse 2s ease-out infinite;
}
.btn--pulse:hover {
  animation: none;  /* pause on hover so the lift effect reads cleanly */
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- SECTION HEADERS ---- */
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__header h2 em {
  color: var(--green-700);
  font-style: normal;
}
.section__header--light h2 { color: var(--white); }

.section__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: .3em .9em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section__tag--light {
  color: var(--gold-400);
  background: rgba(245,200,0,.12);
  border-color: rgba(245,200,0,.25);
}

.section__lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}
.section__lead--light {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.section__cta {
  text-align: center;
  margin-top: 56px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 20px;
  background: transparent;
  transition: padding var(--transition);
}

/* The floating pill card */
.navbar__pill {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 4px 32px rgba(0,0,0,.18), 0 1px 6px rgba(0,0,0,.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled .navbar__pill {
  box-shadow: 0 6px 40px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.10);
}

/* Inner row: just flex layout, no background */
.navbar__inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 12px 0 18px;
}

/* Tighten pill padding when scrolled */
.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-mark--sm { width: 36px; height: 36px; }
.logo-text {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.3;
}
.logo-text strong {
  font-size: 1rem;
  font-weight: 900;
  color: var(--green-700);
  display: block;
}

.navbar__logo-img,
.navbar__logo picture,
.navbar__logo picture img {
  height: 52px;
  width: auto;
  display: block;
}
.footer__logo-img,
.footer__brand picture,
.footer__brand picture img {
  height: 64px;
  width: auto;
  display: block;
}

/* Typewriter tagline in navbar */
.navbar__typewriter {
  flex: 1;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600, #4b5563);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 12px;
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .45em .8em;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar__links a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.nav-sep {
  color: var(--gray-300);
  font-weight: 400;
  font-size: .9rem;
  user-select: none;
}

/* ---- NAV DROPDOWN ---- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown__toggle {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .45em .8em;
  border-radius: 999px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.nav-dropdown__toggle:hover {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-dropdown__caret {
  display: inline-block;
  width: 10px;
  height: 6px;
  transition: transform var(--transition);
}
.nav-dropdown__caret path { fill: currentColor; }
.nav-dropdown.open .nav-dropdown__caret {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 200px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .45em .7em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown__menu a:hover {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-dropdown__menu-label {
  grid-column: 1 / -1;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  padding: .3em .7em .1em;
}
/* Mobile: dropdown becomes a flat list inside mobile menu */
.mobile-menu .nav-dropdown-mobile-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  padding: 10px 0 4px;
  border-bottom: none;
}
.mobile-menu .nav-dropdown-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 4px;
}
.mobile-menu .nav-dropdown-mobile-grid a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .4em .5em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border-bottom: none;
  transition: color var(--transition), background var(--transition);
}
.mobile-menu .nav-dropdown-mobile-grid a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.navbar__cta {
  margin-left: 14px;
  font-size: .9rem;
  border-radius: 999px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  /* Hidden on all screen sizes by default */
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    margin: 8px 0 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .4s ease;
  }
  .mobile-menu.open {
    max-height: 520px;
    padding: 16px 20px 20px;
  }
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: .6em 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green-700); }
.mobile-menu .btn { margin-top: 12px; width: 100%; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 60%, #1e8f36 100%);
  padding-top: 0; /* floating navbar overlaps hero from top */
}

/* Subtle animated blob background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(245,200,0,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Paw print pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgba(255,255,255,0.03)' fill-rule='evenodd'%3E%3Ccircle cx='9' cy='9' r='4'/%3E%3Ccircle cx='21' cy='5' r='2.5'/%3E%3Ccircle cx='5' cy='21' r='2.5'/%3E%3Cpath d='M12 18 Q15 24 18 18 Q21 12 15 14 Q9 12 12 18z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}

/* ---- Hero video background ---- */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* The YouTube iframe gets injected inside #heroYTPlayer */
.hero__video-wrap iframe,
#heroYTPlayer iframe,
#heroYTPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Oversize to cover all aspect ratios */
  width: 177.78vh;  /* 16/9 * 100vh */
  height: 56.25vw;  /* 9/16 * 100vw */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Dark green tint so text stays readable over any video frame */
  background: linear-gradient(
    to bottom,
    rgba(10, 40, 15, 0.72) 0%,
    rgba(10, 40, 15, 0.55) 50%,
    rgba(10, 40, 15, 0.75) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 820px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .4em 1.1em;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInDown .6s ease both;
}
.badge__stars { color: var(--gold-400); letter-spacing: 2px; }

.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp .6s .1s ease both;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp .6s .2s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp .6s .3s ease both;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--gray-900);
  border-bottom: 3px solid var(--gold-400);
  overflow: hidden;
  padding: 16px 0;
}

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

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-bar__track:hover { animation-play-state: paused; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  padding: 0 28px;
}
.trust-sep {
  color: var(--gold-400);
  font-size: .7rem;
  flex-shrink: 0;
}

/* =====================================================
   WHY US
   ===================================================== */
/* =====================================================
   BENEFITS OF MOBILE DETAILING
   ===================================================== */
.mob-benefits { background: var(--white); }

.mob-benefits__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-700);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 56px;
  line-height: 1.15;
}

.mob-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.mob-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mob-benefit-card__heading {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 900;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}

.mob-benefit-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.mob-benefit-card picture img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.mob-benefit-card p {
  font-size: .97rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Desktop stacking at 860px */
@media (max-width: 860px) {
  .mob-benefits__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* Mobile: horizontal swipe carousel */
@media (max-width: 768px) {
  .mob-benefits__grid-wrap {
    overflow: hidden;
  }
  .mob-benefits__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 24px 8px;
    max-width: none;
    margin: 0;
    grid-template-columns: unset;
  }
  .mob-benefits__grid::-webkit-scrollbar { display: none; }
  .mob-benefit-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: center;
  }
  .benefits-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 8px;
  }
  .benefit-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
  }
  .benefit-dot.active { background: var(--green-600); }
}

/* =====================================================
   GOLD MEMBER
   ===================================================== */
.gold-member {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.gold-member__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-700);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 48px;
  line-height: 1.15;
}

.gold-member__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.gold-member__img-wrap picture {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.gold-member__img-wrap img,
.gold-member__img-wrap picture img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.gold-member__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gold-member__copy p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.gold-member__copy .btn {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .gold-member__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gold-member__img-wrap img {
    max-width: 280px;
  }
}

/* =====================================================
   BEFORE / AFTER
   ===================================================== */
.before-after { background: var(--gray-100); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}

.ba-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.ba-card__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 200px;
  background: var(--gray-900);
  z-index: 1;
}
.ba-card__arrow {
  color: var(--gold-400);
  font-size: 1.2rem;
  font-weight: 900;
}

.ba-card__label {
  position: absolute;
  top: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25em .7em;
  border-radius: 999px;
}
.ba-card__label--before {
  left: 10px;
  background: rgba(0,0,0,.6);
  color: var(--white);
}
.ba-card__label--after {
  right: 10px;
  background: var(--green-700);
  color: var(--white);
}

.ba-card__caption {
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 100%);
}

.testimonials__videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

/* Mobile: horizontal swipe carousel */
@media (max-width: 768px) {
  .testimonials__videos-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
  }
  .testimonials__videos {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 24px 8px;
    margin-bottom: 0;
    /* Center first card */
    scroll-padding-left: 24px;
  }
  .testimonials__videos::-webkit-scrollbar { display: none; }
  .testimonials__videos .video-card {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: center;
  }
  .video-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .video-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
  }
  .video-dot.active { background: var(--gold-400); }
}

.video-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.video-card__thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--gray-800);
}
.video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.25);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.video-card__play-btn:hover { background: rgba(0,0,0,.1); }
.video-card__play-btn svg {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.6));
  transition: transform var(--transition);
}
.video-card__play-btn:hover svg { transform: scale(1.1); }

.video-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card__play svg {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform var(--transition);
}
.video-card__play:hover svg { transform: scale(1.1); }

.video-card__meta {
  padding: 16px 20px;
}
.video-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.video-card__stars {
  color: var(--gold-400);
  font-size: .9rem;
  letter-spacing: 2px;
}

/* ---- Reviews Carousel ---- */
.reviews-carousel-wrap {
  position: relative;
  margin-top: 48px;
}

.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel.dragging { cursor: grabbing; }

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 12px;
  padding: 24px 22px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__info { flex: 1; min-width: 0; }
.review-card__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 1px;
}
/* Google G icon */
.review-card__source svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__stars span {
  color: #fbbc04;
  font-size: 1rem;
  line-height: 1;
}

.review-card p {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
}

/* Carousel nav dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--gold-400);
  transform: scale(1.3);
}

/* Carousel prev/next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  color: var(--gray-700);
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 2;
}
.carousel-arrow:hover {
  background: var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.carousel-arrow--prev { left: -20px; }
.carousel-arrow--next { right: -20px; }

@media (max-width: 600px) {
  .review-card { flex: 0 0 85vw; }
  .carousel-arrow { display: none; }
}

/* =====================================================
   PAS SECTION + BEFORE/AFTER SLIDER
   ===================================================== */
.pas-section {
  background: var(--white);
}

.pas-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Copy */
.pas-copy__headline {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--green-700);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 28px;
}

.pas-copy__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pas-copy__body p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.pas-copy__cta-label {
  font-weight: 700;
  color: var(--green-700) !important;
  margin-top: 8px;
}

/* Before/After slider */
.ba-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
}

.ba-slider__after {
  position: absolute;
  inset: 0;
}

/* Before sits on top; JS sets its inline width directly */
.ba-slider__before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%; /* initial; overridden by JS inline style */
  overflow: hidden;
  z-index: 1;
}

.ba-slider__after img,
.ba-slider__before img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* before img must be as wide as the full slider, not the clipped wrapper */
.ba-slider__before img {
  width: var(--ba-full-w, 100%);
}

/* Handle */
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* initial; overridden by JS inline style */
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.ba-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}

.ba-slider__btn {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
}

/* Labels */
.ba-slider__labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.ba-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25em .8em;
  border-radius: 999px;
}
.ba-label--before {
  background: var(--gray-800);
  color: var(--white);
}
.ba-label--after {
  background: var(--green-700);
  color: var(--white);
}

@media (max-width: 860px) {
  .pas-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ba-slider {
    aspect-ratio: 4/3;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Slider comes first visually on mobile */
  .pas-section__inner {
    display: flex;
    flex-direction: column;
  }
  .ba-slider-wrap {
    order: -1; /* slider above copy */
    max-width: 100%;
    width: 100%;
  }
  .ba-slider {
    aspect-ratio: 4/3;
    max-width: 100%;
    width: 100%;
  }
  .ba-slider__btn {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}


/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
}

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

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gold-400);
  color: var(--gray-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(245,200,0,.4);
}

.step__body {
  padding-top: 12px;
}
.step__body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.step__body p {
  font-size: .98rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
}
.step__body a { color: var(--gold-400); text-decoration: underline; }

.step__connector {
  width: 2px;
  height: 48px;
  background: rgba(255,255,255,.2);
  margin-left: 27px;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq { background: var(--gray-50, #fafafa); }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq__item[open] {
  border-color: var(--green-300, #6ee7a0);
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.faq__item[open] .faq__question::after {
  content: '−';
  background: var(--green-700);
  color: var(--white);
}

.faq__answer {
  padding: 0 24px 22px;
}
.faq__answer p {
  font-size: .98rem;
  color: var(--gray-700);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* =====================================================
   PARTNERSHIPS
   ===================================================== */
.partnerships {
  background: var(--gray-900);
  text-align: center;
}

/* Two-column layout */
.partner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: left;
}
@media (max-width: 680px) {
  .partner-layout { grid-template-columns: 1fr; }
}

.partner-col {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 28px 24px;
}

.partner-col__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}

/* Industry list */
.partner-industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partner-industry-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.partner-industry-list li strong {
  color: var(--white);
}
.pil__icon {
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Benefits list */
.partner-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partner-benefits-list li {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.partner-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 800;
}

/* Featured partner spotlight */
.partner-spotlight {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: left;
}
.partner-spotlight__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
  text-align: center;
}
.partner-spotlight__card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}
@media (max-width: 620px) {
  .partner-spotlight__card { grid-template-columns: 1fr; }
}
.partner-spotlight__img-wrap {
  position: relative;
  overflow: hidden;
}
.partner-spotlight__img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.partner-spotlight__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.partner-spotlight__copy {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 620px) {
  .partner-spotlight__copy { padding: 24px 20px; }
}
.partner-spotlight__copy h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.partner-spotlight__copy p {
  font-size: .97rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 20px;
}
.partner-spotlight__link {
  display: inline-block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-400);
  text-decoration: none;
  border: 1px solid rgba(245,200,0,.35);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  align-self: flex-start;
}
.partner-spotlight__link:hover {
  background: var(--gold-400);
  color: var(--gray-900);
}

/* Partner CTA block */
.partner-cta-block {
  background: linear-gradient(135deg, rgba(245,200,0,.12) 0%, rgba(245,200,0,.04) 100%);
  border: 1px solid rgba(245,200,0,.25);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 680px;
  margin: 0 auto;
}
.partner-cta-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.partner-cta-block p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 24px;
}
.partner-cta-block__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   BOOKING CTA
   ===================================================== */
.booking-cta {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  text-align: center;
}

.booking-cta__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.booking-cta__inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
}
.booking-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}


/* =====================================================
   QUOTE FORM
   ===================================================== */
.quote-form-section {
  background: var(--gray-50);
}

.quote-form {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Two-column row */
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field */
.qf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qf-field--full {
  grid-column: 1 / -1;
}
.qf-field label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.qf-req { color: var(--green-700); }
.qf-optional { font-weight: 400; text-transform: none; color: var(--gray-500); font-size: .82rem; }

/* Inputs */
.qf-field input[type="text"],
.qf-field input[type="tel"],
.qf-field input[type="email"],
.qf-field textarea,
.qf-select-wrap select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.qf-field input:focus,
.qf-field textarea:focus,
.qf-select-wrap select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.qf-field input.error,
.qf-field textarea.error,
.qf-select-wrap select.error {
  border-color: #ef4444;
}
.qf-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Select wrapper */
.qf-select-wrap {
  position: relative;
}
.qf-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  pointer-events: none;
  font-size: .9rem;
}

/* Service cards grid */
.qf-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.qf-service-card {
  cursor: pointer;
  position: relative;
}
.qf-service-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.qf-service-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px 12px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  text-align: center;
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
  min-height: 80px;
}
.qf-service-card__icon { font-size: 1.4rem; line-height: 1; }
.qf-service-card__name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.2;
}
.qf-service-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-400);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Selected state */
.qf-service-card input:checked + .qf-service-card__inner {
  border-color: var(--green-600);
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.qf-service-card input:checked + .qf-service-card__inner .qf-service-card__name {
  color: var(--green-700);
}
.qf-service-card__inner:hover {
  border-color: var(--green-400);
}

/* Submit */
.qf-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qf-submit {
  width: 100%;
  max-width: 360px;
  position: relative;
}
.qf-submit__loading { display: none; }
.qf-submit.loading .qf-submit__text { display: none; }
.qf-submit.loading .qf-submit__loading { display: inline; }

.qf-privacy {
  font-size: .8rem;
  color: var(--gray-500);
  margin: 0;
}

/* Success / Error */
.qf-success, .qf-error {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
}
.qf-success {
  background: #f0fdf4;
  border: 2px solid var(--green-400);
}
.qf-success__icon { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.qf-success h3 { color: var(--green-700); margin: 0 0 8px; font-size: 1.4rem; }
.qf-success p { color: var(--gray-600); margin: 0; }
.qf-error {
  background: #fff5f5;
  border: 2px solid #fca5a5;
  color: #dc2626;
}
.qf-error a { color: #dc2626; font-weight: 700; }

/* Mobile */
@media (max-width: 600px) {
  .qf-row { grid-template-columns: 1fr; }
  .qf-services { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   APP PROMO SECTION
   ===================================================== */
.app-promo {
  background: var(--white);
  color: var(--gray-900);
  border-top: 1px solid var(--gray-100);
  padding: 72px 0;
  overflow: hidden;
}

.app-promo__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.app-promo__copy {
  flex: 1;
  min-width: 0;
}

.app-promo__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .75rem;
}

.app-promo__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.app-promo__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.app-promo__features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.app-promo__feature {
  font-size: .95rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.app-promo__feature::before {
  content: '✓';
  color: var(--green-700);
  font-weight: 800;
}

/* ── Phone mockup ── */
.app-promo__phone-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 260px;
}

.phone-mockup__frame {
  position: relative;
  background: #111;
  border-radius: 40px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 4px #1a1a1a,
    0 32px 64px rgba(0,0,0,.22),
    0 8px 16px rgba(0,0,0,.14);
}

.phone-mockup__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-mockup__screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0d2a1a;
  line-height: 0;
}

.phone-mockup__screen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* side buttons */
.phone-mockup__side {
  position: absolute;
  background: #2a2a2a;
  border-radius: 3px;
}

.phone-mockup__side--left {
  left: -4px;
  top: 80px;
  width: 4px;
  height: 36px;
  box-shadow: 0 44px 0 #2a2a2a;
}

.phone-mockup__side--right {
  right: -4px;
  top: 100px;
  width: 4px;
  height: 52px;
}

@media (max-width: 768px) {
  .app-promo__inner {
    flex-direction: column;
    text-align: center;
  }
  .app-promo__copy {
    display: contents;
  }
  .app-promo__copy-top {
    order: 1;
  }
  .app-promo__phone-wrap {
    order: 2;
  }
  .app-promo__copy-bottom {
    order: 3;
  }
  .app-promo__subtitle {
    margin: 0 auto 2rem;
  }
  .app-promo__features {
    align-items: center;
  }
  .phone-mockup {
    width: 200px;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 64px 0 0;
  border-top: 3px solid var(--green-700);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

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

.footer__links,
.footer__contact,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links h4,
.footer__contact h4,
.footer__social h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.footer__links a,
.footer__contact a,
.footer__social a,
.footer__contact p {
  font-size: .9rem;
  color: var(--gray-300);
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover,
.footer__social a:hover {
  color: var(--green-500);
}

.footer__bottom {
  border-top: 1px solid var(--gray-800);
  padding: 20px 24px;
  text-align: center;
}
.footer__bottom p {
  font-size: .85rem;
  color: var(--gray-500);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: .4; }
}

/* Scroll-triggered fade in */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ---- 1024px: Tablet ---- */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .review-card {
    flex: 0 0 300px;
  }
}

/* ---- 860px: Large mobile / small tablet ---- */
@media (max-width: 860px) {
  .ba-slider-wrap {
    max-width: 100%;
    width: 100%;
  }
}

/* ---- 768px: Mobile ---- */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 10px 16px; }
  .navbar__inner {
    padding: 0 8px 0 14px;
    height: 60px;
  }
  .navbar__pill { border-radius: 999px; }
  .navbar__logo-img, .navbar__logo picture, .navbar__logo picture img { height: 44px; }
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__typewriter {
    display: block;
    flex: 1;
    text-align: left;
    font-size: .88rem;
    color: var(--gray-800);
    padding: 0 8px 0 10px;
    margin-left: 4px;
  }
  .hamburger { display: flex; }

  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* Hero */
  .hero__content { padding: 100px 20px 60px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Trust bar */
  .trust-bar__inner { gap: 8px 20px; }
  .trust-item { font-size: .82rem; }

  /* Testimonial videos handled by carousel CSS above */

  /* Reviews carousel */
  .review-card { flex: 0 0 85vw; padding: 20px 18px 16px; }
  .review-card__avatar { width: 36px; height: 36px; font-size: .85rem; }
  .review-card__name { font-size: .9rem; }

  /* Gold member */
  .gold-member__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gold-member__img-wrap picture,
  .gold-member__img-wrap img { max-width: 260px; }

  /* How it works */
  .steps { gap: 0; }
  .step { gap: 16px; }
  .step__number { width: 48px; height: 48px; font-size: 1.1rem; flex-shrink: 0; }

  /* PAS */
  .pas-copy__headline { font-size: 1.6rem; }
  .pas-copy__body p { font-size: .95rem; }

  /* FAQ */
  .faq__question { padding: 18px 20px; font-size: .95rem; }
  .faq__answer p { font-size: .93rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ---- 600px: Mid-range phones ---- */
@media (max-width: 600px) {
  /* Badge */
  .badge { font-size: .78rem; gap: 6px; padding: .3em .9em; }

  /* Reviews */
  .carousel-arrow { display: none; }
  .review-card { flex: 0 0 88vw; }

  /* Video carousel cards — handled by carousel styles */
}

/* ---- 520px: Small phones ---- */
@media (max-width: 520px) {
  /* Container tighter */
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* Hero */
  .hero__headline { font-size: 2rem; }
  .hero__content { padding: 90px 16px 52px; }

  /* Trust bar */
  .trust-bar__inner { flex-direction: column; gap: 8px; }

  /* Navbar pill */
  .navbar { padding: 8px 12px; }
  .navbar__inner { height: 56px; padding: 0 6px 0 12px; }
  .navbar__pill { border-radius: 999px; }
  .navbar__logo-img, .navbar__logo picture, .navbar__logo picture img { height: 40px; }

  /* Gold member image */
  .gold-member__img-wrap picture,
  .gold-member__img-wrap img { max-width: 200px; }
  .gold-member__title { font-size: 1.8rem; }

  /* Benefits title */
  .mob-benefits__title { font-size: 1.8rem; margin-bottom: 36px; }

  /* Steps — stack number above text */
  .step {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .step__connector { margin-left: 24px; }
  .step__number { width: 44px; height: 44px; font-size: 1rem; }

  /* FAQ */
  .faq__question { padding: 16px; font-size: .9rem; }
  .faq__question::after { width: 26px; height: 26px; line-height: 26px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }

  /* Booking CTA */
  .booking-cta__actions { flex-direction: column; align-items: center; }
  .booking-cta__actions .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Carousel dots */
  .carousel-dots { gap: 6px; }
  .carousel-dot { width: 7px; height: 7px; }

  /* PAS copy */
  .pas-copy__headline { font-size: 1.5rem; margin-bottom: 18px; }
  .pas-copy__body p { font-size: .92rem; line-height: 1.6; }
  .pas-copy__body { gap: 10px; }
}

/* =====================================================
   CUSTOM STICKY SIDEBAR
   ===================================================== */
.ccc-sidebar {
  position: fixed;
  left: 0;
  top: 96px;          /* clears the navbar */
  bottom: 20px;
  width: 280px;
  display: flex;
  flex-direction: column;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-xl);
  overflow: visible;  /* allow the tab to poke out */
  z-index: 999;
  /* Slide in from the left */
  transition: transform .38s cubic-bezier(.4,0,.2,1),
              opacity  .38s cubic-bezier(.4,0,.2,1);
}

/* Hidden until user scrolls past hero */
.ccc-sidebar.sidebar-hidden {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Collapsed: slide the panel fully off-screen; the .ccc-sidebar__tab still peeks
   out because overflow: visible on the aside lets it protrude past the left edge */
.ccc-sidebar.collapsed {
  transform: translateX(-100%);
}

/* Hide the tab when the panel is open (not collapsed) */
.ccc-sidebar:not(.collapsed) .ccc-sidebar__tab {
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.ccc-sidebar.collapsed .ccc-sidebar__tab {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s .15s;
}

/* Tab pulse — gold glow when visible */
@keyframes tabPulse {
  0%   { box-shadow: 3px 3px 14px rgba(0,0,0,.28), 0 0 0 0   rgba(245,200,0,.80); }
  65%  { box-shadow: 3px 3px 14px rgba(0,0,0,.28), 0 0 0 12px rgba(245,200,0,.00); }
  100% { box-shadow: 3px 3px 14px rgba(0,0,0,.28), 0 0 0 0   rgba(245,200,0,.00); }
}

/* ---- Slide-out tab (visible when collapsed) ---- */
.ccc-sidebar__tab {
  position: absolute;
  left: 100%;           /* attached to the right edge of the sidebar */
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold-400);
  color: var(--gray-900);
  width: 46px;
  padding: 22px 0;
  animation: tabPulse 2.2s ease-out infinite;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 14px rgba(0,0,0,.28);
  z-index: 1;
  transition: background var(--transition), width var(--transition);
  user-select: none;
}
.ccc-sidebar__tab:hover {
  background: var(--gold-300);
  width: 52px;
  animation: none;
}
.ccc-sidebar__tab-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gray-900);
  transition: transform var(--transition);
}
.ccc-sidebar__tab-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-900);
  line-height: 1;
}

/* ---- Inner panel (the visible rectangle) ---- */
.ccc-sidebar__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  overflow: hidden;
}

/* ---- Header strip ---- */
.ccc-sidebar__header {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}
.ccc-sidebar__header-logo,
.ccc-sidebar__header picture,
.ccc-sidebar__header picture img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}
.ccc-sidebar__header-text {
  flex: 1;
  min-width: 0;
}
.ccc-sidebar__header-title {
  font-size: .8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ccc-sidebar__header-sub {
  font-size: .67rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  margin-top: 1px;
}
/* The X / close button inside the header */
.ccc-sidebar__toggle {
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.ccc-sidebar__toggle:hover {
  background: rgba(255,255,255,.35);
}

/* ---- Iframe body ---- */
.ccc-sidebar__body {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.ccc-sidebar__body iframe {
  display: block;
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  border: none;
}

/* ---- Footer strip ---- */
.ccc-sidebar__footer {
  background: var(--gold-400);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}
.ccc-sidebar__footer-stars {
  color: var(--gray-900);
  font-size: .82rem;
  letter-spacing: .04em;
}
.ccc-sidebar__footer-text {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
}

/* Desktop only — hide on anything smaller than 1024px */
@media (max-width: 1023px) {
  .ccc-sidebar {
    display: none;
  }
}

/* =====================================================
   PERFORMANCE: Disable GPU-intensive backdrop-filter
   on mobile — saves paint/composite cost on low-end devices
   ===================================================== */
@media (max-width: 768px) {
  .navbar__pill,
  .mobile-menu,
  .badge {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
