/* =========================================
   BIN REVIVALS — STYLESHEET
   Built by RASTRICK. MADE
   ========================================= */

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

:root {
  --green-dark:   #1a4a1e;
  --green-mid:    #2d6a31;
  --green-bright: #4caf50;
  --green-lime:   #6fcf45;
  --black:        #0d0d0d;
  --off-black:    #1a1a1a;
  --grey-dark:    #2a2a2a;
  --grey-mid:     #555;
  --grey-light:   #f0f0f0;
  --white:        #ffffff;
  --cream:        #f8f6f1;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--off-black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--green-lime);
  color: var(--black);
  border-color: var(--green-lime);
}
.btn--primary:hover {
  background: #5dbd38;
  border-color: #5dbd38;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111,207,69,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--grey-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--full { width: 100%; }
.btn--submit { font-size: 1rem; padding: 16px 28px; }

/* --- SECTION SHARED --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.section-label--light { color: var(--green-lime); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header--light .section-title,
.section-header--light .section-sub { color: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--off-black);
  letter-spacing: 0.5px;
}

.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--grey-mid);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub--light { color: rgba(255,255,255,0.7); }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--black);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--off-black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 10px 0;
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  flex-shrink: 0;  /* prevent nav squishing the logo */
}

.nav__logo img {
  height: 120px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--green-lime); }

.nav__cta {
  background: var(--green-lime) !important;
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav__cta:hover {
  background: #5dbd38 !important;
  color: var(--black) !important;
}

.nav__links-home { display: none; } /* mobile-only menu item, shown via media query */

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 50%, var(--black) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(111,207,69,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,106,49,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero__headline--accent {
  color: var(--green-lime);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 50px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__logo-img {
  width: 100%;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(111,207,69,0.25));
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =========================================
   PROBLEM STRIP
   ========================================= */
.problem-strip {
  background: var(--off-black);
  padding: 28px 0;
  border-top: 3px solid var(--green-lime);
}

.problem-strip__text {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.problem-strip__text span {
  color: var(--white);
  font-weight: 700;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: 100px 0;
  background: var(--cream);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step__number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(111,207,69,0.12);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
  user-select: none;
}

.step__icon {
  color: var(--green-lime);
  line-height: 0;
  margin-bottom: 16px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--off-black);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.step__desc {
  font-size: 0.92rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

.step__connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green-bright), var(--green-lime));
  align-self: center;
  position: relative;
}
.step__connector::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-lime);
  font-size: 0.8rem;
}

/* =========================================
   WHY US
   ========================================= */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 100%);
}

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

.feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}

.feature:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.feature__icon { color: var(--green-lime); line-height: 0; margin-bottom: 16px; }

.feature__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.feature__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* =========================================
   PRICING
   ========================================= */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

/* Pricing row — label left, price right. Stacks on narrow phones. */
@media (max-width: 480px) {
  .pricing__row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px;
  }
  .pricing__row-price {
    font-size: 1.3rem !important;
  }
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 28px;
}

.pricing__card {
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--featured {
  border-color: var(--green-lime);
  background: var(--off-black);
  color: var(--white);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-lime);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 8px;
}

.pricing__card--featured .pricing__tag { color: var(--green-lime); }

.pricing__name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.pricing__card--featured .pricing__name { color: var(--white); }

.pricing__desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing__card--featured .pricing__desc { color: rgba(255,255,255,0.6); }

.pricing__features {
  margin-bottom: 32px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--grey-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  font-weight: 500;
}
.pricing__features li svg { flex-shrink: 0; color: var(--green-lime); }

.pricing__card--featured .pricing__features li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}

.pricing__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-mid);
}

.pricing__note a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 100px 0;
  background: var(--cream);
}

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

.about__badge-wrap {
  display: flex;
  justify-content: center;
}

.about__badge-img {
  width: 100%;
  max-width: 340px;
  height: auto;        /* maintain natural square aspect ratio */
  object-fit: contain;
  border-radius: 20px;
  animation: floatLogo 5s ease-in-out infinite;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.about__badge-wrap picture { display: block; line-height: 0; }

.about__text {
  font-size: 1rem;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__text--bold {
  font-weight: 700;
  color: var(--off-black);
  font-size: 1.05rem;
}

.about__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =========================================
   BOOK / CONTACT
   ========================================= */
.book {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f2e12 0%, var(--green-dark) 60%, #1a1a1a 100%);
}

.book__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.book__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group--full { margin-bottom: 16px; }

.form__group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--off-black);
  letter-spacing: 0.3px;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 14px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--off-black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green-bright);
}

.form__group textarea { resize: vertical; }

.form__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-top: 12px;
}

.book__contact { color: var(--white); }

.book__contact-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: background var(--transition), transform var(--transition);
}

.contact-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.contact-item__icon { color: rgba(255,255,255,0.7); line-height: 0; }

.contact-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 2px;
}

.contact-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  padding: 56px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  height: 104px;          /* prominent in footer */
  width: auto;
  max-width: 320px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: block;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--green-lime); }

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--green-lime); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer__credit a {
  color: var(--green-lime);
  font-weight: 600;
}
.footer__credit a:hover { text-decoration: underline; }

/* =========================================
   ANIMATIONS — SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__sub { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-wrap { max-width: 280px; margin: 0 auto; }

  .steps { flex-direction: column; align-items: stretch; }
  .step__connector { width: 2px; height: 32px; align-self: center; }
  .step__connector::after { content: '▼'; right: auto; top: auto; left: 50%; bottom: -10px; transform: translateX(-50%); }

  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing__cards { grid-template-columns: 1fr; max-width: 420px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__badge-img { max-width: 240px; }
  .book__inner { grid-template-columns: 1fr; }
  .book__form { padding: 32px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  /* ── Mobile header: show burger ── */
  .nav__burger { display: flex; }

  /* ── Mobile menu: full-width dropdown below header ── */
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(6, 16, 7, 0.99);
    padding: 0;
    gap: 0;
    z-index: 200;
    box-shadow: 0 12px 48px rgba(0,0,0,0.55);
    border-top: 1px solid rgba(111, 207, 69, 0.18);
  }
  .nav__links.open { display: flex; }

  /* Hide "Home" on desktop, show on mobile */
  .nav__links-home { display: list-item; }

  /* Menu items */
  .nav__links li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a {
    display: block;
    padding: 17px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.2px;
  }
  .nav__links a:hover,
  .nav__links a:active {
    color: var(--green-lime);
    background: rgba(255,255,255,0.04);
  }

  /* CTA row inside menu */
  .nav__links-cta {
    padding: 18px 24px 24px;
    border-bottom: none !important;
  }
  .nav__links-cta .nav__cta {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 15px 24px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
  }

  .form__row { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .about__actions { flex-direction: column; }
}

/* =========================================
   VIDEO SHOWCASE — HOMEPAGE
   ========================================= */
.video-showcase {
  padding: 100px 0;
  background: var(--off-black);
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-lime), transparent);
}

.video-showcase::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
}

.video-grid--homepage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* ── VIDEO CARD ─────────────────────── */
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--grey-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a1e0b 100%);
  overflow: hidden;
}

.video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-card__play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-card__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(111,207,69,0.88);
  border: 2px solid rgba(111,207,69,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(111,207,69,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-card:hover .video-card__play,
.video-card__play:hover {
  transform: scale(1.12);
  background: var(--green-lime);
  box-shadow: 0 8px 32px rgba(111,207,69,0.55);
}

.video-card__play svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
  margin-left: 3px;
  display: block;
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  z-index: 3;
}

.video-card__category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-lime);
  background: rgba(111,207,69,0.14);
  border: 1px solid rgba(111,207,69,0.3);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.video-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.video-card__meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.video-card__location,
.video-card__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.video-showcase__cta {
  text-align: center;
}

/* =========================================
   REVIEW STRIP
   ========================================= */
/* =========================================
   BEFORE & AFTER PHOTO GALLERY
   ========================================= */
.photo-gallery {
  padding: 80px 0;
  background: var(--off-black);
}

.photo-gallery .section-label {
  color: var(--green-lime);
}

.photo-gallery .section-title {
  color: var(--white);
}

.photo-gallery .section-sub {
  color: rgba(255,255,255,0.6);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 48px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 4px;
  overflow: hidden;
}

.ba-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ba-item:hover img {
  transform: scale(1.06);
}

.ba-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

.ba-badge--before {
  background: rgba(0,0,0,0.65);
  color: #fff;
}

.ba-badge--after {
  background: var(--green-lime);
  color: var(--off-black);
}

.ba-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.ba-extras .ba-item {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

.ba-gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* CTA card inside before/after grid */
.ba-cta {
  background: var(--off-black);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  border-top: 4px solid var(--green-lime);
}
.ba-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 28px;
  text-align: center;
  width: 100%;
}
.ba-cta__price {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ba-cta__price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
}
.ba-cta__heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}
.ba-cta__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 4px;
}
@media (max-width: 640px) {
  .ba-cta__inner { padding: 32px 20px; gap: 10px; }
  .ba-cta__price { font-size: 2.2rem; }
}

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-extras { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ba-pair { gap: 2px; }
  .ba-grid { gap: 4px; margin-top: 28px; }
  .ba-extras { grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 4px; }
  .ba-extras .ba-cta { grid-column: 1 / -1; }
  .photo-gallery { padding: 56px 0; }
  .page-gallery .nav-trust-bar { display: none !important; }
}

/* =========================================
   REVIEW STRIP
   ========================================= */
.review-strip {
  padding: 72px 0;
  background: var(--white);
}

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

.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--green-lime);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 0;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 0.92rem;
  color: var(--grey-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.review-card__author {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--off-black);
}

.review-card__location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  color: var(--grey-mid);
  margin-top: 3px;
}

/* =========================================
   REVIEW CAROUSEL
   ========================================= */
.review-carousel {
  position: relative;
}

.review-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 8px;
}

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

.review-carousel__track .review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.review-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.review-carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--grey-light);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.review-carousel__dot.active {
  background: var(--green-lime);
  transform: scale(1.35);
}

.review-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--off-black);
  transition: border-color var(--transition), background var(--transition);
  padding: 0;
}

.review-carousel__btn:hover {
  border-color: var(--green-lime);
  background: var(--cream);
}

@media (max-width: 900px) {
  .review-carousel__track .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .review-carousel__track .review-card {
    flex: 0 0 100%;
  }
  .review-carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  padding: 80px 0;
  background: var(--cream);
}

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

.stat-card {
  text-align: center;
  padding: 44px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--green-lime);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-card__icon { color: var(--green-lime); line-height: 0; margin-bottom: 14px; }

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--off-black);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.stat-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* =========================================
   SHOWCASE CTA
   ========================================= */
.showcase-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 60%, var(--off-black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.showcase-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 60%, rgba(111,207,69,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,106,49,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.showcase-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.showcase-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.showcase-cta__headline span { color: var(--green-lime); }

.showcase-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  background: var(--off-black);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  animation: lightboxIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
  line-height: 1;
  font-family: sans-serif;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
}

.lightbox__video {
  width: 100%;
  display: block;
  max-height: 72vh;
  object-fit: contain;
  background: var(--black);
}

.lightbox__caption {
  padding: 18px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.lightbox__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-lime);
  background: rgba(111,207,69,0.1);
  border: 1px solid rgba(111,207,69,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================
   GALLERY PAGE — HERO
   ========================================= */
.gallery-hero {
  padding: 210px 24px 64px; /* fallback: JS overrides via .page-hero inline style */
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 60%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(111,207,69,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 16px;
}

.gallery-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 20px;
}

.gallery-hero__title span { color: var(--green-lime); }

.gallery-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* =========================================
   GALLERY — FILTER TABS
   ========================================= */
.gallery-filters {
  padding: 24px 0;
  background: var(--white);
  position: sticky;
  top: 182px; /* fallback: JS overrides with exact urgencyH + navH */
  z-index: 50;
  border-bottom: 1px solid var(--grey-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--grey-light);
  background: var(--white);
  color: var(--grey-mid);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--green-bright);
  color: var(--green-dark);
  background: rgba(76,175,80,0.05);
}

.filter-tab.active {
  background: var(--off-black);
  border-color: var(--off-black);
  color: var(--green-lime);
}

/* =========================================
   GALLERY — MAIN GRID
   ========================================= */
.gallery-main {
  padding: 60px 0 80px;
  background: #f0f0f0;
  min-height: 50vh;
}

.video-grid--gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.video-card--gallery {
  cursor: pointer;
  background: var(--grey-dark);
}

.video-card--gallery .video-card__media {
  aspect-ratio: 16 / 9;
}

.video-card--hidden {
  display: none !important;
}

.gallery-load-more {
  text-align: center;
  padding-top: 8px;
}

/* =========================================
   GALLERY PAGE — CTA
   ========================================= */
.gallery-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 100%);
  text-align: center;
}

.gallery-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.gallery-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.gallery-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE — VIDEO & GALLERY ADDITIONS
   ========================================= */
@media (max-width: 900px) {
  .video-grid--homepage,
  .video-grid--gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .review-strip__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .video-grid--homepage,
  .video-grid--gallery { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 32px 16px; }
  .gallery-filters { padding: 12px 0; overflow: hidden; }
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 16px 4px;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { flex-shrink: 0; font-size: 0.74rem; padding: 7px 14px; }
  .showcase-cta__actions,
  .gallery-cta__actions { flex-direction: column; align-items: center; }
  .showcase-cta__actions .btn,
  .gallery-cta__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .lightbox__caption { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gallery-hero { padding: 190px 24px 48px; } /* fallback before JS runs */
}

/* =========================================
   URGENCY BAR
   ========================================= */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #1a4a1e, #2d6a31);
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(111,207,69,0.3);
  transition: transform 0.3s ease;
}

.urgency-bar.hidden { transform: translateY(-100%); }

.urgency-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.urgency-bar__icon { line-height: 0; display: flex; align-items: center; }

.urgency-bar__inner a {
  color: var(--green-lime);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.urgency-bar__inner a:hover { color: var(--white); }

.urgency-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.urgency-bar__close:hover { color: var(--white); }

/* Offset nav for urgency bar */
.nav { top: 40px; }
.urgency-bar.hidden ~ .nav,
body.urgency-hidden .nav { top: 0; }

/* =========================================
   HERO V2 — VIDEO BACKGROUND
   ========================================= */
.hero {
  position: relative;
  min-height: max(100vh, 780px);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* restored — stats bar is now outside the hero */
  background: var(--black);
  padding: 0;
}

.hero__bg-pattern { display: none; }

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 1s ease;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0,0,0,0.55) 0%,
    rgba(10,26,12,0.72) 40%,
    rgba(0,0,0,0.92) 100%
  );
}

/* Trust bar strip */
.hero__trust-bar {
  position: relative;
  z-index: 2;
  background: rgba(111,207,69,0.1);
  border-bottom: 1px solid rgba(111,207,69,0.18);
  padding: 11px 24px;
  margin-top: 80px; /* below urgency bar + nav */
}

.hero__trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}

.hero__trust-item { display: flex; align-items: center; gap: 6px; }
.hero__stars { color: var(--green-lime); letter-spacing: 2px; font-size: 0.88rem; }
.hero__trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

/* Hero body — main content */
.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 48px 0 60px;
}

.hero__content { max-width: 680px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.5vw, 6.8rem);
  line-height: 0.93;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero__headline--accent {
  color: var(--green-lime);
  display: block;
}

.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* Trust badge row */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.hero__badge-item svg { color: var(--green-lime); flex-shrink: 0; }

/* Stats bar — bottom of hero */
.hero__stats-bar {
  /* Standalone section — no longer inside the hero flex container.
     Normal document flow, sits between hero and reviews sections.   */
  position: relative;
  z-index: 1;
  background: rgba(13,13,13,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  width: 100%;
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero__stat {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-lime);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* =========================================
   SOCIAL PROOF STRIP
   ========================================= */
.social-proof-strip {
  background: var(--off-black);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.social-proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.social-proof-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 16px 28px;
}

.social-proof-item__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 0;
  margin-bottom: 8px;
}

.social-proof-item__quote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}

.social-proof-item__author {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green-lime);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.social-proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* =========================================
   TRUST SECTION
   ========================================= */
.trust-section {
  padding: 100px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid--4 .trust-card {
  padding: 32px 22px;
}

.trust-card {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 3px solid var(--green-lime);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trust-card__icon {
  color: var(--green-mid);
  line-height: 0;
  margin-bottom: 20px;
}

.trust-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--off-black);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.trust-card__desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.72;
}

/* =========================================
   SERVICE AREAS PREVIEW
   ========================================= */
.service-areas-preview {
  padding: 100px 0;
  background: var(--cream);
}

.sa-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 44px;
}

.sa-region__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--off-black);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-lime);
}

.sa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sa-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--off-black);
  background: var(--white);
  border: 1px solid #ddd;
  padding: 5px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

a.sa-chip:hover {
  background: var(--off-black);
  color: var(--green-lime);
  border-color: var(--off-black);
  transform: translateY(-1px);
}

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

.sa-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.sticky-mobile-cta.visible {
  display: flex;
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 13px 16px;
  font-size: 0.9rem;
}

/* =========================================
   FLOATING QUOTE BUTTON
   ========================================= */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 250;
  background: var(--green-lime);
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(111,207,69,0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-cta:hover {
  background: #5dbd38;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(111,207,69,0.55);
  color: var(--black);
}

/* =========================================
   DESIGN UPGRADES — TYPOGRAPHY & HIERARCHY
   ========================================= */

/* Stronger section headers */
.section-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
}

/* Enhanced card hover states */
.step:hover { transform: translateY(-8px); }
.feature:hover { transform: translateY(-5px); background: rgba(255,255,255,0.11); }

/* Bolder pricing cards */
.pricing__card--featured {
  box-shadow: 0 20px 60px rgba(111,207,69,0.2);
}

/* =========================================
   SERVICE AREAS PAGE SHARED
   ========================================= */
.sa-page-hero {
  padding: 210px 24px 72px; /* fallback: JS overrides via .page-hero inline style */
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 60%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.sa-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(111,207,69,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.sa-page-hero__inner { position: relative; z-index: 1; max-width: 860px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-lime); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }
.breadcrumb__current { color: var(--green-lime); }

.sa-page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 14px;
}

.sa-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 20px;
}

.sa-page-hero__title span { color: var(--green-lime); }

.sa-page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.sa-page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Location page sections */
.location-section { padding: 80px 0; }
.location-section--alt { background: var(--cream); }
.location-section--dark { background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e12 100%); }

.location-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.location-benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--green-lime);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.location-benefit__icon { font-size: 2rem; margin-bottom: 12px; }
.location-benefit__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--off-black); margin-bottom: 8px; }
.location-benefit__desc { font-size: 0.88rem; color: var(--grey-mid); line-height: 1.7; }

/* FAQ section */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--grey-light);
  overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--off-black);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--green-mid); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--green-bright);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* Internal links section */
.nearby-areas {
  padding: 56px 0;
  background: var(--cream);
}

.nearby-chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* =========================================
   RESPONSIVE — V2 ADDITIONS
   ========================================= */
@media (max-width: 900px) {
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-regions { grid-template-columns: 1fr; gap: 24px; }
  .sa-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .social-proof-strip__inner { flex-direction: column; gap: 0; }
  .social-proof-divider { width: 80%; height: 1px; margin: 0 auto; }
  .location-benefits { grid-template-columns: repeat(2, 1fr); }
  .hero__trust-bar { margin-top: 72px; }
}

@media (max-width: 640px) {
  .urgency-bar { padding: 8px 12px; }
  .urgency-bar__inner { font-size: 0.74rem; flex-wrap: wrap; justify-content: center; gap: 4px; }
  .hero__trust-divider { display: none; }
  .hero__trust-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .hero__trust-bar { margin-top: 80px; }
  .hero__content { max-width: 100%; }
  .hero__headline { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; text-align: center; }
  .hero__badges { gap: 8px 14px; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 28px 20px; }
  .sa-regions { grid-template-columns: 1fr; }
  .sa-locations-grid { grid-template-columns: 1fr; }
  .sa-page-hero__actions { flex-direction: column; align-items: stretch; }
  .sa-page-hero__actions .btn { text-align: center; justify-content: center; }
  .location-benefits { grid-template-columns: 1fr; }
  .floating-cta { bottom: 80px; right: 16px; }
  .sticky-mobile-cta { padding: 10px 12px; }
  .footer { padding-top: 32px; padding-bottom: 66px; }
  .footer__inner { padding-bottom: 20px; }
  .footer__bottom { padding-top: 10px; }
  .sa-cta { flex-direction: column; align-items: stretch; }
  .sa-cta .btn { text-align: center; justify-content: center; }
  .nav { top: 36px; }
  .urgency-bar { padding: 8px 10px; }
}

@media (min-width: 641px) {
  .sticky-mobile-cta { display: none !important; }
}

/* =========================================
   COVERAGE MAP VISUAL
   ========================================= */
.coverage-map-visual {
  background: linear-gradient(135deg, var(--off-black) 0%, var(--green-dark) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin-top: 40px;
}

.coverage-map-visual__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.coverage-map-visual__badge {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.coverage-map-visual__badge:last-child { border-right: none; }

.coverage-map-visual__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--green-lime);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.coverage-map-visual__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

@media (max-width: 640px) {
  .coverage-map-visual__inner { grid-template-columns: repeat(2, 1fr); }
  .coverage-map-visual__badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .coverage-map-visual__badge:nth-child(2n) { border-right: none; }
  .coverage-map-visual__badge:last-child { border-bottom: none; }
}

/* =========================================
   NAV TRUST BAR — below navigation
   ========================================= */
.nav-trust-bar {
  position: fixed;
  left: 0;
  right: 0;
  /* top set dynamically by JS; fallback provided below */
  top: 112px; /* 40px urgency + 72px nav — JS overrides this precisely */
  z-index: 98;
  background: rgba(8, 20, 9, 0.96);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(111,207,69,0.15);
  box-shadow: 0 3px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 7px 0;
  overflow: hidden;
  max-height: 100px;
  transition: top 0.3s ease, max-height 0.35s ease, padding 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

body.urgency-hidden .nav-trust-bar {
  top: 72px; /* CSS fallback when urgency bar is gone */
}

.nav-trust-bar.trust-bar--hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: 0;
}

.nav-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 18px;
  row-gap: 3px;
}

.nav-trust-bar__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-trust-bar__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 0;
}

.nav-trust-bar__region {
  font-size: 0.71rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2px;
}

.nav-trust-bar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.nav-trust-bar__points {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-trust-bar__point {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.69rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-trust-bar__point svg {
  color: var(--green-lime);
  flex-shrink: 0;
}

/* =========================================
   HERO V2 — post trust-bar repositioning
   ========================================= */

/* Suppress the old in-hero trust bar (now removed from HTML, but guard against cached versions) */
.hero__trust-bar { display: none !important; }

/* Hero takes full viewport height; padding-top creates clearance for
   the three stacked fixed elements (urgency + nav + trust bar).
   JS sets the exact value; these are CSS fallbacks. */
.hero {
  min-height: 100vh; /* min not strict height — content can push taller if needed */
  padding-top: 156px; /* fallback: ~40 urgency + ~72 nav + ~44 trust (JS overrides) */
}

body.urgency-hidden .hero {
  padding-top: 116px; /* ~72 nav + ~44 trust */
}

/* Hero body — flex fills the space between top padding and stats bar */
.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 32px 0 36px; /* tighter — hero itself handles top offset */
}

/* Keep headline above the fold by limiting its vertical footprint */
.hero__headline {
  margin-bottom: 20px;
}

.hero__sub {
  margin-bottom: 28px;
}

.hero__actions {
  margin-bottom: 28px;
}

/* Stats bar — standalone section below hero, padding retained */
.hero__stats-bar {
  padding: 20px 0;
}

/* =========================================
   RESPONSIVE — Trust bar + Hero
   ========================================= */
@media (max-width: 900px) {
  .nav-trust-bar__sep { display: none; }
  .nav-trust-bar__inner { row-gap: 4px; }
  .nav-trust-bar__rating { width: 100%; justify-content: center; }
  .nav-trust-bar__points { width: 100%; }
  /* Trust bar is taller on tablet — hero padding-top increases accordingly.
     JS recalculates on resize, but CSS fallback: */
  .hero { padding-top: 196px; }
  body.urgency-hidden .hero { padding-top: 152px; }
}

@media (max-width: 640px) {
  .nav-trust-bar { padding: 6px 0; }
  .nav-trust-bar__region { display: none; }
  .nav-trust-bar__rating { gap: 4px; }
  .nav-trust-bar__stars { gap: 1px; }
  .nav-trust-bar__point:nth-child(n+3) { display: none; }
  .nav-trust-bar__rating::after {
    content: "Trusted Across Manawatū";
    font-size: 0.69rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
  }
  .hero { padding-top: 190px; min-height: 100svh; }
  body.urgency-hidden .hero { padding-top: 150px; }
  .hero__headline { font-size: clamp(3rem, 9.5vw, 4.2rem); }
  .hero__sub { font-size: 0.95rem; margin-bottom: 24px; }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
}

/* =====================================================================
   HERO REFINEMENT — Video rotation, lighter overlay, seamless header,
   content alignment, visual hierarchy
   ===================================================================== */

/* ── 1. VIDEO CROSSFADE SYSTEM ───────────────────────────────────────
   Two-slot approach: active slot visible, standby slot at opacity 0.
   JS toggles .hero__video--active to crossfade between them.          */

.hero__video--slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
  pointer-events: none;
}

.hero__video--active {
  opacity: 0.62;
}

/* Suppress browser's native play overlay on all platforms */
.hero__video--slot {
  /* iOS Safari hack: clip-path creates a stacking context that hides the native play button */
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.hero__video--slot::-webkit-media-controls,
.hero__video--slot::-webkit-media-controls-enclosure,
.hero__video--slot::-webkit-media-controls-overlay-enclosure,
.hero__video--slot::-webkit-media-controls-overlay-play-button,
.hero__video--slot::-webkit-media-controls-start-playback-button,
.hero__video--slot::-webkit-media-controls-play-button,
.hero__video--slot::-webkit-media-controls-panel {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
  width: 0 !important;
  height: 0 !important;
}

/* ── 2. LIGHTER OVERLAY ──────────────────────────────────────────────
   Bottom-loaded gradient: light at top (shows footage), dark at bottom
   (keeps text readable). Max opacity reduced from 0.92 → 0.68.        */

.hero__video-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 4, 1, 0.22)   0%,
      rgba(0, 8, 2, 0.38)  40%,
      rgba(0, 0, 0, 0.68)  80%,
      rgba(0, 0, 0, 0.80) 100%
    );
}

/* ── 3. SEAMLESS HEADER — NAV + TRUST BAR AS ONE UNIT ────────────────
   Both layers share the same translucent dark-green background.
   Only the bottom of the trust bar carries a separator.               */

.nav {
  background: rgba(6, 16, 7, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: none;
}

.nav.scrolled {
  background: rgba(4, 11, 5, 0.99);
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.4);
  border-bottom: none;
}

.nav-trust-bar {
  background: rgba(6, 16, 7, 0.97);  /* exact match to .nav */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);  /* hairline from nav */
  border-bottom: 1px solid rgba(111, 207, 69, 0.13);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

/* ── 4. HERO CONTENT — GRID, WIDTH, HIERARCHY ───────────────────────*/

.hero__content {
  max-width: 600px;  /* constrained for clean line breaks */
}

/* Eyebrow — compact, not competing with headline */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero__eyebrow-flag { font-size: 1rem; line-height: 1; }

/* Headline — maximum visual impact */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 22px;
}

.hero__headline--accent {
  display: block;
  color: var(--green-lime);
  text-shadow: 0 0 60px rgba(111, 207, 69, 0.25);
}

/* Supporting copy — concise, max 2 lines ideal */
.hero__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 510px;
  margin-bottom: 32px;
}

/* CTAs — primary dominates, ghost is secondary */
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.hero__cta-primary {
  font-size: 1rem;
  padding: 16px 36px;
  box-shadow: 0 6px 28px rgba(111, 207, 69, 0.38);
  letter-spacing: 0.2px;
}

.hero__cta-primary:hover {
  box-shadow: 0 10px 40px rgba(111, 207, 69, 0.52);
  transform: translateY(-3px);
}

/* Ghost CTA — clearly secondary */
.hero__actions .btn--ghost {
  padding: 16px 26px;
  font-size: 0.92rem;
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.8);
}

.hero__actions .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: none;
}

/* Trust badges — small supporting detail, not the focus */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.2px;
}

.hero__badge-item svg {
  color: rgba(111, 207, 69, 0.75);
  flex-shrink: 0;
}

/* Hero body — vertically centred, with good breathing room */
.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 36px 0 32px;
}

/* Stats bar — standalone section, padding already set above */

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

.hero__stat {
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--green-lime);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.hero__stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.44);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ── 5. RESPONSIVE OVERRIDES ─────────────────────────────────────────*/

@media (max-width: 900px) {
  .hero__content { max-width: 100%; }
  .hero__sub { max-width: 100%; font-size: 0.97rem; }
  .hero__headline { font-size: clamp(3rem, 7.5vw, 4.8rem); }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
  .hero__stat { border-top: 1px solid rgba(255,255,255,0.05); }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) { border-top: none; }
}

@media (max-width: 640px) {
  .hero__headline { font-size: clamp(2.8rem, 10.5vw, 3.8rem); letter-spacing: 0.5px; }
  .hero__sub { font-size: 0.93rem; margin-bottom: 26px; max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 26px; }
  .hero__actions .btn { justify-content: center; text-align: center; }
  .hero__cta-primary { padding: 15px 28px; }
  .hero__actions .btn--ghost { padding: 14px 24px; }
  .hero__badges { gap: 7px 14px; }
  .hero__badge-item { font-size: 0.69rem; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat-number { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero__stat-label { font-size: 0.62rem; letter-spacing: 0.8px; }
  .hero__body { padding: 28px 0 24px; }
}

/* =====================================================================
   HERO PLAYLIST — transition speed, overlay lightness
   ===================================================================== */

/* Crossfade matches requirement: 0.5–1 s */
.hero__video--slot {
  transition: opacity 0.75s ease-in-out;
}

/* Brighter — let the before-and-after footage speak for itself */
.hero__video--active {
  opacity: 0.74;
}

/*
 * Subtle gradient overlay:
 * – Top 50 %  :  nearly clear  → video is the hero, cleaning process visible
 * – Bottom 50 %: gently darkens → text stays readable without blanket filter
 */
.hero__video-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,  0,  0,  0.08)  0%,
    rgba(0,  4,  1,  0.20) 40%,
    rgba(0,  0,  0,  0.50) 72%,
    rgba(0,  0,  0,  0.66) 100%
  );
}

/* =====================================================================
   SITE HEADER — single fixed wrapper, zero-gap structure
   ===================================================================== */

/*
 * The .site-header is the ONLY fixed element in the header stack.
 * .nav and .nav-trust-bar are plain block children inside it —
 * they stack naturally with no gap, no independent positioning.
 *
 * JS sets .site-header { top } once to clear the urgency bar.
 * That is the only layout calculation needed.
 */

.site-header {
  position: fixed;
  top: 0;          /* overridden by JS to clear urgency bar */
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  /* Shared background for both nav and trust bar rows */
  background: rgba(6, 16, 7, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Scrolled state applied by JS to the wrapper, not the nav */
.site-header.scrolled {
  background: rgba(4, 11, 5, 0.99);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

/*
 * Strip ALL independent-positioning from .nav when inside .site-header.
 * It becomes a normal block element; layout is handled by the parent.
 */
.site-header > .nav {
  position: static;  /* removes fixed/relative/absolute — true block flow */
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  /* Padding stays — controls the nav bar height */
}

/* Scrolled padding reduction still works on the nav element */
.site-header > .nav.scrolled {
  background: transparent;  /* background is on .site-header.scrolled */
  box-shadow: none;
  padding: 10px 0;
}

/*
 * Strip ALL independent-positioning from .nav-trust-bar inside site-header.
 * It flows directly after .nav with zero gap because they're siblings.
 */
.site-header > .nav-trust-bar {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  /* Keep the hairline separator between nav and trust bar rows */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(111, 207, 69, 0.12);
  /* Scroll-hide animation */
  overflow: hidden;
  max-height: 100px;
  transition: max-height 0.35s ease, padding 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.site-header > .nav-trust-bar.trust-bar--hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: 0;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Mobile trust bar — stars + region only, centred */
  .site-header > .nav-trust-bar {
    padding: 6px 12px;
    max-height: 100px;
  }
  .site-header > .nav-trust-bar .nav-trust-bar__sep,
  .site-header > .nav-trust-bar .nav-trust-bar__points { display: none; }
  .site-header > .nav-trust-bar .nav-trust-bar__rating {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .site-header > .nav-trust-bar .nav-trust-bar__region { display: inline; }
  .site-header > .nav-trust-bar .nav-trust-bar__rating::after { content: none; }
  /* Make nav the dropdown's containing block */
  .site-header > .nav { position: relative; }
}

/* =========================================
   LOGO RESPONSIVE SIZING
   ========================================= */

/* Nav logo — scales down on smaller viewports */
@media (max-width: 1024px) {
  .nav__logo img { height: 100px; }
}

@media (max-width: 900px) {
  .nav__logo img { height: 88px; max-width: 270px; }
  .footer__logo  { height: 88px; max-width: 280px; }
}

@media (max-width: 640px) {
  .nav__logo img { height: 52px; max-width: 180px; }
  .footer__logo  { height: 72px; max-width: 240px; }
}

/* Ensure nav inner has enough space with larger logo */
.site-header > .nav .nav__inner,
.nav__inner {
  min-height: 0; /* allow flex to size naturally */
}

/* Nav padding adjustment for larger logo */
.site-header > .nav {
  padding: 8px 0;
}

.site-header > .nav.scrolled {
  padding: 6px 0;
}


/* =========================================
   TESTIMONIALS WITH SCREENSHOTS
   ========================================= */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.testimonial-card__screenshot {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
}

.testimonial-card__body {
  padding: 22px 24px 24px;
}

.testimonial-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 0;
  margin-bottom: 10px;
}

.testimonial-card__quote {
  font-size: 0.93rem;
  color: var(--off-black);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-card__source {
  font-size: 0.76rem;
  color: #999;
  margin-top: 3px;
}

/* Dot indicators — hidden on desktop */
.testimonials__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.testimonials__dot.active {
  background: var(--green-dark);
  transform: scale(1.35);
}

@media (max-width: 900px) {
  .testimonials__grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding: 0 24px 8px;
    margin: 40px -24px 0;
    max-width: none;
    grid-template-columns: unset;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonials__grid .testimonial-card {
    flex: 0 0 85vw;
    max-width: 380px;
    scroll-snap-align: start;
  }
  .testimonials__dots { display: flex; }
}

/* =========================================
   SIMPLE PRICING
   ========================================= */
.pricing__simple {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pricing__simple-card {
  background: var(--white);
  border: 2px solid var(--green-lime);
  border-radius: 20px;
  padding: 48px 56px;
  text-align: center;
  max-width: 460px;
  width: 100%;
}

.pricing__simple-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.pricing__simple-from {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0;
  line-height: 1;
}

.pricing__simple-price {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--off-black);
  line-height: 1;
  margin-bottom: 28px;
}

.pricing__note-inline {
  font-size: 0.8rem;
  color: #999;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .pricing__simple-card { padding: 36px 24px; }
  .pricing__simple-price { font-size: 4rem; }
}


/* =========================================
   PRICING TABS
   ========================================= */
.pricing-tabs__header {
  display: flex;
  background: var(--cream);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #e0e0e0;
  max-width: 280px;
  margin: 0 auto 48px;
}

.pricing-tab-btn {
  flex: 1;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-tab-btn.active {
  background: var(--off-black);
  color: var(--green-lime);
}

.pricing-tab-panel {
  display: none;
}

.pricing-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-tab-panel.active {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* =========================================
   FOUR-STEP LAYOUT (How It Works page)
   ========================================= */
.steps--four {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

@media (max-width: 900px) {
  .steps--four { grid-template-columns: 1fr; }
}

/* =========================================
   BENEFITS GRID (Why Choose Us page)
   ========================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.benefit-card__icon {
  color: var(--green-lime);
  line-height: 0;
  margin-bottom: 16px;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--off-black);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.benefit-card__desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* =========================================
   KEEP COMING BACK (Why Choose Us page)
   ========================================= */
.keep-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  text-align: center;
}

.keep-item {
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.keep-item:last-child { border-right: none; }

.keep-item__icon { color: var(--green-lime); line-height: 0; margin-bottom: 14px; }

.keep-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.keep-item__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .keep-grid { grid-template-columns: repeat(3, 1fr); }
  .keep-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .keep-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 580px) {
  .keep-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================
   HERO — SHORT VIEWPORT COMPRESSION
   Tightens vertical rhythm on laptop screens
   that are 860 px tall or shorter so the entire
   content stack fits without clipping.
   ========================================= */

@media (max-height: 860px) {
  .hero__body         { padding: 36px 0 48px; }
  .hero__eyebrow      { margin-bottom: 18px; padding: 6px 14px; }
  .hero__headline     { margin-bottom: 18px; }
  .hero__sub          { margin-bottom: 24px; }
  .hero__actions      { margin-bottom: 28px; }
}

@media (max-height: 720px) {
  .hero__body         { padding: 24px 0 36px; }
  .hero__eyebrow      { margin-bottom: 12px; }
  .hero__headline     { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 12px; }
  .hero__sub          { margin-bottom: 18px; font-size: 0.95rem; }
  .hero__actions      { margin-bottom: 18px; gap: 10px; }
  .hero__badges       { gap: 6px 12px; }
  .hero__stat         { padding: 8px 12px; }
  .hero__stat-number  { font-size: clamp(1.4rem, 3vw, 2rem); }
  .hero__stats-bar    { padding: 12px 0; }
}

/* =========================================
   HERO STATS BAR — RESPONSIVE
   Ensures stats are always visible and never
   clipped on tablet or mobile viewports.
   ========================================= */

/* 2-col on tablet (already set at 900px width, this adds height fallback) */
@media (max-width: 640px) {
  .hero__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .hero__stat {
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 10px 12px;
  }
  /* Remove right border from even columns, bottom border from last row */
  .hero__stat:nth-child(2n) { border-right: none; }
  .hero__stat:nth-child(3),
  .hero__stat:nth-child(4) { border-bottom: none; }
}


/* =========================================
   MOBILE UX — CONVERSION & POLISH FIXES
   All rules below are mobile-scoped only.
   Desktop experience is unchanged.
   ========================================= */

/* Urgency bar marquee — JS sets --mq-offset to exact physical-pixel width */
@keyframes urgency-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--mq-offset, -50%)); }
}

/* 1 — FLOATING CTA
   Hidden on mobile & tablet — competes with
   sticky CTA and causes visual clutter.        */
@media (max-width: 900px) {
  .floating-cta { display: none !important; }
}

@media (max-width: 640px) {

  /* ── 2. URGENCY BAR — marquee ───────────
     Fixed above navigation. Text scrolls
     continuously. Close btn stays pinned.     */
  .urgency-bar {
    position: fixed !important;  /* never relative — always above nav */
    padding: 4px 30px 4px 10px;
    gap: 0;
    overflow: hidden;
  }
  .urgency-bar__icon { display: none; }
  .urgency-bar__inner {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.65rem;
    gap: 0;
    letter-spacing: 0.1px;
  }
  /* Marquee track — paused until JS measures exact copy width */
  .urgency-bar__track {
    display: inline-flex;
    align-items: center;
    animation: urgency-marquee 22s linear infinite;
    animation-play-state: paused;
    will-change: transform;
  }
  .urgency-bar__track-content {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 80px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .urgency-bar__inner p { white-space: nowrap; }
  .urgency-bar__close {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    padding: 1px 3px;
    z-index: 1;
    flex-shrink: 0;
  }

  /* ── 3. NAVIGATION ──────────────────────
     Single row: logo left, burger right.
     Height held by nav__inner fixed at 64px. */
  .nav {
    background: var(--off-black) !important;
    box-shadow: 0 2px 24px rgba(0,0,0,0.55);
    padding: 0 !important;
  }
  .nav__inner { height: 80px; }
  /* Logo: fits the 80px bar */
  .nav__logo img {
    height: 60px;
    max-width: 190px;
  }
  /* Burger lines — clearly visible on dark opaque bg */
  .nav__burger span { background: var(--white); }

  /* Mobile menu — full-width dropdown below nav bar */
  .nav__links {
    background: rgba(6, 16, 7, 0.99) !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow-y: visible !important;
  }
  .nav__links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a {
    font-size: 1rem;
    display: block;
    padding: 17px 24px;
    color: rgba(255,255,255,0.88);
  }
  /* CTA row — full-width green button at bottom of menu */
  .nav__links-cta {
    padding: 18px 24px 24px;
    border-bottom: none !important;
  }
  .nav__links .nav__cta {
    background: var(--green-lime) !important;
    color: var(--black) !important;
    padding: 15px 24px !important;
    border-radius: 8px;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    font-size: 1rem !important;
    font-weight: 700;
  }

  /* Mobile trust bar — stars + region only, centred */
  .nav-trust-bar { padding: 6px 12px; }
  .nav-trust-bar .nav-trust-bar__sep,
  .nav-trust-bar .nav-trust-bar__points { display: none; }
  .nav-trust-bar .nav-trust-bar__rating {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .nav-trust-bar .nav-trust-bar__region { display: inline; }
  .nav-trust-bar .nav-trust-bar__rating::after { content: none; }

  /* ── 4. HERO LAYOUT ─────────────────────
     Clean hierarchy: Headline → Sub → CTAs
     → Stats. Badges hidden (redundant with
     stats bar). Eyebrow slimmed.               */
  .hero__eyebrow {
    font-size: 0.72rem;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  /* Icon badge row hidden — stats bar covers same signals */
  .hero__badges { display: none; }
  /* Actions already stacked via existing rule — ensure margins */
  .hero__actions { margin-bottom: 20px; gap: 10px; }

  /* ── 5. STICKY MOBILE CTA ──────────────
     Slimmer footprint. Stays visible but
     no longer dominates the viewport.         */
  .sticky-mobile-cta {
    padding: 6px 10px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  }
  .sticky-mobile-cta .btn {
    padding: 10px 10px;
    font-size: 0.8rem;
    letter-spacing: 0.1px;
  }

}

