/* =============================================================
   Lopez Plumbing & Heating Mechanical LLC — styles.css
   ============================================================= */

:root {
  --primary-blue: #1E3A8A;
  --secondary-blue: #2563EB;
  --accent-blue: #60A5FA;
  --navy: #0F172A;
  --red: #2563EB;
  --red-dark: #1D4ED8;
  --background: #F3F4F6;
  --text-dark: #0F172A;
  --text-mid: #374151;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --font-main: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.18);
  --transition: 200ms cubic-bezier(0.2,0,0,1);
  --max-width: 1280px;
}

/* --- Reset ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------ */
h1, h2, h3, h4 {
  line-height: 1.15; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text-dark);
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--text-mid); line-height: 1.75; font-size: 15px; }
.overline {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700; color: var(--secondary-blue);
  margin-bottom: 12px;
}
.lead { font-size: 17px; line-height: 1.8; }

/* --- Layout --------------------------------------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-alt  { background: var(--background); }
.bg-navy { background: var(--navy); }
.bg-blue { background: var(--primary-blue); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 16px; }

/* --- Buttons -------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--secondary-blue); color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent; color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-outline-dark:hover { background: var(--primary-blue); color: var(--white); }
.btn-emergency {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-emergency:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.45); }
.btn-white { background: var(--white); color: var(--primary-blue); font-weight: 800; }
.btn-white:hover { background: #EFF6FF; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* --- Emergency Strip ------------------------------ */
.emergency-strip {
  background: var(--red); color: var(--white);
  text-align: center; padding: 9px 24px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
}
.emergency-strip a { color: var(--white); font-weight: 800; text-decoration: underline; }

/* --- Navigation ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(15,23,42,.97);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-logo-text strong { display: block; color: var(--white); font-size: 16px; font-weight: 800; }
.nav-logo-text span { color: rgba(255,255,255,.5); font-size: 11px; }
.menu-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.menu-icon {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px; margin-left: auto;
}
.menu-icon span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; margin-right: 24px;
}
.nav-links a {
  color: rgba(255,255,255,.7); padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.1); color: var(--white); }
.nav-cta {
  background: var(--secondary-blue); color: var(--white) !important;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  transition: background var(--transition);
}
.nav-cta:hover { background: #1D4ED8 !important; }

.nav-call-mobile { display: none; }

@media (max-width: 900px) {
  .nav-call-mobile {
    display: flex; align-items: center; gap: 7px;
    background: var(--red); color: var(--white) !important;
    padding: 9px 16px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 800; white-space: nowrap;
    margin-left: auto; text-decoration: none;
    transition: background var(--transition);
  }
  .nav-call-mobile:hover { background: var(--red-dark); }
  .menu-icon { display: flex; margin-left: 0; }
  .nav-cta { display: none; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px; margin: 0; gap: 2px;
    border-top: 1px solid rgba(255,255,255,.08); z-index: 100;
    box-shadow: 0 16px 32px rgba(0,0,0,.3);
  }
  .nav-links a { padding: 13px 16px; font-size: 16px; }
  .menu-toggle:checked ~ .nav-links { display: flex; }
  .menu-toggle:checked + .menu-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle:checked + .menu-icon span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked + .menu-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- Hero ----------------------------------------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,.9) 0%, rgba(15,23,42,.45) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.92); color: var(--white);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.hero h1 { color: var(--white); margin-bottom: 22px; max-width: 800px; }
.hero h1 em { font-style: normal; color: var(--accent-blue); }
.hero .lead { color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600; }
.hero-trust-item svg { color: var(--accent-blue); flex-shrink: 0; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy); padding: 76px 0 68px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.5) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }

/* --- Trust Bar ------------------------------------ */
.trust-bar { background: var(--primary-blue); padding: 18px 0; }
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 36px;
}
.trust-badge { display: flex; align-items: center; gap: 9px; color: var(--white); font-size: 14px; font-weight: 600; }
.trust-badge svg { color: rgba(255,255,255,.65); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,.2); }

/* --- Service Cards -------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 30px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #BFDBFE; }
.service-card.emergency { border-color: var(--secondary-blue); background: #EFF6FF; }
.service-card.emergency .svc-icon { background: #DBEAFE; }
.service-card.emergency .svc-icon svg { color: var(--red); }
.svc-icon {
  width: 50px; height: 50px; border-radius: 10px; background: #EFF6FF;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.svc-icon svg { color: var(--secondary-blue); }
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--secondary-blue); font-size: 13px; font-weight: 700;
  margin-top: 14px; transition: gap var(--transition);
}
.svc-link:hover { gap: 10px; }

/* --- Stats ---------------------------------------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.06);
}
.stat-item { text-align: center; padding: 52px 20px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 54px; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.stat-unit { color: var(--accent-blue); }
.stat-label { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 8px; font-weight: 500; }

/* --- Reviews -------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.review-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; }
.g-badge {
  width: 26px; height: 26px; border-radius: 50%; background: #4285F4;
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.review-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary-blue);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.rev-loc { font-size: 12px; color: var(--text-light); }

/* --- FAQ ------------------------------------------ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
details {
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--transition);
}
details:hover { border-color: #BFDBFE; }
details[open] { border-color: var(--secondary-blue); }
summary {
  padding: 18px 24px; cursor: pointer; font-weight: 700; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; background: var(--white); color: var(--text-dark);
  transition: background var(--transition);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--secondary-blue); flex-shrink: 0; margin-left: 16px; line-height: 1; }
details[open] summary::after { content: '−'; }
details[open] summary { background: #EFF6FF; color: var(--primary-blue); }
.faq-body { padding: 0 24px 20px; padding-top: 16px; font-size: 14px; color: var(--text-mid); line-height: 1.8; border-top: 1px solid var(--border); }

/* --- Area Cards ----------------------------------- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.area-card {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.area-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.area-top {
  background: var(--primary-blue); padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.area-top h3 { color: var(--white); font-size: 22px; }
.area-top svg { color: rgba(255,255,255,.35); }
.area-body { background: var(--white); padding: 22px 28px; }
.area-body p { font-size: 14px; margin-bottom: 14px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tag { background: #DBEAFE; color: var(--primary-blue); padding: 4px 11px; border-radius: 50px; font-size: 12px; font-weight: 600; }

/* --- Contact -------------------------------------- */
.contact-card { background: var(--navy); border-radius: var(--radius-md); padding: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item:last-child { margin-bottom: 0; }
.c-icon { width: 44px; height: 44px; border-radius: 8px; background: rgba(255,255,255,.1); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.c-icon svg { color: var(--accent-blue); }
.c-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 4px; }
.c-value { color: var(--white); font-size: 16px; font-weight: 700; }
.c-value a { color: var(--white); transition: color var(--transition); }
.c-value a:hover { color: var(--accent-blue); }

/* --- Form ----------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 40px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; color: var(--text-dark); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: var(--font-main); color: var(--text-dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--secondary-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; border-radius: var(--radius-sm); border: none; }

/* --- Timeline ------------------------------------- */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); }
.timeline-step { text-align: center; padding: 36px 14px; position: relative; }
.timeline-step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 48px; width: 1px; height: 28px; background: rgba(255,255,255,.12); }
.t-num { width: 46px; height: 46px; border-radius: 50%; background: var(--secondary-blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; margin: 0 auto 14px; }
.timeline-step h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.timeline-step p { font-size: 12px; color: rgba(255,255,255,.5); }

/* --- Two-col layout ------------------------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.col-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.col-img img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* --- CTA Box -------------------------------------- */
.cta-box { background: var(--primary-blue); border-radius: var(--radius-lg); padding: 72px 48px; text-align: center; }
.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,.78); font-size: 17px; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Comparison Table ----------------------------- */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison-table thead th { background: var(--primary-blue); color: var(--white); padding: 16px 20px; text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.comparison-table tbody td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.comparison-table tbody tr:nth-child(even) td { background: #F9FAFB; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child { color: var(--text-dark); font-weight: 600; }
.chk { color: #16A34A; font-weight: 700; font-size: 16px; }
.dsh { color: var(--border); }

/* --- Values grid ---------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.v-icon { width: 48px; height: 48px; border-radius: 10px; background: #EFF6FF; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.v-icon svg { color: var(--secondary-blue); }

/* --- Photo grid ----------------------------------- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-grid img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 220px; }

/* --- Hours table ---------------------------------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; color: rgba(255,255,255,.65); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--white); }
.hours-table tr:last-child td { border-bottom: none; }

/* --- Map placeholder ------------------------------ */
.map-wrap { border-radius: var(--radius-md); overflow: hidden; height: 320px; position: relative; background: #CBD5E1; }
.map-wrap img { width: 100%; height: 100%; object-fit: cover; }
.map-label { position: absolute; bottom: 20px; left: 20px; background: var(--white); border-radius: var(--radius-sm); padding: 10px 16px; box-shadow: var(--shadow-md); }
.map-label strong { display: block; font-size: 14px; color: var(--text-dark); }
.map-label span { font-size: 12px; color: var(--text-light); }

/* --- Tag chips ------------------------------------ */
.tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.tag-blue { background: #DBEAFE; color: var(--primary-blue); }
.tag-red  { background: #DBEAFE; color: var(--primary-blue); }

/* --- Sticky Emergency Call ------------------------ */
.sticky-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  background: var(--red); color: var(--white);
  padding: 13px 22px; border-radius: 50px;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  transition: background var(--transition), transform var(--transition);
}
.sticky-call:hover { background: var(--red-dark); transform: translateY(-2px); }
.sticky-call svg { flex-shrink: 0; }

/* --- Footer --------------------------------------- */
.site-footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo { width: 66px; margin-bottom: 14px; }
.footer-tagline { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; font-weight: 700; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.45); font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,.45); font-size: 14px; margin-bottom: 6px; }
.footer-col strong { color: rgba(255,255,255,.8); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto; padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.28); font-size: 12px; }

/* --- Responsive ----------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 44px; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .col-img img { height: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-right: none; }
  .cta-box { padding: 48px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero { min-height: auto; padding: 72px 0 64px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 12px; font-size: 13px; }
  .sticky-call { bottom: 0; left: 0; right: 0; border-radius: 0; justify-content: center; padding: 16px 24px; font-size: 16px; font-weight: 800; }
  body { padding-bottom: 58px; }
}
@media (max-width: 480px) {
  h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-sep { display: none; }
  .photo-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  /* sticky-label always visible — full-width on mobile */
}
