/* ============================================
   SAFER DEALER — Design System
   ============================================ */

:root {
  --brand: #C84B1A;
  --brand-light: #E8603A;
  --brand-dark: #9A3810;
  --navy: #1B2A3D;
  --slate: #4A5568;
  --warm-gray: #F7F4F1;
  --warm-gray-dark: #EDE8E3;
  --white: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
  --green: #2D8F5E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--brand);
}
.section-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--brand-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--brand);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--brand); color: var(--white); }

/* ============================================
   CSS ICONS (replacing SVG sprite)
   ============================================ */
.css-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand);
}

.pain-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.css-icon-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200,75,26,0.12);
  border: 1.5px solid var(--brand);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.css-icon-x::before {
  content: "\00D7";
}

.css-icon-check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.css-icon-check::before {
  content: "\2713";
}

.css-icon-arrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s;
}
.css-icon-arrow::before {
  content: "\2192";
}

.css-icon-alert {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-light);
}
.css-icon-alert::before {
  content: "!";
}

.trust-lock {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.trust-lock::before {
  content: "S";
}

/* Service/about page icon boxes */
.css-icon-building::before { content: "D"; }
.css-icon-search::before   { content: "G"; }
.css-icon-link::before     { content: "N"; }
.css-icon-shield::before   { content: "C"; }
.css-icon-file::before     { content: "W"; }
.css-icon-users::before    { content: "T"; }
.css-icon-refresh::before  { content: "M"; }
.css-icon-phone::before    { content: "P"; }
.css-icon-mail::before     { content: "@"; }
.css-icon-map::before      { content: "A"; }
.css-icon-clock::before    { content: "H"; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 42, 61, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
nav.scrolled {
  background: rgba(27, 42, 61, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--brand-light); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brand-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: 0.3s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: calc(var(--section-pad) + 72px) 0 var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,61,0.95) 0%, rgba(27,42,61,0.7) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,75,26,0.3), transparent);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 75, 26, 0.12);
  border: 1px solid rgba(200, 75, 26, 0.25);
  color: var(--brand-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-light);
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-proof {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-proof-item strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}
.hero-proof-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}
.hero-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 22px;
  margin-bottom: 24px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}
.checklist-item:last-child { border-bottom: none; }
.check-icon, .x-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon {
  background: rgba(45,143,94,0.15);
  border: 1.5px solid var(--green);
  color: var(--green);
}
.x-icon {
  background: rgba(200,75,26,0.12);
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
  padding: var(--section-pad) 0;
  background: var(--warm-gray);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pain-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pain-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(200,75,26,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand);
  overflow: hidden;
}
.pain-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.pain-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.pain-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-sub { margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
  opacity: 0.2;
}
.step {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.step p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================ */
.social-proof {
  padding: var(--section-pad) 0;
  background: var(--warm-gray);
}
.social-proof-header { text-align: center; margin-bottom: 56px; }
.social-proof-header .section-sub { margin: 0 auto; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--brand);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-light);
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
}
.client-logos span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.client-logo-placeholder {
  width: 120px;
  height: 40px;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   9 REQUIREMENTS
   ============================================ */
.requirements {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
}
.requirements .section-label { color: var(--brand-light); }
.requirements .section-title { color: var(--white); }
.requirements .section-sub { color: rgba(255,255,255,0.6); }
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.req-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  display: block;
}
.req-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  border-color: rgba(200,75,26,0.3);
}
.req-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-light);
  opacity: 0.6;
  margin-bottom: 12px;
}
.req-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.req-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.req-card .req-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-light);
  margin-top: 14px;
  transition: gap 0.2s;
}
.req-card:hover .req-link { gap: 10px; }

/* ============================================
   OFFER / CTA FORM
   ============================================ */
.offer {
  padding: var(--section-pad) 0;
  background: var(--warm-gray);
}
.offer-header {
  text-align: center;
  margin-bottom: 56px;
}
.offer-header .section-sub {
  margin: 0 auto;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.offer-includes h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.offer-includes ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.offer-form {
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.offer-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.offer-form .form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--warm-gray-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(200,75,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
}
.form-trust .trust-lock { width: 14px; height: 14px; color: var(--green); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-light); }

/* ============================================
   INLINE TESTIMONIALS
   ============================================ */
.inline-testimonials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inline-quote {
  padding: 20px;
  background: var(--warm-gray);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.inline-quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.inline-quote span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* ============================================
   RESOURCES / BLOG CARDS
   ============================================ */
.resources {
  padding: var(--section-pad) 0;
  background: var(--warm-gray);
}
.resources-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 28px;
}
.blog-card-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 40px 24px 0;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--brand);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-question:hover { color: var(--brand); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad) 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta h2 em { color: var(--brand-light); font-style: italic; }
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 64px 0 32px;
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--brand-light); }

/* ============================================
   INTERIOR PAGE HEADER
   ============================================ */
.page-header {
  padding: calc(72px + 60px) 0 60px;
  background: var(--navy);
  text-align: center;
}
.page-header .section-title { color: var(--white); margin-bottom: 12px; }
.page-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   ARTICLE / BLOG POST
   ============================================ */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-content p {
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.8;
}
.article-content ul, .article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}
.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text);
}
.article-content strong { color: var(--navy); }
.article-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content a:hover { color: var(--brand-dark); }
.article-content blockquote {
  border-left: 3px solid var(--brand);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--warm-gray);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--slate);
}
.article-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero .container { gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-proof { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }

  .pain-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .req-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .offer-grid { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .resources-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .client-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .pain-card, .offer-form { padding: 24px; }
  .hero-card { padding: 28px; }
}
