/* ==========================================================================
   Skye High Window Cleaning — v2
   ========================================================================== */

:root {
  --navy-950: #141b36;
  --navy-900: #1c2444;
  --navy-800: #232e56;
  --navy: #2f3b69;
  --blue: #3f8fd2;
  --sky: #7cc0ea;
  --sky-100: #e3f1fa;
  --sky-50: #f2f8fd;
  --ink: #1a2033;
  --slate: #56607a;
  --slate-light: #8b94ab;
  --line: #e6eaf2;
  --white: #ffffff;
  --green: #2fbf71;
  --gold: #ffb437;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20, 27, 54, 0.06);
  --shadow-md: 0 10px 34px rgba(20, 27, 54, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 27, 54, 0.18);

  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
a { color: var(--blue); }

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.container-narrow { width: min(820px, calc(100% - 48px)); }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2e6eb2);
  color: #fff;
  box-shadow: 0 8px 24px rgba(63, 143, 210, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(63, 143, 210, 0.48); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.btn-ghost-dark {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  border-color: #cdd6e6;
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-nav { padding: 11px 22px; font-size: 15px; }

.btn-hero {
  flex-direction: column;
  gap: 3px;
  padding: 18px 42px;
  font-size: 19px;
  white-space: normal;
  text-align: center;
  animation: cta-pulse 2.6s ease-in-out infinite;
}
.btn-hero small {
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0.88;
  letter-spacing: 0.01em;
  white-space: normal;
}
.btn-hero:hover { animation-play-state: paused; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(63, 143, 210, 0.38); }
  50% { box-shadow: 0 10px 38px rgba(124, 192, 234, 0.75); }
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(20, 27, 54, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: #fff;
  padding: 3px;
}
.nav-name { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.nav-name strong { font-weight: 800; font-size: 17px; letter-spacing: 0.04em; color: #fff; transition: color 0.25s ease; }
.nav-name small { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color 0.25s ease; }
.nav.scrolled .nav-name strong { color: var(--navy); }
.nav.scrolled .nav-name small { color: var(--slate-light); }

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta-mobile { display: none; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  transition: color 0.25s ease;
}
.nav-phone svg { width: 17px; height: 17px; }
.nav.scrolled .nav-phone { color: var(--navy); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.nav.scrolled .nav-burger { background: var(--sky-50); border-color: var(--line); }
.nav.scrolled .nav-burger span { background: var(--navy); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(63, 143, 210, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy) 100%);
  color: #fff;
  padding: calc(var(--nav-h) + 64px) 0 96px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero-glow-1 { width: 480px; height: 480px; background: rgba(124, 192, 234, 0.28); top: -160px; right: -80px; }
.hero-glow-2 { width: 420px; height: 420px; background: rgba(63, 143, 210, 0.22); bottom: -200px; left: -120px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 26px;
}

.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  margin-bottom: 20px;
}
.text-sky {
  background: linear-gradient(100deg, var(--sky), #b8e0f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 54ch;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-ticks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.hero-ticks li { display: flex; align-items: center; gap: 8px; }
.hero-ticks li::before {
  content: "";
  width: 18px; height: 18px;
  flex: none;
  border-radius: 50%;
  background: rgba(47, 191, 113, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232fbf71' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ==========================================================================
   Before / After slider
   ========================================================================== */

.ba-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}
.hero-ba { transform: rotate(0.6deg); }

.ba-slider {
  --pos: 50%;
  position: relative;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  aspect-ratio: var(--half-ratio, 4/3);
  touch-action: pan-y;
  isolation: isolate;
}

.ba-layer {
  position: absolute;
  inset: 0;
  background-size: 202% 100%;
  background-repeat: no-repeat;
}
.ba-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* Pair sliders use two separate photos instead of a split composite */
.ba-pair .ba-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  z-index: 3;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -1.5px;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}
.ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.ba-handle-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;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100%; }
.ba-range:focus-visible ~ .ba-handle .ba-handle-grip,
.ba-slider:has(.ba-range:focus-visible) .ba-handle-grip {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.ba-tag {
  position: absolute;
  bottom: 14px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
.ba-tag-before { left: 14px; background: rgba(20, 27, 54, 0.72); backdrop-filter: blur(4px); }
.ba-tag-after { right: 14px; background: var(--green); }

.ba-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 6px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}
.ba-hint svg { width: 15px; height: 15px; color: var(--blue); }

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trustbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item svg { width: 34px; height: 34px; color: var(--blue); flex: none; }
.trust-item strong { display: block; font-size: 15.5px; letter-spacing: -0.01em; }
.trust-item span { font-size: 13.5px; color: var(--slate); }

/* ==========================================================================
   Sections (shared)
   ========================================================================== */

.section { padding: 96px 0; }
.section-tint { background: var(--sky-50); }
.section-dark {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(63, 143, 210, 0.25), transparent 60%),
    linear-gradient(165deg, var(--navy-950), var(--navy-900) 60%, var(--navy));
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { color: var(--slate); font-size: 17.5px; margin: 14px 0 0; }
.section-dark .section-head p { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--sky); }

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 42px;
}

.service-card-featured {
  grid-row: span 2;
  background: linear-gradient(180deg, #fdfeff, var(--sky-50));
  border: 2px solid #c9e2f5;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #d3e5f4;
}

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-100), #d3e9f8);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 20px; }
.service-card > p { color: var(--slate); font-size: 15.5px; }

.service-ticks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.service-ticks li { display: flex; align-items: center; gap: 10px; }
.service-ticks li::before {
  content: "";
  width: 17px; height: 17px;
  flex: none;
  border-radius: 50%;
  background: rgba(47, 191, 113, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232fbf71' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.included-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  border: 1px solid #d3e5f4;
  border-radius: var(--radius);
  padding: 22px 28px;
}
.included-strip svg { width: 34px; height: 34px; color: var(--green); flex: none; }
.included-strip p { margin: 0; color: var(--slate); font-size: 15.5px; }
.included-strip strong { color: var(--ink); }

/* ==========================================================================
   Results grid
   ========================================================================== */

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.results-grid .ba-hint { color: var(--slate); }

.ba-static img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
}

.results-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.results-cta h3 { font-size: 22px; color: #fff; margin-bottom: 2px; }
.results-cta p { color: rgba(255,255,255,0.72); font-size: 15.5px; margin-bottom: 18px; }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 0;
  margin: 0;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(47, 59, 105, 0.3);
}
.step h3 { font-size: 19px; }
.step p { color: var(--slate); font-size: 15.5px; margin: 0; }
.step a { font-weight: 700; text-decoration: none; }
.step a:hover { text-decoration: underline; }

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-media { position: relative; }
.about-media > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 19/20;
  width: 100%;
}

.award-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100% - 36px);
  background: linear-gradient(120deg, #2c2540, #3d3357);
  color: #ffd98a;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 138, 0.35);
  box-shadow: var(--shadow-md);
}
.award-badge svg { width: 20px; height: 20px; flex: none; }

.about-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 20px 12px 12px;
  box-shadow: var(--shadow-md);
}
.about-card img { border-radius: 10px; background: #fff; }
.about-card strong { display: block; font-size: 15.5px; }
.about-card span { font-size: 13px; color: var(--slate); }

.about-copy h2 { font-size: clamp(28px, 3.4vw, 40px); }
.about-copy > p { color: var(--slate); font-size: 16.5px; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  display: grid;
  gap: 14px;
}
.about-points li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15.5px;
  color: var(--slate);
}
.about-points li::before {
  content: "";
  align-self: center;
  width: 20px; height: 20px;
  flex: none;
  border-radius: 50%;
  background: rgba(47, 191, 113, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232fbf71' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.about-points strong { color: var(--ink); }

/* ==========================================================================
   Guarantee
   ========================================================================== */

.guarantee {
  background: linear-gradient(120deg, var(--navy-900), var(--navy) 55%, #3a4a85);
  color: #fff;
  padding: 56px 0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.guarantee-inner > svg { width: 64px; height: 64px; color: var(--sky); flex: none; }
.guarantee h2 { font-size: 26px; margin-bottom: 6px; }
.guarantee p { margin: 0; color: rgba(255,255,255,0.78); max-width: 62ch; }
.guarantee .btn { margin-left: auto; flex: none; }

/* ==========================================================================
   Reviews
   ========================================================================== */

.rev-viewport { overflow: hidden; }

.rev-track {
  display: flex;
  gap: 26px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.35, 1);
}

.review-card {
  flex: 0 0 calc((100% - 52px) / 3);
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.rev-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.rev-avatar {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.rev-head strong { display: block; font-size: 15.5px; line-height: 1.25; }
.rev-head span { font-size: 13.5px; color: var(--slate-light); font-weight: 600; }

.review-card .stars { font-size: 16px; margin-bottom: 12px; }
.review-card p {
  color: var(--slate);
  font-size: 15px;
  font-style: italic;
  margin: 0;
}

.rev-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
.rev-arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid #d3deed;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.rev-arrow svg { width: 22px; height: 22px; }
.rev-arrow:hover:not(:disabled) { background: var(--sky-50); border-color: var(--blue); transform: translateY(-2px); }
.rev-arrow:disabled { opacity: 0.35; cursor: default; }

.rev-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  min-width: 52px;
  text-align: center;
}

.rev-link {
  text-align: center;
  margin: 22px 0 0;
  font-size: 15.5px;
}
.rev-link a {
  font-weight: 700;
  text-decoration: none;
}
.rev-link a:hover { text-decoration: underline; }

/* ==========================================================================
   Areas
   ========================================================================== */

.area-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
}
.area-chips li {
  background: #fff;
  border: 1px solid #d8e4f1;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.area-note {
  text-align: center;
  color: var(--slate);
  font-size: 15.5px;
  margin: 0;
}
.area-note a { font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: #cfe2f3; box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chev {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sky-50);
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-chev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f3b69' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--sky-100); }

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--slate);
  font-size: 15.5px;
}

/* ==========================================================================
   Contact / quote
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-direct {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-direct h3 { font-size: 21px; color: #fff; }
.contact-direct > p { color: rgba(255,255,255,0.72); font-size: 15.5px; margin-bottom: 24px; }

.contact-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.contact-tile:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.contact-tile svg { width: 26px; height: 26px; color: var(--sky); flex: none; }
.contact-tile strong { display: block; font-size: 16px; }
.contact-tile span { font-size: 13.5px; color: rgba(255,255,255,0.65); word-break: break-word; }

.contact-meta {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}

/* --- Quote start card --- */

.quote-start {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.quote-start-badge {
  display: inline-block;
  background: rgba(47, 191, 113, 0.12);
  color: #1e9a5a;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.quote-start h3 { font-size: 26px; }
.quote-start > p { color: var(--slate); font-size: 16px; }
.quote-start .service-ticks { margin: 20px 0 26px; font-size: 15.5px; }

/* --- Quote quiz modal --- */

.qmodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.qmodal[hidden] { display: none; }

.qmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 40, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.qmodal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 30px 34px 24px;
  box-shadow: var(--shadow-lg);
  animation: qmodal-in 0.3s ease;
}
@keyframes qmodal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.qmodal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--sky-50);
  color: var(--slate);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.qmodal-close:hover { background: var(--sky-100); color: var(--navy); }

.qmodal-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--sky-100);
  margin: 8px 44px 10px 0;
  overflow: hidden;
}
.qmodal-progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transition: width 0.35s ease;
}
.qmodal-stepcount {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-light);
  margin: 0 0 14px;
}

.qmodal-body h3 {
  font-size: 23px;
  margin-bottom: 6px;
}
.qmodal-body .q-sub {
  color: var(--slate);
  font-size: 14.5px;
  margin: 0 0 18px;
}

.q-options { display: grid; gap: 12px; }
.q-options.q-cols-2 { grid-template-columns: 1fr 1fr; }

.q-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  background: #fbfcfe;
  border: 2px solid #e2e8f2;
  border-radius: 14px;
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.q-option:hover { border-color: var(--sky); transform: translateY(-1px); }
.q-option.selected {
  border-color: var(--blue);
  background: var(--sky-50);
  box-shadow: 0 0 0 3px rgba(63, 143, 210, 0.15);
}
.q-option .q-emoji { font-size: 22px; flex: none; }
.q-option small { display: block; font-weight: 500; color: var(--slate); font-size: 13px; }

.q-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.q-back {
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--slate);
  cursor: pointer;
  padding: 10px 6px;
}
.q-back:hover { color: var(--navy); }
.q-next { margin-left: auto; }

.q-field { margin-bottom: 16px; }
.q-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}
.q-field input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 13px 16px;
  border: 2px solid #e2e8f2;
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.q-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(63, 143, 210, 0.14);
  background: #fff;
}
.q-error {
  color: #d64545;
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0 0;
  min-height: 1.2em;
}

.q-done { text-align: center; padding: 26px 6px 14px; }
.q-done-icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(47, 191, 113, 0.14);
  display: grid;
  place-items: center;
}
.q-done-icon svg { width: 36px; height: 36px; color: var(--green); }
.q-done h3 { font-size: 24px; }
.q-done p { color: var(--slate); font-size: 15.5px; }

.qmodal-foot {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--slate);
}
.qmodal-foot a { font-weight: 700; text-decoration: none; }
.qmodal-foot a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .qmodal { padding: 0; }
  .qmodal-card {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    padding: 26px 22px 20px;
  }
  .q-options.q-cols-2 { grid-template-columns: 1fr; }
}

/* --- Form --- */

.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { margin-bottom: 18px; min-width: 0; }
.form-field label,
.form-prefs legend {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}
.label-optional { color: var(--slate-light); font-weight: 500; }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  padding: 13px 16px;
  border: 1.5px solid #dbe2ee;
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(63, 143, 210, 0.14);
  background: #fff;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a9b1c4; }

.form-prefs {
  border: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}
.form-prefs legend { margin-bottom: 10px; }
.form-prefs label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600 !important;
  margin: 0 !important;
  cursor: pointer;
}
.form-prefs input { accent-color: var(--blue); width: 17px; height: 17px; }

.form-status {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  min-height: 1em;
}
.form-status.ok { color: var(--green); }
.form-status.err { color: #d64545; }

.form-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--slate-light);
  text-align: center;
}

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

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-logo {
  width: 130px;
  border-radius: 20px;
  background: #fff;
  padding: 6px;
}
.footer-blurb {
  margin: 18px 0 16px;
  font-size: 14.5px;
  max-width: 30ch;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { background: rgba(255,255,255,0.16); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 20px; height: 20px; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 15px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
  font-size: 14px;
}
.footer-bottom p { margin: 0; }
.to-top {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
}
.to-top:hover { color: #fff; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(20, 27, 54, 0.12);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 14px 10px; font-size: 15.5px; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-ticks { justify-content: center; }
  .hero-media { max-width: 640px; margin-inline: auto; width: 100%; }

  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .steps, .results-grid { grid-template-columns: 1fr 1fr; }
  .service-card-featured { grid-row: auto; grid-column: 1 / -1; }
  .review-card { flex-basis: calc((100% - 26px) / 2); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 520px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 18px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a {
    color: var(--navy) !important;
    font-size: 17px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta-mobile { display: block; color: var(--blue) !important; font-weight: 800; }
  .nav-burger { display: flex; }
  .nav-phone span { display: none; }
  .btn-nav { display: none; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 40px); }
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--nav-h) + 44px); padding-bottom: 72px; }

  .trustbar-inner { gap: 16px; }
  .trust-item svg { width: 28px; height: 28px; }
  .trust-item strong { font-size: 14px; }
  .trust-item span { font-size: 12.5px; }

  .services-grid, .steps, .results-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee .btn { margin-left: 0; }
  .guarantee-inner > svg { width: 52px; height: 52px; }

  .included-strip { flex-direction: column; text-align: center; padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .quote-form { padding: 28px 22px; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }

  .hero-ba { transform: none; }
}
