:root {
  --primary: #0f6fae;
  --accent: #20c4d8;
  --navy: #0a2f4a;
  --bg-soft: #f4fafd;
  --white: #ffffff;
  --text: #234158;
  --muted: #5c7386;
  --border: rgba(10, 47, 74, 0.1);
  --shadow-lg: 0 24px 50px rgba(15, 111, 174, 0.14);
  --shadow-md: 0 16px 30px rgba(10, 47, 74, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1520px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(32, 196, 216, 0.18), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fcfe 48%, #f3f8fc 100%);
}

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

figure {
  margin: 0;
}

.image-figure {
  margin: 0;
}

.hero-visual .image-figure,
.about-gallery .image-figure,
.promo-collage .image-figure {
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(32, 196, 216, 0.16));
  border: 1px solid rgba(32, 196, 216, 0.2);
  pointer-events: none;
  z-index: 0;
  animation: float 11s ease-in-out infinite;
}

.page-shell::before {
  width: 140px;
  height: 140px;
  top: 520px;
  right: 18%;
  animation-delay: -3s;
}

.page-shell::after {
  width: 64px;
  height: 64px;
  top: 1180px;
  left: 22%;
  animation-delay: -7s;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82), rgba(32, 196, 216, 0.14));
  border: 1px solid rgba(32, 196, 216, 0.2);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.bubble-a {
  width: 140px;
  height: 140px;
  top: 120px;
  left: -20px;
}

.bubble-b {
  width: 90px;
  height: 90px;
  top: 620px;
  right: 6%;
  animation-delay: -3s;
}

.bubble-c {
  width: 180px;
  height: 180px;
  bottom: 160px;
  left: 4%;
  animation-delay: -6s;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
main,
.lead-bar,
.section,
.estimator-shell,
.container,
.estimate-modal-dialog {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(10, 47, 74, 0.08);
  border-color: rgba(10, 47, 74, 0.08);
}

.nav-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: 0 16px 30px rgba(15, 111, 174, 0.22);
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 18px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 47, 74, 0.08);
  position: relative;
}

.site-nav a,
.nav-trigger {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  color: var(--primary);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 240px;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 47, 74, 0.08);
  box-shadow: var(--shadow-md);
}

.nav-group:not([open]) .nav-menu {
  display: none;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--primary));
  box-shadow: 0 14px 30px rgba(15, 111, 174, 0.24);
}

.button-accent {
  color: var(--navy);
  background: linear-gradient(135deg, #7ff1ff, var(--accent));
  box-shadow: 0 14px 30px rgba(32, 196, 216, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(10, 47, 74, 0.12);
}

.hero {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero h1,
.section-heading h2,
.about-copy h2,
.promo-copy h2,
.site-footer h2 {
  margin: 0.85rem 0 0;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  max-width: 18ch;
}

.hero-text,
.section-heading p,
.about-copy p,
.promo-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  margin-top: 1.1rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.4rem 0;
}

.trust-list li {
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: rgba(10, 47, 74, 0.04);
  border: 1px solid rgba(15, 111, 174, 0.14);
  font-weight: 800;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-tagline {
  margin-top: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  filter: drop-shadow(0 35px 42px rgba(10, 47, 74, 0.18));
}

.hero-logo {
  width: min(100%, 540px);
}

.hero-photo {
  border-radius: 32px;
  object-fit: cover;
  max-height: 520px;
  box-shadow: var(--shadow-lg);
}

.hero-inner {
  padding-top: 2.6rem;
}

.hero-spray {
  position: absolute;
  inset: 80px 30px 70px;
  border-radius: 40px 80px 50px 60px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.85), transparent 12%),
    radial-gradient(circle at 30% 72%, rgba(255, 255, 255, 0.75), transparent 10%),
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.65), transparent 14%),
    linear-gradient(140deg, rgba(15, 111, 174, 0.18), rgba(32, 196, 216, 0.28));
  filter: blur(1px);
}

.lead-bar {
  margin-top: -0.5rem;
}

.lead-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 47, 74, 0.08);
  box-shadow: var(--shadow-lg);
}

.lead-kicker {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.lead-card h2 {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
}

.quote-form span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}

.quote-form input,
.quote-form select {
  min-width: 180px;
  height: 52px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 74, 0.12);
  background: var(--white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2,
.promo-copy h2,
.site-footer h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.services {
  background: linear-gradient(180deg, transparent 0%, rgba(244, 250, 253, 0.82) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card,
.testimonial-card,
.feature-card,
.process-step {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.service-card {
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(15, 111, 174, 0.18);
}

.service-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.service-card h3 {
  margin: 1rem 0 0.4rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.about {
  background: linear-gradient(180deg, rgba(220, 244, 250, 0.56), rgba(244, 250, 253, 0.96));
}

.about-grid,
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-gallery,
.promo-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-gallery img,
.promo-collage img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.reasons {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, #08293f, #0b385a);
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: var(--white);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading-light .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), var(--accent));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(32, 196, 216, 0.16);
  color: #aef6ff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 1rem 0 0;
  font-size: 1.15rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.3rem;
}

.step-badge {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 111, 174, 0.12), rgba(32, 196, 216, 0.28));
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
}

.promo {
  color: var(--white);
}

.promo-grid {
  padding: 2rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #0b4d79, #1599c1 70%, #4ddceb);
  box-shadow: 0 26px 50px rgba(15, 111, 174, 0.2);
}

.promo-copy h2,
.promo-copy p,
.promo .eyebrow {
  color: var(--white);
}

.promo .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  padding: 1.4rem;
}

.stars {
  margin: 0;
  color: #ffb957;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  margin: 1rem 0;
  color: var(--navy);
  line-height: 1.75;
  font-weight: 600;
}

.testimonial-card span {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
}

.areas-panel {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-accent {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 111, 174, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 111, 174, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.areas-list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.areas-list li {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(244, 250, 253, 0.92);
  font-weight: 800;
  color: var(--navy);
  border: 1px solid rgba(15, 111, 174, 0.08);
}

.inner-content {
  background: linear-gradient(180deg, rgba(244, 250, 253, 0.5), rgba(255, 255, 255, 0.85));
}

.pricing-estimator {
  background: linear-gradient(180deg, rgba(244, 250, 253, 0.9), rgba(255, 255, 255, 0.75));
}

.estimator-shell .section-heading {
  max-width: 760px;
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.estimator-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.estimator-form label {
  display: grid;
  gap: 0.45rem;
}

.estimator-form span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.estimator-form input,
.estimator-form select {
  height: 56px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 74, 0.12);
  background: var(--white);
}

.estimator-result-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.estimate-placeholder {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(244, 250, 253, 0.92);
  border: 1px dashed rgba(15, 111, 174, 0.22);
  color: var(--muted);
  line-height: 1.7;
}

.estimate-output[hidden] {
  display: none;
}

.estimate-range {
  margin-top: 0.9rem;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.estimate-copy {
  color: var(--muted);
  line-height: 1.75;
  margin: 0.9rem 0 0;
}

.estimate-service-copy {
  margin: 0.9rem 0 0;
  color: var(--navy);
  line-height: 1.75;
  font-weight: 600;
}

.estimate-helper-text {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.estimate-modal[hidden] {
  display: none;
}

.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.estimate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 50, 0.56);
  backdrop-filter: blur(4px);
}

.estimate-modal-dialog {
  position: relative;
  width: min(972px, 100%);
  max-height: calc(100vh - 1.5rem);
  overflow: auto;
  padding: 1.15rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 70px rgba(10, 47, 74, 0.24);
}

.estimate-modal-dialog h2 {
  margin: 0.5rem 0 0;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.estimate-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 47, 74, 0.08);
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}

.estimate-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.estimate-modal-summary {
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  background: rgba(244, 250, 253, 0.78);
  border: 1px solid rgba(15, 111, 174, 0.1);
}

.estimate-modal-summary h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.estimate-market-range {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem 1rem;
  border-radius: 24px;
  background: rgba(244, 250, 253, 0.72);
  border: 1px solid rgba(15, 111, 174, 0.1);
}

.estimate-market-heading-row {
  display: grid;
  gap: 0.2rem;
}

.estimate-market-heading-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.estimate-market-heading-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.estimate-market-values {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.estimate-market-scale {
  position: relative;
  margin-top: 0.95rem;
  padding-top: 1.55rem;
}

.estimate-market-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(10, 47, 74, 0.1), rgba(32, 196, 216, 0.16), rgba(10, 47, 74, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.estimate-market-marker {
  position: absolute;
  top: -0.05rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  justify-items: center;
  gap: 0.18rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  transition: left 0.35s ease;
}

.estimate-market-marker::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #b6fbff, var(--accent) 55%, #119cb2 100%);
  border: 4px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 0 0 6px rgba(32, 196, 216, 0.14),
    0 12px 24px rgba(32, 196, 216, 0.28);
}

.estimate-market-marker strong {
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 253, 0.98));
  border: 1px solid rgba(15, 111, 174, 0.14);
  box-shadow: 0 10px 20px rgba(10, 47, 74, 0.08);
}

.estimate-modal-card {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(244, 250, 253, 0.9);
}

.estimate-modal-card-featured {
  background: linear-gradient(180deg, rgba(32, 196, 216, 0.12), rgba(15, 111, 174, 0.08));
  border-color: rgba(32, 196, 216, 0.22);
  box-shadow: var(--shadow-md);
}

.estimate-modal-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.estimate-modal-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.estimate-modal-card li + li {
  margin-top: 0.3rem;
}

.estimate-modal-badge {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.estimate-minimum-note {
  margin: 0.85rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(32, 196, 216, 0.1);
  border: 1px solid rgba(32, 196, 216, 0.2);
  color: var(--navy);
  line-height: 1.7;
}

.estimate-minimum-note[hidden] {
  display: none;
}

.estimate-notes {
  margin-top: 1.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.content-card {
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.content-card h2 {
  margin: 0.8rem 0 0.5rem;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.content-card p {
  color: var(--muted);
  line-height: 1.75;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mini-card {
  padding: 1rem;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(15, 111, 174, 0.08);
}

.mini-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(244, 250, 253, 0.92));
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  color: var(--white);
  background: linear-gradient(180deg, #08293f, #061f32);
}

.site-footer h2 {
  color: var(--white);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.72fr) minmax(210px, 0.9fr) minmax(260px, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.footer-brand-block {
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-eyebrow {
  color: #9af1ff;
}

.footer-column h3 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-subheading {
  margin-top: 2rem;
}

.footer-column > .footer-links:first-of-type {
  margin-bottom: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #9af1ff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.footer-badges span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(154, 241, 255, 0.08);
  border: 1px solid rgba(154, 241, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.footer-call {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-call:hover,
.footer-call:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.footer-contact p {
  margin: 0 0 0.7rem;
}

.footer-hours {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer-hours li span:first-child {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.footer-online-note {
  margin-top: 1rem;
  color: #9af1ff;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(15, 111, 174, 0.24);
  }
  50% {
    box-shadow: 0 18px 36px rgba(32, 196, 216, 0.34);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .promo-grid,
  .lead-card,
  .footer-grid,
  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 500px;
  }

  .footer-brand-block {
    padding: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .hero:not(.hero-inner) {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero:not(.hero-inner) .hero-grid {
    min-height: calc(100vh - 11rem);
    align-items: center;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(calc(100% - 3.5rem), var(--container));
  }

  .hero-grid,
  .about-grid,
  .promo-grid {
    gap: 3rem;
  }

  .services-grid {
    gap: 1.4rem;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-photo {
    max-height: 600px;
  }

}

@media (min-width: 1700px) {
  .container {
    width: min(calc(100% - 4.5rem), 1600px);
  }

  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 3.5rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero-photo,
  .hero-logo,
  .hero-mascot {
    width: min(100%, 620px);
  }

  .hero-photo {
    max-height: 640px;
  }

  .lead-card,
  .promo-grid,
  .areas-panel {
    padding-inline: 2.25rem;
  }
}

@media (max-width: 1100px) {
  .hero:not(.hero-inner) .hero-visual {
    display: none;
  }

  .review-hero-visual {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-row {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.8rem;
    justify-items: start;
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin-top: 0.75rem;
    box-shadow: none;
  }

  .nav-group {
    width: 100%;
  }

  .areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-hours li {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .hero-visual {
    min-height: 380px;
  }

  .lead-card,
  .promo-grid {
    padding: 1.2rem;
  }

  .quote-form,
  .services-grid,
  .about-gallery,
  .promo-collage,
  .areas-list,
  .mini-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .trust-list,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .footer-hours li {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .estimate-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 1100px) {
  .estimate-modal {
    padding: 0.85rem;
  }

  .estimate-modal-dialog {
    width: min(920px, 100%);
    max-height: calc(100vh - 1rem);
    padding: 1rem;
  }

  .estimate-modal-dialog h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
  }

  .estimate-modal-summary {
    padding: 0.85rem 0.95rem;
  }

  .estimate-modal-grid {
    gap: 0.85rem;
  }

  .estimate-modal-card {
    padding: 0.9rem;
  }

  .estimate-modal-card ul {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .estimate-helper-text {
    line-height: 1.5;
  }
}
