/* ============================================================
   Cloudy Then Clear — cloudythenclear.com
   Palette drawn from the brand logo: deep navy, bold orange,
   clear sky blue, frosted ice tints.
   ============================================================ */

:root {
  --navy-900: #0B1B33;
  --navy-800: #0E2240;
  --navy-700: #14315C;
  --navy-600: #1B3F75;
  --orange-500: #F26A21;
  --orange-600: #DE5712;
  --blue-500: #4D9FDC;
  --blue-600: #2F86CC;
  --cloud-blue: #68B0F0;
  --ice-50: #F5F9FD;
  --ice-100: #EAF2FA;
  --ice-200: #D9E7F4;
  --text-900: #10233E;
  --text-600: #47586F;
  --text-400: #7A8AA0;
  --white: #FFFFFF;
  --star: #F9A825;

  --font-display: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-md: 0 6px 24px rgba(11, 27, 51, 0.10);
  --shadow-lg: 0 18px 48px rgba(11, 27, 51, 0.16);
  --container: 1160px;
  --header-h: 88px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }
.ic { width: 1.15em; height: 1.15em; flex: none; }
:target { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.85em 1.7em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--orange-500); color: var(--white);
  box-shadow: 0 8px 22px rgba(242, 106, 33, 0.38);
}
.btn-primary:hover { background: var(--orange-600); color: var(--white); }
.btn-ghost {
  background: var(--white); color: var(--navy-800); border-color: var(--ice-200);
  box-shadow: var(--shadow-md);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--navy-800); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); color: var(--white); }
.btn-lg { font-size: 1.06rem; padding: 1em 2em; }
.btn-sm { font-size: 0.9rem; padding: 0.8em 1.8em; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: var(--ice-200); font-size: 0.86rem; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 42px; flex-wrap: wrap; padding-top: 4px; padding-bottom: 4px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ice-200); font-weight: 600; }
.topbar-link:hover { color: var(--white); }
.topbar-note { color: var(--blue-500); font-weight: 600; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  display: grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; color: var(--ice-200); background: rgba(255,255,255,0.08);
}
.topbar-social a:hover { background: var(--orange-500); color: var(--white); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow 0.2s, border-color 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-md); border-color: var(--ice-200); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand-logo { height: 74px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-weight: 600; font-size: 0.97rem; color: var(--navy-800);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 3px;
  background: var(--orange-500); border-radius: 2px; transition: right 0.22s ease;
}
.nav-link:hover::after { right: 0; }
.nav-phone { color: var(--orange-600); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span {
  display: block; width: 24px; height: 3px; margin: 5px 0;
  background: var(--navy-800); border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/hero-fog.jpg") center/cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(245,249,253,0.97) 0%, rgba(245,249,253,0.92) 44%, rgba(234,242,250,0.55) 100%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 96px;
}
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--white); background: var(--navy-800);
  border: 1.5px solid transparent;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow-light {
  color: var(--ice-100); background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}
.hero h1 em { font-style: normal; color: var(--orange-500); }
.hero-sub { font-size: 1.13rem; color: var(--text-600); max-width: 54ch; }
.hero-sub strong { color: var(--navy-800); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-600); font-size: 0.95rem;
}
.hero-rating:hover { color: var(--navy-800); }
.hero-rating strong { color: var(--navy-800); }
.stars { color: var(--star); letter-spacing: 2px; font-size: 1.05em; }

.hero-media { position: relative; }
.hero-mascot-fig { margin: 0; display: flex; justify-content: center; }
.hero-mascot-fig img {
  width: min(400px, 78%); height: auto;
  filter: drop-shadow(0 26px 44px rgba(11, 27, 51, 0.22));
}
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 14px 18px; font-size: 0.9rem;
  animation: floaty 5s ease-in-out infinite;
}
.badge-savings { top: -22px; right: -8px; flex-direction: column; align-items: flex-start; gap: 2px; }
.badge-savings .badge-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.9rem;
  color: var(--orange-500); line-height: 1;
}
.badge-savings .badge-label { color: var(--text-600); font-size: 0.78rem; line-height: 1.35; }
.badge-time { bottom: -18px; left: -10px; color: var(--text-600); animation-delay: 2.5s; }
.badge-time .ic { color: var(--blue-600); width: 1.5em; height: 1.5em; }
.badge-time strong { color: var(--navy-800); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Stats strip ---------- */
.stats { background: var(--navy-800); color: var(--white); }
.stats-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; padding-top: 46px; padding-bottom: 46px;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--white); line-height: 1.1;
}
.stat-star { color: var(--star); font-size: 0.75em; vertical-align: 0.15em; margin-left: 2px; }
.stat-label { display: block; margin-top: 6px; font-size: 0.88rem; color: var(--ice-200); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--ice-50); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head p { color: var(--text-600); font-size: 1.05rem; }
.section-head-light h2, .section-head-light p { color: var(--white); }

/* ---------- Split (why) ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.split-media { position: relative; margin: 0; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.media-chip {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--navy-800); color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
}
.split-copy p { color: var(--text-600); }
.split-copy .btn { margin-top: 10px; }

#why .split-media { max-width: 440px; margin: 0 auto; }
#mission .split { grid-template-columns: 1.3fr 1fr; }

.video-band {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
}
.video-band h2 { color: var(--white); }
.video-band .split-copy p { color: var(--ice-200); }
.video-band .split-copy strong { color: var(--white); }
.video-band .split-copy .btn { margin-top: 10px; }
.demo-video {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  background: var(--navy-900);
}
.split-flip { grid-template-columns: 1.05fr 1fr; }
.team-media { transform: rotate(-1.2deg); }
.team-media img { width: 100%; }

.ticks { list-style: none; padding: 0; margin: 0 0 24px; }
.ticks li { position: relative; padding: 5px 0 5px 34px; color: var(--text-600); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 4px;
  width: 23px; height: 23px; border-radius: 50%;
  background: rgba(77, 159, 220, 0.16); color: var(--blue-600);
  font-size: 0.8rem; font-weight: 800; display: grid; place-items: center;
}
.ticks-sm li { font-size: 0.92rem; padding-top: 4px; padding-bottom: 4px; }

/* ---------- 15-year guarantee ---------- */
.guarantee {
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(77, 159, 220, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}
.guarantee-inner { display: flex; align-items: center; gap: 64px; }
.guarantee-badge {
  position: relative; flex: none;
  width: 216px; height: 216px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #FF8A4C, var(--orange-500) 55%, var(--orange-600));
  box-shadow: 0 22px 48px rgba(242, 106, 33, 0.4), inset 0 0 0 8px rgba(255, 255, 255, 0.16);
  outline: 12px solid rgba(255, 255, 255, 0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.g-check {
  width: 30px; height: 30px; color: var(--white);
  background: var(--navy-800); border-radius: 50%; padding: 7px;
  position: absolute; top: -6px; right: 18px;
  box-shadow: var(--shadow-md);
}
.g-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4.4rem; line-height: 1; color: var(--white);
  text-shadow: 0 3px 10px rgba(11, 27, 51, 0.25);
}
.g-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.16em; text-align: center;
  line-height: 1.35; margin-top: 6px; color: rgba(255, 255, 255, 0.92);
}
.guarantee-copy h2 { color: var(--white); }
.guarantee-copy p { color: var(--ice-200); font-size: 1.05rem; max-width: 54ch; }
.guarantee-copy .btn { margin-top: 10px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px 28px;
  box-shadow: var(--shadow-md); border: 1px solid var(--ice-200);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  display: grid; place-items: center;
}
.card-icon svg { width: 30px; height: 30px; color: var(--blue-500); }
.card p { color: var(--text-600); font-size: 0.97rem; }
.card .ticks { margin-top: auto; }
.card-link { font-family: var(--font-display); font-weight: 700; color: var(--orange-600); font-size: 0.95rem; }
.card-link:hover { color: var(--orange-500); }

/* ---------- How it works head + mascot ---------- */
.hiw-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 52px;
}
.hiw-head .section-head { margin-bottom: 0; }
.hiw-photo {
  width: clamp(220px, 26vw, 330px); height: auto; flex: none;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

/* ---------- Steps ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  counter-reset: step;
}
.step {
  position: relative; background: var(--ice-50); border-radius: var(--radius);
  padding: 30px 26px 22px; border: 1px solid var(--ice-200);
}
.step-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--orange-500); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  margin-bottom: 16px; box-shadow: 0 6px 16px rgba(242, 106, 33, 0.35);
}
.step h3 { font-size: 1.08rem; }
.step p { color: var(--text-600); font-size: 0.94rem; margin: 0; }

/* ---------- Reviews ---------- */
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--ice-200); border-radius: 999px;
  padding: 10px 20px; box-shadow: var(--shadow-md);
  color: var(--text-600); font-size: 0.95rem; margin-top: 6px;
}
.google-badge strong { color: var(--navy-800); }
.google-badge:hover { box-shadow: var(--shadow-lg); }
.g-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  background: linear-gradient(135deg, #4285F4 20%, #EA4335 45%, #FBBC05 65%, #34A853 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.carousel-wrap { position: relative; }
.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 22px; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.review {
  margin: 0; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--ice-200); box-shadow: var(--shadow-md);
  padding: 28px 26px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
}
.review .stars { font-size: 0.95rem; }
.review p { color: var(--text-600); font-size: 0.96rem; margin: 0; flex: 1; }
.review footer { font-family: var(--font-display); font-weight: 700; color: var(--navy-800); font-size: 0.92rem; }
.review footer span { font-family: var(--font-body); font-weight: 500; color: var(--text-400); font-size: 0.85rem; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--ice-200);
  background: var(--white); color: var(--navy-800); font-size: 1.5rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; padding-bottom: 4px;
  transition: background 0.15s, color 0.15s;
}
.carousel-btn:hover { background: var(--orange-500); color: var(--white); }
.carousel-btn.prev { left: -14px; }
.carousel-btn.next { right: -14px; }
.reviews-cta { text-align: center; margin: 10px 0 0; color: var(--text-400); }
.reviews-cta a { font-weight: 600; }

/* ---------- Service area ---------- */
.area {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(77, 159, 220, 0.28), transparent 60%),
    var(--navy-800);
  color: var(--white);
}
.area .section-head { margin-bottom: 36px; }
.area-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.area-media { margin: 0; position: relative; }
.area-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.media-chip-orange { background: var(--orange-500); }
.chips {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.chips li {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: var(--ice-100); font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; padding: 10px 20px; border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
}
.chips li:hover { background: rgba(242, 106, 33, 0.25); border-color: var(--orange-500); }
.area-note { color: var(--ice-200); margin: 0; }
.area-note a { color: #FFB98A; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: start;
}
.faq-media {
  margin: 0; position: sticky; top: calc(var(--header-h) + 24px);
}
.faq-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.faq-media .media-chip { position: absolute; }
.faq-list { display: grid; gap: 14px; align-content: start; }
.faq-item {
  background: var(--white); border: 1px solid var(--ice-200);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: 0 24px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: var(--navy-800); padding: 20px 44px 20px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ice-100); color: var(--navy-800);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 600;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.faq-item[open] summary::after {
  content: "–"; background: var(--orange-500); color: var(--white);
}
.faq-item p { color: var(--text-600); margin: 0; padding: 0 0 22px; max-width: 68ch; }

/* ---------- Quote ---------- */
.quote {
  background:
    radial-gradient(900px 460px at 12% 110%, rgba(242, 106, 33, 0.22), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.quote-copy h2 { color: var(--white); }
.quote-copy p { color: var(--ice-200); font-size: 1.05rem; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card {
  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-sm); padding: 18px 20px; color: var(--ice-100);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.contact-card:hover { background: rgba(255,255,255,0.12); border-color: var(--blue-500); transform: translateY(-2px); }
.contact-card .ic { width: 1.6em; height: 1.6em; color: var(--orange-500); }
.contact-card strong { color: var(--white); font-family: var(--font-display); }

.quote-form-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 38px 36px;
}
.quote-form-card h3 { font-size: 1.45rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-weight: 600; font-size: 0.88rem;
  color: var(--navy-800); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text-900);
  background: var(--ice-50); border: 1.5px solid var(--ice-200);
  border-radius: 10px; padding: 12px 14px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(77, 159, 220, 0.18);
}
.form-error {
  background: #FDECEC; color: #B3261E; border-radius: 10px;
  padding: 12px 16px; font-size: 0.92rem; margin: 0 0 16px;
}
.form-note { text-align: center; color: var(--text-400); font-size: 0.85rem; margin: 14px 0 0; }
.form-done { text-align: center; padding: 40px 10px; }
.done-check {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
  background: #E6F6EC; color: #1E8E3E; font-size: 2.2rem; font-weight: 800;
  display: grid; place-items: center;
}
.form-done p { color: var(--text-600); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--ice-200); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 48px; padding-top: 72px; padding-bottom: 56px;
}
.footer-logo { width: 120px; height: auto; margin-bottom: 16px; }
.footer-tag { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.footer-brand p { font-size: 0.92rem; color: var(--text-400); max-width: 34ch; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--ice-200);
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: var(--orange-500); color: var(--white); }
.footer-col h4 {
  color: var(--white); font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--ice-200); padding: 5px 0; font-size: 0.95rem; }
.footer-col a:hover { color: var(--orange-500); }
.footer-col p { font-size: 0.92rem; color: var(--text-400); margin: 10px 0 16px; }
.footer-col .btn {
  margin-top: 4px; display: inline-flex; width: auto;
  color: var(--white); padding: 0.8em 1.8em; font-size: 0.9rem;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--text-400); }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  box-shadow: 0 -6px 24px rgba(11, 27, 51, 0.14);
}
.mobile-cta .btn { flex: 1; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-badge { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding-top: 56px; padding-bottom: 72px; }
  .hero-media { max-width: 560px; margin: 0 auto; }
  /* Badges move out of the image into a centered chip row — the mascot is never covered */
  .hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 22px; }
  .float-badge { position: static; animation: none; }
  .badge-savings { flex-direction: row; align-items: center; gap: 10px; }
  #mission .split { grid-template-columns: 1fr; }
  #mission .split-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner .stat:last-child { grid-column: 1 / -1; }
  .split-flip { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .carousel { grid-auto-columns: calc((100% - 26px) / 2); }
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .area-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-grid { grid-template-columns: 1fr; gap: 44px; }

  /* Guarantee band stacks and centers */
  .guarantee-inner { flex-direction: column; gap: 40px; text-align: center; }
  .guarantee-copy p { margin-left: auto; margin-right: auto; }

  /* When sections stack, they center — headings, capped images, chips */
  .section-head { margin-left: auto; margin-right: auto; text-align: center; }
  .hiw-head { flex-direction: column; align-items: center; gap: 30px; }
  .hiw-photo { width: min(420px, 88%); transform: none; }
  .team-media { max-width: 480px; margin: 0 auto; }
  .area-media { max-width: 640px; margin: 0 auto; }
  .faq-media { position: static; max-width: 480px; margin: 0 auto; }
  .chips { justify-content: center; }
  .area-note { text-align: center; }
  .reviews-cta { text-align: center; }

  /* Footer: centered on tablet and below */
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
}

@media (max-width: 760px) {
  .topbar-email, .topbar-note { display: none; }
  .header-inner { height: 76px; }
  .brand-logo { height: 62px; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; z-index: 55;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); box-shadow: var(--shadow-lg);
    padding: 12px 24px 24px; border-top: 1px solid var(--ice-200);
    transform: translateY(-130%); transition: transform 0.25s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--ice-100); }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .section { padding: 68px 0; }
  .hiw-photo { display: none; }
  .guarantee-badge { width: 180px; height: 180px; outline-width: 9px; }
  .g-num { font-size: 3.6rem; }
  .hero-cta .btn { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .carousel { grid-auto-columns: 92%; }
  .carousel-btn { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}
