/* ============================================================
   TRUE CRASH LAW — Main Stylesheet
   Design: Dark steel & amber — authoritative, national, bold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --steel:    #0B1C2E;      /* near-black navy — primary dark */
  --steel-md: #152840;      /* mid navy */
  --amber:    #C8882A;      /* rich amber / gold */
  --amber-lt: #E4A840;      /* lighter amber hover */
  --rust:     #B03A2E;      /* deep rust red — accent */
  --white:    #FFFFFF;
  --offwhite: #F5F4F1;
  --gray-lt:  #E2E0DB;
  --gray-md:  #6B6860;
  --gray-dk:  #3A3835;
  --text:     #1C1B18;

  --font-impact: 'Bebas Neue', 'Impact', sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, sans-serif;

  --radius:    6px;
  --radius-lg: 14px;
  --shadow:    0 2px 12px rgba(11,28,46,0.10);
  --shadow-lg: 0 8px 40px rgba(11,28,46,0.18);
  --max-w:     1200px;
}

/* ── Reset ── */
*, *::before, *::after { 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.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 15px;
}

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--steel);
}
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-ghost-dark {
  background: transparent;
  color: var(--steel);
  border: 2px solid var(--steel);
}
.btn-ghost-dark:hover { background: var(--steel); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Top Bar ── */
.topbar {
  background: var(--steel);
  padding: 10px 0;
  border-bottom: 3px solid var(--amber);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.topbar-phone:hover { color: var(--amber-lt); }
.topbar-email {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.topbar-email:hover { color: var(--white); }

/* ── Navigation ── */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(11,28,46,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 0;
}
.nav-logo { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dk);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--steel);
  background: var(--offwhite);
}
.nav-cta { flex-shrink: 0; margin-left: 8px; padding: 11px 22px; font-size: 13px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--steel);
  z-index: 200;
  flex-direction: column;
  padding: 48px 32px;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.04em;
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 28px;
  color: var(--white);
  opacity: 0.7;
}
.mobile-nav-close:hover { opacity: 1; color: var(--amber); }

/* ── Section Utility ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 900;
  color: var(--steel);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-md);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 48px;
}
.bg-steel  { background: var(--steel); }
.bg-offwhite { background: var(--offwhite); }
.text-white { color: var(--white); }

/* ═══════════════════════════════
   HERO — FULL BLEED DIAGONAL SPLIT
   ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
  background: var(--steel);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.hero-content-inner {
  max-width: 560px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}
.hero-headline {
  font-family: var(--font-impact);
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-headline em {
  font-style: normal;
  color: var(--amber);
  display: block;
}
.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--rust);
  margin: 28px 0;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.hero-stat-num {
  font-family: var(--font-impact);
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--steel) 0%, transparent 30%);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--steel);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--amber);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(200,136,42,0.06);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-impact);
  font-size: 64px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.65;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { color: var(--amber-lt); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── Impact Strip ── */
.impact-strip {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.impact-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.impact-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,28,46,0.88) 40%, rgba(11,28,46,0.55) 100%);
  display: flex;
  align-items: center;
}
.impact-strip-content {
  max-width: 640px;
}
.impact-strip-content h2 {
  font-family: var(--font-impact);
  font-size: 54px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.impact-strip-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── Steps / Process ── */
.process-section { background: var(--offwhite); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  border-top: 4px solid transparent;
  transition: all 0.2s;
}
.process-card:hover {
  border-top-color: var(--amber);
  transform: translateY(-2px);
}
.process-num {
  font-family: var(--font-impact);
  font-size: 72px;
  color: var(--gray-lt);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.process-card:hover .process-num { color: rgba(200,136,42,0.2); }
.process-icon {
  width: 52px; height: 52px;
  background: var(--steel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.process-icon svg {
  width: 24px; height: 24px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 12px;
}
.process-desc {
  font-size: 15px;
  color: var(--gray-md);
  line-height: 1.7;
}

/* ── Case Types Grid ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--amber);
  transform: scaleY(0);
  transition: transform 0.2s;
  transform-origin: bottom;
}
.case-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-2px); }
.case-card:hover::before { transform: scaleY(1); }
.case-icon {
  width: 52px; height: 52px;
  background: var(--steel);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.case-icon svg {
  width: 26px; height: 26px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.case-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 8px;
}
.case-desc {
  font-size: 14px;
  color: var(--gray-md);
  line-height: 1.65;
}

/* ── Lead / Contact Form ── */
.lead-section { background: var(--steel); }
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  align-items: start;
}
.lead-eyebrow { color: var(--amber); }
.lead-title { color: var(--white); }
.lead-sub { color: rgba(255,255,255,0.65); }
.lead-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.lead-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.lead-check-icon {
  width: 26px; height: 26px;
  background: rgba(200,136,42,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lead-check-icon svg {
  width: 14px; height: 14px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Form Card ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3);
}
.form-card-header {
  background: var(--amber);
  padding: 24px 32px;
}
.form-card-title {
  font-family: var(--font-impact);
  font-size: 26px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.form-card-sub {
  font-size: 13px;
  color: rgba(11,28,46,0.65);
  margin-top: 4px;
}
.form-card-body { padding: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dk);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,136,42,0.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-disclaimer {
  font-size: 11px;
  color: var(--gray-md);
  line-height: 1.65;
  margin-top: 12px;
  text-align: center;
}
.form-disclaimer a { color: var(--amber); text-decoration: underline; }

/* SMS Consent */
.sms-consent-block {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.sms-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sms-consent-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--amber);
  cursor: pointer;
}
.sms-consent-label {
  font-size: 12px;
  color: var(--gray-dk);
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 0;
}
.sms-consent-label a {
  color: var(--steel);
  font-weight: 700;
  text-decoration: underline;
}

/* Thank You Message */
.thank-you-msg {
  display: none;
  background: #EAF4EA;
  border: 2px solid #4CAF50;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 24px;
}
.thank-you-msg h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #2E7D32;
  margin: 16px 0 10px;
}
.thank-you-msg p {
  color: #388E3C;
  font-size: 16px;
  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;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 3px solid var(--amber);
}
.testimonial-quote {
  font-size: 48px;
  font-family: var(--font-serif);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-dk);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { border-top: 1px solid var(--gray-lt); padding-top: 18px; }
.testimonial-name {
  font-weight: 700;
  color: var(--steel);
  font-size: 15px;
  display: block;
}
.testimonial-location {
  font-size: 13px;
  color: var(--gray-md);
  margin-top: 3px;
  display: block;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--amber);
  padding: 48px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(11,28,46,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-impact);
  font-size: 52px;
  color: var(--steel);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(11,28,46,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ── Two-Col Image + Content ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
  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: 140px; height: 140px;
  background: var(--amber);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ── FAQ ── */
.faq-list { margin-top: 48px; }
.faq-category { margin-bottom: 48px; }
.faq-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-lt);
}
.faq-item {
  border-bottom: 1px solid var(--gray-lt);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--steel);
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--amber); }
.faq-toggle {
  font-size: 22px;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-q.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--gray-md);
  line-height: 1.75;
}
.faq-a.open { display: block; }

/* ── Attorney Network ── */
.network-hero-img { width: 100%; height: 420px; object-fit: cover; object-position: center 35%; display: block; }
.network-overlay-wrap { position: relative; }
.network-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,28,46,0.72);
  display: flex;
  align-items: flex-end;
}
.network-overlay-content { padding-bottom: 48px; }
.network-overlay-content h1 {
  font-family: var(--font-impact);
  font-size: 60px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.network-overlay-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.criteria-card {
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.2s;
  position: relative;
}
.criteria-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.criteria-num {
  font-family: var(--font-impact);
  font-size: 44px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.criteria-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 10px;
}
.criteria-desc { font-size: 14px; color: var(--gray-md); line-height: 1.65; }

/* ── Stat Row (about) ── */
.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 56px 0;
}
.about-stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--gray-lt);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-impact);
  font-size: 52px;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--gray-md);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--amber);
}
.value-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--gray-md); line-height: 1.65; }

/* ── Legal Pages ── */
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--steel);
  margin: 40px 0 12px;
  padding-bottom: 10px;
  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 {
  list-style: disc;
  margin: 0 0 16px 22px;
}
.legal-content li {
  font-size: 15px;
  color: var(--gray-md);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content strong { color: var(--gray-dk); }
.legal-content a { color: var(--amber); text-decoration: underline; }

/* ── SMS Page ── */
.sms-page-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
}
.sms-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-lt);
}
.sms-card-header {
  background: var(--steel);
  padding: 24px 32px;
  border-bottom: 3px solid var(--amber);
}
.sms-card-header h3 {
  font-family: var(--font-impact);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.sms-card-header p { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.sms-card-body { padding: 32px; }
.phone-mock {
  background: var(--steel);
  border-radius: 32px;
  padding: 20px 16px 16px;
  max-width: 240px;
  margin: 0 auto 32px;
  border: 5px solid #2A3A4E;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.phone-mock-bar {
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 16px;
}
.phone-msg {
  background: rgba(255,255,255,0.1);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  line-height: 1.5;
}
.phone-msg-out {
  background: var(--amber);
  border-radius: 14px 14px 4px 14px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: 20px;
}
.phone-ts {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 6px 0;
}
.sms-benefits { display: flex; flex-direction: column; gap: 16px; }
.sms-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sms-benefit-icon {
  width: 40px; height: 40px;
  background: rgba(200,136,42,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sms-benefit-icon svg {
  width: 20px; height: 20px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sms-benefit-title {
  font-weight: 700;
  color: var(--steel);
  font-size: 15px;
  margin-bottom: 4px;
}
.sms-benefit-desc { font-size: 14px; color: var(--gray-md); line-height: 1.6; }

/* ── Footer ── */
.footer {
  background: var(--steel);
  border-top: 4px solid var(--amber);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 16px 0 20px;
}
.footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--amber); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--white); }

/* ── Disclaimer bar ── */
.disclaimer-bar {
  background: rgba(255,255,255,0.04);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.disclaimer-bar p {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    clip-path: none;
    padding: 64px 24px 48px;
  }
  .hero-content-inner { max-width: 100%; }
  .hero-headline { font-size: 60px; }
  .hero-image { height: 380px; }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .sms-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .hero-headline { font-size: 48px; }
  .page-hero h1 { font-size: 44px; }
  .process-grid { grid-template-columns: 1fr; gap: 2px; }
  .case-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stat-row { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--gray-lt); }
  .about-stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .impact-strip-content h2 { font-size: 36px; }
  .topbar-left { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(11,28,46,0.1); }
}
