/* ============================================================
   AUTO LEGAL NETWORK — STYLESHEET
   Primary palette: Deep navy #0D2340 | Crimson #B01C2E | White
   Accent: Steel blue #1B4F80 | Light: #F0F4F8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Merriweather:wght@400;700&display=swap');

:root {
  --navy:       #0D2340;
  --crimson:    #B01C2E;
  --steel-blue: #1B4F80;
  --white:      #FFFFFF;
  --offwhite:   #F0F4F8;
  --gray-lt:    #D8E0EA;
  --gray-md:    #5A6A7A;
  --gray-dk:    #2C3E50;
  --green:      #2E7D32;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Merriweather', serif;
  --font-ui:      'Montserrat', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(13,35,64,0.12);
  --shadow-lg: 0 6px 32px rgba(13,35,64,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--gray-dk);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { color: var(--crimson); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---- CONTAINER ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { color: rgba(255,255,255,0.75); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-phone, .topbar-email { color: #fff; font-weight: 700; }
.topbar-phone:hover, .topbar-email:hover { color: var(--crimson); text-decoration: none; }

/* ---- NAVIGATION ---- */
.nav {
  background: var(--white);
  border-bottom: 3px solid var(--crimson);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(13,35,64,0.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--crimson); background: rgba(176,28,46,0.07); text-decoration: none; }
.nav-cta { margin-left: 8px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn-primary { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.btn-primary:hover { background: #8f1522; border-color: #8f1522; color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: white; }
.btn-ghost-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: white; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ---- MOBILE NAV ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  cursor: pointer;
  margin-left: 8px;
}
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  padding: 40px 32px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.85); font-size: 20px; font-weight: 700; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a:hover { color: white; text-decoration: none; }
.mobile-nav-close { background: none; border: none; color: white; font-size: 28px; cursor: pointer; align-self: flex-end; margin-bottom: 16px; }

/* ---- HERO ---- */
.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-content {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 64px 0;
  position: relative;
  z-index: 2;
}
.hero-content::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 120px;
  background: var(--navy);
  transform: skewX(-6deg);
  z-index: 3;
}
.hero-content-inner { padding: 0 48px 0 max(24px, calc((100vw - 1140px)/2 + 24px)); position: relative; z-index: 4; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: normal; color: var(--crimson); }
.hero-divider { width: 64px; height: 4px; background: var(--crimson); border-radius: 2px; margin-bottom: 24px; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,35,64,0.5) 0%, transparent 50%);
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel-blue) 100%);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--crimson);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); line-height: 1.15; margin: 16px 0 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 620px; line-height: 1.7; }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.65); font-weight: 600; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--crimson); padding: 28px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--white); }
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.bg-offwhite { background: var(--offwhite); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle { font-size: 17px; color: var(--gray-md); line-height: 1.7; max-width: 680px; margin-bottom: 48px; }

/* ---- PROCESS GRID ---- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.process-card {
  border: 1px solid var(--gray-lt);
  border-top: 4px solid var(--crimson);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.2s;
}
.process-card:hover { box-shadow: var(--shadow-lg); }
.process-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--gray-lt); line-height: 1; margin-bottom: 16px; }
.process-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.process-icon svg { width: 100%; height: 100%; stroke: var(--crimson); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.process-desc { font-size: 14px; color: var(--gray-md); line-height: 1.75; }

/* ---- IMPACT STRIP ---- */
.impact-strip { position: relative; height: 480px; overflow: hidden; }
.impact-strip > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.impact-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,35,64,0.92) 0%, rgba(13,35,64,0.6) 100%);
  display: flex; align-items: center;
}
.impact-strip-content { max-width: 600px; }
.impact-strip-content h2 { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.impact-strip-content p { font-size: 16px; color: rgba(255,255,255,0.72); margin-bottom: 28px; line-height: 1.75; }

/* ---- CASE GRID ---- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.case-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.2s;
}
.case-card:hover { box-shadow: var(--shadow); border-color: var(--crimson); }
.case-icon { width: 48px; height: 48px; background: rgba(176,28,46,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.case-icon svg { width: 26px; height: 26px; stroke: var(--crimson); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.case-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.case-desc { font-size: 13px; color: var(--gray-md); line-height: 1.7; }

/* ---- SPLIT SECTION ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; height: 480px; position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.split-img-accent { position: absolute; bottom: -16px; right: -16px; width: 120px; height: 120px; border: 4px solid var(--crimson); border-radius: var(--radius-lg); z-index: -1; }

/* ---- LEAD SECTION ---- */
.lead-section { background: linear-gradient(135deg, var(--navy) 0%, var(--steel-blue) 100%); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.lead-eyebrow { color: var(--crimson) !important; }
.lead-title { color: var(--white) !important; }
.lead-sub { color: rgba(255,255,255,0.65) !important; }
.lead-checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.lead-check { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.8); }
.lead-check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--crimson); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lead-check-icon svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---- FORM CARD ---- */
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-card-header { background: var(--navy); padding: 24px 28px; }
.form-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.form-card-sub { font-size: 12px; color: rgba(255,255,255,0.6); }
.form-card-body { padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray-dk);
  background: var(--white);
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--crimson); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-disclaimer { font-size: 11px; color: var(--gray-md); margin-top: 12px; line-height: 1.6; text-align: center; }

/* ---- SMS CONSENT ---- */
.sms-consent-block { margin-bottom: 14px; }
.sms-consent-row { display: flex; align-items: flex-start; gap: 12px; }
.sms-consent-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--crimson); cursor: pointer; }
.sms-consent-label { font-size: 12px; color: var(--gray-md); line-height: 1.65; cursor: pointer; }
.sms-consent-label a { color: var(--crimson); font-weight: 700; }

/* ---- THANK YOU MESSAGE ---- */
.thank-you-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: #EAF4EA;
  border: 2px solid #4CAF50;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.thank-you-msg h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #2E7D32; margin: 14px 0 8px; }
.thank-you-msg p { color: #388E3C; font-size: 15px; line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--offwhite); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; border-left: 4px solid var(--crimson); box-shadow: var(--shadow); }
.testimonial-quote { font-family: var(--font-display); font-size: 48px; color: var(--crimson); line-height: 1; margin-bottom: 12px; opacity: 0.6; }
.testimonial-text { font-size: 15px; color: var(--gray-md); line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { border-top: 1px solid var(--gray-lt); padding-top: 16px; }
.testimonial-name { display: block; font-weight: 800; color: var(--navy); font-size: 14px; }
.testimonial-location { display: block; font-size: 12px; color: var(--gray-md); margin-top: 4px; }

/* ---- VALUES GRID ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); border: 1px solid var(--gray-lt); border-radius: var(--radius-lg); padding: 32px 28px; border-top: 4px solid var(--crimson); }
.value-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--gray-md); line-height: 1.75; }

/* ---- CRITERIA GRID ---- */
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.criteria-card { background: var(--offwhite); border-radius: var(--radius-lg); padding: 28px 24px; border-left: 3px solid var(--crimson); }
.criteria-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--crimson); opacity: 0.35; margin-bottom: 10px; }
.criteria-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.criteria-desc { font-size: 13px; color: var(--gray-md); line-height: 1.7; }

/* ---- FAQ ---- */
.faq-category { margin-bottom: 48px; }
.faq-category-label { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--crimson); padding-bottom: 12px; border-bottom: 2px solid var(--crimson); margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--gray-lt); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover, .faq-q.open { color: var(--crimson); }
.faq-toggle { font-size: 20px; color: var(--crimson); flex-shrink: 0; }
.faq-a { display: none; padding: 0 0 18px; font-size: 14px; color: var(--gray-md); line-height: 1.8; }
.faq-a.open { display: block; }

/* ---- SMS PAGE ---- */
.sms-page-grid { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: start; }
.sms-benefits { display: flex; flex-direction: column; gap: 24px; }
.sms-benefit { display: flex; gap: 20px; align-items: flex-start; }
.sms-benefit-icon { width: 48px; height: 48px; background: rgba(176,28,46,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sms-benefit-icon svg { width: 24px; height: 24px; stroke: var(--crimson); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sms-benefit-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.sms-benefit-desc { font-size: 14px; color: var(--gray-md); line-height: 1.7; }
.sms-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.sms-card-header { background: var(--navy); padding: 24px 28px; }
.sms-card-header h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.sms-card-header p { font-size: 12px; color: rgba(255,255,255,0.6); }
.sms-card-body { padding: 28px; }

/* ---- PHONE MOCK ---- */
.phone-mock {
  background: var(--navy);
  border-radius: 20px;
  padding: 24px 20px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.phone-mock-bar { width: 60px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 0 auto 20px; }
.phone-ts { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 12px; }
.phone-msg { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-radius: 14px 14px 14px 4px; padding: 12px 16px; font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
.phone-msg-out { background: var(--crimson); color: white; border-radius: 14px 14px 4px 14px; padding: 12px 16px; font-size: 13px; line-height: 1.5; margin-bottom: 10px; text-align: right; }

/* ---- LEGAL PAGE ---- */
.legal-content h2 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-lt); }
.legal-content p { font-size: 15px; color: var(--gray-md); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--gray-md); line-height: 1.8; margin-bottom: 8px; }
.legal-content a { color: var(--crimson); }

/* ---- FOOTER ---- */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 20px 0 20px; }
.footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: white; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--crimson); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: white; text-decoration: none; }
.disclaimer-bar { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.disclaimer-bar p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: white; text-decoration: none; }

/* ---- NETWORK / ATTORNEY PAGE ---- */
.network-overlay-wrap { position: relative; height: 460px; overflow: hidden; }
.network-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.network-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,35,64,0.9) 0%, rgba(13,35,64,0.4) 100%); display: flex; align-items: flex-end; padding-bottom: 48px; }
.network-overlay-content h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); margin: 12px 0 16px; }
.network-overlay-content p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .lead-grid { grid-template-columns: 1fr; }
  .sms-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 320px; }
  .hero-content::after { display: none; }
  .hero-content-inner { padding: 48px 24px; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 300px; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
