/* ============================================================
   1st Class Exterior Property Cleaning — design system
   White-dominant. Navy text. Blue for action. Pink used sparingly.
   ============================================================ */

:root {
  --white: #ffffff;
  --tint: #f6f9fd;
  --navy: #0b2a5b;
  --blue: #1663d6;
  --blue-dark: #114ea8;
  /* Bright logo pink — decorative only (underlines, hover bars, no text on it). */
  --pink: #ee4c93;
  /* Anything carrying white text, or pink text on white, uses this.
     Most magenta shade that still clears WCAG AA at 4.6:1. */
  --pink-dark: #d62a8b;
  --pink-darker: #b81f77;
  --slate: #4a5a72;
  --line: #e2e8f2;

  --font-head: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 16px;
  --shadow: 0 1px 3px rgba(11, 42, 91, 0.06), 0 8px 24px rgba(11, 42, 91, 0.06);
  --shadow-lg: 0 4px 12px rgba(11, 42, 91, 0.1), 0 16px 40px rgba(11, 42, 91, 0.1);
  --wrap: 1140px;

  /* Soft wave used for section transitions. */
  --wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 35' preserveAspectRatio='none'%3E%3Cpath d='M0,35 L0,18 C180,0 340,2 560,13 C780,24 980,32 1180,20 C1290,13 1370,6 1440,0 L1440,35 Z' fill='%23000'/%3E%3C/svg%3E");
  /* Four-point sparkle, echoing the logo. */
  --sparkle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.6 6.3 5.1 10.8 12 12-6.9 1.2-11.4 5.7-12 12-.6-6.3-5.1-10.8-12-12C6.9 10.8 11.4 6.3 12 0Z' fill='%23000'/%3E%3C/svg%3E");
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: background .15s, color .15s, transform .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #2a76e8, var(--blue));
  color: #fff; box-shadow: 0 4px 14px rgba(22, 99, 214, .28);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 8px 22px rgba(22, 99, 214, .36); }
/* Pink is reserved for the single strongest call to action on a page. */
.btn--pink {
  background: linear-gradient(135deg, #e63a97, var(--pink-dark));
  color: #fff; box-shadow: 0 4px 14px rgba(214, 42, 139, .3);
}
.btn--pink:hover {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink-darker));
  color: #fff; box-shadow: 0 8px 22px rgba(214, 42, 139, .4);
}
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: var(--tint); color: var(--navy); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Layout ---------- */
.section { padding: 76px 0; }

/* Tinted bands rise into the section above on a soft wave, echoing the
   water arc in the logo instead of a hard horizontal edge. */
.section--tint, .cta-band, .site-footer { position: relative; }
.section--tint::after, .cta-band::after, .site-footer::after {
  content: ''; position: absolute; left: 0; right: 0; top: -34px; height: 35px;
  pointer-events: none;
  -webkit-mask: var(--wave) no-repeat bottom / 100% 100%;
          mask: var(--wave) no-repeat bottom / 100% 100%;
}
.section--tint::after, .cta-band::after { background: var(--tint); }
.site-footer::after { background: var(--navy); }
/* A tinted band directly after a tinted band needs no wave. */
.section--tint + .section--tint::after, .section--tint + .cta-band::after { display: none; }

.section--tint { background: var(--tint); }
.section--narrow { max-width: 780px; margin: 0 auto; }

/* Pill badge, the way the reference site labels each section. */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
  background: rgba(22, 99, 214, .09); border-radius: 999px;
  padding: 7px 16px; margin: 0 0 16px;
}
/* Pink underline accent beneath section headings. */
.heading { position: relative; padding-bottom: 16px; margin-bottom: 20px; }
.heading::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 54px; height: 3px; background: var(--pink); border-radius: 2px;
}
.heading--center { text-align: center; }
.heading--center::after { left: 50%; transform: translateX(-50%); }

.lede { font-size: 1.1rem; max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Handles 2 or 3 cards without leaving an odd gap. */
.grid--related { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--pink); transform: scaleX(0); transform-origin: left;
  transition: transform .22s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: #cddcf3; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 14px; font-size: .97rem; }
/* Icon sits in a soft tinted tile rather than floating bare. */
.card__icon {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 18px;
  display: grid; place-items: center; color: var(--blue);
  background: linear-gradient(140deg, rgba(59, 198, 242, .16), rgba(22, 99, 214, .12));
  transition: transform .25s, background .25s;
}
.card__icon svg { width: 27px; height: 27px; }
.card:hover .card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(140deg, rgba(59, 198, 242, .28), rgba(22, 99, 214, .2));
}
.card__link { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--blue); }

a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; }

/* ---------- Utility bar + header ---------- */
.utility-bar {
  background: var(--navy); color: #cdd9ec; font-size: .88rem; padding: 9px 0;
}
.utility-bar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.utility-bar a { color: #fff; font-weight: 500; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; }
.brand__text { font-family: var(--font-head); font-weight: 700; color: var(--navy); line-height: 1.1; font-size: 1.02rem; }
.brand__text span { display: block; font-size: .72rem; font-weight: 500; color: var(--slate); letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1rem;
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--blue); text-decoration: none; }
.nav a[aria-current='page'] { border-bottom: 2px solid var(--pink); }
.nav .btn { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 9px 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; }

/* ---------- Full-bleed home hero ----------
   Text sits over a photo. Until a real photo exists, the navy gradient
   stands in — swap `--hero-image` for url('/assets/img/hero.jpg'). */
.hero--home {
  --hero-image: url('/assets/img/hero.jpg');
  position: relative; padding: 112px 0 118px; color: #fff;
  /* Overlay is heaviest on the left where the text sits, so the photo stays
     visible on the right while keeping white type readable. */
  background:
    linear-gradient(100deg, rgba(8, 30, 66, .92) 0%, rgba(9, 35, 76, .78) 38%, rgba(13, 55, 120, .45) 70%, rgba(17, 78, 168, .3) 100%),
    var(--hero-image), linear-gradient(120deg, #0b2a5b, #1663d6);
  background-size: cover; background-position: center;
}
.hero--home .container { display: block; max-width: var(--wrap); }
.hero--home__inner { max-width: 660px; }
.hero--home h1 { color: #fff; }
.hero--home .lede { color: rgba(255, 255, 255, .92); font-size: 1.2rem; margin-bottom: 30px; }
.hero--home .eyebrow { color: #bfe0ff; background: rgba(255, 255, 255, .14); }
.hero--home .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.hero--home .btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
/* Marks the hero as a photo slot while the placeholder gradient is showing. */
.hero__photo-hint {
  position: absolute; right: 24px; bottom: 20px; display: flex; align-items: center;
  gap: 8px; color: rgba(255, 255, 255, .45); font-size: .78rem;
}
.hero__photo-hint svg { width: 22px; height: 22px; }

.hero { padding: 72px 0 64px; background: var(--white); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero .lede { font-size: 1.18rem; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Interior page header — layered so nine service pages don't read as one flat
   grey band. Dot grid + brand-tinted wash + a soft glow. */
.hero--inner {
  position: relative; overflow: hidden; padding: 62px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(rgba(22, 99, 214, .10) 1px, transparent 1px) 0 0 / 22px 22px,
    radial-gradient(900px 320px at 88% -30%, rgba(238, 76, 147, .13), transparent 65%),
    linear-gradient(160deg, #eaf3ff 0%, #f7fbff 55%, #fdf3f8 100%);
}
.hero--inner .container { display: block; max-width: 820px; position: relative; z-index: 1; }
/* Two logo-style sparkles drifting in the corner. */
.hero--inner::before, .hero--inner::after {
  content: ''; position: absolute; background: var(--cyan);
  -webkit-mask: var(--sparkle) no-repeat center / contain;
          mask: var(--sparkle) no-repeat center / contain;
  animation: twinkle 4.5s ease-in-out infinite;
}
.hero--inner::before { width: 34px; height: 34px; right: 9%; top: 26%; opacity: .5; }
.hero--inner::after { width: 20px; height: 20px; right: 15%; top: 58%; opacity: .35; animation-delay: 1.6s; }

@keyframes twinkle {
  0%, 100% { transform: scale(.85) rotate(0deg); opacity: .25; }
  50%      { transform: scale(1.1) rotate(18deg); opacity: .6; }
}

/* ---------- Scroll reveal (added by JS, so nothing hides without it) ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal-ready { transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.breadcrumb { font-size: .9rem; margin-bottom: 14px; color: var(--slate); }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--tint); padding: 30px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust__item { display: flex; gap: 12px; align-items: flex-start; }
.trust__item svg { width: 24px; height: 24px; color: var(--blue); flex: none; margin-top: 3px; }
.trust__item strong { display: block; font-family: var(--font-head); color: var(--navy); }
.trust__item span { font-size: .9rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--pink-dark); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 16px;
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
/* Two balanced columns when the list stands alone without a photo beside it. */
.checklist--split {
  grid-template-columns: repeat(2, 1fr); gap: 14px 40px;
  max-width: 880px; margin-inline: auto;
}
@media (max-width: 760px) { .checklist--split { grid-template-columns: 1fr; } }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .45em; width: 18px; height: 18px;
  border-radius: 50%; background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Photos ---------- */
.media {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 4/3;
}

/* ---------- Photo placeholder ---------- */
.ph {
  background: var(--tint); border: 1px dashed #c6d4e8; border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; padding: 32px 20px;
  color: var(--slate); font-size: .86rem; min-height: 240px;
}
.ph svg { width: 40px; height: 40px; color: var(--blue); opacity: .5; margin-bottom: 10px; }
.ph strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: .95rem; margin-bottom: 4px; }
.ph--wide { aspect-ratio: 3/2; min-height: 0; }

/* ---------- Before / after slider ---------- */
.ba {
  --pos: 50%;
  position: relative; aspect-ratio: 16/9; max-width: 900px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); background: var(--tint);
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__after { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; bottom: 16px; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; padding: 7px 15px; border-radius: 999px;
}
.ba__tag--before { right: 16px; background: rgba(0, 0, 0, .55); color: #fff; }
.ba__tag--after { left: 16px; background: var(--blue); color: #fff; }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: #fff; box-shadow: 0 0 12px rgba(0, 0, 0, .35); pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--navy);
  display: grid; place-items: center; font-size: 1rem; font-weight: 700;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .3);
}
/* A real range input drives it, so it is keyboard operable for free. */
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; appearance: none; background: transparent;
}
.ba__range:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--navy);
  padding: 20px 44px 20px 0; position: relative;
}
.faq__q::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--blue); line-height: 1;
}
.faq__q[aria-expanded='true']::after { content: '\2212'; }
.faq__a { display: none; padding: 0 44px 20px 0; }
/* The button sits inside an <h3>, so it is not a sibling of .faq__a.
   Match on the item wrapper instead. */
.faq__item:has(.faq__q[aria-expanded='true']) .faq__a { display: block; }

/* ---------- Service cards with a media panel on top ---------- */
.card--media { padding: 0; }
.card--media .card__body { padding: 24px 26px 26px; }
.card__media {
  position: relative; aspect-ratio: 16/10; display: grid; place-items: center;
  overflow: hidden; background: linear-gradient(140deg, #1663d6, #3bc6f2);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media svg { width: 58px; height: 58px; color: #fff; opacity: .92; position: relative; z-index: 1; }
/* Faint dot texture so the panel is not a flat colour block. */
.card__media::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px) 0 0 / 16px 16px;
}
.card--media:hover .card__media svg { transform: scale(1.1); transition: transform .3s; }
/* Each service gets its own wash so a grid of nine does not read as one block. */
.card__media--1 { background: linear-gradient(140deg, #1663d6, #3bc6f2); }
.card__media--2 { background: linear-gradient(140deg, #0b2a5b, #2a76e8); }
.card__media--3 { background: linear-gradient(140deg, #114ea8, #3bc6f2); }
.card__media--4 { background: linear-gradient(140deg, #1d7fc9, #6fd8f5); }
.card__media--5 { background: linear-gradient(140deg, #2a76e8, #9ee0f7); }
.card__media--6 { background: linear-gradient(140deg, #0b2a5b, #1663d6); }
.card__media--7 { background: linear-gradient(140deg, #d62a8b, #f279b7); }
.card__media--8 { background: linear-gradient(140deg, #114ea8, #1d7fc9); }
.card__media--9 { background: linear-gradient(140deg, #1663d6, #0b2a5b); }

/* ---------- Reviews marquee ---------- */
.reviews-viewport {
  overflow: hidden; padding: 8px 0 20px;
  /* Fade the edges so cards drift in and out rather than being sliced off. */
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews-track {
  display: flex; gap: 24px; width: max-content;
  animation: review-marquee 80s linear infinite;
}
/* Pause when someone wants to actually read one. */
.reviews-viewport:hover .reviews-track,
.reviews-track:focus-within { animation-play-state: paused; }
@keyframes review-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review {
  flex: none; width: 370px; margin: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); position: relative;
}
.review__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review__stars svg { width: 18px; height: 18px; color: #f5a623; fill: #f5a623; }
.review blockquote { margin: 0 0 18px; font-size: .97rem; color: var(--slate); }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue), var(--cyan)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
}
.review figcaption strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: .98rem; }
.review__meta { font-size: .84rem; color: var(--slate); }
@media (max-width: 700px) { .review { width: 300px; } }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 0; }
.areas li {
  list-style: none; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 20px; font-family: var(--font-head);
  font-weight: 500; color: var(--navy); font-size: .95rem;
}

/* ---------- Form ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .95rem; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; color: var(--navy); background: var(--white);
}
.field input:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(22, 99, 214, .15); }
.field textarea { min-height: 130px; resize: vertical; }
.field .req { color: var(--pink-dark); }
.field__error { color: #b0203f; font-size: .87rem; margin-top: 5px; display: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b0203f; }
.field.is-invalid .field__error { display: block; }

.services-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.services-picker label {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-size: .95rem;
  font-weight: 500; color: var(--navy); background: var(--white); margin-bottom: 0;
}
.services-picker input { accent-color: var(--blue); width: 17px; height: 17px; }
.services-picker label:has(input:checked) { border-color: var(--blue); background: rgba(22, 99, 214, .05); }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status { display: none; padding: 15px 18px; border-radius: 8px; font-weight: 500; }
.form__status.is-ok { display: block; background: #e8f6ee; color: #14603a; border: 1px solid #b7e0c8; }
.form__status.is-err { display: block; background: #fdecef; color: #93163a; border: 1px solid #f4c2ce; }

/* ---------- Contact page ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.side-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.side-card + .side-card { margin-top: 22px; }
.side-card h3 { margin-bottom: 6px; }

.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:first-of-type { padding-top: 4px; }
.contact-row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.contact-row__icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(22, 99, 214, .09); color: var(--blue); display: grid; place-items: center;
}
.contact-row__icon svg { width: 22px; height: 22px; }
.contact-row strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.02rem; }
.contact-row p { margin: 2px 0 5px; font-size: .91rem; }
.contact-row a { font-family: var(--font-head); font-weight: 600; }

.next-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.next-steps li { display: flex; gap: 13px; align-items: flex-start; font-size: .95rem; }
.next-steps__n {
  width: 27px; height: 27px; flex: none; border-radius: 50%; background: var(--pink-dark);
  color: #fff; display: grid; place-items: center; font-family: var(--font-head);
  font-weight: 700; font-size: .82rem; margin-top: 2px;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--tint); border-block: 1px solid var(--line); padding: 58px 0; text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c3d2e6; padding: 56px 0 0; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #dbe6f5; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .95rem; }
.site-footer .btn { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand img { height: 68px; width: auto; background: #fff; border-radius: 8px; padding: 6px; margin-bottom: 14px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .13); margin-top: 44px; padding: 20px 0;
  font-size: .87rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4, .trust__grid, .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .utility-bar { display: none; }
  .brand img { height: 46px; }
  .brand__text { font-size: .92rem; }

  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 20px 18px; box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; border-bottom: 0; }
  .site-header .container { position: relative; }

  .grid--2, .grid--3, .grid--4, .steps, .trust__grid,
  .footer__grid, .form__row, .services-picker { grid-template-columns: 1fr; }

  /* Sticky call/text bar — phones only. */
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--line); padding: 10px 14px;
    box-shadow: 0 -4px 18px rgba(11, 42, 91, .1);
  }
  .mobile-cta .btn { padding: 13px 10px; font-size: .97rem; }
  body { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  /* Never leave revealed content stuck invisible. */
  .reveal { opacity: 1 !important; transform: none !important; }
  /* Marquee stops; the track becomes a normal swipeable strip instead. */
  .reviews-viewport { overflow-x: auto; }
  .reviews-track { animation: none !important; }
}

@media print {
  .site-header, .utility-bar, .mobile-cta, .cta-band { display: none; }
}
