@import url('timeline.css');
@import url('faq.css');
@import url('cards.css');
@import url('spacing.css');
@import url('contrast.css');
@import url('hero-center.css');
@import url('stats.css');
@import url('responsive.css');

/* Plymouth MN Dryer Vent Cleaning */
:root {
  --blue-900: #0a2540;
  --blue-700: #1a4d7a;
  --blue-500: #2563eb;
  --blue-100: #eff6ff;
  --orange: #ea580c;
  --orange-hover: #c2410c;
  --orange-light: #fff7ed;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text: #1e293b;
  --shadow: 0 8px 30px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 16px 48px rgba(10, 37, 64, 0.12);
  --radius: 12px;
  --header-h: 76px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1160px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-500); }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Typography */
h1, h2, h3, h4 { color: var(--gray-900); line-height: 1.25; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.6rem; }
p { font-size: 1.125rem; line-height: 1.75; }

.section { padding: 5rem 0; }
.section--alt {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: var(--blue-100);
  border-radius: 999px;
}
.section__lead {
  font-size: 1.2rem;
  color: var(--gray-700);
  max-width: 44rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
}
.btn--outline {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--gray-200);
  box-shadow: var(--shadow);
}
.btn--outline:hover { background: var(--blue-100); border-color: var(--blue-500); color: var(--blue-900); }
.btn--white { background: var(--white); color: var(--blue-900); border-color: var(--white); }
.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.95rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  color: var(--blue-900);
  text-decoration: none;
  line-height: 1.2;
  min-width: 0;
  flex-shrink: 1;
}
.logo__text {
  min-width: 0;
}
.logo__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.logo--img .logo__text {
  display: none;
}

.logo__img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .logo__img {
    height: 52px;
    max-width: min(230px, 36vw);
  }
}

.logo__text span { display: block; font-size: 0.72rem; font-weight: 600; color: var(--gray-500); }
.nav { display: none; }
.nav > ul { display: flex; gap: 0.15rem; list-style: none; align-items: center; }
.nav .nav-link,
.nav .nav-dropdown__toggle {
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.35;
  white-space: nowrap;
}
.nav .nav-link:hover,
.nav .nav-dropdown__toggle:hover,
.nav .nav-link.is-active,
.nav .nav-dropdown__toggle.is-active {
  color: var(--blue-700);
  background: var(--blue-100);
}
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 15rem;
  max-height: min(70vh, 24rem);
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 1100;
}
.nav-dropdown--areas {
  min-width: 16rem;
  max-height: min(70vh, 28rem);
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 6px;
  white-space: normal;
}
.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: var(--blue-700);
  background: var(--blue-100);
}
.nav-dropdown > li:first-child a {
  font-weight: 700;
  color: var(--blue-900);
}
.header__phone {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}
.header__phone:hover {
  color: var(--orange-hover);
  background: var(--orange-light);
}
.header__actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
}
@media (min-width: 480px) {
  .header__phone { font-size: 0.92rem; padding: 0.45rem 0.65rem; }
}
@media (min-width: 900px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
}
@media (min-width: 1080px) {
  .header__phone { font-size: 1.05rem; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li > a {
  display: block;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav__group details {
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav__group summary {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
}
.mobile-nav__group summary::-webkit-details-marker { display: none; }
.mobile-nav__group summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--blue-500);
}
.mobile-nav__group details[open] summary::after { content: "−"; }
.mobile-nav__group ul {
  list-style: none;
  padding: 0 0 0.75rem 0.5rem;
  max-height: 14rem;
  overflow-y: auto;
}
.mobile-nav__group ul a {
  display: block;
  padding: 0.55rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: none;
}
.mobile-nav__phone {
  color: var(--orange) !important;
  font-weight: 800 !important;
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 0;
  background: linear-gradient(165deg, var(--blue-100) 0%, var(--white) 55%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.hero__copy h1 { margin-bottom: 1rem; }
.hero__copy p {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin: 0 0 1.75rem;
  max-width: 36rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-200);
  border: 4px solid var(--white);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .hero__grid:not(.hero__grid--single) { grid-template-columns: 1.05fr 0.95fr; padding-bottom: 4rem; }
}

/* Homepage hero: no image, centered copy */
.hero--center .hero__grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-bottom: 3.5rem;
}

.hero--center .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 44rem;
  width: 100%;
}

.hero--center .hero__copy p {
  max-width: 38rem;
  margin-inline: auto;
}

.hero--center .hero__ctas {
  justify-content: center;
}

.hero--center .feature-strip {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero--center .hero__grid {
    grid-template-columns: 1fr;
  }
}

/* Trust bar */
.trust-bar {
  background: var(--blue-900);
  color: var(--white);
  padding: 1.5rem 0;
}
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
}
.trust-bar__list li::before { content: "✓ "; color: #7dd3fc; font-weight: 800; }

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-500);
  transform: translateY(-4px);
}
.card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-100), #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.15rem;
}
.card p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.card .btn { align-self: flex-start; margin-top: auto; }

/* Steps / timelines — see timeline.css */

/* Comparison */
.compare { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__col {
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.compare__col--before {
  background: #fef2f2;
  border: 2px solid #fecaca;
}
.compare__col--after {
  background: #f0fdf4;
  border: 2px solid #86efac;
}
.compare__col h3 { font-size: 1.35rem; margin-bottom: 1.25rem; }
.compare__col ul { list-style: none; }
.compare__col li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
}
.compare__col--before li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 800;
}
.compare__col--after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 800;
}

/* Signs & symmetric icon-card grids (max 3 per row) */
.signs-grid,
.sign-grid,
.feature-strip,
.species-grid,
.hotspot-grid,
.symptom-grid,
.cap-grid,
.problem-grid,
.check-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .signs-grid,
  .sign-grid,
  .feature-strip,
  .species-grid,
  .hotspot-grid,
  .symptom-grid,
  .cap-grid,
  .problem-grid,
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .signs-grid,
  .sign-grid,
  .feature-strip,
  .species-grid,
  .hotspot-grid,
  .symptom-grid,
  .cap-grid,
  .problem-grid,
  .check-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Exactly 4 items: balanced 2×2 instead of 3+1 */
  .signs-grid:has(> :nth-child(4):last-child),
  .sign-grid:has(> :nth-child(4):last-child),
  .species-grid:has(> :nth-child(4):last-child),
  .cap-grid:has(> :nth-child(4):last-child),
  .problem-grid:has(> :nth-child(4):last-child),
  .check-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 52rem;
    margin-inline: auto;
  }

  /* Exactly 2 items: centered pair */
  .signs-grid:has(> :nth-child(2):last-child),
  .sign-grid:has(> :nth-child(2):last-child),
  .feature-strip:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 36rem;
    margin-inline: auto;
  }
}

/* Center sign / warning card grids under their headings */
.container:has(> .signs-grid),
.container:has(> .sign-grid) {
  text-align: center;
}

.signs-grid,
.sign-grid {
  margin-inline: auto;
  width: 100%;
}

.sign {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.sign:hover { transform: translateY(-3px); }
.sign__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sign p { font-size: 1rem; font-weight: 600; color: var(--gray-700); line-height: 1.45; }

.sign-card,
.sym-card,
.spec-card,
.hs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.sign-card__ico,
.sym-card__ico {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.65rem;
}

.sign-card h3,
.sym-card h3,
.spec-card h3,
.hs-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.sign-card p,
.sym-card p,
.spec-card p,
.hs-card p {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

.sym-card__tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

/* FAQ */
.faq-list { max-width: 52rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-item summary {
  padding: 1.25rem 3.25rem 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.faq-item__body {
  padding: 0 1.5rem 1.35rem;
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Contact */
.contact-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: 5rem 0;
}
.contact-section h1,
.contact-section h2 { color: var(--white); }
.contact-section .section__lead { color: rgba(255,255,255,0.9); font-size: 1.2rem; }
.contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.25fr; align-items: start; }
}
.contact-info p { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-info a {
  color: #93c5fd;
  font-weight: 700;
  font-size: 1.75rem;
}
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font: inherit;
  font-size: 1.05rem;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
  border-color: var(--blue-500);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Area cards */
.area-card {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-700);
  transition: 0.2s;
  box-shadow: var(--shadow);
}
.area-card:hover {
  background: var(--blue-100);
  border-color: var(--blue-500);
  color: var(--blue-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.area-card small {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* Compact area grid — all 35 neighborhoods (homepage, etc.) */
.area-grid--all {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 540px) {
  .area-grid--all {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .area-grid--all {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .area-grid--all {
    grid-template-columns: repeat(5, 1fr);
  }
}

.area-card--compact,
.area-grid--all .area-card {
  padding: 0.7rem 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 1px 6px rgba(10, 37, 64, 0.06);
}

.area-card--compact:hover,
.area-grid--all .area-card:hover {
  transform: translateY(-2px);
}

.area-card--compact small,
.area-grid--all .area-card small {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--blue-700); font-weight: 600; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

/* Page hero */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(165deg, var(--blue-100) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .section__lead { margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: var(--orange-light);
  border-top: 1px solid #fed7aa;
  border-bottom: 1px solid #fed7aa;
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 {
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.cta-band p {
  color: var(--gray-700);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Prose */
.prose { max-width: 48rem; }
.prose p { margin-bottom: 1.25rem; color: var(--gray-700); font-size: 1.15rem; }
.prose ul {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--gray-700);
  font-size: 1.1rem;
}
.prose li { margin-bottom: 0.5rem; padding-left: 0.25rem; }

/* Feature strip */
.feature-strip {
  margin-top: 2rem;
}
.feature-strip__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-strip__item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--blue-700);
  margin-bottom: 0.35rem;
}
.feature-strip__item span {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--text-on-dark-muted, rgba(255, 255, 255, 0.88));
  padding: 3.5rem 0 1.5rem;
  font-size: 1rem;
}

.site-footer p {
  color: var(--text-on-dark-muted, rgba(255, 255, 255, 0.88));
  line-height: 1.65;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand {
  color: var(--white);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-contact a { color: #93c5fd; font-size: 1.25rem; font-weight: 700; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--link-on-dark, #bfdbfe); font-size: 1rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-on-dark-subtle, rgba(255, 255, 255, 0.78));
}

.footer-bottom p {
  color: var(--text-on-dark-subtle, rgba(255, 255, 255, 0.78));
  margin: 0;
}

.float-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1001;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.5);
  text-decoration: none;
}

.float-call__icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

@media (max-width: 899px) { .float-call { display: flex; align-items: center; gap: 0.35rem; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .sign, .area-card, .btn { transition: none; }
}
