/* ============================================================
   Empire Cleaning & Property Maintenance — Landing Page
   "Sparkles" style: cream + lavender + dark navy card
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --cream: #f1f6f3;          /* page background — cool off-white, faint green */
  --cream-2: #e4efe8;        /* contact cards */
  --cream-3: #d9e8df;        /* contact cards hover */
  --navy: #0b2640;           /* dark hero card — premium navy blue */
  --navy-2: #163a5c;         /* rating pills / dark btn */
  --navy-3: #1f4d73;
  --lavender: #8ad7b1;       /* primary accent — sophisticated mint green */
  --lavender-2: #72ca9c;     /* hover */
  --lavender-bar: #dcefe6;   /* announce bar — soft green */
  --ink: #0b2640;
  --slate: #45565f;
  --slate-2: #66737b;
  --cream-text: #eef4f0;     /* text on dark */
  --gold: #16a978;           /* brand accent (green) */
  --accent: #0c8f60;         /* eyebrow / accent green */
  --border: #d3e2d9;

  --shadow-card: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;

  --radius: 28px;
  --radius-sm: 16px;
  --radius-pill: 999px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Archivo', var(--font-body);

  --container: 1440px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--lavender); color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border: none;
  border-radius: var(--radius-pill);
  transition: transform .18s ease, background .2s ease, box-shadow .25s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--lg { --pad-y: 17px; --pad-x: 30px; font-size: 15px; }

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

.btn--dark { background: var(--navy-2); color: var(--cream-text); }
.btn--dark:hover { background: var(--navy-3); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--cream-text); transform: translateY(-2px); }

/* Primary CTA with circular arrow chip (reference style) */
.btn--arrow { padding-right: 7px; }
.btn__arrow {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff;
  margin-left: 4px; flex-shrink: 0;
  transition: transform .2s ease;
}
.btn__arrow svg { width: 15px; height: 15px; }
.btn--arrow:hover .btn__arrow { transform: translateX(2px); }
/* Phone icon on secondary CTA (mint) */
.btn__phone { width: 18px; height: 18px; color: var(--lavender); flex-shrink: 0; }

/* ============================================================
   FIXED TOP BAR (announce + header)
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--lavender-bar);
  color: var(--navy);
  font-size: 14.5px;
  text-align: center;
}
.announce__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  padding: 11px 20px;
  font-weight: 500;
}
.announce__slots { display: inline-flex; align-items: center; gap: 7px; }
.announce__icon { width: 15px; height: 15px; flex-shrink: 0; }
.announce__link { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.announce__link:hover { color: var(--navy-3); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: relative; z-index: 1;
  background: var(--cream);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--border), var(--shadow-sm); }
.header__inner {
  height: 80px;
  display: flex; align-items: center;
  gap: 40px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 44px; width: auto; display: block; }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; margin-right: auto; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 16px;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav__link:hover { background: rgba(13,26,40,.06); }
.nav__link--caret svg { opacity: .7; }

/* Actions */
.header__actions { display: flex; align-items: center; gap: 12px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin-inline: auto;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 14px; padding-bottom: 16px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.hero__card {
  border-radius: var(--radius);
  min-height: clamp(540px, 70vh, 780px);
  overflow: hidden;
}

/* Left dark card */
.hero__card--dark {
  background: var(--navy);
  padding: clamp(32px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero__ratings { display: flex; flex-wrap: wrap; gap: 12px; }
.rating-proof {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff;
  padding: 8px 18px 8px 10px;
  border-radius: var(--radius-pill);
}
.rating-proof__avatars { display: inline-flex; }
.rating-proof__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}
.rating-proof__avatar:first-child { margin-left: 0; }
.rating-proof__stars { display: inline-flex; gap: 1px; color: #fbb400; }
.rating-proof__stars svg { width: 17px; height: 17px; fill: currentColor; }
.rating-proof__text {
  font-family: var(--font-body);
  font-size: 14px; color: var(--slate); white-space: nowrap;
}
.rating-proof__text strong { color: var(--navy); font-weight: 800; }

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream-text);
  font-size: 68px;
  line-height: .96;
  letter-spacing: -.015em;
  margin-top: auto;
  padding-top: 28px;
}
.hero__title-accent { color: var(--lavender); }

.hero__sub {
  color: var(--cream-text);
  opacity: .82;
  font-size: 18px;
  line-height: 1.5;
  max-width: 47ch;
  margin-top: 20px;
  margin-bottom: auto;
  padding-bottom: 30px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; }

/* Right media card */
.hero__card--media { background: var(--navy-2); position: relative; }
.hero__video {
  width: 100%; height: 100%;
  min-height: clamp(540px, 70vh, 780px);
  object-fit: cover;
}

/* Floating review card over the video */
.video-review {
  position: absolute; z-index: 2;
  right: clamp(14px, 1.6vw, 24px);
  bottom: clamp(14px, 1.6vw, 24px);
  max-width: 340px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 14px 36px rgba(11, 38, 64, .22);
}
.video-review__stars { display: inline-flex; gap: 3px; color: #fbb400; }
.video-review__stars svg { width: 16px; height: 16px; fill: currentColor; }
.video-review__quote {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px; line-height: 1.42;
  color: var(--navy);
}
.video-review__source {
  margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--slate);
}
.video-review__g {
  width: 28px; height: 28px; flex-shrink: 0;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 50%;
}
.video-review__g svg { width: 16px; height: 16px; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip { padding-top: 14px; padding-bottom: 36px; }
.contact-strip__intro {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 15.5px; color: var(--slate);
}
.contact-strip__intro strong { color: var(--navy); font-weight: 700; }
.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 22px;
  transition: transform .18s ease, border-color .2s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--lavender);
  box-shadow: 0 12px 28px rgba(11, 38, 64, .10);
}
.contact-card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--lavender);
  border-radius: 14px;
  color: var(--navy);
  transition: transform .2s ease;
}
.contact-card:hover .contact-card__icon { transform: scale(1.05); }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card__eyebrow {
  font-family: var(--font-head); font-weight: 700;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}
.contact-card__body strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 19px; color: var(--navy); letter-spacing: -.01em;
  line-height: 1.15;
}
.contact-card__value {
  font-size: 14.5px; color: var(--slate);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.contact-card__arrow {
  margin-left: auto; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--slate-2);
  transition: transform .2s ease, color .2s ease;
}
.contact-card__arrow svg { width: 20px; height: 20px; display: block; }
.contact-card:hover .contact-card__arrow { color: var(--navy); transform: translateX(3px); }

/* ============================================================
   SERVICES — "What we clean" (marquee)
   ============================================================ */
.services { padding-top: 88px; padding-bottom: 88px; overflow: hidden; }

.services__head { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 44px; }


.services__title {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96;
  letter-spacing: -.02em;
  color: var(--navy);
}

/* Marquee */
.marquee {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-inline: 11px;
  animation: marquee-scroll 48s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 11px)); }
}

/* Service card */
.svc-card {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.svc-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-card__img { transform: scale(1.06); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,38,64,0) 38%, rgba(8,24,42,.82) 100%);
  z-index: 1;
}
.svc-card__bottom {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding: 24px;
}
.svc-card__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  color: #fff;
  font-size: clamp(20px, 1.6vw, 24px); line-height: 1.05; letter-spacing: -.01em;
  max-width: 200px;
}
.svc-card__arrow {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
  transition: background .25s ease, transform .25s ease;
}
.svc-card__arrow svg { width: 20px; height: 20px; }
.svc-card:hover .svc-card__arrow { background: var(--lavender); color: var(--navy); border-color: var(--lavender); transform: translateX(2px); }

/* Bottom tile */
.services__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  margin-top: 48px;
}
.services__bottom p { color: var(--slate); max-width: 460px; font-size: 16.5px; }
.cta-tertiary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 14px; letter-spacing: .03em; text-transform: uppercase;
  color: var(--navy);
}
.cta-tertiary svg { width: 16px; height: 16px; transition: transform .2s ease; }
.cta-tertiary:hover svg { transform: translateX(4px); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); filter: blur(6px); transition: opacity .7s ease, transform .7s ease, filter .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

/* ============================================================
   SERVICES DETAIL — sticky scroll
   ============================================================ */
.proc {
  padding-top: 88px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, var(--cream) 0%, #e9f1ec 100%);
}
.accent-text { color: var(--accent); }

.proc__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.proc__title {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96;
  letter-spacing: -.02em;
  color: var(--navy);
}
.proc__subtitle {
  margin-top: 20px;
  font-size: 18px;
  color: var(--slate);
}

.proc__layout {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sticky anchor nav */
.anchor-nav {
  position: sticky;
  top: 132px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.anchor-nav__item {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  color: var(--slate-2);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.anchor-nav__num { font-family: var(--font-head); font-weight: 800; font-size: 15px; }
.anchor-nav__label { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.anchor-nav__item:hover { color: var(--navy); background: rgba(255,255,255,.55); }
.anchor-nav__item.is-active {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.anchor-nav__item.is-active::before {
  content: "";
  position: absolute; left: 0; top: 13px; bottom: 13px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--lavender);
}
.anchor-nav__item.is-active .anchor-nav__num { color: var(--accent); }

/* Slides */
.proc__slides { display: flex; flex-direction: column; gap: 72px; }
.step {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  scroll-margin-top: 132px;
}
.step__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: clamp(340px, 46vh, 480px);
  background: var(--cream-2);
  box-shadow: var(--shadow-card);
}
.step__index {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-head); font-weight: 800;
  font-size: 14px; letter-spacing: .04em;
  color: #fff;
  background: rgba(11, 38, 64, .5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: var(--radius-pill);
}
.step__index span { opacity: .55; }
.step__media img { width: 100%; height: 100%; object-fit: cover; }

/* Text panel — full height, summary pinned to bottom */
.step__card {
  display: flex;
  flex-direction: column;
  background: #f6faf8;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(28px, 3.2vw, 52px);
}
.step__caption {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.12; letter-spacing: -.01em;
  color: var(--navy);
}
.step__desc {
  margin-top: 16px;
  font-size: 17px;
  color: var(--slate);
  max-width: 42ch;
}
/* Inclusions checklist */
.step__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.step__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px; line-height: 1.4;
  color: var(--navy);
}
.step__list li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  background-color: var(--lavender);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.4l3 3 6-6.6' stroke='%230b2640' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* Footer: benefit summary + quote link pinned to bottom */
.step__footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex; align-items: center;
}
.step__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy); white-space: nowrap;
  background: var(--lavender);
  padding: 14px 22px; border-radius: var(--radius-pill);
  transition: gap .2s ease, background .2s ease, transform .18s ease;
}
.step__cta svg { width: 15px; height: 15px; }
.step__cta:hover { background: var(--lavender-2); gap: 12px; transform: translateY(-2px); }

/* ============================================================
   WHAT SETS US APART
   ============================================================ */
.about { padding-top: 88px; padding-bottom: 88px; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

/* Left image */
.about__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 520px;
}
.about__img { width: 100%; height: 100%; object-fit: cover; }

/* Floating review badge over the image */
.about__badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  background: var(--navy); color: var(--cream-text);
  border-radius: 20px; padding: 15px 18px;
}
.about__badge-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
}
.about__badge-icon svg { width: 22px; height: 22px; }
.about__badge-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.about__badge-text strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 14.5px; color: #fff; line-height: 1.2;
}
.about__badge-text span { font-size: 12.5px; color: rgba(238, 244, 240, .7); }
.about__badge-rating {
  margin-left: auto; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.about__badge-stars { font-size: 13px; color: #fbb400; letter-spacing: 1px; white-space: nowrap; }
.about__badge-stars strong { color: #fff; font-family: var(--font-head); font-weight: 800; margin-left: 4px; }
.about__badge-src { font-size: 11.5px; color: rgba(238, 244, 240, .6); }

/* Right column */
.about__right { display: grid; grid-template-rows: auto 1fr; gap: 22px; min-width: 0; }

.about__headline {
  background: var(--cream-2);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 48px);
}
.label-large {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.about__title {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: var(--navy);
}
.about__lead {
  margin-top: 20px;
  font-size: 17px; line-height: 1.55;
  color: var(--slate);
  max-width: 52ch;
}
.about__action {
  margin-top: 26px;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 18px 24px;
}
.about__cta { margin-top: 0; }
.about__proof { display: inline-flex; align-items: center; gap: 12px; }
.about__proof-avatars { display: inline-flex; }
.about__proof-avatars img {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--cream); margin-left: -10px; object-fit: cover;
}
.about__proof-avatars img:first-child { margin-left: 0; }
.about__proof-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: 14px; color: var(--navy); white-space: nowrap;
}

/* Feature cards 2x2 */
.about__features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.feat-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 2.4vw, 34px);
  transition: transform .22s ease, border-color .2s ease, box-shadow .25s ease;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--lavender);
  box-shadow: 0 14px 32px rgba(11, 38, 64, .10);
}
.feat-card__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 14px;
  color: #2867cf;
  transition: transform .2s ease;
}
.feat-card:hover .feat-card__icon { transform: scale(1.05); }
.feat-card__icon svg { width: 24px; height: 24px; }
.feat-card__title {
  font-family: var(--font-head);
  font-weight: 800; font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -.01em; color: var(--navy);
  margin-bottom: 8px;
}
.feat-card__desc { font-size: 16px; color: var(--slate); line-height: 1.5; }

/* ============================================================
   BEFORE & AFTER (comparison sliders)
   ============================================================ */
.ba { padding-top: 88px; padding-bottom: 88px; }
.ba__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.ba__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: var(--navy);
  margin-top: 16px;
}
.ba__sub { margin-top: 16px; font-size: 18px; color: var(--slate); }
.ba__sub em { font-style: normal; display: block; margin-top: 4px; font-size: 14.5px; color: var(--slate-2); }

.ba__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}
.ba-card { display: flex; flex-direction: column; gap: 14px; }

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* "before" layer: dulled + clipped to reveal position (placeholder effect) */
.ba-img--before {
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba-tag {
  position: absolute; top: 14px; z-index: 3;
  padding: 6px 13px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 800;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; pointer-events: none;
}
.ba-tag--before { left: 14px; background: rgba(11, 38, 64, .62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ba-tag--after { right: 14px; background: var(--gold); }
.ba-line {
  position: absolute; top: 0; bottom: 0; z-index: 2;
  left: var(--pos, 50%);
  width: 2px; background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--navy);
  box-shadow: 0 3px 12px rgba(11, 38, 64, .22);
}
.ba-grip svg { width: 20px; height: 20px; }
.ba-range {
  position: absolute; inset: 0; z-index: 4;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize;
  pointer-events: none; /* dragging is handled on .ba-slider via pointer events; kept for keyboard a11y */
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 44px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba-caption {
  font-family: var(--font-head); font-weight: 700;
  font-size: 16px; color: var(--navy);
  padding-left: 2px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst { padding-top: 88px; padding-bottom: 88px; overflow: hidden; }
.tst__head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 22px;
  margin-bottom: 48px;
}
.tst__head .label-large { margin-bottom: 0; }
.tst__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: var(--navy);
  max-width: 30ch;
}
.tst__rating {
  display: inline-flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
}
.tst__rating-stars { color: #fbb400; letter-spacing: 2px; font-size: 15px; }
.tst__rating-text { font-size: 15px; color: var(--slate); }
.tst__rating-text strong { color: var(--navy); font-weight: 800; }
.tst__rating-sources { display: inline-flex; gap: 6px; }

/* Vertical marquee columns */
.tmarquee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  height: clamp(540px, 72vh, 700px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}
.tcol { overflow: hidden; }
.tcol__track {
  display: flex; flex-direction: column; gap: 22px;
  animation: vmarquee-up 34s linear infinite;
}
.tcol--down .tcol__track { animation: vmarquee-down 40s linear infinite; }
.tcol--up-slow .tcol__track { animation-duration: 46s; }
.tcol:hover .tcol__track { animation-play-state: paused; }

@keyframes vmarquee-up {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-50% - 11px)); }
}
@keyframes vmarquee-down {
  from { transform: translateY(calc(-50% - 11px)); }
  to   { transform: translateY(0); }
}

/* Testimonial card */
.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.tcard__stars {
  display: block;
  color: #fbb400;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 16px;
}
.tcard__quote {
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
}
.tcard__source {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.tcard__avatar {
  display: grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c, #163a5c); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  letter-spacing: .02em;
}
.tcard__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tcard__who strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 15px; color: var(--navy); letter-spacing: -.01em;
}
.tcard__meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--slate-2);
}
.g-badge, .fb-badge {
  display: grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; font-weight: 900; line-height: 1; flex-shrink: 0;
}
.g-badge { background: #fff; color: #4285F4; border: 1px solid var(--border); }
.fb-badge { background: #1877F2; color: #fff; font-family: Georgia, serif; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { padding-top: 88px; padding-bottom: 88px; }
.hiw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Left intro (sticky on desktop) */
.hiw__intro { position: sticky; top: 132px; }
.hiw__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: var(--navy);
}
.hiw__lead {
  margin: 22px 0 32px;
  font-size: 19px;
  color: var(--slate);
  max-width: 420px;
}

/* Right steps — each step is a panel: number on top, text at bottom */
.hiw__list { display: flex; flex-direction: column; gap: 22px; }
.hiw__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: 300px;
  background: var(--cream-2);
  border-radius: 28px;
  padding: clamp(30px, 3vw, 46px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hiw__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hiw__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1;
  color: #2867cf;
  letter-spacing: -.02em;
}
.hiw__step-title {
  font-family: var(--font-head);
  font-weight: 800; font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -.01em; color: var(--navy);
  margin-bottom: 10px;
}
.hiw__text p { color: var(--slate); font-size: 16.5px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-2); padding-top: 88px; padding-bottom: 88px; }
.faq__head {
  text-align: center;
  max-width: 760px; margin: 0 auto 44px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.faq__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: var(--navy);
}
.faq__sub { font-size: 18px; color: var(--slate); }

.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 23px 26px;
  background: none; border: none; text-align: left; cursor: pointer;
}
.faq-q__text {
  font-family: var(--font-head);
  font-weight: 700; font-size: clamp(16.5px, 1.5vw, 20px);
  color: var(--navy); letter-spacing: -.01em;
}
.faq-icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lavender); color: var(--navy);
  transition: transform .3s ease, background .2s ease;
}
.faq-icon svg { width: 18px; height: 18px; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--lavender-2); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner { overflow: hidden; }
.faq-a p { padding: 0 26px 24px; color: var(--slate); font-size: 16.5px; max-width: 64ch; }

.faq__more { display: flex; justify-content: center; margin-top: 36px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { padding-top: 88px; padding-bottom: 88px; }
.cta__panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender), #a6e2c6);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 112px) clamp(24px, 5vw, 56px);
  text-align: center;
}
.cta__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cta__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(11, 38, 64, .82), rgba(11, 38, 64, .62));
}
.cta__content { position: relative; z-index: 2; }
.cta__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: #fff;
  max-width: 16ch; margin-inline: auto;
}
.cta__sub {
  margin: 22px auto 0;
  font-size: 19px;
  color: rgba(238, 244, 240, .82);
  max-width: 480px;
}
/* Secondary CTA → glass style over the video */
.cta__btns .btn--dark { background: rgba(255, 255, 255, .16); color: #fff; }
.cta__btns .btn--dark:hover { background: rgba(255, 255, 255, .28); }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn--cta-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn--cta-light:hover { background: #f2f6f3; transform: translateY(-2px); }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote {
  position: relative;
  overflow: hidden;
  padding-top: 96px; padding-bottom: 96px;
}
.quote__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.quote__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(11, 38, 64, .92), rgba(11, 38, 64, .8));
}
.quote__inner { position: relative; z-index: 2; }
.quote__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.quote__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: .12em;
  color: var(--lavender);
}
.quote__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(32px, 4vw, 56px);
  line-height: .96; letter-spacing: -.02em;
  color: #fff;
  margin-top: 14px;
}
.quote__sub {
  margin-top: 18px;
  font-size: 17px; line-height: 1.6;
  color: rgba(238, 244, 240, .82);
}

/* form card */
.quote-form {
  max-width: 760px; margin-inline: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-md);
}
.quote-form__hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* multi-step progress */
.qprogress { margin-bottom: 28px; }
.qprogress__bar {
  height: 6px; border-radius: var(--radius-pill);
  background: #e6efe9; overflow: hidden;
}
.qprogress__fill {
  display: block; height: 100%; width: 50%;
  border-radius: var(--radius-pill);
  background: var(--gold);
  transition: width .35s ease;
}
.qprogress__label {
  display: block; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--slate);
}
.qprogress__label b { color: var(--navy); }

.qstep[hidden] { display: none; }

/* grouped sections */
.fgroup { padding: 24px 0; border-top: 1px solid #e6efe9; }
.fgroup:first-of-type { padding-top: 0; border-top: 0; }
.fgroup[hidden] { display: none; }
.fgroup--conditional { border-top: 1px dashed var(--lavender); }
.fgroup__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 18px;
}
.fgroup__note {
  margin: -8px 0 16px;
  font-size: 14px; line-height: 1.5; color: var(--slate);
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: block; margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field__label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.field__opt { font-weight: 400; color: var(--slate); }
.field--inline-other { margin-top: 12px; }
.field__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  appearance: none;
}
.field__input::placeholder { color: #9aaaa2; }
.field__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(138, 215, 177, .25);
}
.field__textarea { resize: vertical; min-height: 84px; }

/* chip-style checkbox / radio */
.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.chip-grid--4 { grid-template-columns: repeat(2, 1fr); }
.chip {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 500; color: var(--navy);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  user-select: none;
}
.chip--sm { padding: 10px 12px; font-size: 14px; justify-content: center; text-align: center; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip::before {
  content: "";
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid #c2d3ca;
  border-radius: 5px;
  background: #fff;
  transition: all .15s ease;
}
.chip:has(input[type="radio"])::before { border-radius: 50%; }
.chip--sm::before { display: none; }
.chip:hover { border-color: rgba(138, 215, 177, .6); }
.chip:has(input:checked) {
  border-color: var(--lavender);
  background: var(--lavender-bar);
}
.chip:has(input:checked)::before {
  background: var(--gold); border-color: var(--gold);
  box-shadow: inset 0 0 0 3px #fff;
}
.chip:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(138, 215, 177, .35); }

/* yes / no rows */
.yesno {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 9px 0;
}
.yesno + .yesno { border-top: 1px solid #f0f5f2; }
.yesno__q { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.yesno__opts { display: flex; gap: 8px; flex-shrink: 0; }
.yesno__opts .chip { min-width: 66px; }

.quote-form__nav { display: flex; gap: 12px; margin-top: 26px; }
.quote-form__nav--end { justify-content: flex-end; }
.quote-form__nav .js-next { width: 100%; justify-content: center; }
.quote-form__nav .js-back { flex-shrink: 0; }
.quote-form__submit { flex: 1; justify-content: center; }
.quote-form__submit[disabled] { opacity: .6; cursor: progress; }
.quote-form__status {
  margin-top: 14px;
  font-size: 14.5px; line-height: 1.5; font-weight: 500;
}
.quote-form__status.is-success { color: var(--accent); }
.quote-form__status.is-error { color: #c0392b; }
.quote-form__status:empty { display: none; }
.quote-form__fineprint {
  margin-top: 14px;
  font-size: 12.5px; color: var(--slate);
  text-align: center;
}

@media (max-width: 560px) {
  .quote-form__row,
  .chip-grid { grid-template-columns: 1fr; }
  .chip-grid--4 { grid-template-columns: 1fr 1fr; }
  .yesno { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { padding-top: 88px; padding-bottom: 88px; }
.guarantee__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.guarantee__title {
  font-family: var(--font-head);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .96; letter-spacing: -.02em;
  color: var(--navy);
  margin-top: 16px;
}
.guarantee__sub {
  margin-top: 16px;
  font-size: 18px; line-height: 1.55;
  color: var(--slate);
}
.guarantee__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--cream-2);
  border-radius: 20px;
  padding: 24px 26px;
}
.trust-card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; flex-shrink: 0;
  background: #fff; border-radius: 14px;
  color: #2867cf; box-shadow: var(--shadow-sm);
}
.trust-card__icon svg { width: 26px; height: 26px; }
.trust-card__text { display: flex; flex-direction: column; gap: 4px; }
.trust-card__text strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 18px; color: var(--navy); letter-spacing: -.01em;
}
.trust-card__text span { font-size: 15px; color: var(--slate); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: #9fb6c6;
  padding-top: 76px;
  padding-bottom: 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__contact { display: flex; flex-direction: column; gap: 26px; }
.footer__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  color: #61809a;
  margin-bottom: 10px;
}
.footer__value {
  font-family: var(--font-head);
  font-weight: 700; font-size: 18px;
  color: #eaf2f8; line-height: 1.4;
}
.footer__link { transition: color .2s ease; }
.footer__link:hover { color: var(--lavender); }

.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 15.5px;
  color: #9fb6c6;
  transition: color .2s ease;
  width: fit-content;
}
.footer__col a:hover { color: var(--lavender); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding-top: 28px;
}
.footer__brand { display: inline-flex; align-items: center; }
.footer__brand-logo { height: 46px; width: auto; display: block; }
.footer__bottom-right {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer__copy { font-size: 13.5px; color: #61809a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .guarantee__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Header collapses to a hamburger earlier so the 6-link nav never crowds */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--cream);
    margin: 0; padding: 14px 28px 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
  .nav.is-open .nav__link { padding: 13px 14px; font-size: 17px; }
}

@media (max-width: 920px) {
  .contact-strip__grid { grid-template-columns: minmax(0, 1fr); }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { min-height: auto; }
  .hero__card--media { min-height: 360px; }
  .hero__video { min-height: 360px; height: 100%; }
  .hero__card--dark { min-height: 480px; }

  /* Services detail → single column, no sticky nav */
  .proc__layout { grid-template-columns: 1fr; gap: 0; }
  .anchor-nav { display: none; }
  .step {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding-block: 36px;
    border-bottom: 1px solid var(--border);
  }
  .proc__slides .step:last-child { border-bottom: none; }
  .step__media { height: clamp(280px, 56vw, 420px); min-height: 0; }
  .step__card { max-width: 560px; }
  .step__list { gap: 10px 18px; }
  .step__footer { flex-direction: column; align-items: flex-start; gap: 18px; }

  /* What sets us apart → stack image over content */
  .about__grid { grid-template-columns: minmax(0, 1fr); }
  .about__media { min-height: 360px; max-height: 460px; }

  /* Testimonials → 2 columns */
  .tmarquee { grid-template-columns: repeat(2, 1fr); }

  /* How it works → stack, no sticky */
  .hiw__grid { grid-template-columns: 1fr; gap: 36px; }
  .hiw__intro { position: static; }
  .hiw__lead { max-width: none; }

  /* Guarantee → 2 columns on tablet */
  .guarantee__grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer → stack columns */
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

/* Services "How can we help?" → manual swipe carousel on mobile
   (drop the auto-scroll marquee so the user controls it with the finger) */
@media (max-width: 700px) {
  .marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee__track {
    animation: none;
    width: max-content;
    padding-inline: 16px;
    gap: 14px;
  }
  /* hide the cloned cards that only existed for the infinite loop */
  .marquee__track > [aria-hidden="true"] { display: none; }
  .svc-card { scroll-snap-align: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 16px; }
  .header__inner { gap: 16px; height: 72px; }
  .nav.is-open { top: 72px; }
  .header__cta { padding: 14px 16px; font-size: 12.5px; }
  .announce__inner { font-size: 13px; padding: 9px 16px; }
  .contact-strip__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__cta .btn { flex: 1 1 100%; white-space: normal; line-height: 1.2; }
  .hero__card--dark { padding: 26px 16px; }
  /* Largest font that still keeps the title at ~4 lines ("MORE TIME BACK." on one line).
     Tracks available width (fixed paddings) so 320/375/390/430 all hold 4 lines. */
  .hero__title { font-size: clamp(25px, calc(10vw - 6.5px), 38px); padding-top: 18px; }
  .hero__sub { font-size: 16.5px; margin-top: 16px; }

  /* Review badge — keep avatars + stars + rating on one tidy line */
  .rating-proof { gap: 8px; padding: 6px 14px 6px 7px; flex-wrap: nowrap; }
  .rating-proof__avatar { width: 24px; height: 24px; margin-left: -9px; }
  .rating-proof__stars svg { width: 14px; height: 14px; }
  .rating-proof__text { font-size: 12px; white-space: nowrap; }
  .brand__logo { height: 38px; }
  .video-review { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 16px 18px; }
  .video-review__quote { font-size: 15px; }

  .services { padding-top: 56px; padding-bottom: 56px; }
  .svc-card { width: 248px; height: 372px; }
  .svc-card__title { max-width: 160px; }
  .svc-card__bottom { padding: 18px; }
  .services__bottom { margin-top: 32px; }

  .proc { padding-top: 56px; }
  .step { gap: 20px; }
  /* Match the photos' real 4:5 portrait ratio → full scene, no harsh crop */
  .step__media { height: auto; aspect-ratio: 4 / 5; min-height: 0; }
  .step__media img { object-position: center 35%; }

  .about { padding-bottom: 56px; }
  .about__features { grid-template-columns: 1fr; }
  .about__action .btn { white-space: normal; line-height: 1.2; text-align: center; }
  .feat-card { gap: 16px; }
  .about__badge { flex-wrap: wrap; gap: 10px 14px; padding: 14px; }
  .about__badge-rating { margin-left: 0; align-items: flex-start; }

  .tst { padding-top: 56px; padding-bottom: 64px; }
  .tmarquee { grid-template-columns: 1fr; height: clamp(460px, 120vw, 560px); }
  /* single scrolling column on mobile (2nd & 3rd would stack and overflow) */
  .tcol--down,
  .tcol--up-slow { display: none; }

  .faq { padding-top: 56px; padding-bottom: 56px; }
  .faq-q { padding: 19px 20px; }
  .faq-a p { padding: 0 20px 20px; }
  .faq__more .btn { white-space: normal; line-height: 1.25; text-align: center; }
  .cta { padding-bottom: 56px; }
  .cta__btns .btn { flex: 1 1 100%; }

  .guarantee { padding-bottom: 56px; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Very narrow phones (≤360px): rating pill wraps into a tidy centred 2-row badge */
@media (max-width: 360px) {
  .rating-proof { flex-wrap: wrap; justify-content: center; row-gap: 5px; padding: 8px 14px; }
  .rating-proof__text { white-space: nowrap; width: 100%; text-align: center; }
}

/* Very small phones (≤400px): single-column where 2-up gets cramped */
@media (max-width: 400px) {
  .step__list { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; }
}
