/* ============================================
   Car Finance Check — Pre-lander
   Style: Clean, content-focused claims guide
   Modeled after theclaimsguide.com/car-finance
   ============================================ */

:root {
  --primary: #1a56db;
  --primary-dark: #1648b8;
  --primary-light: #e8eefb;
  --navy: #111827;
  --navy-light: #1f2937;
  --green: #059669;
  --amber: #d97706;
  --white: #ffffff;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --grey-800: #1f2937;
  --grey-900: #111827;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --max-w: 800px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 700; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  color: var(--navy);
  font-weight: 400;
}

.logo strong { font-weight: 800; }

.header-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: #dc2626;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 40px;
}

.btn-calc {
  width: 100%;
  margin-top: 8px;
}

/* ---- HERO ---- */
.hero {
  background: var(--grey-50);
  padding: 56px 0 48px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-light {
  font-weight: 600;
  color: var(--grey-600);
}

.hero-points {
  max-width: 540px;
  margin: 0 auto 28px;
}

.hero-points p {
  font-size: 17px;
  color: var(--grey-600);
  margin-bottom: 4px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

.trust-item svg { flex-shrink: 0; color: var(--green); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--navy);
  padding: 20px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.stat svg {
  flex-shrink: 0;
  color: #93c5fd;
}

.stat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.stat span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ---- 3-STEP PROCESS ---- */
.process {
  background: var(--white);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--grey-200);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 660px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: var(--grey-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 4px;
}

.process-sub {
  font-size: 12px;
  color: var(--grey-400);
  line-height: 1.4;
}

.process-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--grey-400);
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ---- MIS-SOLD SECTION ---- */
.missold {
  padding: 56px 0;
}

.missold h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.missold-intro {
  font-size: 17px;
  color: var(--grey-700);
  margin-bottom: 4px;
}

.missold-sub {
  font-size: 15px;
  color: var(--grey-500);
  margin-bottom: 32px;
}

/* Claim types */
.claim-types {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.claim-type {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.claim-type-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.claim-type-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.claim-type-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.claim-type-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.claim-type p {
  font-size: 15px;
  color: var(--grey-600);
  margin-bottom: 8px;
}

.claim-type-applies {
  font-size: 13px;
  color: var(--grey-400);
  font-style: italic;
  margin-bottom: 0;
}

/* No paperwork */
.no-paperwork {
  background: var(--grey-50);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.no-paperwork-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.no-paperwork-header svg {
  flex-shrink: 0;
  color: var(--primary);
}

.no-paperwork h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.no-paperwork p {
  font-size: 15px;
  color: var(--grey-600);
}

/* Eligible box */
.eligible-box {
  background: var(--primary-light);
  border: 1px solid rgba(26, 86, 219, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.eligible-icon {
  margin-bottom: 12px;
}

.eligible-icon svg {
  color: var(--green);
}

.eligible-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.eligible-box p {
  font-size: 15px;
  color: var(--grey-600);
  margin-bottom: 8px;
}

.eligible-avg {
  font-size: 15px;
  color: var(--grey-700);
  margin-bottom: 20px !important;
}

/* ---- NO WIN NO FEE ---- */
.nwnf {
  padding: 0 0 48px;
}

.nwnf-box {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.nwnf-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.nwnf-header svg {
  flex-shrink: 0;
  color: var(--primary);
}

.nwnf-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.nwnf-box p {
  font-size: 14px;
  color: var(--grey-600);
  margin-bottom: 8px;
}

.nwnf-box p:last-child { margin-bottom: 0; }

/* ---- WHAT'S HAPPENING ---- */
.whats-happening {
  background: var(--grey-50);
  padding: 56px 0;
}

.whats-happening h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.whats-happening > .container > p {
  font-size: 15px;
  color: var(--grey-600);
  margin-bottom: 32px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-block {
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 24px;
}

.info-block:last-child { border-bottom: none; padding-bottom: 0; }

.info-block h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 15px;
  color: var(--grey-600);
  margin-bottom: 8px;
}

.info-block p:last-child { margin-bottom: 0; }

.info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-block ul li {
  font-size: 15px;
  color: var(--grey-600);
  padding: 3px 0 3px 20px;
  position: relative;
}

.info-block ul li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-weight: bold;
}

.dealer-quote {
  font-style: italic;
  color: var(--grey-500) !important;
  border-left: 3px solid var(--grey-300);
  padding-left: 16px;
  margin-top: 8px;
}

.section-cta {
  text-align: center;
  margin-top: 8px;
}

/* ---- PRESS ---- */
.press {
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-200);
}

.press-header {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  margin-bottom: 20px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-200);
}

.press-logo {
  font-weight: 700;
  color: var(--grey-300);
  font-size: 16px;
  letter-spacing: -0.02em;
  user-select: none;
}

.press-logo--bbc {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.press-logo--guardian {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
}

.press-logo--mse {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.press-logo--times {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}

.press-logo--sky {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--grey-50);
}

.press-card-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.press-card-brand--bbc {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.press-card-brand--mse {
  font-weight: 800;
  color: #004a8f;
}

.press-card p {
  font-size: 14px;
  color: var(--grey-500);
  font-style: italic;
  line-height: 1.5;
}

/* ---- CALCULATOR ---- */
.calculator-section {
  padding: 56px 0;
  background: var(--white);
  text-align: center;
}

.calculator-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--grey-600);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.calc-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-slider-row input[type="range"] {
  -webkit-appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--grey-200);
  outline: none;
}

.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.calc-slider-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

.calc-slider-val {
  min-width: 80px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.calc-result {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.calc-result-icon {
  margin-bottom: 8px;
}

.calc-result-icon svg {
  color: rgba(255,255,255,0.2);
}

.calc-result-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 6px;
}

.calc-result-amount {
  font-size: 42px;
  font-weight: 800;
  color: #93c5fd;
  line-height: 1.1;
  margin-bottom: 6px;
}

.calc-result-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.calc-box .btn-primary {
  width: 100%;
  text-align: center;
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--grey-400);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

.calc-use-checker {
  text-align: center;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
}

/* ---- FAQ ---- */
.faq {
  padding: 56px 0;
  background: var(--grey-50);
}

.faq h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.faq-list {
  max-width: var(--max-w);
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s ease;
}

.faq-trigger:hover { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--grey-400);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-content {
  max-height: 600px;
  padding-bottom: 18px;
}

.faq-content p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 8px;
}

.faq-content p:last-child { margin-bottom: 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--grey-900);
  padding: 36px 0;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--grey-500);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 12px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--grey-600);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 28px; }
  .hero-points p { font-size: 16px; }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .process-steps::before { display: none; }

  .claim-type { padding: 20px; }

  .calc-box { padding: 24px 20px; }

  .press-logos { gap: 18px; }
  .press-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn-lg {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 24px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .calc-box { padding: 20px 16px; }
  .calc-result-amount { font-size: 34px; }
  .press-logos { gap: 12px; }
  .press-logo { font-size: 13px !important; }
}
