/* Comfort Pro — superhero/sun brand system.
   Palette extracted from logo pixels: suit blue #004E92 (family #003060–#0060B0),
   deep navy #03204A, cape orange #F04000, badge gold #FFA010.
   Fonts: Anton (display) + Nunito Sans (body) — audition winner. */

:root {
  --color-primary: #004E92;
  --color-primary-hover: #003C73;
  --color-primary-soft: rgba(0, 78, 146, 0.12);
  --color-secondary: #03204A;
  --color-secondary-deep: #021736;
  --color-accent: #F04000;
  --color-accent-hover: #C93600;
  --color-gold: #FFA010;

  --color-bg: #FFFFFF;
  --color-surface: #F5F8FC;
  --color-surface-dark: #03204A;
  --color-surface-darker: #021736;

  --color-text: #1E2733;
  --color-text-light: #5B6878;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #9FB2C8;

  --color-border: #E3E9F1;
  --color-google-star: #FBBC04;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;

  --container-width: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(2, 23, 54, 0.08);
  --shadow-md: 0 8px 24px rgba(2, 23, 54, 0.13);
  --shadow-lg: 0 20px 48px rgba(2, 23, 54, 0.18);
  --shadow-poster: 5px 5px 0 rgba(2, 23, 54, 0.22);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 1000;
  --z-mobile-cta: 1100;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }
p a { font-weight: 700; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 1.15; letter-spacing: 0.015em; }

/* ---------- buttons: poster energy (hard offset shadow) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 7px;
  line-height: 1;
  cursor: pointer;
  border: 3px double #FFFFFF;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: var(--shadow-poster);
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(2, 23, 54, 0.22); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: var(--color-accent-hover); color: #fff; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; }
.btn--outline-light { background: rgba(2, 23, 54, 0.35); color: #fff; border: 2px solid #fff; }
.btn--outline-light:hover { background: #fff; color: var(--color-secondary); }
.btn--outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); box-shadow: none; }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 14px; box-shadow: 3px 3px 0 rgba(2, 23, 54, 0.2); }
.btn-pair { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-mobile-cta); }
  .mobile-cta-bar a { flex: 1; padding: 14px 0; text-align: center; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; }
  .mobile-cta-bar__primary { background: var(--color-accent); color: #fff; }
  .mobile-cta-bar__call { background: var(--color-secondary-deep); color: #fff; }
  body { padding-top: 46px; }
}

/* ---------- utility bar ---------- */
.utility-bar { background: var(--color-secondary-deep); color: #C9D6E6; font-size: 13.5px; padding: 8px 0; position: relative; z-index: 1001; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__item svg { width: 15px; height: 15px; color: var(--color-gold); }
.utility-bar__item--hot a { color: var(--color-gold); text-decoration: none; font-weight: 700; }
.utility-bar__item--hot a:hover { text-decoration: underline; }
.utility-bar__actions { display: flex; align-items: center; gap: 18px; }
.utility-bar__phone { color: #fff; font-weight: 800; text-decoration: none; letter-spacing: 0.02em; }
.utility-bar__phone:hover { color: var(--color-gold); }
@media (max-width: 768px) { .utility-bar__hours-wrap { display: none; } .utility-bar .container { justify-content: center; } }

/* ---------- nav ---------- */
.nav { background: var(--color-secondary); position: sticky; top: 0; z-index: var(--z-nav); box-shadow: 0 2px 12px rgba(2, 23, 54, 0.35); }
.nav .container { display: flex; align-items: center; gap: 28px; min-height: 78px; }
.nav__logo { flex-shrink: 0; background: #fff; border-radius: 12px; padding: 8px 12px 10px; margin: 10px 0 -36px; box-shadow: 0 6px 18px rgba(2, 23, 54, 0.35); border-bottom: 4px solid var(--color-accent); position: relative; z-index: 5; }
.nav__logo img { width: auto; height: 84px; }
@media (max-width: 1024px) {
  .nav__logo { margin: 8px 0; padding: 5px 9px; border-bottom-width: 3px; }
  .nav__logo img { height: 58px; }
}
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link, .nav__dropdown-toggle {
  font-family: var(--font-body); font-weight: 700; font-size: 15px; color: #E8EEF6;
  background: none; border: none; cursor: pointer; text-decoration: none;
  padding: 10px 13px; border-radius: 6px; display: inline-flex; align-items: center; gap: 5px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__link:hover, .nav__dropdown-toggle:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: var(--color-secondary-deep); border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px; padding: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 1002;
}
.nav__dropdown:hover .nav__dropdown-menu, .nav__dropdown.open .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-item { display: block; padding: 10px 14px; color: #DDE7F2; text-decoration: none; font-size: 14.5px; font-weight: 600; border-radius: 7px; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.nav__dropdown-item:hover { background: var(--color-primary); color: #fff; }
.nav__actions { display: flex; gap: 10px; flex-shrink: 0; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__hamburger span { width: 26px; height: 3px; border-radius: 2px; background: #fff; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay { position: fixed; inset: 0; background: rgba(2, 23, 54, 0.6); opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease); z-index: 999; }
.nav-overlay.active { opacity: 1; visibility: visible; }
@media (max-width: 1024px) {
  .nav__hamburger { display: flex; margin-left: auto; }
  .nav__actions { display: none; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 400px; height: 100vh;
    background: var(--color-surface-darker); flex-direction: column; align-items: stretch;
    padding: 90px 28px 32px; gap: 2px; transition: right 0.4s var(--ease-out); z-index: 1005; overflow-y: auto; margin: 0;
  }
  .nav__links.open { right: 0; }
  .nav__dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border: none; background: rgba(255, 255, 255, 0.05); margin: 4px 0 8px; }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__link, .nav__dropdown-toggle { width: 100%; justify-content: space-between; font-size: 17px; padding: 14px 12px; }
}

/* ---------- sunburst texture (brand device) ---------- */
.sunburst {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 85% -20%, rgba(255, 160, 16, 0.07) 0deg 6deg, transparent 6deg 14deg);
}

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(150deg, #04305E 0%, var(--color-secondary) 55%, var(--color-secondary-deep) 100%); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(2, 23, 54, 0.9) 8%, rgba(3, 38, 78, 0.72) 46%, rgba(3, 38, 78, 0.45) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero--home .hero__content { padding: 96px 0 130px; max-width: 760px; }
.hero--sub .hero__content { padding: 40px 0 110px; max-width: 720px; }
.hero--sub .breadcrumbs { padding-top: 58px; }
@media (max-width: 1024px) { .hero--sub .breadcrumbs { padding-top: 22px; } }
.hero--device .hero__mascot {
  position: absolute; right: 3%; bottom: 40px; width: clamp(180px, 24vw, 330px); height: auto;
  opacity: 0.96; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35)); z-index: 1; pointer-events: none;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 26px; align-items: center; }
.hero__badge { display: flex; align-items: center; gap: 12px; }
.hero__badge-logo { width: 40px; height: 40px; flex-shrink: 0; }
.hero__badge-shield { width: 40px; height: 40px; color: var(--color-gold); }
.hero__badge-shield svg { width: 40px; height: 40px; }
.hero__badge-info { display: flex; flex-direction: column; gap: 2px; }
.hero__badge-stars { display: flex; gap: 1px; }
.hero__badge-stars svg { width: 16px; height: 16px; fill: var(--color-google-star); }
.hero__badge-text { font-family: var(--font-display); font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; }
.hero__title { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 12px; text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35); }
.hero__count { font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 26px); color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; border-bottom: 4px solid var(--color-accent); display: inline-block; padding-bottom: 4px; }
.hero__text { font-size: clamp(16px, 1.5vw, 19px); color: #E4ECF6; max-width: 640px; margin-bottom: 22px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-bottom: 30px; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: #DCE7F3; }
.hero__trust-item svg { width: 17px; height: 17px; color: var(--color-gold); flex-shrink: 0; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* cape-swoosh divider */
.section-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 3; pointer-events: none; }
.section-divider--flip { position: relative; bottom: auto; transform: scaleX(-1); }

/* ---------- trust strip (floats over hero seam) ---------- */
.trust-strip { position: relative; z-index: 4; margin-top: -46px; margin-bottom: 18px; }
.trust-strip__card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border-top: 5px solid var(--color-accent);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 22px 26px;
}
.trust-strip__item { display: flex; align-items: center; gap: 12px; }
.trust-strip__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary-soft); color: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-strip__icon svg { width: 22px; height: 22px; }
.trust-strip__item:first-child .trust-strip__icon { background: rgba(255, 160, 16, 0.16); color: var(--color-gold); }
.trust-strip__label { font-family: var(--font-display); font-size: 15.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-secondary); }
.trust-strip__sub { font-size: 13px; color: var(--color-text-light); }
@media (max-width: 1024px) { .trust-strip__card { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px) { .trust-strip__card { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
.section { position: relative; padding: 92px 0; }
.section--surface { background: var(--color-surface); }
.section--rays { overflow: hidden; }
.section--rays::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-conic-gradient(from 0deg at 110% 115%, rgba(0, 78, 146, 0.045) 0deg 5deg, transparent 5deg 12deg); }
.section > .container { position: relative; z-index: 1; }
.section-subtitle { font-family: var(--font-body); font-weight: 800; font-size: 13.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 3.4vw, 44px); color: var(--color-secondary); margin-bottom: 18px; }
.section-title--underline { position: relative; padding-bottom: 16px; }
.section-title--underline::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 84px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, var(--color-accent) 55%, var(--color-gold) 55%); }
.section-title--underline.left::after { left: 0; transform: none; }
.section__footer { text-align: center; margin-top: 44px; }
.text-center .section-title { margin-left: auto; margin-right: auto; }
.text-center p { color: var(--color-text-light); }
.prose { max-width: 800px; }
.prose p { margin-bottom: 16px; }
.prose h2 { margin-top: 8px; }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: 26px; margin-top: 44px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 34px 28px 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--color-primary) 60%, var(--color-accent) 60%); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card__icon { width: 62px; height: 62px; border-radius: 14px; background: linear-gradient(145deg, #04305E, var(--color-primary)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--shadow-poster); }
.svc-card__icon svg { width: 30px; height: 30px; }
.svc-card__tag { position: absolute; top: 22px; right: -34px; transform: rotate(38deg); background: var(--color-gold); color: var(--color-secondary-deep); font-family: var(--font-body); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 40px; }
.svc-card h3 { font-size: 24px; color: var(--color-secondary); margin-bottom: 10px; }
.svc-card p { color: var(--color-text-light); font-size: 15.5px; margin-bottom: 20px; }

.icon-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--color-primary-soft); color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.icon-card__icon svg { width: 26px; height: 26px; }
.icon-card h3 { font-size: 20px; color: var(--color-secondary); margin-bottom: 8px; }
.icon-card p { font-size: 15px; color: var(--color-text-light); }

.review-card { background: #fff; border: 1px solid var(--color-border); border-left: 5px solid var(--color-primary); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); position: relative; }
.review-card__g { position: absolute; top: 24px; right: 24px; }
.review-card__g svg { width: 26px; height: 26px; }
.review-card__stars { display: flex; gap: 2px; color: var(--color-google-star); margin-bottom: 14px; }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__text { font-size: 15px; color: var(--color-text); margin-bottom: 16px; white-space: pre-line; }
.review-card__author { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-secondary); font-size: 16px; }
.review-card__when { font-size: 13px; color: var(--color-text-light); }
.reviews__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }
.spotlight { max-width: 760px; margin: 40px auto 0; }

/* ---------- areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }
.area-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.area-card__city { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; font-size: 17px; color: var(--color-secondary); text-decoration: none; margin-bottom: 6px; }
.area-card__city:hover { color: var(--color-accent); }
.area-card__city svg { width: 16px; height: 16px; color: var(--color-accent); }
.area-card__links { display: flex; gap: 8px; font-size: 13.5px; color: var(--color-border); }
.area-card__links a { color: var(--color-text-light); text-decoration: none; font-weight: 700; }
.area-card__links a:hover { color: var(--color-primary); }

/* ---------- lists / steps / stats / split ---------- */
.check-list { list-style: none; columns: 2; gap: 40px; margin-top: 20px; max-width: 720px; }
@media (max-width: 640px) { .check-list { columns: 1; } }
.check-list li { display: flex; align-items: center; gap: 10px; padding: 7px 0; break-inside: avoid; }
.check-list svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; }
.check-list a { font-weight: 700; text-decoration: none; }
.check-list a:hover { text-decoration: underline; }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; }
.step__num { font-family: var(--font-display); font-size: 44px; color: #fff; background: var(--color-accent); width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--shadow-poster); }
.step h3 { font-size: 21px; color: var(--color-secondary); margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--color-text-light); }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
@media (max-width: 640px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--color-surface); border-radius: var(--radius); padding: 18px 10px; text-align: center; border-bottom: 4px solid var(--color-gold); }
.stat__num { font-family: var(--font-display); font-size: 30px; color: var(--color-primary); }
.stat__label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-light); }

.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border-bottom: 6px solid var(--color-accent); width: 100%; object-fit: cover; }

/* ---------- navy band + mascot ---------- */
.band { position: relative; background: linear-gradient(140deg, #04305E, var(--color-secondary) 60%, var(--color-secondary-deep)); color: #fff; padding: 92px 0; overflow: hidden; }
.band .container { position: relative; z-index: 2; }
.band__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 960px) { .band__grid { grid-template-columns: 1fr; gap: 40px; } }
.band__pitch { position: relative; }
.band .section-title { color: #fff; }
.band .section-subtitle { color: var(--color-gold); }
.band p { color: #D5E1EF; }
.band__mascot { position: absolute; right: -40px; bottom: -160px; width: 210px; height: auto; opacity: 0.14; pointer-events: none; }
@media (max-width: 960px) { .band__mascot { display: none; } }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-lg); color: var(--color-text); border-top: 6px solid var(--color-accent); }
.form-card__title { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 6px; }
.form-card__sub { font-size: 14px; color: var(--color-text-light); margin-bottom: 20px; }

/* ---------- forms ---------- */
.lead-form { max-width: 640px; margin: 44px auto 0; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 38px 34px; border-top: 6px solid var(--color-accent); }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form__full { grid-column: 1 / -1; }
@media (max-width: 640px) { .lead-form__grid { grid-template-columns: 1fr; } .lead-form { padding: 28px 22px; } }
.form-group { display: flex; flex-direction: column; }
.form-label { font-size: 13.5px; font-weight: 800; margin-bottom: 6px; color: var(--color-secondary); }
.form-input, .form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-body); font-size: 15.5px; color: var(--color-text); background: #fff; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-soft); }
.lead-form__submit { grid-column: 1 / -1; font-family: var(--font-display); font-size: 17px; letter-spacing: 0.05em; text-transform: uppercase; background: var(--color-accent); color: #fff; border: 3px double #fff; border-radius: 7px; padding: 16px 32px; cursor: pointer; box-shadow: var(--shadow-poster); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); }
.lead-form__submit:hover { background: var(--color-accent-hover); transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(2, 23, 54, 0.22); }
.lead-form__consent { grid-column: 1 / -1; font-size: 11.5px; line-height: 1.55; color: var(--color-text-light); margin-top: 6px; }

/* ---------- CTA band ---------- */
.cta-section { position: relative; padding: 96px 0; text-align: center; color: #fff; background-size: cover; background-position: center 40%; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(2, 23, 54, 0.82), rgba(2, 23, 54, 0.86)); }
.cta-section--flat { background: linear-gradient(140deg, var(--color-accent) 0%, #C93600 100%); }
.cta-section--flat::before { display: none; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(28px, 3.6vw, 46px); margin-bottom: 12px; }
.cta-section p { max-width: 620px; margin: 0 auto 28px; color: rgba(255, 255, 255, 0.92); }
.cta-section--flat .btn--accent { background: var(--color-secondary-deep); }
.cta-section--flat .btn--accent:hover { background: var(--color-secondary); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: #fff; }
.faq-item__question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: left; padding: 18px 22px; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 800; font-size: 16px; color: var(--color-secondary); transition: background 0.25s var(--ease); }
.faq-item__question:hover { background: var(--color-surface); }
.faq-item__question svg { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--color-accent); }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-item__answer { max-height: 640px; }
.faq-item__answer-inner { padding: 0 22px 20px; color: var(--color-text-light); font-size: 15.5px; }

/* ---------- maps ---------- */
.map-section { line-height: 0; }
.map-embed { width: 100%; height: 320px; border: 0; }
.map-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 40px 0 0; padding-bottom: 92px; }
@media (max-width: 800px) { .map-pair { grid-template-columns: 1fr; } }
.map-pair__label { font-size: 18px; color: var(--color-secondary); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.map-pair__label svg { width: 18px; height: 18px; color: var(--color-accent); }
.map-embed--card { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); height: 300px; }

/* ---------- footer ---------- */
.footer { position: relative; background: var(--color-surface-dark); color: var(--color-text-on-dark-muted); padding: 84px 0 36px; overflow: hidden; }
.footer::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-conic-gradient(from 0deg at -8% 120%, rgba(255, 255, 255, 0.02) 0deg 5deg, transparent 5deg 12deg); }
.footer .container { position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { background: #fff; display: inline-block; border-radius: 12px; padding: 12px; margin-bottom: 18px; }
.footer__logo img { width: 150px; }
.footer__brand-desc { font-size: 14.5px; margin-bottom: 16px; }
.footer__rating { display: flex; align-items: center; gap: 8px; color: var(--color-google-star); }
.footer__rating svg { width: 16px; height: 16px; }
.footer__rating span { color: #fff; font-weight: 700; font-size: 14px; margin-left: 4px; }
.footer__heading { font-size: 17px; color: #fff; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer__links a { display: block; padding: 4px 0; color: var(--color-text-on-dark-muted); text-decoration: none; font-size: 14.5px; transition: color 0.25s var(--ease); }
.footer__links a:hover { color: var(--color-gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 14.5px; }
.footer__contact-item svg { width: 17px; height: 17px; color: var(--color-gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: #fff; font-weight: 700; text-decoration: none; }
.footer__contact-item a:hover { color: var(--color-gold); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.09); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.legal-footer { background: var(--color-surface-darker); color: #7E90A8; text-align: center; padding: 16px 20px; font-size: 13px; }
.legal-footer a { color: #9FB2C8; text-decoration: none; margin: 0 4px; }
.legal-footer a:hover { color: var(--color-gold); }

/* ---------- breadcrumbs ---------- */
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, 0.75); }
.breadcrumbs a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: #fff; font-weight: 700; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- hero entrance stagger ---------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero__badges  { animation: fadeInUp 0.8s var(--ease-out) 0s both; }
.hero__title   { animation: fadeInUp 0.8s var(--ease-out) 0.15s both; }
.hero__count   { animation: fadeInUp 0.8s var(--ease-out) 0.25s both; }
.hero__text    { animation: fadeInUp 0.8s var(--ease-out) 0.3s both; }
.hero__trust   { animation: fadeInUp 0.8s var(--ease-out) 0.4s both; }
.hero__actions { animation: fadeInUp 0.8s var(--ease-out) 0.45s both; }

/* ---------- phone-gated specials band ---------- */
.specials-band { position: relative; background: linear-gradient(140deg, var(--color-secondary-deep), var(--color-secondary) 70%); color: #fff; padding: 84px 0; overflow: hidden; }
.specials-band .container { position: relative; z-index: 2; }
.specials-band__card { max-width: 760px; margin: 0 auto; text-align: center; border: 3px dashed var(--color-gold); border-radius: var(--radius-lg); padding: 44px 36px; background: rgba(255, 255, 255, 0.04); }
.specials-band__card .section-title { color: #fff; }
.specials-band__card p { color: #D5E1EF; max-width: 560px; margin: 0 auto 26px; }
.specials-band__phone { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); color: var(--color-gold); display: block; text-decoration: none; margin-bottom: 20px; letter-spacing: 0.03em; }
.specials-band__phone:hover { color: #fff; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .band { padding: 64px 0; }
  .cta-section { padding: 68px 0; }
  .hero--home .hero__content { padding: 64px 0 110px; }
  .btn-pair .btn, .hero__actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
