/* ============================================================
   Dartmouth Basement Waterproofing Pros — Main Stylesheet
   Update brand colors in :root variables below as needed
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --blue: #1a5fa8;
  --blue-light: #2b7fd4;
  --accent: #e8a020;
  --slate: #4a5568;
  --gray-light: #f4f6f9;
  --gray-mid: #e2e8f0;
  --white: #ffffff;
  --text: #1a202c;
  --text-muted: #718096;
  --success: #276749;
  --danger: #c53030;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-serif: 'Source Serif 4', serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover {
  background: #d4911a;
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}
.btn-call {
  background: var(--blue);
  color: var(--white);
  font-size: 1.05rem;
}
.btn-call:hover {
  background: var(--blue-light);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  font-family: var(--font-body);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--accent); font-weight: 600; }

/* ── Header / Nav ── */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  text-decoration: none;
}
.logo span { color: var(--blue); }
.logo small { display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.15s;
  text-decoration: none;
}
nav a:hover { background: var(--gray-light); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.header-phone:hover { color: var(--blue); }

/* ── Hamburger ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 16px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--white);
  padding: 12px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { background: var(--navy-mid); }

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 12px 20px;
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.sticky-cta .call-btn { background: var(--accent); color: var(--navy); }
.sticky-cta .form-btn { background: var(--blue); color: var(--white); border: 2px solid var(--blue-light); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a6e 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.5);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.trust-item .icon { color: var(--accent); font-size: 1rem; }

/* ── Lead Form Card ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.form-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.form-card .sub { font-size: 0.85rem; color: var(--slate); margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.12);
}
.form-group textarea { height: 80px; resize: vertical; }
.form-group.consent { display: flex; gap: 10px; align-items: flex-start; }
.form-group.consent input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--blue); }
.form-group.consent label { text-transform: none; font-weight: 400; font-size: 0.8rem; color: var(--slate); }
.form-card .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.form-success .checkmark { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { color: var(--success); margin-bottom: 8px; }

/* ── Sections ── */
section { padding: 72px 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-head { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--slate); max-width: 620px; }

.bg-light { background: var(--gray-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p, .bg-navy li { color: rgba(255,255,255,0.85); }
.bg-navy .section-label { color: var(--accent); }

/* ── Trust Badges ── */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 0;
}
.trust-badge {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.trust-badge .badge-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-badge h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.trust-badge p { font-size: 0.82rem; color: var(--slate); margin: 0; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}
.service-card .svc-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--slate); margin: 0; }
.service-card .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: 14px;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-mid);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.step h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--slate); }

/* ── Signs Section ── */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow);
}
.sign-item .sign-icon { font-size: 1.4rem; flex-shrink: 0; }
.sign-item p { font-size: 0.9rem; color: var(--slate); margin: 0; }
.sign-item strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 3px; }

/* ── Locations Grid ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--navy);
}
.location-card:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}
.location-card .loc-icon { font-size: 1.5rem; margin-bottom: 6px; }
.location-card span { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.location-card small { font-size: 0.78rem; opacity: 0.7; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.reviewer-loc { font-size: 0.8rem; color: var(--text-muted); }
.placeholder-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px dashed var(--gray-mid);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
}

/* ── FAQ ── */
.faq-list { margin-top: 36px; }
.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.faq-question:hover { color: var(--blue); }
.faq-chevron { transition: transform 0.3s; font-size: 1.2rem; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Mid-page CTA strip ── */
.cta-strip {
  background: var(--blue);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}
.cta-strip p { margin: 0; font-size: 1.05rem; font-family: var(--font-head); letter-spacing: 0.5px; }
.cta-strip a { color: var(--accent); font-weight: 700; }

/* ── Image Placeholders ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.85rem;
  text-align: center;
  padding: 40px;
  min-height: 280px;
  border: 2px dashed var(--gray-mid);
}
.img-placeholder .ph-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Content page layout ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 60px 0 48px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 640px; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb span { margin: 0 6px; }

.page-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.page-content h2 { margin: 32px 0 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}
.page-content ul li {
  margin-bottom: 6px;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ── Sidebar ── */
.sidebar-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
  border-top: 4px solid var(--blue);
}
.sidebar-card h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-card .btn { width: 100%; text-align: center; justify-content: center; margin-bottom: 10px; font-size: 0.9rem; }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--gray-mid); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 8px 0; font-size: 0.9rem; color: var(--blue); }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.footer-phone {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer-email { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── NAP block ── */
.nap-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ── Checklist ── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--slate);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 72px 0;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-info-text h4 { color: var(--navy); margin-bottom: 4px; }
.contact-info-text p { font-size: 0.9rem; color: var(--slate); margin: 0; }
.contact-info-text a { color: var(--blue); font-weight: 600; }

/* ── About ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-box {
  text-align: center;
  padding: 28px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: var(--slate); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  nav { display: none; }
  .hamburger { display: block; }
  .header-phone { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .page-body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
}
