/* ==========================================================================
   EZPZ Property Management — Design System
   ========================================================================== */

:root {
  /* Brand colours (extracted from logo) */
  --navy: #0f2d4b;
  --navy-deep: #0a1f36;
  --navy-soft: #1e4b78;
  --steel: #4a6b8a;

  /* Challenger accent — lime/electric green for personality */
  --lime: #c5f44a;
  --lime-dark: #a8d72f;
  --lime-soft: #e8fbb8;

  /* Neutrals */
  --cream: #f7f4ed;
  --cream-warm: #efeae0;
  --paper: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --grey-300: #d4d0c8;
  --grey-500: #8a8780;

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4rem;
  --s-8: 6rem;
  --s-9: 8rem;

  /* Shape */
  --r-s: 8px;
  --r-m: 16px;
  --r-l: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 62ch;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--navy);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

@media (min-width: 768px) {
  .wrap { padding: 0 var(--s-6); }
}

section {
  padding: var(--s-8) 0;
}

@media (max-width: 768px) {
  section { padding: var(--s-7) 0; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 237, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 45, 75, 0.08);
  transition: all 0.3s var(--ease);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

@media (min-width: 768px) {
  .nav__inner { padding: 0 var(--s-6); }
}

.nav__logo {
  height: 38px;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 100%;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--s-5);
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: var(--s-1) 0;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--navy-soft); }

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.25s var(--ease);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--navy);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}

.nav__cta:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-1px);
}

/* On mobile, hide the inline nav CTA — replaced by a floating button */
@media (max-width: 899px) {
  .nav__cta { display: none; }
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: var(--s-2);
  background: transparent;
  border: none;
  cursor: pointer;
}

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

.nav__burger span {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ----------------------------------------------------------------------
   MOBILE MENU — MUST be a solid navy overlay across iOS Safari, Chrome,
   Firefox, etc. This block uses multiple defensive techniques because
   iOS Safari has historically had bugs with `inset: 0` + `position: fixed`
   + CSS variables. Hard-coded values, !important on every property,
   and a box-shadow safety-net to fill any rendering gaps.
   ---------------------------------------------------------------------- */

.nav__mobile {
  display: none;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;                 /* dynamic viewport units for iOS Safari */
  background: #0f2d4b !important;
  background-color: #0f2d4b !important;
  /* The huge inset box-shadow acts as a "fill" if for any reason the
     background fails to paint to all edges. Same colour as bg. */
  box-shadow: inset 0 0 0 100vmax #0f2d4b !important;
  padding: 90px 28px 28px !important;
  z-index: 99999 !important;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Prevent any backdrop transparency */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav__mobile.is-open {
  display: flex !important;
}

.nav__mobile a {
  font-size: 1.7rem !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  color: #f7f4ed !important;                 /* cream */
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(247, 244, 237, 0.15) !important;
  background: transparent !important;
  text-decoration: none !important;
  letter-spacing: -0.01em;
  display: block !important;
  width: 100% !important;
  position: relative;
  z-index: 1;                                /* above the box-shadow safety-net */
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav__mobile a:hover,
.nav__mobile a:focus,
.nav__mobile a.is-active {
  color: #c5f44a !important;                 /* lime accent */
  padding-left: 8px !important;
}

.nav__mobile a:last-child {
  border-bottom: none !important;
}

/* Close (X) button — top-right, always visible, cream-coloured */
.nav__mobile-close {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  color: #f7f4ed !important;
  z-index: 2;
  padding: 0;
}

.nav__mobile-close::before,
.nav__mobile-close::after {
  content: "" !important;
  position: absolute;
  width: 26px;
  height: 2.5px;
  background: #f7f4ed !important;
  border-radius: 2px;
}

.nav__mobile-close::before { transform: rotate(45deg); }
.nav__mobile-close::after { transform: rotate(-45deg); }

/* Floating bottom-left "Get an appraisal" CTA on mobile.
   Sticky chat-style button — follows scroll, sits above page content.
   Hidden on desktop (where the inline nav CTA is shown instead). */
.nav__cta-floating {
  display: none;
  position: fixed;
  left: var(--s-4);
  bottom: var(--s-4);
  z-index: 90;
  background: var(--navy);
  color: var(--cream);
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  align-items: center;
  gap: var(--s-2);
  box-shadow: 0 8px 24px -6px rgba(15, 45, 75, 0.45);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.nav__cta-floating:hover,
.nav__cta-floating:active {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
}

.nav__cta-floating svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 899px) {
  .nav__cta-floating { display: inline-flex; }
}

/* Hide the floating CTA when the mobile menu is open so it doesn't sit on top */
.nav__mobile.is-open ~ .nav__cta-floating,
body.menu-open .nav__cta-floating {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

.btn--primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(15, 45, 75, 0.25);
}

.btn--dark {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn--dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: var(--s-7) 0 var(--s-8);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: stretch;
}

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-8);
  }
}

.hero__title {
  margin-bottom: var(--s-5);
}

.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--navy);
}

.hero__title em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6%;
  height: 28%;
  background: var(--lime);
  z-index: -1;
  transform: skew(-3deg);
  border-radius: 3px;
}

.hero__sub {
  margin-bottom: var(--s-5);
  max-width: 50ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}

.hero__quote-block {
  margin: 0;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(15, 45, 75, 0.15);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--s-4);
  row-gap: var(--s-2);
  align-items: start;
  max-width: 580px;
}

.hero__quote-mark {
  width: 36px;
  height: 36px;
  color: var(--lime);
  grid-row: span 2;
  flex-shrink: 0;
  margin-top: 4px;
}

.hero__quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}

.hero__quote-cite {
  font-size: 0.92rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  flex: 1;
  min-height: 460px;
  display: flex;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(197, 244, 74, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.hero__visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: var(--s-5);
  color: var(--cream);
  width: 100%;
  gap: var(--s-3);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(197, 244, 74, 0.15);
  border: 1px solid var(--lime);
  color: var(--lime);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.hero__google-mark {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.hero__google-mark:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   Days Counter (above review carousel)
   ========================================================================== */

.hero__right {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  height: 100%;
}

/* Lease board photo sitting below the 9 Days card in the hero right column */
.hero__photo {
  margin: 0;
  border-radius: var(--r-l);
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
  flex: 1 1 auto;          /* take all remaining vertical space in the column */
  min-height: 280px;
}

.hero__photo picture,
.hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__photo img {
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s ease;
}

.hero__photo:hover img {
  transform: scale(1.03);
}

.hero__photo-caption {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  z-index: 2;
}

.hero__photo-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.hero__photo-place {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* On mobile, give it a sensible aspect ratio rather than stretching to fill */
@media (max-width: 999px) {
  .hero__photo {
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo img { transition: none; }
}

.days-counter {
  background: linear-gradient(135deg, var(--lime) 0%, #d8ff66 100%);
  border-radius: var(--r-l);
  padding: var(--s-4) var(--s-5);
  position: relative;
  overflow: hidden;
}

.days-counter::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(15, 45, 75, 0.06);
  pointer-events: none;
}

.days-counter__row {
  display: flex;
  align-items: flex-end;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}

.days-counter__num-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 0 var(--s-2);
}

.days-counter__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 0.85;
  letter-spacing: -0.05em;
  display: inline-block;
  transform-origin: center bottom;
  transition: none;
}

/* Balloon-and-settle animation, fired by JS adding .is-celebrating */
.days-counter__num.is-celebrating {
  animation: balloonSettle 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes balloonSettle {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.55) rotate(-3deg); }
  55%  { transform: scale(0.85) rotate(2deg); }
  72%  { transform: scale(1.18) rotate(-1deg); }
  85%  { transform: scale(0.96); }
  100% { transform: scale(1) rotate(0); }
}

/* Confetti-style sparkles around the number when it lands */
.days-counter__num-wrap::after {
  content: "";
  position: absolute;
  inset: -10px;
  background-image:
    radial-gradient(circle at 15% 20%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 85% 30%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 25% 80%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 75% 75%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 50% 10%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 95% 55%, var(--navy) 2px, transparent 3px);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.3);
}

.days-counter__num-wrap.is-celebrating::after {
  animation: sparkleBurst 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes sparkleBurst {
  0%   { opacity: 0; transform: scale(0.3); }
  40%  { opacity: 1; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.8); }
}

.days-counter__label-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding-bottom: var(--s-2);
}

.days-counter__label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.days-counter__sub {
  font-size: 0.92rem;
  color: var(--navy);
  opacity: 0.75;
  margin-top: var(--s-3);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.days-counter__date {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .days-counter__num.is-celebrating { animation: none; }
  .days-counter__num-wrap.is-celebrating::after { animation: none; opacity: 0; }
}

/* ==========================================================================
   Reviews Carousel (vertical, auto-scrolling, infinite)
   ========================================================================== */


.reviews-carousel {
  position: relative;
  flex: 1;
  margin: var(--s-4) 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%);
  min-height: 220px;
  max-height: 420px;
}

.reviews-carousel__track {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  animation: reviewScroll 60s linear infinite;
  animation-play-state: running;
}

.reviews-carousel:hover .reviews-carousel__track,
.reviews-carousel:focus-within .reviews-carousel__track {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.review {
  background: rgba(247, 244, 237, 0.05);
  border: 1px solid rgba(247, 244, 237, 0.1);
  border-radius: var(--r-m);
  padding: var(--s-3) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex-shrink: 0;
}

.review__stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.review__text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-weight: 500;
  max-width: none;
  margin: 0;
}

.review__author {
  font-size: 0.82rem;
  color: rgba(247, 244, 237, 0.6);
  font-weight: 500;
}

.reviews-carousel__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--lime);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.88rem;
  align-self: flex-start;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--lime);
}

.reviews-carousel__cta:hover {
  background: transparent;
  color: var(--lime);
  transform: translateY(-1px);
}

.reviews-carousel__cta svg {
  transition: transform 0.25s var(--ease);
}

.reviews-carousel__cta:hover svg {
  transform: translate(2px, -2px);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track {
    animation: none;
  }
  .hero__badge-dot {
    animation: none;
  }
}

.hero__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: auto;
}

.hero__quote-author {
  margin-top: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.9rem;
  color: rgba(247, 244, 237, 0.7);
}

.hero__quote-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

/* Decorative blob */
.hero__blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-soft) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.hero__blob--1 { top: -100px; right: -100px; }

/* ==========================================================================
   Reviews section — full-width Google reviews marquee, scrolls left to right
   ========================================================================== */

.reviews-section {
  padding: var(--s-7) 0 var(--s-7);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.reviews-section__head {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  align-items: flex-start;
}

@media (min-width: 800px) {
  .reviews-section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s-5);
  }
}

.reviews-section__title {
  margin-top: var(--s-3);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.reviews-section__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--navy);
}

.reviews-section__title em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6%;
  height: 28%;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
}

.reviews-section__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--cream);
  color: var(--navy);
  padding: 11px 18px;
  border: 1.5px solid rgba(15, 45, 75, 0.18);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
}

.reviews-section__cta:hover {
  background: rgba(15, 45, 75, 0.04);
  border-color: rgba(15, 45, 75, 0.4);
  transform: translateY(-1px);
}

.reviews-section__cta-arrow {
  transition: transform 0.25s var(--ease);
}

.reviews-section__cta:hover .reviews-section__cta-arrow {
  transform: translate(2px, -2px);
}

/* --- Marquee track: continuous horizontal scroll, pauses on hover --- */

.reviews-marquee {
  position: relative;
  /* Soft fade at the edges so cards appear/disappear gracefully */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  padding: var(--s-3) 0;
}

.reviews-marquee__track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  animation: reviewsMarquee 80s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-marquee__track,
.reviews-marquee:focus-within .reviews-marquee__track {
  animation-play-state: paused;
}

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

/* On mobile, faster scroll so the carousel feels alive on smaller screens */
@media (max-width: 720px) {
  .reviews-marquee__track {
    animation-duration: 50s;
    gap: var(--s-3);
  }
}

/* --- Individual review card --- */

.google-review {
  flex: 0 0 auto;
  width: 340px;
  max-width: 80vw;
  background: #ffffff;
  border-radius: var(--r-l, 16px);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  box-shadow: 0 2px 12px -2px rgba(15, 45, 75, 0.08), 0 1px 3px rgba(15, 45, 75, 0.04);
  border: 1px solid rgba(15, 45, 75, 0.06);
}

@media (min-width: 800px) {
  .google-review {
    width: 380px;
  }
}

.google-review__head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.google-review__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  user-select: none;
}

.google-review__meta {
  flex: 1;
  min-width: 0;
}

.google-review__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a73e8;          /* Google's link blue */
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-review__time {
  font-size: 0.78rem;
  color: rgba(15, 45, 75, 0.55);
  margin-top: 2px;
  display: block;
}

.google-review__row {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.google-review__stars {
  color: #fbbc05;            /* Google star yellow */
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-review__when {
  font-size: 0.78rem;
  color: rgba(15, 45, 75, 0.55);
}

.google-review__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
  /* Clamp very long reviews to 6 lines so card heights stay sane.
     Hover/focus removes the clamp so people can read the whole thing. */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-review:hover .google-review__text,
.google-review:focus-within .google-review__text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.google-review__google-mark {
  align-self: flex-start;
  width: 18px;
  height: 18px;
  opacity: 0.85;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none;
    /* Show a horizontally-scrollable static row so reduced-motion users still see all reviews */
    overflow-x: auto;
    width: 100%;
  }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: var(--s-4) 0;
  overflow: hidden;
  border-top: 1px solid rgba(247, 244, 237, 0.1);
  border-bottom: 1px solid rgba(247, 244, 237, 0.1);
}

.marquee__track {
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.marquee__dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* Mobile: marquee runs 2x faster (20s instead of 40s) */
@media (max-width: 720px) {
  .marquee__track {
    animation-duration: 20s;
    font-size: 1.2rem;
    gap: var(--s-5);
  }
}

/* Mobile-collapsible cards (used in "Everything your old agent forgot to do") */
.cards__see-more {
  display: none; /* hidden by default — desktop never sees it */
  margin: var(--s-5) auto 0;
  padding: var(--s-3) var(--s-5);
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 244, 237, 0.3);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: var(--s-2);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.cards__see-more:hover {
  background: rgba(247, 244, 237, 0.06);
  border-color: rgba(247, 244, 237, 0.5);
}

.cards__see-more-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.cards__see-more.is-expanded .cards__see-more-icon {
  transform: rotate(180deg);
}

/* On dark sections the button needs cream text; on light sections, navy */
section:not(.stats):not([class*="dark"]) .cards__see-more {
  color: var(--navy);
  border-color: rgba(15, 45, 75, 0.2);
}
section:not(.stats):not([class*="dark"]) .cards__see-more:hover {
  background: rgba(15, 45, 75, 0.05);
  border-color: rgba(15, 45, 75, 0.4);
}

/* Mobile (<= 720px): hide cards 4-6 by default, reveal when expanded */
@media (max-width: 720px) {
  .cards__see-more {
    display: inline-flex;
  }
  .cards--mobile-collapsible .card--mobile-hidden {
    display: none;
  }
  .cards--mobile-collapsible.is-expanded .card--mobile-hidden {
    display: flex;
    animation: cardFadeIn 0.4s var(--ease) both;
  }
}

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

/* ==========================================================================
   Section header
   ========================================================================== */

.sec-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-7);
  max-width: 800px;
}

.sec-head--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Cards / Feature grid
   ========================================================================== */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

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

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

.card {
  background: var(--paper);
  border-radius: var(--r-l);
  padding: var(--s-5);
  border: 1px solid rgba(15, 45, 75, 0.08);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: 0 24px 48px -16px rgba(15, 45, 75, 0.12);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--lime);
  border-radius: var(--r-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-2);
  transition: transform 0.3s var(--ease);
}

.card:hover .card__icon {
  transform: rotate(-6deg) scale(1.05);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

.card h3 {
  font-size: 1.4rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats {
  background: var(--navy);
  color: var(--cream);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 244, 74, 0.12), transparent 70%);
  filter: blur(60px);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  position: relative;
}

@media (min-width: 800px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  text-align: left;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime);
  margin-bottom: var(--s-2);
}

.stat__label {
  font-size: 0.95rem;
  color: rgba(247, 244, 237, 0.7);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Stats showcase
   Layout: left column stacks the compact "9 Days" card on top of a photo
   carousel; right column holds the LEASED board photo at full column height.
   Below the showcase sits a centred CTA button.
   -------------------------------------------------------------------------- */

.stats__showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
  position: relative;
  z-index: 1;
}

@media (min-width: 820px) {
  .stats__showcase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s-5);
    align-items: stretch;
  }
}

.stats__showcase-card {
  border-radius: var(--r-l);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Left column: stacks the days card and the carousel */
.stats__left-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  min-width: 0;
}

@media (min-width: 820px) {
  .stats__left-col {
    gap: var(--s-4);
  }
}

/* --- Days card (compact — sized to its content, not stretched) --- */
.stats__days {
  background: linear-gradient(135deg, var(--lime) 0%, #d8ff66 100%);
  padding: var(--s-4) var(--s-5);
  flex: 0 0 auto;
}

.stats__days::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(15, 45, 75, 0.06);
  pointer-events: none;
}

.stats__days-row {
  display: flex;
  align-items: flex-end;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}

.stats__days-num-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 0 var(--s-1);
}

.stats__days-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 0.85;
  letter-spacing: -0.05em;
  display: inline-block;
  transform-origin: center bottom;
}

.stats__days-num.is-celebrating {
  animation: balloonSettle 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.stats__days-num-wrap::after {
  content: "";
  position: absolute;
  inset: -10px;
  background-image:
    radial-gradient(circle at 15% 20%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 85% 30%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 25% 80%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 75% 75%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 50% 10%, var(--navy) 2px, transparent 3px),
    radial-gradient(circle at 95% 55%, var(--navy) 2px, transparent 3px);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.3);
}

.stats__days-num-wrap.is-celebrating::after {
  animation: sparkleBurst 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.stats__days-label-row {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--s-2);
}

.stats__days-label {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats__days-sub {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.75;
  margin-top: var(--s-3);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.stats__days-date {
  opacity: 0.85;
}

/* --- Photo carousel: takes remaining vertical space in the left column --- */
.stats__carousel {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--navy-deep);
  flex: 1 1 auto;
  min-height: 280px;
  /* Fallback aspect ratio so it has size when the right column is short */
  aspect-ratio: 4 / 3;
}

@media (min-width: 820px) {
  .stats__carousel {
    aspect-ratio: auto;   /* fills remaining height in the column instead */
    min-height: 240px;
  }
}

.stats__carousel-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stats__carousel-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  display: block;
}

.stats__carousel-slide.is-active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.stats__carousel-slide.is-leaving {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

.stats__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Subtle gradient overlay at the bottom for contrast against any future captions */
.stats__carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(10, 31, 54, 0.35), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Thin progress bar at the top of the carousel showing slide timing */
.stats__carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--lime);
  width: 0;
  z-index: 4;
  pointer-events: none;
}

/* --- Right column: LEASED board photo (full column height) --- */
.stats__photo {
  margin: 0;
  background: var(--navy-deep);
  min-height: 320px;
}

@media (min-width: 820px) {
  .stats__photo {
    height: 100%;
  }
}

.stats__photo picture,
.stats__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.stats__photo img {
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s ease;
}

.stats__photo:hover img {
  transform: scale(1.03);
}

.stats__photo-caption {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  z-index: 2;
}

.stats__photo-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.stats__photo-place {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* --- CTA button below the showcase --- */
.stats__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--s-6);
  position: relative;
  z-index: 1;
}

.btn--lime {
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  border: none;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 8px 24px -8px rgba(197, 244, 74, 0.45);
}

.btn--lime:hover {
  transform: translateY(-2px);
  background: #d8ff66;
  box-shadow: 0 12px 32px -8px rgba(197, 244, 74, 0.6);
}

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

.btn--lime .btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.btn--lime:hover .btn__arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .stats__days-num.is-celebrating { animation: none; }
  .stats__days-num-wrap.is-celebrating::after { animation: none; opacity: 0; }
  .stats__photo img,
  .stats__carousel-slide,
  .btn--lime,
  .btn--lime .btn__arrow { transition: none; }
}

/* ==========================================================================
   Pricing / Comparison
   ========================================================================== */

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
}

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

.compare__col {
  background: var(--paper);
  border-radius: var(--r-l);
  padding: var(--s-6);
  border: 1px solid rgba(15, 45, 75, 0.1);
}

.compare__col--us {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.compare__col--us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dark));
}

.compare__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.compare__col--us .compare__title { color: var(--lime); }

.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 1.0rem;
  line-height: 1.5;
}

.compare__list li::before {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.compare__col--them .compare__list li::before {
  content: "✕";
  background: rgba(15, 45, 75, 0.08);
  color: var(--steel);
}

.compare__col--us .compare__list li::before {
  content: "✓";
  background: var(--lime);
  color: var(--navy);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--lime);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  margin: var(--s-7) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

@media (min-width: 800px) {
  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-6);
  }
}

.cta-band__text {
  flex: 1;
}

.cta-band h2 {
  color: var(--navy);
  margin-bottom: var(--s-3);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.cta-band p {
  color: var(--navy);
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 50ch;
}

/* Decorative shapes inside CTA */
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(15, 45, 75, 0.08);
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: var(--s-8) 0 var(--s-5);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(247, 244, 237, 0.1);
}

@media (min-width: 800px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--lime);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}

.footer__tag {
  font-size: 0.95rem;
  color: rgba(247, 244, 237, 0.7);
  line-height: 1.5;
}

.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: var(--s-3);
  font-family: var(--font-body);
  font-weight: 600;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.footer__col a {
  font-size: 0.95rem;
  color: rgba(247, 244, 237, 0.75);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--lime); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: 0.85rem;
  color: rgba(247, 244, 237, 0.5);
}

@media (min-width: 700px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   Page header (for inner pages)
   ========================================================================== */

.page-header {
  padding: var(--s-7) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}

.page-header__inner {
  max-width: 900px;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  margin-top: var(--s-3);
  margin-bottom: var(--s-4);
}

.page-header__intro {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.5;
}

/* ==========================================================================
   Long-form content
   ========================================================================== */

.prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.4rem;
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}

.prose p { margin-bottom: var(--s-4); }

.prose ul,
.prose ol {
  margin-bottom: var(--s-4);
  padding-left: var(--s-5);
}

.prose li {
  margin-bottom: var(--s-2);
  line-height: 1.6;
}

.prose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
}

@media (min-width: 900px) {
  .prose-grid {
    grid-template-columns: 1fr 2fr;
    gap: var(--s-8);
  }
}

.prose-grid__nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.prose-grid__nav a {
  font-size: 0.95rem;
  color: var(--steel);
  padding: var(--s-2) var(--s-3);
  border-left: 2px solid rgba(15, 45, 75, 0.1);
  transition: all 0.2s;
}

.prose-grid__nav a:hover,
.prose-grid__nav a.is-active {
  color: var(--navy);
  border-left-color: var(--navy);
  background: rgba(197, 244, 74, 0.15);
}

/* ==========================================================================
   Form
   ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid rgba(15, 45, 75, 0.15);
  border-radius: var(--r-m);
  background: var(--paper);
  color: var(--ink);
  transition: all 0.2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(197, 244, 74, 0.25);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial {
  background: var(--paper);
  border-radius: var(--r-l);
  padding: var(--s-5);
  border: 1px solid rgba(15, 45, 75, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  height: 100%;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--navy);
  font-weight: 500;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(15, 45, 75, 0.08);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial__role {
  font-size: 0.85rem;
  color: var(--steel);
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Fade-up: visible by default (SEO + no-JS safe).
   Only hidden once the body gets .js-ready, then revealed on scroll. */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js-ready .fade-up.is-visible {
  opacity: 1;
  transform: none;
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Pricing page — 2 Months Free Offer Band
   ========================================================================== */

.offer-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .offer-band {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--s-7);
    padding: var(--s-8);
  }
}

.offer-band::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 244, 74, 0.18), transparent 70%);
  pointer-events: none;
}

.offer-band__text h2 em {
  display: inline;
}

.offer-band__list {
  list-style: none;
  padding: 0;
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.offer-band__list li {
  color: rgba(247, 244, 237, 0.92);
  font-size: 1rem;
  padding: var(--s-3) 0;
  border-top: 1px solid rgba(247, 244, 237, 0.15);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.offer-band__list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}

.offer-band__card {
  background: var(--cream);
  border-radius: var(--r-l);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 2px solid var(--lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.offer-band__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-soft);
  margin-bottom: var(--s-2);
}

.offer-band__big {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.offer-band__big-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: -8px;
}

.offer-band__pill {
  background: var(--lime);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--s-3);
}

.offer-band__fine {
  color: var(--steel);
  font-size: 0.85rem;
  max-width: 28ch;
  margin-top: var(--s-2);
}

/* ==========================================================================
   Pricing page — Included services list
   ========================================================================== */

.included-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.included-list li {
  background: var(--paper);
  border: 1px solid rgba(15, 45, 75, 0.1);
  border-radius: var(--r-m);
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
}

.included-list li:hover {
  transform: translateX(4px);
  border-color: var(--lime);
  box-shadow: 0 12px 28px -14px rgba(15, 45, 75, 0.15);
}

.included-list__icon {
  width: 36px;
  height: 36px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.included-list__icon svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Pricing page — Teaser CTA band
   ========================================================================== */

.teaser-band {
  background: var(--cream-warm);
  border-radius: var(--r-xl);
  padding: var(--s-6) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  align-items: flex-start;
}

@media (min-width: 800px) {
  .teaser-band {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.teaser-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
