/* ============================================
   DRIVE CLAIM LEGAL v2
   Architecture: split-screen, charcoal base
   Palette: #111827 / #D4AF37 / #fff / #6B7280
   ============================================ */

:root {
  --dark:      #111827;
  --dark-mid:  #1f2937;
  --dark-lt:   #374151;
  --gold:      #D4AF37;
  --gold-dim:  rgba(212,175,55,0.15);
  --gold-line: rgba(212,175,55,0.35);
  --white:     #ffffff;
  --off-white: #f9fafb;
  --muted:     #9ca3af;
  --body-text: #d1d5db;
  --light-bg:  #f3f4f6;
  --light-bd:  #e5e7eb;
  --text-dk:   #111827;
  --success:   #16a34a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: var(--dark);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; text-decoration: none; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17,24,39,0.96);
  backdrop-filter: blur(8px);
  border-color: rgba(212,175,55,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-shield {
  width: 38px; height: 38px; flex-shrink: 0;
}
.logo-type { display: flex; flex-direction: column; line-height: 1.1; }
.logo-top {
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.logo-bot {
  font-size: 0.6rem; color: var(--gold);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.83rem;
  padding: 8px 12px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta-btn {
  margin-left: 10px;
  padding: 9px 20px !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--gold) !important; color: var(--dark) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; margin: 5px 0; }
.mob-nav {
  display: none; position: fixed; inset: 0; background: var(--dark);
  z-index: 300; flex-direction: column; padding: 28px;
}
.mob-nav.open { display: flex; }
.mob-nav-close { background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; align-self: flex-end; margin-bottom: 24px; }
.mob-nav a { color: var(--white); font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--dark-lt); }

/* ---- HERO — full bleed with photo ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,24,39,0.97) 0%,
    rgba(17,24,39,0.82) 50%,
    rgba(17,24,39,0.40) 100%
  );
}
/* Diagonal cut at bottom */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--dark));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px 90px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-h1 span { color: var(--gold); display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-fill {
  display: inline-block; padding: 14px 30px;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; border-radius: 2px;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-fill:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline {
  display: inline-block; padding: 14px 30px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 2px; letter-spacing: 0.04em;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }
.hero-stats {
  display: flex; gap: 40px;
  border-top: 1px solid rgba(212,175,55,0.25);
  padding-top: 30px;
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block; font-size: 1.9rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  display: block; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 4px;
}

/* ---- GOLD RULE DIVIDER ---- */
.rule-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
  margin: 0;
}

/* ---- SPLIT SECTION — photo left, content right ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-photo { position: relative; overflow: hidden; min-height: 440px; }
.split-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-content {
  background: var(--dark-mid);
  padding: 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content.light-side {
  background: var(--off-white);
  color: var(--text-dk);
}
.eyebrow {
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.split-h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.split-h2.dark { color: var(--text-dk); }
.split-body {
  color: var(--body-text);
  font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 28px;
}
.split-body.dark { color: #4b5563; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--body-text);
}
.check-list.dark li { color: #374151; }
.check-list li::before {
  content: ''; display: block;
  width: 18px; height: 18px; min-width: 18px;
  background: var(--gold); border-radius: 50%;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23111827' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ---- PROCESS STRIP ---- */
.process-strip {
  background: var(--dark);
  padding: 80px 28px;
}
.process-strip-inner { max-width: 1200px; margin: 0 auto; }
.strip-head { margin-bottom: 52px; }
.strip-head .eyebrow { margin-bottom: 10px; }
.strip-h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.01em;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 23px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-line), var(--gold-line));
  z-index: 0;
}
.step-item { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-dot {
  width: 46px; height: 46px;
  background: var(--dark); border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 0.85rem; font-weight: 700; color: var(--gold);
}
.step-item h4 {
  font-size: 0.82rem; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.step-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* ---- DARK CONTENT SECTION ---- */
.dark-section { background: var(--dark); padding: 80px 28px; }
.dark-section-inner { max-width: 1200px; margin: 0 auto; }

/* ---- MISTAKE GRID ---- */
.mistake-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-lt);
  border: 1px solid var(--dark-lt);
  border-radius: 4px;
  overflow: hidden;
}
.mistake-cell {
  background: var(--dark-mid);
  padding: 28px 24px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.mistake-cell:hover { border-left-color: var(--gold); background: #252f3e; }
.mistake-icon { font-size: 1.4rem; margin-bottom: 12px; }
.mistake-cell h4 {
  font-size: 0.88rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.mistake-cell p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ---- FULL-BLEED SCALES SECTION ---- */
.photo-callout {
  position: relative;
  min-height: 380px;
  display: flex; align-items: center;
  overflow: hidden;
}
.photo-callout-bg { position: absolute; inset: 0; }
.photo-callout-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.photo-callout-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,24,39,0.97) 45%, rgba(17,24,39,0.6) 100%);
}
.photo-callout-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  width: 100%; max-width: 640px;
}
.photo-callout h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.photo-callout p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 1rem; }

/* ---- FAQ ---- */
.faq-section { background: var(--dark-mid); padding: 80px 28px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--dark-lt); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--white); font-size: 1rem; font-weight: 500;
  line-height: 1.4; gap: 20px;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-btn.active { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-btn.active .faq-icon { transform: rotate(45deg); }
.faq-body {
  display: none; padding: 0 0 22px;
  color: var(--muted); font-size: 0.93rem; line-height: 1.8;
}
.faq-body.open { display: block; }

/* ---- WHEN HELP MATTERS ---- */
.when-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.when-card {
  background: var(--dark-lt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 24px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.when-card:hover { border-color: var(--gold-line); background: #2d3748; }
.when-icon { font-size: 1.6rem; margin-bottom: 10px; }
.when-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: var(--gold);
  padding: 60px 28px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.cta-strip p { color: rgba(17,24,39,0.7); max-width: 520px; margin: 0 auto 28px; }

/* ---- FORMS ---- */
.form-section { background: var(--dark); padding: 70px 28px; }
.form-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.form-sidebar h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.form-sidebar p { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.sidebar-steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sidebar-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--dark-lt);
}
.sidebar-step:last-child { border: none; }
.s-num {
  width: 28px; height: 28px; min-width: 28px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
}
.sidebar-step strong { font-size: 0.88rem; color: var(--white); display: block; margin-bottom: 2px; }
.sidebar-step span { font-size: 0.82rem; color: var(--muted); }
.form-panel {
  background: var(--dark-mid);
  border: 1px solid var(--dark-lt);
  border-radius: 6px; padding: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-full { grid-column: 1 / -1; }
.f-group { display: flex; flex-direction: column; }
.f-label {
  font-size: 0.72rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 7px;
}
.f-input, .f-select, .f-textarea {
  background: var(--dark-lt);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; padding: 11px 14px;
  color: var(--white); font-size: 0.92rem;
  font-family: inherit; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,0.25); }
.f-input:focus, .f-select:focus, .f-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.f-select option { background: var(--dark-mid); }
.f-textarea { min-height: 100px; resize: vertical; }
.sms-consent { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.sms-row {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--dark-lt); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px; padding: 14px;
}
.sms-row input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 2px; accent-color: var(--gold); cursor: pointer;
}
.sms-txt {
  font-size: 0.78rem; color: var(--muted); line-height: 1.55; margin: 0;
}
.sms-txt a { color: var(--gold); }
.sms-txt strong { color: rgba(255,255,255,0.7); }
.submit-btn {
  width: 100%; margin-top: 20px;
  padding: 14px; background: var(--gold);
  color: var(--dark); font-weight: 700;
  font-size: 0.95rem; border: none;
  border-radius: 3px; cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.submit-btn:hover { opacity: 0.88; }
.ty-msg {
  display: none; text-align: center;
  padding: 36px 20px; background: var(--dark-lt);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 4px; margin-top: 16px;
}
.ty-msg .ty-icon { font-size: 2.4rem; margin-bottom: 10px; }
.ty-msg h3 { color: var(--gold); margin-bottom: 8px; font-size: 1.1rem; }
.ty-msg p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ---- PROSE PAGES ---- */
.prose-wrap { max-width: 820px; padding: 70px 28px; margin: 0 auto; }
.prose-wrap h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.prose-wrap .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 36px; }
.prose-wrap h2 { font-size: 1.2rem; font-weight: 600; color: var(--gold); margin: 36px 0 12px; }
.prose-wrap h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin: 24px 0 8px; }
.prose-wrap p { color: var(--body-text); font-size: 0.94rem; line-height: 1.8; margin-bottom: 1em; }
.prose-wrap ul { padding-left: 20px; margin-bottom: 1em; }
.prose-wrap li { color: var(--body-text); font-size: 0.94rem; line-height: 1.8; margin-bottom: 4px; }
.callout-box {
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px; margin: 24px 0;
}
.callout-box p { color: var(--white); font-weight: 600; margin: 0; font-size: 0.95rem; }

/* ---- PAGE INTRO BAR ---- */
.page-intro {
  background: var(--dark-mid);
  padding: 80px 28px 60px;
  border-bottom: 1px solid var(--dark-lt);
  margin-top: 68px;
}
.page-intro-inner { max-width: 1200px; margin: 0 auto; }
.page-intro h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.02em; }
.page-intro p { color: var(--muted); font-size: 1rem; max-width: 560px; }

/* ---- CONTACT ---- */
.contact-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h3 { font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.c-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.c-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--gold-dim); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.c-row strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 3px; }
.c-row p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.c-row a { color: var(--gold); font-size: 0.88rem; }

/* ---- FOOTER ---- */
footer {
  background: #0d1520;
  padding: 56px 28px 24px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
}
.footer-about p { font-size: 0.84rem; color: var(--muted); max-width: 260px; margin-top: 14px; line-height: 1.65; }
.footer-col h5 {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.84rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-base {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--dark-lt);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-base p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-base-links { display: flex; gap: 20px; }
.footer-base-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-base-links a:hover { color: var(--muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split-reverse { direction: ltr; }
  .split-photo { min-height: 300px; }
  .split-content { padding: 48px 32px; }
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .steps-row::before { display: none; }
  .mistake-row { grid-template-columns: repeat(2, 1fr); }
  .when-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-h1 { font-size: 2.4rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .mistake-row { grid-template-columns: 1fr; }
  .when-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
