/* ============================================================
   CLAIMGRID – PREMIUM LIGHT THEME  (v2)
   Brand palette: #0b0b0d (ink) · #b11226 (red) · #ffffff (white)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --cg-black:      #0b0b0d;
  --cg-ink:        #151518;
  --cg-muted:      #5a5a63;
  --cg-soft:       #f5f5f7;
  --cg-panel:      #ffffff;
  --cg-panel-warm: #fbfbfc;
  --cg-line:       rgba(11, 11, 13, 0.09);
  --cg-line-strong:rgba(11, 11, 13, 0.16);

  /* Brand red spectrum */
  --cg-red:        #b11226;
  --cg-red-bright: #d71932;
  --cg-red-deep:   #8f0e1f;
  --cg-red-soft:   rgba(177, 18, 38, 0.07);
  --cg-red-glow:   rgba(177, 18, 38, 0.18);
  --cg-green:      #0f7a3b;

  /* Semantic aliases (keep compatability with built CSS) */
  --bg-primary:           var(--cg-soft);
  --bg-secondary:         #ececed;
  --bg-card:              rgba(255, 255, 255, 0.92);
  --bg-card-hover:        #ffffff;
  --border-color:         var(--cg-line);
  --border-color-hover:   rgba(177, 18, 38, 0.34);
  --primary:              var(--cg-red);
  --primary-hover:        var(--cg-red-deep);
  --teal:                 #55555e;
  --teal-hover:           #151518;
  --text-primary:         var(--cg-ink);
  --text-secondary:       var(--cg-muted);
  --text-muted:           #85858c;

  --primary-gradient: linear-gradient(135deg, #151518 0%, #b11226 100%);
  --text-gradient:    none;

  /* Elevation shadows */
  --shadow-xs:     0 2px  8px rgba(11,11,13,0.06);
  --shadow-sm:     0 6px 18px rgba(11,11,13,0.08);
  --shadow-md:     0 14px 32px rgba(11,11,13,0.10), 0 4px 12px rgba(11,11,13,0.06);
  --shadow-lg:     0 24px 48px rgba(11,11,13,0.12), 0 8px 20px rgba(11,11,13,0.07);
  --shadow-red-sm: 0 8px 22px rgba(177,18,38,0.20);
  --shadow-red-md: 0 14px 34px rgba(177,18,38,0.26);
  --shadow-glow:        var(--shadow-md);
  --shadow-glow-strong: var(--shadow-lg);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-circ: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography */
  --font-sans: 'Outfit', 'Aptos', 'Segoe UI Variable', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
}

/* =============================================
   GLOBAL RESETS & BASE
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

::selection {
  background: var(--cg-red);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar             { width: 6px; height: 6px; }
::-webkit-scrollbar-track       { background: var(--cg-soft); }
::-webkit-scrollbar-thumb       { background: rgba(177,18,38,0.30); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--cg-red); }

html, body {
  font-family: var(--font-sans);
  color: var(--cg-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Rich ambient grid background */
body {
  min-width: 320px;
  background:
    radial-gradient(ellipse 900px 500px at 70% -5%,  rgba(177,18,38,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 700px 400px at -10% 55%, rgba(11,11,13,0.040) 0%, transparent 60%),
    linear-gradient(90deg, rgba(11,11,13,0.028) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(0deg,  rgba(11,11,13,0.020) 1px, transparent 1px) 0 0 / 60px 60px,
    var(--cg-soft);
  background-attachment: fixed;
}

.bg-glow-1,
.bg-glow-2 {
  display: none; /* ambient handled by body */
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  color: var(--cg-ink);
  font-weight: 800;
  letter-spacing: 0 !important;
  line-height: 1.15;
}

.text-gradient-title {
  /* override built-CSS: brand red tint instead of full gradient */
  background: linear-gradient(130deg, var(--cg-black) 0%, var(--cg-red) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */

.container {
  max-width: 1180px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--cg-line);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9), 0 8px 28px rgba(11,11,13,0.07);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

/* Accent stripe at very top */
.navbar::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
    var(--cg-black) 0%,
    var(--cg-red)   45%,
    var(--cg-black) 100%);
  background-size: 200% 100%;
  animation: stripe-shimmer 4s linear infinite;
}

@keyframes stripe-shimmer {
  0%   { background-position: 0%   50%; }
  100% { background-position: 200% 50%; }
}

.nav-container {
  height: 76px;
  gap: 1.25rem;
}

.logo {
  color: var(--cg-ink);
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.logo img {
  height: 48px;
  filter: drop-shadow(0 6px 12px rgba(11,11,13,0.14));
  transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.logo:hover img {
  filter: drop-shadow(0 8px 18px rgba(177,18,38,0.22));
  transform: scale(1.04);
}

.logo-text {
  color: var(--cg-ink);
  font-weight: 900;
  font-size: 1.22rem;
  white-space: nowrap;
}

/* Nav pill */
.nav-links {
  gap: 0;
  padding: 0.3rem;
  border: 1px solid var(--cg-line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.70);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.80),
    var(--shadow-xs);
}

.nav-link {
  position: relative;
  color: rgba(21,21,24,0.68);
  border-radius: 7px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s, background 0.2s;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cg-red-soft), transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  border-radius: 7px;
}

.nav-link:hover {
  color: var(--cg-red);
}

.nav-link:hover::before {
  opacity: 1;
}

/* Active underline */
.nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 2px;
  background: var(--cg-red);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.2s var(--ease-out), transform 0.25s var(--ease-out);
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu-toggle {
  color: var(--cg-black);
  border: 1px solid var(--cg-line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: background 0.2s, box-shadow 0.2s;
}

.mobile-menu-toggle:hover {
  background: var(--cg-soft);
  box-shadow: var(--shadow-xs);
}

/* Mobile drawer */
.mobile-drawer-overlay {
  background: rgba(11,11,13,0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-drawer {
  background: #ffffff;
  border-left: 1px solid var(--cg-line);
  box-shadow: -24px 0 56px rgba(11,11,13,0.18);
}

.mobile-drawer-link {
  color: var(--cg-ink);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-drawer-link:hover {
  color: var(--cg-red);
  padding-left: 0.25rem;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  column-gap: 4.5rem;
  row-gap: 1.25rem;
  align-items: center;
  text-align: left;
  padding-top: 3.8rem;
  padding-bottom: 2.8rem;
}

/* Subtle separator line */
.hero::before {
  content: '';
  position: absolute;
  inset: 0 1.5rem auto;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(177,18,38,0.40),
    transparent);
}

.hero::after { content: none; }

/* Grid placement */
.hero > .badge        { grid-column: 1; grid-row: 1; }
.hero > .hero-title   { grid-column: 1; grid-row: 2; }
.hero > .hero-subtitle{ grid-column: 1; grid-row: 3; }
.hero > div[style*="display: flex"] { grid-column: 1; grid-row: 4; }
.hero > .stats-grid   { grid-column: 1 / -1; grid-row: 5; }
.hero > .hero-disclosure {
  grid-column: 1 / -1;
  grid-row: 6;
  justify-self: stretch;
  max-width: none !important;
  width: 100% !important;
}

/* ---- Badge ---- */
.badge {
  align-self: start;
  justify-self: start;
  margin-bottom: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(177,18,38,0.16);
  background: linear-gradient(135deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,244,246,0.95) 100%);
  color: var(--cg-red);
  box-shadow:
    var(--shadow-xs),
    inset 0 1px 0 rgba(255,255,255,0.9);
  animation: badge-float 3.5s var(--ease-circ) infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-3px); }
}

.badge-pulse {
  background: var(--cg-red-bright);
  box-shadow: 0 0 0 0 rgba(177,18,38,0.5);
  animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {
  0%   { transform: scale(0.9); box-shadow: 0 0 0 0   rgba(177,18,38,0.50); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 7px rgba(177,18,38,0.00); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0   rgba(177,18,38,0.00); }
}

/* ---- Hero Title ---- */
.hero-title {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: 3.1rem;
  line-height: 1.07;
  color: var(--cg-black);
  letter-spacing: -0.02em !important;
}

.hero-title .text-gradient-title {
  /* cherry red accent on key word */
  background: linear-gradient(125deg, var(--cg-red) 0%, var(--cg-red-bright) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 2px 6px rgba(177,18,38,0.18));
}

/* ---- Hero subtitle ---- */
.hero-subtitle {
  max-width: 620px;
  margin: 0 0 0.4rem;
  color: #44444b;
  font-size: 1.04rem;
  line-height: 1.60;
}

.hero-subtitle strong {
  color: var(--cg-black);
}

.hero > div[style*="display: flex"] {
  justify-content: flex-start !important;
  margin-bottom: 0.6rem !important;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  border-radius: var(--radius-md);
  font-weight: 760;
  min-height: 42px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.22s var(--ease-out),
    box-shadow  0.22s var(--ease-out),
    transform   0.22s var(--ease-out),
    border-color 0.22s var(--ease-out);
}

/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: -55%;
  left: -65%;
  width: 28%;
  height: 210%;
  background: linear-gradient(to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.38),
    rgba(255,255,255,0));
  transform: rotate(28deg);
  opacity: 0;
  pointer-events: none;
  transition: left 0.55s var(--ease-out), opacity 0.55s;
}

.btn:hover::after {
  left: 140%;
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cg-red) 0%, var(--cg-red-bright) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-red-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cg-red-deep) 0%, var(--cg-red) 100%);
  box-shadow: var(--shadow-red-md);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-red-sm);
}

.btn-secondary {
  color: var(--cg-black);
  border: 1px solid var(--cg-line-strong);
  background: #ffffff;
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--cg-soft);
  border-color: rgba(11,11,13,0.26);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* =============================================
   FCA REDRESS BANNER (hero side card)
   ============================================= */

.fca-redress-banner {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: none;
  min-height: 390px;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid rgba(11,11,13,0.10);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(177,18,38,0.06) 0%, transparent 40%),
    linear-gradient(180deg, rgba(11,11,13,0.03) 0%, transparent 35%),
    #ffffff;
  box-shadow:
    var(--shadow-lg),
    0 0 0 6px rgba(255,255,255,0.55),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Hover lift */
.fca-redress-banner:hover {
  box-shadow:
    0 30px 60px rgba(11,11,13,0.16),
    0 0 0 6px rgba(255,255,255,0.65),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transform: translateY(-4px);
}

/* Gradient accent top bar */
.fca-redress-banner::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg,
    var(--cg-black) 0%,
    var(--cg-red)   50%,
    var(--cg-black) 100%);
  background-size: 200% 100%;
  animation: stripe-shimmer 4s linear infinite;
}

/* Logo mark */
.fca-redress-banner::before {
  content: '';
  display: block;
  width: 160px;
  height: 112px;
  margin: 0 auto 0.35rem;
  background: var(--cg-logo-url) center / contain no-repeat;
  filter: drop-shadow(0 10px 16px rgba(11,11,13,0.12));
  transition: filter 0.35s, transform 0.35s var(--ease-out);
}

.fca-redress-banner:hover::before {
  filter: drop-shadow(0 14px 22px rgba(177,18,38,0.18));
  transform: scale(1.03);
}

.fca-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--cg-black);
  color: #fff;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.2s;
}

.fca-redress-banner:hover .fca-banner-icon {
  background: var(--cg-red);
  box-shadow: var(--shadow-red-sm);
}

.fca-banner-text {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11,11,13,0.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.92);
  color: #4b4b52;
  font-size: 0.9rem;
  line-height: 1.56;
  box-shadow: var(--shadow-xs);
}

.fca-banner-text strong {
  color: var(--cg-black);
}

/* =============================================
   STATS GRID
   ============================================= */

.stats-grid {
  gap: 1rem;
  margin-top: 0;
  margin-bottom: 0.2rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--cg-line);
  background: #ffffff !important;
  text-align: left;
  padding: 1.15rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

/* Left accent bar */
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cg-red-bright) 0%, var(--cg-red) 100%);
  border-radius: 4px 0 0 4px;
  transition: width 0.25s var(--ease-out);
}

/* Ambient corner glow on hover */
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(177,18,38,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.stat-card:hover {
  border-color: rgba(177,18,38,0.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(177,18,38,0.10);
}

.stat-card:hover::before { width: 5px; }
.stat-card:hover::after  { opacity: 1; }

.stat-number {
  color: var(--cg-black);
  font-size: 1.80rem;
  line-height: 1.05;
  font-weight: 800;
}

.stat-label {
  color: var(--cg-muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.04em !important;
}

/* =============================================
   SECTION BACKGROUNDS
   ============================================= */

.bg-block-white {
  background: rgba(255, 255, 255, 0.84) !important;
}

.bg-block-grey {
  background:
    linear-gradient(90deg, rgba(11,11,13,0.028) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(0deg,  rgba(11,11,13,0.020) 1px, transparent 1px) 0 0 / 50px 50px,
    #ebebec !important;
}

/* =============================================
   SECTION STRUCTURE
   ============================================= */

.info-section,
.timeline-section,
.checker-section,
.reviews-section,
.faq-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-header {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.checker-section .section-header,
.faq-section .section-header,
.reviews-section .section-header {
  margin-left: auto;
  text-align: center;
}

.section-title {
  position: relative;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  line-height: 1.10;
  letter-spacing: -0.02em !important;
}

/* Red underline accent */
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cg-red), var(--cg-red-bright));
  animation: line-grow 0.7s 0.3s var(--ease-out) forwards;
}

@keyframes line-grow {
  to { width: 70px; }
}

.checker-section .section-title::after,
.faq-section .section-title::after,
.reviews-section .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  margin-left: 0;
  color: #55555e;
  font-size: 1rem;
  line-height: 1.72;
}

.checker-section .section-subtitle,
.faq-section .section-subtitle,
.reviews-section .section-subtitle {
  margin-left: auto;
}

.grid-3 {
  gap: 1.4rem;
}

/* =============================================
   GLASS CARDS (generic)
   ============================================= */

.glass-card,
.faq-item,
.review-card,
.timeline-step,
.doc-card {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--cg-line);
  background: #ffffff !important;
  box-shadow: var(--shadow-sm);
  transition:
    transform   0.35s var(--ease-out),
    box-shadow  0.35s var(--ease-out),
    border-color 0.30s var(--ease-out);
}

.glass-card {
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.glass-card:hover,
.timeline-step:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
}

/* Info cards */
.info-card {
  min-height: 245px;
  border-top: 4px solid var(--cg-black);
  transition:
    border-top-color 0.25s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.info-card:hover {
  border-top-color: var(--cg-red);
}

/* Icon box */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(177,18,38,0.14);
  background: var(--cg-red-soft);
  color: var(--cg-red);
  transition: background 0.25s var(--ease-out), color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.info-card:hover .icon-box {
  background: var(--cg-red);
  color: #fff;
  box-shadow: var(--shadow-red-sm);
  transform: scale(1.08) rotate(-4deg);
}

.info-card-title,
.timeline-title,
.review-author,
.footer-links-title {
  color: var(--cg-black);
  font-weight: 800;
}

.info-card-text,
.timeline-desc,
.review-text,
.faq-answer,
.footer-disclosure {
  color: #55555e;
}

/* =============================================
   TIMELINE
   ============================================= */

.timeline {
  gap: 1.4rem;
}

.timeline-step {
  padding-top: 2.85rem;
  border-top: 4px solid var(--cg-red);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow on hover */
.timeline-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(177,18,38,0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.timeline-step:hover::after {
  opacity: 1;
}

.step-num {
  top: -1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cg-black) 0%, #2a2a2e 100%);
  box-shadow: 0 10px 22px rgba(11,11,13,0.22);
  transition: background 0.25s, transform 0.25s var(--ease-out);
}

.timeline-step:hover .step-num {
  background: linear-gradient(135deg, var(--cg-red) 0%, var(--cg-red-bright) 100%);
  transform: rotate(-5deg) scale(1.05);
}

.timeline-v {
  position: relative;
  border-left: 2px solid rgba(177,18,38,0.30);
}

.timeline-v-item {
  background: #ffffff;
  border: 1px solid var(--cg-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s;
}

.timeline-v-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: rgba(177,18,38,0.22);
}

/* =============================================
   CLAIM CHECKER
   ============================================= */

.checker-container {
  max-width: 880px;
}

.checker-section .glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11,11,13,0.12);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    160deg,
    rgba(255,255,255,1.00) 0%,
    rgba(253,252,255,0.98) 100%
  ) !important;
}

/* Bold top accent bar */
.checker-section .glass-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg,
    var(--cg-black) 0%,
    var(--cg-red)   50%,
    var(--cg-black) 100%);
  background-size: 200% 100%;
  animation: stripe-shimmer 4s linear infinite;
}

/* Steps indicator */
.steps-indicator {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.steps-line {
  background: rgba(11,11,13,0.10);
}

.steps-line-fill {
  background: linear-gradient(90deg, var(--cg-red) 0%, var(--cg-red-bright) 100%);
  transition: width 0.45s var(--ease-out);
}

.step-circle {
  background: #fff;
  border: 2px solid rgba(11,11,13,0.16);
  color: #5a5a63;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, color 0.25s;
}

.step-circle.active {
  border-color: var(--cg-red);
  color: var(--cg-red);
  box-shadow: 0 0 0 5px rgba(177,18,38,0.10);
}

.step-circle.completed {
  border-color: var(--cg-red);
  background: linear-gradient(135deg, var(--cg-red) 0%, var(--cg-red-bright) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(177,18,38,0.28);
}

/* Question & form elements */
.question-title {
  color: var(--cg-black);
  font-weight: 760;
}

.selector-btn,
.form-input,
.form-select {
  border: 1px solid rgba(11,11,13,0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--cg-ink);
  box-shadow: inset 0 1px 0 rgba(11,11,13,0.03);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.selector-btn:hover {
  border-color: rgba(11,11,13,0.24);
  background: var(--cg-soft);
  transform: translateY(-1px);
}

.selector-btn.selected {
  border-color: var(--cg-red);
  background: rgba(177,18,38,0.05);
  color: var(--cg-red);
  box-shadow: 0 0 0 4px rgba(177,18,38,0.09);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--cg-red);
  box-shadow: 0 0 0 4px rgba(177,18,38,0.09);
  outline: none;
}

.sig-pad-container,
.address-dropdown-container {
  border: 1px solid rgba(11,11,13,0.12);
  border-radius: var(--radius-md);
}

.manual-address-link,
.footer-link:hover,
.faq-question:hover {
  color: var(--cg-red);
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  max-width: 860px;
}

.faq-item {
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-question {
  padding: 1.3rem 1.4rem;
  color: var(--cg-black);
  font-size: 1rem;
  font-weight: 760;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item.active {
  border-color: rgba(177,18,38,0.28);
  box-shadow: 0 8px 24px rgba(11,11,13,0.08), 0 0 0 1px rgba(177,18,38,0.10);
}

.faq-item.active .faq-icon {
  color: var(--cg-red);
}

/* =============================================
   REVIEWS TICKER
   ============================================= */

.reviews-ticker-container::before {
  background: linear-gradient(to right, #ebebec, rgba(235,235,236,0));
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #ebebec, rgba(235,235,236,0));
}

.review-card {
  border-top: 4px solid var(--cg-red);
  position: relative;
  overflow: hidden;
}

/* Glow on hover */
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(177,18,38,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.review-card:hover::after {
  opacity: 1;
}

.review-verified {
  border: 1px solid rgba(15,122,59,0.16);
  background: rgba(15,122,59,0.08);
  color: var(--cg-green);
}

.review-rating {
  color: var(--cg-red);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  border-top: 3px solid var(--cg-black);
  background: #ffffff;
  color: #55555e;
  position: relative;
  overflow: hidden;
}

/* Ambient underlay */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 110%, rgba(177,18,38,0.04), transparent),
    radial-gradient(ellipse 500px 200px at 20% 110%, rgba(11,11,13,0.03), transparent);
  pointer-events: none;
}

.footer-grid {
  gap: 3rem;
}

.footer-link {
  color: #55555e;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-link:hover {
  color: var(--cg-red);
  padding-left: 0.2rem;
}

.footer-bottom {
  border-color: var(--cg-line);
}

/* =============================================
   FLOATING MOBILE CTA
   ============================================= */

.floating-mobile-cta .btn {
  border-radius: var(--radius-md);
}

.floating-mobile-cta::before {
  border-radius: var(--radius-md);
}

/* =============================================
   STANDALONE PAGES (documents, policies, etc.)
   ============================================= */

body > .container {
  max-width: 920px;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cg-line);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-lg);
}

body > .container .header {
  align-items: center;
  border-bottom-color: var(--cg-line);
  position: relative;
}

body > .container .header::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177,18,38,0.22), transparent);
}

body > .container .logo img {
  height: 46px;
}

body > .container h1 {
  position: relative;
  font-size: 2.35rem;
  line-height: 1.1;
}

body > .container h1::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--cg-red), var(--cg-red-bright));
  border-radius: 2px;
}

body > .container h2 {
  border-left-color: var(--cg-red);
}

body > .container a {
  color: var(--cg-red);
}

body > .container .btn {
  color: var(--cg-black) !important;
  border-color: var(--cg-line-strong) !important;
  background: #fff !important;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

body > .container .btn:hover {
  color: #fff !important;
  border-color: var(--cg-red) !important;
  background: var(--cg-red) !important;
  box-shadow: var(--shadow-red-sm) !important;
  transform: translateY(-2px);
}

.viewer-container {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--cg-line-strong) !important;
  box-shadow: var(--shadow-sm);
}

/* =============================================
   SCROLL-IN ANIMATIONS
   ============================================= */

/* Ensure built-CSS .animate-on-scroll still works */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}

.stagger-children.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.08s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.17s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.26s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.44s; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.53s; }

/* =============================================
   PREMIUM AMBIENT ENHANCEMENTS (injected)
   ============================================= */

/* Smooth focus rings */
.btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.selector-btn:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(177,18,38,0.42);
  outline-offset: 2px;
}

/* Counter number — animate into view */
@keyframes count-up {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)  scale(1.00); }
}

.stat-number {
  animation: count-up 0.6s 0.2s var(--ease-out) both;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2rem;
  }

  .hero::after { content: none; }

  .hero > .fca-redress-banner {
    grid-column: 1;
    grid-row: 4;
    min-height: 330px;
  }

  .hero > div[style*="display: flex"] { grid-row: 5; }
  .hero > .stats-grid { grid-column: 1; grid-row: 6; }
  .hero > .hero-disclosure { grid-column: 1; grid-row: 7; }

  .hero-title,
  .hero-subtitle,
  .fca-redress-banner {
    max-width: 780px;
  }
}

/* =============================================
   CLAIMGRID LIGHT BRAND PAPER SURFACE (v11 RESTORED)
   ============================================= */

:root {
  --cg-page-base: #f7f4f5;
  --cg-page-warm: #fff8f8;
  --cg-page-cool: #eef1f4;
  --cg-paper-red: rgba(177, 18, 38, 0.058);
  --cg-paper-ink: rgba(11, 11, 13, 0.04);
  --cg-paper-line: rgba(177, 18, 38, 0.13);
  --cg-paper-speckle:
    radial-gradient(circle at 18% 24%, rgba(11, 11, 13, 0.035) 0 0.7px, transparent 0.95px),
    radial-gradient(circle at 76% 62%, rgba(177, 18, 38, 0.036) 0 0.72px, transparent 1px);
  --cg-surface-paper:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 249, 250, 0.94) 100%);
  --cg-surface-depth:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 5px 0 rgba(11, 11, 13, 0.035),
    0 10px 10px rgba(177, 18, 38, 0.045);
}

html,
body {
  background:
    radial-gradient(circle at 13% 5%, rgba(177, 18, 38, 0.09), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(11, 11, 13, 0.045), transparent 28rem),
    linear-gradient(180deg, var(--cg-page-warm) 0%, var(--cg-page-base) 42%, var(--cg-page-cool) 100%) !important;
}

body {
  color: var(--cg-ink);
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 8%, rgba(177, 18, 38, 0.095), transparent 31rem),
    radial-gradient(circle at 84% 7%, rgba(11, 11, 13, 0.045), transparent 29rem),
    linear-gradient(180deg, #fffafa 0%, #f7f4f5 40%, #eef1f4 100%) !important;
}

body::before {
  content: "" !important;
  background-image:
    var(--cg-paper-speckle),
    radial-gradient(circle at 8% 28%, rgba(177, 18, 38, 0.06), transparent 25rem),
    radial-gradient(circle at 95% 62%, rgba(177, 18, 38, 0.045), transparent 27rem),
    linear-gradient(116deg, transparent 0 58%, rgba(177, 18, 38, 0.045) 58.2% 70%, transparent 70.3% 100%) !important;
  background-size:
    26px 26px,
    34px 34px,
    auto,
    auto,
    auto !important;
  opacity: 0.72 !important;
}

body::after {
  content: none !important;
  display: none !important;
}

.navbar {
  background:
    linear-gradient(180deg, rgba(255, 252, 252, 0.96), rgba(250, 247, 248, 0.92)) !important;
  border-bottom-color: rgba(177, 18, 38, 0.13) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 7px 10px rgba(11, 11, 13, 0.055) !important;
}

.hero,
.hero.bg-block-white {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 14% 18%, rgba(177, 18, 38, 0.105), transparent 32rem),
    radial-gradient(circle at 92% 22%, rgba(11, 11, 13, 0.045), transparent 31rem),
    linear-gradient(113deg, transparent 0 54%, rgba(177, 18, 38, 0.078) 54.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #fffafa 0%, #f5f1f2 62%, #eef1f4 100%) !important;
  background-size:
    28px 28px,
    37px 37px,
    auto,
    auto,
    auto,
    auto !important;
  box-shadow:
    0 0 0 100vmax #f5f1f2,
    inset 0 -1px 0 rgba(177, 18, 38, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.bg-block-white,
.checker-section,
.faq-section,
.info-section {
  background:
    var(--cg-paper-speckle),
    linear-gradient(180deg, rgba(255, 252, 252, 0.92), rgba(248, 244, 245, 0.9)) !important;
  background-size:
    30px 30px,
    39px 39px,
    auto !important;
}

.bg-block-grey,
.reviews-section,
.timeline-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 10% 18%, rgba(177, 18, 38, 0.065), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.048), transparent 28%, rgba(11, 11, 13, 0.034) 100%),
    linear-gradient(180deg, #f8f3f4 0%, #eef1f4 100%) !important;
  background-size:
    30px 30px,
    39px 39px,
    auto,
    auto,
    auto !important;
}

section,
.bg-block-white,
.bg-block-grey,
.checker-section,
.reviews-section,
.faq-section,
.timeline-section,
.info-section {
  border-top-color: rgba(177, 18, 38, 0.06) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(11, 11, 13, 0.045) !important;
}

.glass-card,
.stat-card,
.faq-item,
.review-card,
.timeline-step,
.timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
.doc-card,
.fca-redress-banner,
.address-dropdown,
.vehicle-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 250, 250, 0.94) 100%) !important;
  border-color: rgba(11, 11, 13, 0.115) !important;
  box-shadow: var(--cg-surface-depth) !important;
}

.glass-card:hover,
.glass-card:focus-within,
.stat-card:hover,
.stat-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.review-card:hover,
.review-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.timeline-v-item:hover,
.timeline-v-item:focus-within,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
.doc-card:hover,
.doc-card:focus-within,
.vehicle-card:hover,
.vehicle-card:focus-within {
  border-color: rgba(177, 18, 38, 0.34) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 5px 0 rgba(177, 18, 38, 0.11),
    0 11px 12px rgba(177, 18, 38, 0.07) !important;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 249, 0.96)) !important;
  border-color: rgba(11, 11, 13, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.selector-btn:hover,
.selector-btn:focus-visible,
.form-input:hover,
.form-select:hover,
.sig-pad-container:hover,
.address-dropdown-container:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 248, 0.98)) !important;
  border-color: rgba(177, 18, 38, 0.34) !important;
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #f8f3f4, rgba(248, 243, 244, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #eef1f4, rgba(238, 241, 244, 0)) !important;
}

.footer {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 0%, rgba(177, 18, 38, 0.075), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.055), transparent 34%, rgba(11, 11, 13, 0.035)),
    linear-gradient(180deg, #fbf8f8, #eef1f4) !important;
  background-size:
    31px 31px,
    41px 41px,
    auto,
    auto,
    auto !important;
}

.footer-disclosure .cg-legal-link {
  color: var(--cg-red) !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.footer-disclosure .cg-legal-link:hover,
.footer-disclosure .cg-legal-link:focus-visible {
  color: var(--cg-red-hot) !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.46 !important;
    background-size:
      34px 34px,
      43px 43px,
      auto,
      auto,
      auto !important;
  }

  .hero,
  .hero.bg-block-white,
  .bg-block-white,
  .bg-block-grey,
  .checker-section,
  .reviews-section,
  .faq-section,
  .timeline-section,
  .info-section {
    background-size:
      36px 36px,
      46px 46px,
      auto,
      auto,
      auto,
      auto !important;
  }
}

/* =============================================
   CLAIMGRID LIGHT BRAND PAPER SURFACE (v9 STRONGER)
   ============================================= */

:root {
  --cg-page-base: #f4e7ea;
  --cg-page-warm: #fff0f2;
  --cg-page-cool: #eceff2;
  --cg-paper-red: rgba(177, 18, 38, 0.088);
  --cg-paper-ink: rgba(11, 11, 13, 0.05);
  --cg-paper-line: rgba(177, 18, 38, 0.18);
  --cg-paper-speckle:
    radial-gradient(circle at 18% 24%, rgba(11, 11, 13, 0.044) 0 0.76px, transparent 1.05px),
    radial-gradient(circle at 76% 62%, rgba(177, 18, 38, 0.058) 0 0.86px, transparent 1.16px);
  --cg-surface-paper:
    linear-gradient(180deg, rgba(255, 249, 250, 0.98) 0%, rgba(249, 240, 243, 0.97) 100%);
  --cg-surface-depth:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 4px 0 rgba(177, 18, 38, 0.085),
    0 8px 8px rgba(91, 8, 18, 0.075);
}

html,
body {
  background:
    radial-gradient(circle at 12% 6%, rgba(177, 18, 38, 0.15), transparent 34rem),
    radial-gradient(circle at 87% 12%, rgba(177, 18, 38, 0.095), transparent 30rem),
    radial-gradient(circle at 82% 86%, rgba(11, 11, 13, 0.05), transparent 32rem),
    linear-gradient(180deg, var(--cg-page-warm) 0%, var(--cg-page-base) 44%, var(--cg-page-cool) 100%) !important;
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(177, 18, 38, 0.16), transparent 33rem),
    radial-gradient(circle at 88% 16%, rgba(177, 18, 38, 0.11), transparent 30rem),
    radial-gradient(circle at 92% 72%, rgba(11, 11, 13, 0.052), transparent 32rem),
    linear-gradient(180deg, #fff0f2 0%, #f5e7ea 42%, #eceff2 100%) !important;
}

body::before {
  content: "" !important;
  background-image:
    var(--cg-paper-speckle),
    radial-gradient(circle at 7% 24%, rgba(177, 18, 38, 0.105), transparent 28rem),
    radial-gradient(circle at 96% 58%, rgba(177, 18, 38, 0.075), transparent 30rem),
    linear-gradient(116deg, transparent 0 55%, rgba(177, 18, 38, 0.078) 55.2% 69%, transparent 69.3% 100%) !important;
  background-size:
    22px 22px,
    29px 29px,
    auto,
    auto,
    auto !important;
  opacity: 0.9;
}

body::after {
  content: "" !important;
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.09), transparent 22%, transparent 75%, rgba(11, 11, 13, 0.042)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.46), transparent 38rem);
  opacity: 0.58;
}

.navbar {
  background:
    linear-gradient(180deg, rgba(255, 248, 249, 0.97), rgba(246, 232, 236, 0.94)) !important;
  border-bottom-color: rgba(177, 18, 38, 0.2) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 5px 0 rgba(177, 18, 38, 0.045),
    0 8px 8px rgba(11, 11, 13, 0.06) !important;
}

.hero,
.hero.bg-block-white {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 18%, rgba(177, 18, 38, 0.18), transparent 35rem),
    radial-gradient(circle at 88% 21%, rgba(177, 18, 38, 0.115), transparent 31rem),
    radial-gradient(circle at 68% 94%, rgba(11, 11, 13, 0.055), transparent 31rem),
    linear-gradient(113deg, transparent 0 51%, rgba(177, 18, 38, 0.12) 51.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #fff0f2 0%, #f4e6e9 62%, #eceff2 100%) !important;
  background-size:
    24px 24px,
    31px 31px,
    auto,
    auto,
    auto,
    auto,
    auto !important;
  box-shadow:
    0 0 0 100vmax #f4e6e9,
    inset 0 -1px 0 rgba(177, 18, 38, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.hero::after {
  border-color: rgba(177, 18, 38, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.17), rgba(255, 244, 246, 0.36)),
    linear-gradient(180deg, rgba(255, 248, 249, 0.72), rgba(241, 228, 232, 0.72)) !important;
}

.bg-block-white,
.checker-section,
.faq-section,
.info-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 9% 18%, rgba(177, 18, 38, 0.082), transparent 26rem),
    linear-gradient(180deg, rgba(255, 244, 246, 0.95), rgba(244, 232, 236, 0.94)) !important;
  background-size:
    25px 25px,
    33px 33px,
    auto,
    auto !important;
}

.bg-block-grey,
.reviews-section,
.timeline-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 9% 18%, rgba(177, 18, 38, 0.11), transparent 31rem),
    radial-gradient(circle at 95% 76%, rgba(11, 11, 13, 0.047), transparent 31rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.085), transparent 27%, rgba(11, 11, 13, 0.04) 100%),
    linear-gradient(180deg, #f6e6ea 0%, #eceff2 100%) !important;
  background-size:
    25px 25px,
    33px 33px,
    auto,
    auto,
    auto,
    auto !important;
}

section,
.bg-block-white,
.bg-block-grey,
.checker-section,
.reviews-section,
.faq-section,
.timeline-section,
.info-section {
  border-top-color: rgba(177, 18, 38, 0.11) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(177, 18, 38, 0.1) !important;
}

.glass-card,
.stat-card,
.faq-item,
.review-card,
.timeline-step,
.timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
.doc-card,
.fca-redress-banner,
.address-dropdown,
.vehicle-card {
  background: var(--cg-surface-paper) !important;
  border-color: rgba(177, 18, 38, 0.17) !important;
  box-shadow: var(--cg-surface-depth) !important;
}

.glass-card:hover,
.glass-card:focus-within,
.stat-card:hover,
.stat-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.review-card:hover,
.review-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.timeline-v-item:hover,
.timeline-v-item:focus-within,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
.doc-card:hover,
.doc-card:focus-within,
.vehicle-card:hover,
.vehicle-card:focus-within {
  border-color: rgba(177, 18, 38, 0.42) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 5px 0 rgba(177, 18, 38, 0.16),
    0 8px 8px rgba(91, 8, 18, 0.11) !important;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background:
    linear-gradient(180deg, rgba(255, 250, 251, 0.99), rgba(249, 240, 243, 0.98)) !important;
  border-color: rgba(177, 18, 38, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 4px 0 rgba(177, 18, 38, 0.09) !important;
}

.selector-btn:hover,
.selector-btn:focus-visible,
.form-input:hover,
.form-select:hover,
.sig-pad-container:hover,
.address-dropdown-container:hover {
  background:
    linear-gradient(180deg, rgba(255, 250, 251, 1), rgba(255, 239, 243, 0.99)) !important;
  border-color: rgba(177, 18, 38, 0.42) !important;
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #f6e6ea, rgba(246, 230, 234, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #eceff2, rgba(236, 239, 242, 0)) !important;
}

.footer {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 0%, rgba(177, 18, 38, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 70%, rgba(11, 11, 13, 0.048), transparent 30rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.082), transparent 33%, rgba(11, 11, 13, 0.04)),
    linear-gradient(180deg, #fbedef, #eceff2) !important;
  background-size:
    26px 26px,
    34px 34px,
    auto,
    auto,
    auto,
    auto !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.62;
    background-size:
      30px 30px,
      38px 38px,
      auto,
      auto,
      auto !important;
  }

  body::after {
    opacity: 0.38;
  }

  .hero,
  .hero.bg-block-white,
  .bg-block-white,
  .bg-block-grey,
  .checker-section,
  .reviews-section,
  .faq-section,
  .timeline-section,
  .info-section {
    background-size:
      31px 31px,
      40px 40px,
      auto,
      auto,
      auto,
      auto,
      auto !important;
  }
}

/* =============================================
   CLAIMGRID LIGHT BRAND PAPER SURFACE (v12 ACTIVE RESTORE)
   ============================================= */

:root {
  --cg-page-base: #f7f4f5;
  --cg-page-warm: #fff8f8;
  --cg-page-cool: #eef1f4;
  --cg-paper-speckle:
    radial-gradient(circle at 18% 24%, rgba(11, 11, 13, 0.035) 0 0.7px, transparent 0.95px),
    radial-gradient(circle at 76% 62%, rgba(177, 18, 38, 0.036) 0 0.72px, transparent 1px);
  --cg-surface-paper:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 249, 250, 0.94) 100%);
  --cg-surface-depth:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 5px 0 rgba(11, 11, 13, 0.035),
    0 10px 10px rgba(177, 18, 38, 0.045);
}

html,
body {
  background:
    radial-gradient(circle at 13% 5%, rgba(177, 18, 38, 0.09), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(11, 11, 13, 0.045), transparent 28rem),
    linear-gradient(180deg, var(--cg-page-warm) 0%, var(--cg-page-base) 42%, var(--cg-page-cool) 100%) !important;
}

body {
  background:
    radial-gradient(circle at 15% 8%, rgba(177, 18, 38, 0.095), transparent 31rem),
    radial-gradient(circle at 84% 7%, rgba(11, 11, 13, 0.045), transparent 29rem),
    linear-gradient(180deg, #fffafa 0%, #f7f4f5 40%, #eef1f4 100%) !important;
}

body::before {
  content: "" !important;
  background-image:
    var(--cg-paper-speckle),
    radial-gradient(circle at 8% 28%, rgba(177, 18, 38, 0.06), transparent 25rem),
    radial-gradient(circle at 95% 62%, rgba(177, 18, 38, 0.045), transparent 27rem),
    linear-gradient(116deg, transparent 0 58%, rgba(177, 18, 38, 0.045) 58.2% 70%, transparent 70.3% 100%) !important;
  background-size:
    26px 26px,
    34px 34px,
    auto,
    auto,
    auto !important;
  opacity: 0.72 !important;
}

body::after {
  content: none !important;
  display: none !important;
}

.navbar {
  background:
    linear-gradient(180deg, rgba(255, 252, 252, 0.96), rgba(250, 247, 248, 0.92)) !important;
  border-bottom-color: rgba(177, 18, 38, 0.13) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 7px 10px rgba(11, 11, 13, 0.055) !important;
}

.hero,
.hero.bg-block-white {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 14% 18%, rgba(177, 18, 38, 0.105), transparent 32rem),
    radial-gradient(circle at 92% 22%, rgba(11, 11, 13, 0.045), transparent 31rem),
    linear-gradient(113deg, transparent 0 54%, rgba(177, 18, 38, 0.078) 54.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #fffafa 0%, #f5f1f2 62%, #eef1f4 100%) !important;
  background-size:
    28px 28px,
    37px 37px,
    auto,
    auto,
    auto,
    auto !important;
  box-shadow:
    0 0 0 100vmax #f5f1f2,
    inset 0 -1px 0 rgba(177, 18, 38, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.bg-block-white,
.checker-section,
.faq-section,
.info-section {
  background:
    var(--cg-paper-speckle),
    linear-gradient(180deg, rgba(255, 252, 252, 0.92), rgba(248, 244, 245, 0.9)) !important;
  background-size:
    30px 30px,
    39px 39px,
    auto !important;
}

.bg-block-grey,
.reviews-section,
.timeline-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 10% 18%, rgba(177, 18, 38, 0.065), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.048), transparent 28%, rgba(11, 11, 13, 0.034) 100%),
    linear-gradient(180deg, #f8f3f4 0%, #eef1f4 100%) !important;
  background-size:
    30px 30px,
    39px 39px,
    auto,
    auto,
    auto !important;
}

section,
.bg-block-white,
.bg-block-grey,
.checker-section,
.reviews-section,
.faq-section,
.timeline-section,
.info-section {
  border-top-color: rgba(177, 18, 38, 0.06) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(11, 11, 13, 0.045) !important;
}

.glass-card,
.stat-card,
.faq-item,
.review-card,
.timeline-step,
.timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
.doc-card,
.fca-redress-banner,
.address-dropdown,
.vehicle-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 250, 250, 0.94) 100%) !important;
  border-color: rgba(11, 11, 13, 0.115) !important;
  box-shadow: var(--cg-surface-depth) !important;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 249, 0.96)) !important;
  border-color: rgba(11, 11, 13, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #f8f3f4, rgba(248, 243, 244, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #eef1f4, rgba(238, 241, 244, 0)) !important;
}

.footer {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 0%, rgba(177, 18, 38, 0.075), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.055), transparent 34%, rgba(11, 11, 13, 0.035)),
    linear-gradient(180deg, #fbf8f8, #eef1f4) !important;
  background-size:
    31px 31px,
    41px 41px,
    auto,
    auto,
    auto !important;
}

.footer-disclosure .cg-legal-link {
  color: var(--cg-red) !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.footer-disclosure .cg-legal-link:hover,
.footer-disclosure .cg-legal-link:focus-visible {
  color: var(--cg-red-hot) !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.46 !important;
    background-size:
      34px 34px,
      43px 43px,
      auto,
      auto,
      auto !important;
  }

  .hero,
  .hero.bg-block-white,
  .bg-block-white,
  .bg-block-grey,
  .checker-section,
  .reviews-section,
  .faq-section,
  .timeline-section,
  .info-section {
    background-size:
      36px 36px,
      46px 46px,
      auto,
      auto,
      auto,
      auto !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-container {
    height: 66px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo img       { height: 36px; }
  .logo-text      { font-size: 1rem; }

  .hero {
    padding-top: 3.25rem;
    padding-bottom: 2.75rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .hero-subtitle { font-size: 1rem; }
  .hero::after   { content: none; }

  .hero > .fca-redress-banner {
    min-height: 280px;
  }

  .badge {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .fca-redress-banner { padding: 1rem; }

  .hero > div[style*="display: flex"] {
    width: 100%;
    align-items: stretch;
  }

  .hero .btn { width: 100%; }

  .section-title { font-size: 1.9rem; }

  .section-header,
  .checker-section .section-header,
  .faq-section .section-header,
  .reviews-section .section-header {
    text-align: left;
  }

  .checker-section .section-title::after,
  .faq-section .section-title::after,
  .reviews-section .section-title::after {
    margin-left: 0;
    margin-right: 0;
  }

  .checker-section .section-subtitle,
  .faq-section .section-subtitle,
  .reviews-section .section-subtitle {
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number { font-size: 1.8rem; }

  .glass-card { padding: 1.35rem; }

  .checker-section .glass-card { padding-top: 1.75rem; }

  .btn-group-row { flex-direction: column; }

  .footer-grid { gap: 2rem; }

  body > .container { padding: 1.4rem; }

  body > .container .header {
    align-items: flex-start;
    gap: 1rem;
  }

  body > .container h1 { font-size: 1.95rem; }

  .doc-card {
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .logo-text {
    max-width: 188px;
    white-space: normal;
    line-height: 1;
  }

  .hero-title     { font-size: 1.95rem; }
  .section-title  { font-size: 1.65rem; }
}

/* =============================================
   PREMIUM EDITORIAL OVERRIDE (v3)
   Visual-only refinement. Existing copy and content stay untouched.
   ============================================= */

:root {
  --cg-paper: #fffdfa;
  --cg-paper-cool: #f7f8f6;
  --cg-steel: #2e333b;
  --cg-hairline: rgba(11, 11, 13, 0.115);
  --cg-hairline-red: rgba(177, 18, 38, 0.24);
  --cg-shadow-paper: 0 18px 45px rgba(11, 11, 13, 0.105), 0 2px 0 rgba(255, 255, 255, 0.95) inset;
  --cg-shadow-float: 0 28px 70px rgba(11, 11, 13, 0.15), 0 14px 34px rgba(177, 18, 38, 0.08);
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
}

html {
  background: var(--cg-paper-cool);
}

body {
  position: relative;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(11, 11, 13, 0.024) 1px, transparent 1px) 0 0 / 44px 44px,
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(177, 18, 38, 0.025) 18px 19px, transparent 19px 40px),
    linear-gradient(180deg, #ffffff 0%, #f5f6f4 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.12) 44%, rgba(255, 255, 255, 0.68) 100%),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(11, 11, 13, 0.028) 120px 121px);
}

#root,
body > .container {
  position: relative;
  z-index: 1;
}

.navbar {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 11, 13, 0.10);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 34px rgba(11, 11, 13, 0.075);
}

.navbar::before {
  height: 4px;
  background:
    linear-gradient(90deg, var(--cg-black) 0 18%, var(--cg-red) 18% 62%, var(--cg-black) 62% 100%);
  background-size: 190% 100%;
  animation: stripe-shimmer 7s linear infinite;
}

.nav-container {
  height: 74px;
}

.nav-links {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 10px 30px rgba(11, 11, 13, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.nav-link {
  border-radius: 6px;
  font-weight: 760;
}

.logo img {
  filter: drop-shadow(0 8px 12px rgba(11, 11, 13, 0.12));
}

.logo-text {
  color: var(--cg-black);
  font-weight: 900;
}

.hero {
  isolation: isolate;
  max-width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding-top: clamp(2.2rem, 4vw, 3.25rem);
  padding-bottom: clamp(1.8rem, 3.6vw, 2.5rem);
  column-gap: clamp(2.5rem, 5vw, 4.75rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 253, 250, 0.95) 100%),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(11, 11, 13, 0.028) 26px 27px),
    var(--cg-paper);
  box-shadow:
    0 1px 0 rgba(11, 11, 13, 0.055),
    0 0 0 100vmax rgba(255, 255, 255, 0.43);
  clip-path: inset(0 -100vmax);
}

.hero::before {
  inset: 1.35rem auto 1.35rem -1rem;
  width: 6px;
  height: auto;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cg-black), var(--cg-red) 42%, var(--cg-black));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75), 0 18px 35px rgba(177, 18, 38, 0.28);
}

.hero::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: -1.75rem;
  bottom: 1.6rem;
  width: min(46%, 520px);
  z-index: -1;
  border: 1px solid rgba(177, 18, 38, 0.11);
  background:
    repeating-linear-gradient(115deg, rgba(177, 18, 38, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(11, 11, 13, 0.035), transparent 48%);
  transform: skewX(-8deg);
  opacity: 0.76;
}

.badge {
  border-radius: 7px;
  border-color: rgba(11, 11, 13, 0.12);
  background: linear-gradient(135deg, var(--cg-black), #24242a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 11, 13, 0.15), inset 3px 0 0 var(--cg-red);
  text-transform: uppercase;
}

.badge-pulse {
  background: var(--cg-red-bright);
}

.hero-title {
  max-width: 780px;
  font-size: clamp(2.75rem, 4.75vw, 4.35rem);
  line-height: 0.99;
  font-weight: 900;
  text-wrap: balance;
}

.hero-title .text-gradient-title {
  background: linear-gradient(135deg, #9c0e20 0%, var(--cg-red-bright) 46%, #6d0714 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  filter: drop-shadow(0 8px 15px rgba(177, 18, 38, 0.16));
}

.hero-subtitle {
  max-width: 690px;
  padding-left: 1rem;
  border-left: 3px solid rgba(177, 18, 38, 0.48);
  color: #36363c;
  font-size: 1.08rem;
}

.hero > div[style*="display: flex"] {
  gap: 0.85rem !important;
}

.btn {
  min-height: 46px;
  border-radius: 8px;
  font-weight: 820;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #8f0e1f 0%, var(--cg-red) 45%, #ee233d 100%);
  box-shadow: 0 16px 34px rgba(177, 18, 38, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #710918 0%, #b11226 52%, #d71932 100%);
  box-shadow: 0 22px 44px rgba(177, 18, 38, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
  border-color: rgba(11, 11, 13, 0.16);
  box-shadow: 0 12px 28px rgba(11, 11, 13, 0.07);
}

.fca-redress-banner {
  min-height: 350px;
  padding: 1.35rem 1.45rem 1.45rem;
  border-color: rgba(11, 11, 13, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 253, 250, 0.98) 100%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(11, 11, 13, 0.052) 27px 28px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(177, 18, 38, 0.048) 34px 35px);
  box-shadow:
    var(--cg-shadow-float),
    -14px 14px 0 rgba(11, 11, 13, 0.035),
    -26px 26px 0 rgba(177, 18, 38, 0.045);
}

.fca-redress-banner::before {
  width: 148px;
  height: 88px;
  margin-bottom: 0.15rem;
  filter: drop-shadow(0 12px 18px rgba(11, 11, 13, 0.14));
}

.fca-redress-banner::after {
  height: 5px;
  background: linear-gradient(90deg, var(--cg-red) 0 36%, var(--cg-black) 36% 100%);
}

.fca-redress-banner:hover {
  box-shadow:
    0 34px 75px rgba(11, 11, 13, 0.17),
    0 18px 38px rgba(177, 18, 38, 0.11),
    -14px 14px 0 rgba(11, 11, 13, 0.04),
    -26px 26px 0 rgba(177, 18, 38, 0.055);
}

.fca-banner-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--cg-black);
  box-shadow: 0 16px 28px rgba(11, 11, 13, 0.20);
}

.fca-banner-text {
  padding: 0.8rem 0 0.8rem 1rem;
  border: 0;
  border-left: 3px solid var(--cg-red);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3f3f46;
}

.stats-grid {
  gap: 0.95rem;
  margin-top: 0.4rem;
}

.stat-card {
  padding: 1.1rem 1.25rem 1rem;
  border-color: rgba(11, 11, 13, 0.12);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%) !important;
  box-shadow: 0 12px 28px rgba(11, 11, 13, 0.075);
}

.stat-card::before {
  inset: 0 0 auto 0;
  width: auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--cg-black), var(--cg-red), var(--cg-black));
}

.stat-card::after {
  background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(177, 18, 38, 0.055) 10px 11px, transparent 11px 20px);
  opacity: 0;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-number {
  color: var(--cg-black);
  font-size: 2rem;
  font-weight: 900;
}

.stat-card:hover .stat-number {
  color: var(--cg-red);
}

.stat-label {
  color: #575761;
  font-weight: 820;
}

.bg-block-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 253, 250, 0.92) 100%) !important;
}

.bg-block-grey {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.032) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(11, 11, 13, 0.024) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, #eff0ed 0%, #f7f7f4 100%) !important;
}

.info-section,
.timeline-section,
.checker-section,
.reviews-section,
.faq-section {
  position: relative;
  padding-top: clamp(4.5rem, 8vw, 6.25rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.25rem);
  box-shadow: inset 0 1px 0 rgba(11, 11, 13, 0.055);
}

.section-title {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 900;
  text-wrap: balance;
}

.section-title::after {
  height: 4px;
  background: linear-gradient(90deg, var(--cg-black), var(--cg-red));
}

.section-subtitle {
  color: #4d4d55;
  font-size: 1.04rem;
}

.glass-card,
.faq-item,
.review-card,
.timeline-step,
.doc-card {
  border-radius: 8px !important;
  border-color: rgba(11, 11, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 253, 250, 0.98) 100%) !important;
  box-shadow: var(--cg-shadow-paper);
}

.glass-card:hover,
.timeline-step:hover,
.review-card:hover,
.faq-item:hover {
  border-color: rgba(177, 18, 38, 0.28);
  box-shadow: var(--cg-shadow-float);
}

.info-card {
  min-height: 255px;
  border-top: 0;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cg-black), var(--cg-red));
}

.icon-box {
  border-radius: 8px;
  border-color: rgba(11, 11, 13, 0.12);
  background: var(--cg-black);
  color: #fff;
  box-shadow: 0 14px 26px rgba(11, 11, 13, 0.16);
}

.info-card:hover .icon-box {
  background: var(--cg-red);
  transform: translateY(-2px) rotate(-3deg);
}

.timeline-step {
  border-top: 0;
  padding-top: 3rem;
  overflow: visible;
}

.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--cg-red), var(--cg-black));
}

.step-num {
  left: 1.35rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cg-black), #2d2d33);
}

.timeline-v {
  border-left-color: rgba(177, 18, 38, 0.34);
}

.timeline-v-item {
  border-radius: 8px;
}

.checker-section .glass-card {
  max-width: 880px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 250, 0.98) 100%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(11, 11, 13, 0.035) 34px 35px) !important;
  box-shadow: 0 32px 78px rgba(11, 11, 13, 0.15), 0 18px 36px rgba(177, 18, 38, 0.075);
}

.checker-section .glass-card::before {
  height: 6px;
  background: linear-gradient(90deg, var(--cg-black) 0 26%, var(--cg-red) 26% 72%, var(--cg-black) 72% 100%);
}

.step-circle {
  border-radius: 8px;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  border-radius: 8px;
  border-color: rgba(11, 11, 13, 0.14);
}

.selector-btn.selected,
.form-input:focus,
.form-select:focus {
  box-shadow: 0 0 0 4px rgba(177, 18, 38, 0.10), 0 12px 24px rgba(11, 11, 13, 0.055);
}

.faq-question {
  font-weight: 820;
}

.faq-item.active {
  border-color: rgba(177, 18, 38, 0.34);
}

.reviews-ticker-track {
  animation-duration: 42s;
}

.review-card {
  border-top: 0;
  min-height: 230px;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cg-red), var(--cg-black));
}

.review-verified {
  border-radius: 6px;
}

.footer {
  border-top: 4px solid var(--cg-red);
  background:
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, 0.026) 70px 71px),
    linear-gradient(180deg, #111114 0%, #08080a 100%);
  color: #d9d9de;
}

.footer::before {
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.16), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.045));
}

.footer .logo-text,
.footer-links-title {
  color: #ffffff;
}

.footer-link,
.footer-disclosure {
  color: #cacad1;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
  color: #a7a7ae;
}

@media (max-width: 1024px) {
  .hero {
    max-width: min(780px, calc(100% - 2rem));
  }

  .hero::after {
    width: 72%;
    right: -18%;
    opacity: 0.34;
  }

  .hero > .fca-redress-banner {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.7;
  }

  .hero {
    max-width: calc(100% - 2rem);
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .hero::before {
    left: -0.55rem;
    width: 4px;
  }

  .hero::after {
    top: 0.75rem;
    right: -42%;
    width: 100%;
    opacity: 0.22;
  }

  .hero-title {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-subtitle {
    padding-left: 0.8rem;
    font-size: 0.98rem;
  }

  .badge {
    max-width: 100%;
    align-items: flex-start;
  }

  .fca-redress-banner {
    padding: 1.15rem;
    box-shadow:
      0 20px 46px rgba(11, 11, 13, 0.13),
      -8px 8px 0 rgba(177, 18, 38, 0.04);
  }

  .fca-redress-banner::before {
    width: 118px;
    height: 70px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero {
    max-width: calc(100% - 1.25rem);
  }

  .hero-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* =============================================
   PREMIUM AUTHORITY REFRESH (v4)
   Visual-only: same markup, copy, and content.
   Direction: regulated, document-led, red/black Claimgrid authority.
   ============================================= */

:root {
  --cg-surface: #ffffff;
  --cg-surface-2: #f4f5f7;
  --cg-surface-3: #eceef1;
  --cg-ink-soft: #23242a;
  --cg-copy: #3b3d45;
  --cg-copy-muted: #5f626d;
  --cg-red-hot: #e21b38;
  --cg-focus: rgba(177, 18, 38, 0.28);
  --cg-rule: rgba(11, 11, 13, 0.12);
  --cg-rule-strong: rgba(11, 11, 13, 0.22);
  --cg-dark-rule: rgba(255, 255, 255, 0.16);
  --cg-tight-shadow: 0 8px 8px rgba(11, 11, 13, 0.08);
  --cg-lift-shadow: 0 8px 8px rgba(177, 18, 38, 0.10);
  --cg-hero-shadow: 0 28px 70px rgba(11, 11, 13, 0.20);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
}

html {
  background: var(--cg-surface-2);
  overflow-x: hidden;
}

body {
  color: var(--cg-ink);
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.045) 0%, transparent 16%, transparent 84%, rgba(11, 11, 13, 0.035) 100%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 38%, #f5f6f8 100%) !important;
  background-attachment: scroll !important;
}

body::before {
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.05), transparent 24%, transparent 76%, rgba(11, 11, 13, 0.035)) !important;
}

body::after {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 5px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--cg-black), var(--cg-red), var(--cg-black));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p,
li,
.section-subtitle,
.info-card-text,
.timeline-desc,
.review-text,
.faq-answer,
.footer-disclosure {
  text-wrap: pretty;
}

.text-gradient-title,
.hero-title .text-gradient-title,
.section-title.text-gradient-title {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
}

.section-title.text-gradient-title {
  color: var(--cg-black) !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(11, 11, 13, 0.10);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.90), 0 8px 8px rgba(11, 11, 13, 0.06) !important;
}

.navbar::before {
  height: 2px;
  background: linear-gradient(90deg, var(--cg-black) 0 30%, var(--cg-red) 30% 70%, var(--cg-black) 70% 100%) !important;
  animation: cg-redline 7s var(--ease-out) infinite alternate !important;
}

@keyframes cg-redline {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.nav-container {
  height: 72px;
}

.nav-links {
  gap: 0.15rem;
  border: 1px solid rgba(11, 11, 13, 0.10);
  background: #fff;
  box-shadow: none;
}

.nav-link {
  color: rgba(21, 21, 24, 0.72);
  font-weight: 760;
}

.nav-link:hover {
  color: var(--cg-red);
  background: rgba(177, 18, 38, 0.06);
}

.nav-link::before,
.nav-link::after {
  content: none !important;
}

.mobile-menu-toggle {
  min-width: 44px;
  min-height: 44px;
  box-shadow: none;
}

.hero {
  isolation: isolate;
  max-width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
  column-gap: clamp(2.25rem, 5vw, 5rem);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(122deg, rgba(177, 18, 38, 0.22) 0%, rgba(177, 18, 38, 0.06) 34%, transparent 54%),
    linear-gradient(106deg, #070708 0%, #101116 58%, #26060d 100%) !important;
  box-shadow: 0 0 0 100vmax #070708, var(--cg-hero-shadow) !important;
  clip-path: inset(0 -100vmax);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.25rem 0 auto;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(226, 27, 56, 0.60), transparent);
  box-shadow: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7%;
  bottom: 0;
  z-index: -1;
  width: min(42%, 520px);
  border: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.09) 42%, rgba(226, 27, 56, 0.17) 43%, rgba(226, 27, 56, 0.07) 100%);
  transform: skewX(-10deg);
  opacity: 0.9;
}

.hero-title {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.75rem, 4.7vw, 4.15rem);
  line-height: 0.98;
  font-weight: 900;
  overflow-wrap: break-word;
}

.hero-title .text-gradient-title {
  color: #ff4a62 !important;
}

.hero-subtitle {
  max-width: 670px;
  overflow-wrap: break-word;
  padding-left: 0;
  border-left: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.hero-subtitle strong {
  color: #ffffff;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  text-transform: none !important;
}

.badge-pulse {
  background: var(--cg-red-hot);
}

.hero > div[style*="display: flex"] {
  justify-content: flex-start !important;
}

.btn {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 820;
  cursor: pointer;
  transform: translateZ(0);
}

.btn-primary {
  border: 0 !important;
  background: linear-gradient(135deg, var(--cg-red-deep) 0%, var(--cg-red) 54%, var(--cg-red-hot) 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 8px rgba(177, 18, 38, 0.24) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #780817 0%, var(--cg-red) 58%, #f02b47 100%) !important;
  box-shadow: 0 8px 8px rgba(177, 18, 38, 0.30) !important;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(11, 11, 13, 0.18);
  background: #ffffff;
  color: var(--cg-black);
  box-shadow: none;
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.44);
}

.fca-redress-banner {
  min-height: 360px;
  align-self: start;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 0 !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34), 0 8px 8px rgba(177, 18, 38, 0.14) !important;
  color: var(--cg-ink);
}

.fca-redress-banner::before {
  width: 156px;
  height: 96px;
  filter: drop-shadow(0 8px 8px rgba(11, 11, 13, 0.14));
}

.fca-redress-banner::after {
  height: 4px;
  background: linear-gradient(90deg, var(--cg-red) 0 42%, var(--cg-black) 42% 100%) !important;
  animation: none !important;
}

.fca-redress-banner:hover {
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.38), 0 8px 8px rgba(177, 18, 38, 0.18) !important;
  transform: translateY(-3px);
}

.fca-banner-icon {
  background: var(--cg-black);
  box-shadow: none;
}

.fca-banner-text {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 1rem;
  border: 1px solid rgba(11, 11, 13, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #333640;
  box-shadow: none;
}

.stats-grid {
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.stat-card,
.stat-card[style] {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  color: #fff;
}

.stat-card::before,
.stat-card::after {
  content: none !important;
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

.stat-number,
.stat-card[style] .stat-number,
.stat-card .stat-number[style] {
  color: #fff !important;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 900;
}

.stat-label,
.stat-card[style] .stat-label {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.78rem;
  font-weight: 780 !important;
  text-transform: none;
}

.bg-block-white {
  background: #ffffff !important;
}

.hero.bg-block-white {
  background:
    linear-gradient(122deg, rgba(177, 18, 38, 0.22) 0%, rgba(177, 18, 38, 0.06) 34%, transparent 54%),
    linear-gradient(106deg, #070708 0%, #101116 58%, #26060d 100%) !important;
}

.bg-block-grey {
  background: linear-gradient(180deg, #f1f3f5 0%, #f7f8fa 100%) !important;
}

.info-section,
.timeline-section,
.checker-section,
.reviews-section,
.faq-section {
  padding-top: clamp(4.5rem, 8vw, 6.75rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.75rem);
  box-shadow: inset 0 1px 0 rgba(11, 11, 13, 0.06);
}

.section-header {
  max-width: 780px;
}

.section-title {
  color: var(--cg-black);
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  line-height: 1.05;
}

.section-title::after {
  width: 74px !important;
  height: 3px;
  background: var(--cg-red) !important;
  animation: none !important;
}

.section-subtitle {
  color: var(--cg-copy-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.glass-card,
.faq-item,
.review-card,
.timeline-step,
.doc-card {
  border: 1px solid rgba(11, 11, 13, 0.11) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.glass-card:hover,
.timeline-step:hover,
.review-card:hover,
.faq-item:hover,
.doc-card:hover {
  border-color: rgba(177, 18, 38, 0.28) !important;
  box-shadow: var(--cg-tight-shadow) !important;
  transform: translateY(-3px);
}

.info-card {
  min-height: 252px;
  border-top: 1px solid rgba(11, 11, 13, 0.11) !important;
}

.info-card::before {
  content: none !important;
}

.icon-box {
  border: 0;
  background: var(--cg-black);
  color: #fff;
  box-shadow: none;
}

.info-card:hover .icon-box {
  background: var(--cg-red);
  box-shadow: none;
  transform: translateY(-2px);
}

.info-card-title,
.timeline-title,
.review-author,
.footer-links-title {
  color: var(--cg-black);
}

.info-card-text,
.timeline-desc,
.review-text,
.faq-answer {
  color: var(--cg-copy);
}

.timeline-step {
  padding-top: 2.9rem;
  overflow: visible;
}

.timeline-step::before {
  height: 2px;
  background: var(--cg-red) !important;
}

.timeline-step::after,
.review-card::after {
  content: none !important;
}

.step-num {
  border-radius: 8px;
  background: var(--cg-black) !important;
  box-shadow: none;
}

.timeline-step:hover .step-num {
  background: var(--cg-red) !important;
  transform: translateY(-1px);
}

.timeline-v {
  border-left-color: rgba(177, 18, 38, 0.34);
}

.timeline-v-item {
  border: 1px solid rgba(11, 11, 13, 0.10);
  background: #fff;
  box-shadow: none;
}

.timeline-v-item:hover {
  border-color: rgba(177, 18, 38, 0.24);
  box-shadow: none;
}

.timeline-v-item > div[style*="border-radius:50%"],
.timeline-v-item > div[style*="border-radius: 50%"] {
  background-color: var(--cg-black) !important;
  border-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(177, 18, 38, 0.18) !important;
}

.checker-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%) !important;
}

.checker-section .glass-card {
  border: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 28px 62px rgba(11, 11, 13, 0.14) !important;
}

.checker-section .glass-card::before {
  height: 4px;
  background: linear-gradient(90deg, var(--cg-black) 0 26%, var(--cg-red) 26% 74%, var(--cg-black) 74% 100%) !important;
  animation: none !important;
}

.steps-line {
  background: rgba(11, 11, 13, 0.12);
}

.steps-line-fill {
  background: var(--cg-red);
}

.step-circle {
  border-radius: 8px;
  border-color: rgba(11, 11, 13, 0.18);
  box-shadow: none;
}

.step-circle.active {
  border-color: var(--cg-red);
  color: var(--cg-red);
  box-shadow: 0 0 0 4px rgba(177, 18, 38, 0.10);
}

.step-circle.completed {
  border-color: var(--cg-red);
  background: var(--cg-red);
  box-shadow: none;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  border: 1px solid rgba(11, 11, 13, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.selector-btn:hover {
  border-color: rgba(11, 11, 13, 0.28);
  background: #f7f8fa;
}

.selector-btn.selected,
.form-input:focus,
.form-select:focus {
  border-color: var(--cg-red);
  box-shadow: 0 0 0 4px rgba(177, 18, 38, 0.10);
}

.faq-list {
  gap: 0.75rem;
}

.faq-question {
  min-height: 56px;
}

.reviews-section {
  background:
    linear-gradient(120deg, #08080a 0%, #111116 58%, #21070c 100%) !important;
  color: #fff;
}

.reviews-section .section-title,
.reviews-section .section-title.text-gradient-title {
  color: #fff !important;
}

.reviews-section .section-subtitle {
  color: rgba(255, 255, 255, 0.70);
}

.reviews-section .section-title::after {
  background: var(--cg-red-hot) !important;
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #08080a, rgba(8, 8, 10, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #21070c, rgba(33, 7, 12, 0)) !important;
}

.review-card {
  min-height: 226px;
  border: 0 !important;
  box-shadow: none !important;
}

.review-card::before {
  height: 3px;
  background: var(--cg-red) !important;
}

.review-verified {
  border: 1px solid rgba(15, 122, 59, 0.18);
  background: rgba(15, 122, 59, 0.08);
}

.footer {
  border-top: 3px solid var(--cg-red);
  background: linear-gradient(180deg, #111114 0%, #08080a 100%) !important;
  color: #dfe0e5;
}

.footer::before {
  background: linear-gradient(90deg, rgba(177, 18, 38, 0.13), transparent 44%, rgba(255, 255, 255, 0.04)) !important;
}

.footer .logo-text,
.footer-links-title {
  color: #fff;
}

.footer-link,
.footer-disclosure {
  color: #c9cad1;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
  color: #aeb0b8;
}

.floating-mobile-cta .btn {
  box-shadow: 0 8px 8px rgba(177, 18, 38, 0.28) !important;
}

body > .container {
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 8px rgba(11, 11, 13, 0.08);
}

body > .container h2 {
  border-left-width: 1px;
}

.btn:focus-visible,
.nav-link:focus-visible,
.mobile-menu-toggle:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.selector-btn:focus-visible,
.faq-question:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cg-focus) !important;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero {
    max-width: min(820px, calc(100% - 2rem));
  }

  .hero::after {
    right: -22%;
    width: 80%;
    opacity: 0.45;
  }

  .hero > .fca-redress-banner {
    grid-row: 4;
  }

  .hero > div[style*="display: flex"] {
    grid-row: 5;
  }

  .hero > .stats-grid {
    grid-row: 6;
  }
}

@media (max-width: 768px) {
  body::after {
    width: 3px;
  }

  .nav-container {
    height: 66px;
  }

  .hero {
    max-width: calc(100% - 1.5rem);
    padding-top: 2.4rem;
    padding-bottom: 2.35rem;
  }

  .hero::before {
    top: 0.95rem;
  }

  .hero::after {
    right: -56%;
    width: 120%;
    opacity: 0.30;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8.2vw, 2.32rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero > div[style*="display: flex"] {
    width: 100%;
  }

  .hero .btn {
    width: 100%;
  }

  .fca-redress-banner {
    min-height: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.1rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26) !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1rem 1.1rem;
  }

  .section-header,
  .checker-section .section-header,
  .faq-section .section-header,
  .reviews-section .section-header {
    text-align: left;
  }

  .checker-section .section-title::after,
  .faq-section .section-title::after,
  .reviews-section .section-title::after {
    margin-left: 0;
    margin-right: 0;
  }

  .checker-section .section-subtitle,
  .faq-section .section-subtitle,
  .reviews-section .section-subtitle {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .hero {
    max-width: calc(100% - 1rem);
  }

  .hero-title {
    font-size: 1.98rem;
  }

  .badge {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar::before,
  .badge,
  .badge-pulse,
  .reviews-ticker-track {
    animation: none !important;
  }
}

/* =============================================
   LIGHT LEDGER REFRESH (v5)
   Final visual layer: light theme, Claimgrid red/black authority,
   stronger hover/click feedback, no public content changes.
   ============================================= */

:root {
  --cg-page: #f6f7f9;
  --cg-page-warm: #fbfbfc;
  --cg-sheet: #ffffff;
  --cg-sheet-2: #f1f3f6;
  --cg-ink: #101115;
  --cg-copy: #30323a;
  --cg-copy-muted: #565b66;
  --cg-border: rgba(11, 11, 13, 0.13);
  --cg-border-strong: rgba(11, 11, 13, 0.22);
  --cg-red: #b11226;
  --cg-red-hot: #df1734;
  --cg-red-soft: rgba(177, 18, 38, 0.075);
  --cg-red-wash: rgba(177, 18, 38, 0.12);
  --cg-focus: rgba(177, 18, 38, 0.34);
  --cg-shadow-tight: 0 8px 8px rgba(11, 11, 13, 0.08);
  --cg-shadow-red: 0 8px 8px rgba(177, 18, 38, 0.18);
  --cg-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
  background: var(--cg-page) !important;
}

body {
  color: var(--cg-ink);
  background:
    linear-gradient(112deg, rgba(177, 18, 38, 0.08) 0%, transparent 18%, transparent 72%, rgba(11, 11, 13, 0.045) 100%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 45%, #ffffff 100%) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(122deg, transparent 0 62%, rgba(177, 18, 38, 0.065) 62.2% 73%, transparent 73.2% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.42));
}

body::after {
  display: none !important;
}

#root,
body > .container {
  position: relative;
  z-index: 1;
}

.navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(11, 11, 13, 0.10);
  box-shadow: 0 1px 0 #fff, 0 8px 8px rgba(11, 11, 13, 0.055) !important;
}

.navbar::before {
  height: 3px;
  background: linear-gradient(90deg, var(--cg-black) 0 18%, var(--cg-red) 18% 68%, var(--cg-black) 68% 100%) !important;
}

.nav-links {
  border-color: rgba(11, 11, 13, 0.11);
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(11, 11, 13, 0.06);
}

.nav-link {
  color: #30333a;
  transition:
    color 0.22s var(--cg-ease),
    background-color 0.22s var(--cg-ease),
    transform 0.22s var(--cg-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--cg-red);
  background: rgba(177, 18, 38, 0.07);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  background: #fff;
  border-color: rgba(11, 11, 13, 0.16);
}

.hero,
.hero.bg-block-white {
  color: var(--cg-ink);
  background:
    linear-gradient(113deg, transparent 0 54%, rgba(177, 18, 38, 0.08) 54.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
  box-shadow: 0 0 0 100vmax #f7f8fa, 0 1px 0 rgba(11, 11, 13, 0.08) !important;
  clip-path: inset(0 -100vmax);
  overflow: hidden;
}

.hero::before {
  inset: 1.25rem 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cg-red), rgba(177, 18, 38, 0.24), transparent) !important;
}

.hero::after {
  top: auto;
  right: clamp(-5rem, -7vw, -2rem);
  bottom: -18%;
  width: min(40vw, 520px);
  height: 76%;
  border: 1px solid rgba(177, 18, 38, 0.10);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.10), rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 243, 246, 0.72));
  transform: skewX(-11deg);
  opacity: 1;
}

.badge {
  border: 1px solid rgba(177, 18, 38, 0.20);
  background: #fff;
  color: var(--cg-red);
  box-shadow: inset 0 -1px 0 rgba(177, 18, 38, 0.09);
}

.badge:hover {
  border-color: rgba(177, 18, 38, 0.38);
  transform: translateY(-2px);
}

.hero-title {
  color: var(--cg-black);
  font-size: clamp(2.75rem, 4.8vw, 4.35rem);
  line-height: 1.01;
}

.hero-title .text-gradient-title {
  color: var(--cg-red-hot) !important;
}

.hero-subtitle {
  color: var(--cg-copy);
}

.hero-subtitle strong {
  color: var(--cg-black);
}

.btn {
  isolation: isolate;
  border-radius: 8px;
  min-height: 48px;
  box-shadow: none !important;
  transition:
    transform 0.22s var(--cg-ease),
    box-shadow 0.22s var(--cg-ease),
    border-color 0.22s var(--cg-ease),
    background-color 0.22s var(--cg-ease),
    color 0.22s var(--cg-ease);
  touch-action: manipulation;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--cg-x, 50%) var(--cg-y, 50%), rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.24s var(--cg-ease), transform 0.24s var(--cg-ease);
}

.btn:hover::after,
.btn:focus-visible::after,
.btn.cg-pressed::after {
  opacity: 1;
  transform: scale(1);
}

.btn-primary {
  background: var(--cg-red) !important;
  color: #fff !important;
  border: 1px solid var(--cg-red) !important;
  box-shadow: 0 4px 0 #7d0a18, var(--cg-shadow-red) !important;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cg-red-hot) !important;
  border-color: var(--cg-red-hot) !important;
  box-shadow: 0 6px 0 #7d0a18, 0 8px 8px rgba(177, 18, 38, 0.24) !important;
  transform: translateY(-3px);
}

.btn-secondary,
.hero .btn-secondary {
  background: #fff !important;
  color: var(--cg-black) !important;
  border: 1px solid rgba(11, 11, 13, 0.22) !important;
  box-shadow: 0 4px 0 rgba(11, 11, 13, 0.12) !important;
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  color: var(--cg-red) !important;
  border-color: rgba(177, 18, 38, 0.42) !important;
  background: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(177, 18, 38, 0.14), var(--cg-shadow-tight) !important;
}

.btn:active,
.btn.cg-pressed {
  transform: translateY(1px) scale(0.985) !important;
  box-shadow: 0 1px 0 rgba(11, 11, 13, 0.18) !important;
}

.fca-redress-banner {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%) !important;
  color: var(--cg-ink);
  border: 1px solid rgba(11, 11, 13, 0.13) !important;
  box-shadow: 0 8px 8px rgba(11, 11, 13, 0.08) !important;
}

.fca-redress-banner:hover,
.fca-redress-banner:focus-within,
.fca-redress-banner.cg-pressed {
  border-color: rgba(177, 18, 38, 0.28) !important;
  box-shadow: 0 8px 8px rgba(177, 18, 38, 0.13) !important;
  transform: translateY(-4px);
}

.fca-redress-banner::after {
  height: 4px;
  background: linear-gradient(90deg, var(--cg-red) 0 40%, var(--cg-black) 40% 100%) !important;
}

.fca-banner-icon {
  background: var(--cg-black);
}

.fca-redress-banner:hover .fca-banner-icon,
.fca-redress-banner.cg-pressed .fca-banner-icon {
  background: var(--cg-red);
  transform: translateY(-2px) scale(1.04);
}

.fca-banner-text {
  background: #fff;
  color: var(--cg-copy);
  border-color: rgba(11, 11, 13, 0.12);
}

.stats-grid {
  align-items: stretch;
}

.stat-card,
.stat-card[style] {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
  border: 1px solid rgba(11, 11, 13, 0.12) !important;
  color: var(--cg-ink);
  box-shadow: none !important;
}

.stat-card:hover,
.stat-card:focus-within,
.stat-card.cg-pressed {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(177, 18, 38, 0.055) 100%) !important;
  border-color: rgba(177, 18, 38, 0.32) !important;
  box-shadow: var(--cg-shadow-tight) !important;
  transform: translateY(-4px);
}

.stat-number,
.stat-card[style] .stat-number,
.stat-card .stat-number[style] {
  color: var(--cg-black) !important;
}

.stat-card:hover .stat-number,
.stat-card.cg-pressed .stat-number {
  color: var(--cg-red) !important;
}

.stat-label,
.stat-card[style] .stat-label {
  color: var(--cg-copy-muted) !important;
}

.bg-block-white,
.bg-block-grey,
.checker-section,
.reviews-section,
.faq-section,
.timeline-section,
.info-section {
  background: #fff !important;
}

.bg-block-grey,
.reviews-section {
  background:
    linear-gradient(112deg, rgba(177, 18, 38, 0.045), transparent 26%, transparent 72%, rgba(11, 11, 13, 0.035)),
    linear-gradient(180deg, #f3f5f7 0%, #ffffff 100%) !important;
}

.section-title,
.reviews-section .section-title,
.reviews-section .section-title.text-gradient-title {
  color: var(--cg-black) !important;
}

.section-subtitle,
.reviews-section .section-subtitle {
  color: var(--cg-copy-muted) !important;
}

.glass-card,
.faq-item,
.review-card,
.timeline-step,
.doc-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%) !important;
  border: 1px solid rgba(11, 11, 13, 0.12) !important;
  box-shadow: none !important;
}

.glass-card:hover,
.glass-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.review-card:hover,
.review-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.doc-card:hover,
.doc-card:focus-within,
.glass-card.cg-pressed,
.timeline-step.cg-pressed,
.review-card.cg-pressed,
.faq-item.cg-pressed,
.doc-card.cg-pressed {
  border-color: rgba(177, 18, 38, 0.34) !important;
  box-shadow: var(--cg-shadow-tight) !important;
  transform: translateY(-4px);
}

.icon-box,
.step-num {
  transition:
    background-color 0.22s var(--cg-ease),
    transform 0.22s var(--cg-ease),
    color 0.22s var(--cg-ease);
}

.timeline-v-item:hover,
.timeline-v-item.cg-pressed {
  border-color: rgba(177, 18, 38, 0.30);
  transform: translateX(4px);
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background: #fff;
  transition:
    border-color 0.2s var(--cg-ease),
    box-shadow 0.2s var(--cg-ease),
    background-color 0.2s var(--cg-ease),
    transform 0.2s var(--cg-ease);
}

.selector-btn:hover,
.selector-btn:focus-visible {
  border-color: rgba(177, 18, 38, 0.38);
  background: rgba(177, 18, 38, 0.045);
  transform: translateY(-2px);
}

.selector-btn:active,
.selector-btn.cg-pressed {
  transform: translateY(0) scale(0.99);
}

.form-input:hover,
.form-select:hover,
.sig-pad-container:hover,
.address-dropdown-container:hover {
  border-color: rgba(11, 11, 13, 0.28);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--cg-red);
  box-shadow: 0 0 0 4px rgba(177, 18, 38, 0.10);
}

.faq-question:hover {
  color: var(--cg-red);
}

.review-card {
  color: var(--cg-ink);
}

.review-rating {
  color: var(--cg-red);
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #f3f5f7, rgba(243, 245, 247, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) !important;
}

.footer {
  background:
    linear-gradient(112deg, rgba(177, 18, 38, 0.045), transparent 34%, rgba(11, 11, 13, 0.035)),
    #ffffff !important;
  color: var(--cg-copy);
  border-top: 3px solid var(--cg-red);
}

.footer::before {
  background: none !important;
}

.footer .logo-text,
.footer-links-title {
  color: var(--cg-black) !important;
}

.footer-link,
.footer-disclosure {
  color: var(--cg-copy-muted) !important;
}

.footer-link:hover {
  color: var(--cg-red) !important;
}

.footer-bottom {
  border-color: rgba(11, 11, 13, 0.12);
  color: var(--cg-copy-muted);
}

.floating-mobile-cta .btn {
  box-shadow: 0 4px 0 #7d0a18, var(--cg-shadow-red) !important;
}

.cg-reactive {
  will-change: transform;
}

.cg-reactive.cg-pressed {
  animation: cg-press-pop 0.34s var(--cg-ease);
}

@keyframes cg-press-pop {
  0% { transform: translateY(0) scale(1); }
  42% { transform: translateY(1px) scale(0.985); }
  100% { transform: translateY(0) scale(1); }
}

.cg-floating-pop {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  max-width: min(260px, calc(100vw - 2rem));
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  background: var(--cg-black);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 8px 8px rgba(11, 11, 13, 0.20);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cg-pop-x, 0), var(--cg-pop-y, 0), 0) translateY(8px) scale(0.96);
  transition: opacity 0.18s var(--cg-ease), transform 0.18s var(--cg-ease);
}

.cg-floating-pop.is-visible {
  opacity: 1;
  transform: translate3d(var(--cg-pop-x, 0), var(--cg-pop-y, 0), 0) translateY(0) scale(1);
}

@media (max-width: 1024px) {
  .hero,
  .hero.bg-block-white {
    max-width: min(820px, calc(100% - 2rem));
  }
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.82;
  }

  .hero,
  .hero.bg-block-white {
    max-width: calc(100% - 1.25rem);
    padding-top: 2.3rem;
    padding-bottom: 2.1rem;
  }

  .hero::after {
    right: -62%;
    width: 118%;
    opacity: 0.70;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.42rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    color: #3c4049;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cg-floating-pop {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero,
  .hero.bg-block-white {
    max-width: calc(100% - 1rem);
  }

  .hero-title {
    font-size: 2.04rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-reactive,
  .cg-reactive.cg-pressed,
  .btn,
  .glass-card,
  .faq-item,
  .review-card,
  .timeline-step,
  .stat-card,
  .fca-redress-banner {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }

  .cg-floating-pop {
    display: none;
  }
}

/* =============================================
   INTERACTIVE LEGAL TIMELINE REFRESH (v6)
   ============================================= */

#timeline-section .timeline-v.cg-legal-timeline {
  --cg-progress: 100%;
  --cg-scan-y: 0px;
  position: relative !important;
  max-width: min(920px, 100%) !important;
  margin: 0 auto !important;
  padding: 1.2rem 0 1.2rem 3.35rem !important;
  border-left: 0 !important;
  isolation: isolate;
}

#timeline-section .timeline-v.cg-legal-timeline::before,
#timeline-section .timeline-v.cg-legal-timeline::after {
  content: "";
  position: absolute;
  left: 1.17rem;
  top: 1.45rem;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}

#timeline-section .timeline-v.cg-legal-timeline::before {
  bottom: 1.45rem;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.18), rgba(177, 18, 38, 0.18));
}

#timeline-section .timeline-v.cg-legal-timeline::after {
  height: var(--cg-progress);
  max-height: calc(100% - 2.9rem);
  background: linear-gradient(180deg, var(--cg-red), #0b0b0d);
  transition: height 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

#timeline-section .cg-timeline-scanner {
  position: absolute;
  left: 1.28rem;
  top: 0;
  z-index: 5;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(177, 18, 38, 0.62);
  background:
    radial-gradient(circle at center, rgba(223, 23, 52, 0.18) 0 29%, transparent 30%),
    #ffffff;
  box-shadow:
    0 0 0 7px rgba(177, 18, 38, 0.08),
    0 4px 0 rgba(11, 11, 13, 0.08);
  transform: translate(-50%, calc(var(--cg-scan-y) - 1.18rem));
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#timeline-section .timeline-v.cg-legal-timeline.is-locked .cg-timeline-scanner {
  box-shadow:
    0 0 0 9px rgba(177, 18, 38, 0.12),
    0 4px 0 rgba(11, 11, 13, 0.10);
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item {
  position: relative !important;
  margin-bottom: clamp(1rem, 2.2vw, 1.45rem) !important;
  padding: clamp(1rem, 1.8vw, 1.18rem) clamp(1rem, 2vw, 1.35rem) clamp(1rem, 1.8vw, 1.18rem) clamp(1.1rem, 2vw, 1.45rem) !important;
  min-height: 6.4rem;
  border-radius: 8px !important;
  border: 1px solid rgba(11, 11, 13, 0.13) !important;
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.045), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%) !important;
  box-shadow: 0 4px 0 rgba(11, 11, 13, 0.055) !important;
  cursor: pointer;
  touch-action: manipulation;
  overflow: hidden;
  transform: translateX(0) scale(1) !important;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:last-of-type {
  margin-bottom: 0 !important;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item::before,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item::before {
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cg-red), #0b0b0d);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item::after {
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at var(--cg-card-x, 28%) var(--cg-card-y, 38%), rgba(223, 23, 52, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(11, 11, 13, 0.035), transparent 28%);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item > * {
  position: relative;
  z-index: 1;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item > div[style*="border-radius"] {
  left: -2.82rem !important;
  top: 1.08rem !important;
  width: 1.45rem !important;
  height: 1.45rem !important;
  background-color: #0b0b0d !important;
  border: 3px solid #ffffff !important;
  box-shadow:
    0 0 0 2px rgba(177, 18, 38, 0.18),
    0 3px 0 rgba(11, 11, 13, 0.10) !important;
  z-index: 6 !important;
  transition:
    background-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item h4 {
  margin-bottom: 0.42rem !important;
  color: #101115 !important;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem) !important;
  line-height: 1.25 !important;
  text-wrap: balance;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item p {
  max-width: 72ch;
  color: #3a3f49 !important;
  font-size: 0.94rem !important;
  line-height: 1.62 !important;
  text-wrap: pretty;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.cg-pressed {
  border-color: rgba(177, 18, 38, 0.46) !important;
  box-shadow:
    0 5px 0 rgba(177, 18, 38, 0.14),
    0 0 0 1px rgba(177, 18, 38, 0.12) !important;
  transform: translateX(7px) scale(1.006) !important;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover::after,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible::after,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active::after {
  opacity: 1;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover::before,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible::before,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active::before {
  transform: scaleX(1);
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active > div[style*="border-radius"],
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover > div[style*="border-radius"],
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible > div[style*="border-radius"] {
  background-color: var(--cg-red) !important;
  box-shadow:
    0 0 0 3px rgba(177, 18, 38, 0.20),
    0 4px 0 rgba(177, 18, 38, 0.16) !important;
  transform: scale(1.08);
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active h4 {
  color: #0b0b0d !important;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active p {
  color: #242932 !important;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-before {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.025), rgba(255, 255, 255, 0) 36%),
    #ffffff !important;
}

#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-after {
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.025), rgba(255, 255, 255, 0) 38%),
    #ffffff !important;
}

@media (max-width: 768px) {
  body.cg-timeline-focus .floating-mobile-cta.visible {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(180%) !important;
    pointer-events: none;
  }

  #timeline-section {
    padding-bottom: 5.5rem !important;
  }

  #timeline-section .timeline-v.cg-legal-timeline {
    padding-left: 2.65rem !important;
    padding-right: 0.2rem !important;
  }

  #timeline-section .timeline-v.cg-legal-timeline::before,
  #timeline-section .timeline-v.cg-legal-timeline::after {
    left: 0.78rem;
  }

  #timeline-section .cg-timeline-scanner {
    left: 0.89rem;
    width: 2rem;
    height: 2rem;
    transform: translate(-50%, calc(var(--cg-scan-y) - 1rem));
  }

  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item {
    padding: 1rem 1rem 1rem 1.05rem !important;
    transform: translateX(0) scale(1) !important;
  }

  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.cg-pressed {
    transform: translateX(3px) scale(1.002) !important;
  }

  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item > div[style*="border-radius"] {
    left: -2.42rem !important;
    top: 1.1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #timeline-section .timeline-v.cg-legal-timeline,
  #timeline-section .timeline-v.cg-legal-timeline *,
  #timeline-section .cg-timeline-scanner {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }

  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active {
    transform: none !important;
  }
}

.cg-floating-pop {
  display: none !important;
}

/* =============================================
   CLAIMGRID MARK REPLACEMENT (v7)
   ============================================= */

:root {
  --cg-logo-url: url("./claimgrid-mark.png");
}

.logo img {
  height: 50px !important;
  width: auto !important;
  object-fit: contain;
}

.navbar .logo img {
  height: 52px !important;
}

.footer .logo img {
  height: 56px !important;
}

.fca-redress-banner::before {
  width: 164px !important;
  height: 114px !important;
  background-image: var(--cg-logo-url) !important;
}

@media (max-width: 768px) {
  .logo img,
  .navbar .logo img {
    height: 40px !important;
  }

  .footer .logo img {
    height: 48px !important;
  }

  .fca-redress-banner::before {
    width: 138px !important;
    height: 96px !important;
  }
}

/* =============================================
   CLAIMGRID LIGHT BRAND PAPER SURFACE (v8)
   ============================================= */

:root {
  --cg-page-base: #f7f4f5;
  --cg-page-warm: #fff8f8;
  --cg-page-cool: #eef1f4;
  --cg-paper-red: rgba(177, 18, 38, 0.058);
  --cg-paper-ink: rgba(11, 11, 13, 0.04);
  --cg-paper-line: rgba(177, 18, 38, 0.13);
  --cg-paper-speckle:
    radial-gradient(circle at 18% 24%, rgba(11, 11, 13, 0.035) 0 0.7px, transparent 0.95px),
    radial-gradient(circle at 76% 62%, rgba(177, 18, 38, 0.036) 0 0.72px, transparent 1px);
  --cg-surface-paper:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 249, 250, 0.94) 100%);
  --cg-surface-depth:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 5px 0 rgba(11, 11, 13, 0.035),
    0 10px 10px rgba(177, 18, 38, 0.045);
}

html,
body {
  background:
    radial-gradient(circle at 13% 5%, rgba(177, 18, 38, 0.09), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(11, 11, 13, 0.045), transparent 28rem),
    linear-gradient(180deg, var(--cg-page-warm) 0%, var(--cg-page-base) 42%, var(--cg-page-cool) 100%) !important;
}

body {
  color: var(--cg-ink);
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 8%, rgba(177, 18, 38, 0.095), transparent 31rem),
    radial-gradient(circle at 84% 7%, rgba(11, 11, 13, 0.045), transparent 29rem),
    linear-gradient(180deg, #fffafa 0%, #f7f4f5 40%, #eef1f4 100%) !important;
}

body::before {
  content: "" !important;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--cg-paper-speckle),
    radial-gradient(circle at 8% 28%, rgba(177, 18, 38, 0.06), transparent 25rem),
    radial-gradient(circle at 95% 62%, rgba(177, 18, 38, 0.045), transparent 27rem),
    linear-gradient(116deg, transparent 0 58%, rgba(177, 18, 38, 0.045) 58.2% 70%, transparent 70.3% 100%);
  background-size:
    26px 26px,
    34px 34px,
    auto,
    auto,
    auto;
  opacity: 0.72;
}

body::after {
  display: none !important;
}

#root,
body > .container {
  position: relative;
  z-index: 1;
}

.navbar {
  background:
    linear-gradient(180deg, rgba(255, 252, 252, 0.96), rgba(250, 247, 248, 0.92)) !important;
  border-bottom-color: rgba(177, 18, 38, 0.13) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 7px 10px rgba(11, 11, 13, 0.055) !important;
  backdrop-filter: blur(18px);
}

.hero,
.hero.bg-block-white {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 14% 18%, rgba(177, 18, 38, 0.105), transparent 32rem),
    radial-gradient(circle at 92% 22%, rgba(11, 11, 13, 0.045), transparent 31rem),
    linear-gradient(113deg, transparent 0 54%, rgba(177, 18, 38, 0.078) 54.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #fffafa 0%, #f5f1f2 62%, #eef1f4 100%) !important;
  background-size:
    28px 28px,
    37px 37px,
    auto,
    auto,
    auto,
    auto;
  box-shadow:
    0 0 0 100vmax #f5f1f2,
    inset 0 -1px 0 rgba(177, 18, 38, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.hero::after {
  border-color: rgba(177, 18, 38, 0.13) !important;
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.12), rgba(255, 255, 255, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 244, 245, 0.62)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.bg-block-white,
.checker-section,
.faq-section,
.info-section {
  background:
    var(--cg-paper-speckle),
    linear-gradient(180deg, rgba(255, 252, 252, 0.92), rgba(248, 244, 245, 0.9)) !important;
  background-size:
    30px 30px,
    39px 39px,
    auto;
}

.bg-block-grey,
.reviews-section,
.timeline-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 10% 18%, rgba(177, 18, 38, 0.065), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.048), transparent 28%, rgba(11, 11, 13, 0.034) 100%),
    linear-gradient(180deg, #f8f3f4 0%, #eef1f4 100%) !important;
  background-size:
    30px 30px,
    39px 39px,
    auto,
    auto,
    auto;
}

section,
.bg-block-white,
.bg-block-grey,
.checker-section,
.reviews-section,
.faq-section,
.timeline-section,
.info-section {
  border-top-color: rgba(177, 18, 38, 0.06) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(11, 11, 13, 0.045) !important;
}

.glass-card,
.stat-card,
.faq-item,
.review-card,
.timeline-step,
.timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
.doc-card,
.fca-redress-banner,
.address-dropdown,
.vehicle-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 250, 250, 0.94) 100%) !important;
  border-color: rgba(11, 11, 13, 0.115) !important;
  box-shadow: var(--cg-surface-depth) !important;
}

.glass-card:hover,
.glass-card:focus-within,
.stat-card:hover,
.stat-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.review-card:hover,
.review-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.timeline-v-item:hover,
.timeline-v-item:focus-within,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
.doc-card:hover,
.doc-card:focus-within,
.vehicle-card:hover,
.vehicle-card:focus-within {
  border-color: rgba(177, 18, 38, 0.34) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 5px 0 rgba(177, 18, 38, 0.11),
    0 11px 12px rgba(177, 18, 38, 0.07) !important;
}

.timeline-v-item.is-before,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-before {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.028), rgba(255, 255, 255, 0) 36%),
    var(--cg-surface-paper) !important;
}

.timeline-v-item.is-after,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-after {
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.04), rgba(255, 255, 255, 0) 38%),
    var(--cg-surface-paper) !important;
}

.timeline-v::before,
#timeline-section .timeline-v.cg-legal-timeline::before {
  background:
    linear-gradient(180deg, rgba(177, 18, 38, 0.24), rgba(177, 18, 38, 0.78), rgba(11, 11, 13, 0.18)) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 249, 0.96)) !important;
  border-color: rgba(11, 11, 13, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.selector-btn:hover,
.selector-btn:focus-visible,
.form-input:hover,
.form-select:hover,
.sig-pad-container:hover,
.address-dropdown-container:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 248, 0.98)) !important;
  border-color: rgba(177, 18, 38, 0.34) !important;
}

.btn,
.cta-button,
.hero-cta,
button:not(.mobile-menu-toggle):not(.faq-question) {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 5px 0 rgba(120, 8, 21, 0.16),
    0 9px 10px rgba(177, 18, 38, 0.13);
}

.btn:hover,
.btn:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
button:not(.mobile-menu-toggle):not(.faq-question):hover,
button:not(.mobile-menu-toggle):not(.faq-question):focus-visible {
  filter: saturate(1.04) contrast(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 6px 0 rgba(120, 8, 21, 0.18),
    0 12px 12px rgba(177, 18, 38, 0.16);
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #f8f3f4, rgba(248, 243, 244, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #eef1f4, rgba(238, 241, 244, 0)) !important;
}

.footer {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 0%, rgba(177, 18, 38, 0.075), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.055), transparent 34%, rgba(11, 11, 13, 0.035)),
    linear-gradient(180deg, #fbf8f8, #eef1f4) !important;
  background-size:
    31px 31px,
    41px 41px,
    auto,
    auto,
    auto;
  border-top-color: var(--cg-red) !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.46;
    background-size:
      34px 34px,
      43px 43px,
      auto,
      auto,
      auto;
  }

  .hero,
  .hero.bg-block-white,
  .bg-block-white,
  .bg-block-grey,
  .checker-section,
  .reviews-section,
  .faq-section,
  .timeline-section,
  .info-section {
    background-size:
      36px 36px,
      46px 46px,
      auto,
      auto,
      auto,
      auto !important;
  }
}

/* =============================================
   CLAIMGRID LIGHT BRAND PAPER SURFACE (v10 FINAL)
   ============================================= */

:root {
  --cg-page-base: #f4e7ea;
  --cg-page-warm: #fff0f2;
  --cg-page-cool: #eceff2;
  --cg-paper-speckle:
    radial-gradient(circle at 18% 24%, rgba(11, 11, 13, 0.044) 0 0.76px, transparent 1.05px),
    radial-gradient(circle at 76% 62%, rgba(177, 18, 38, 0.058) 0 0.86px, transparent 1.16px);
  --cg-surface-paper:
    linear-gradient(180deg, rgba(255, 249, 250, 0.98) 0%, rgba(249, 240, 243, 0.97) 100%);
  --cg-surface-depth:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 4px 0 rgba(177, 18, 38, 0.085),
    0 8px 8px rgba(91, 8, 18, 0.075);
}

html,
body {
  background:
    radial-gradient(circle at 12% 6%, rgba(177, 18, 38, 0.15), transparent 34rem),
    radial-gradient(circle at 87% 12%, rgba(177, 18, 38, 0.095), transparent 30rem),
    radial-gradient(circle at 82% 86%, rgba(11, 11, 13, 0.05), transparent 32rem),
    linear-gradient(180deg, var(--cg-page-warm) 0%, var(--cg-page-base) 44%, var(--cg-page-cool) 100%) !important;
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(177, 18, 38, 0.16), transparent 33rem),
    radial-gradient(circle at 88% 16%, rgba(177, 18, 38, 0.11), transparent 30rem),
    radial-gradient(circle at 92% 72%, rgba(11, 11, 13, 0.052), transparent 32rem),
    linear-gradient(180deg, #fff0f2 0%, #f5e7ea 42%, #eceff2 100%) !important;
}

body::before {
  content: "" !important;
  background-image:
    var(--cg-paper-speckle),
    radial-gradient(circle at 7% 24%, rgba(177, 18, 38, 0.105), transparent 28rem),
    radial-gradient(circle at 96% 58%, rgba(177, 18, 38, 0.075), transparent 30rem),
    linear-gradient(116deg, transparent 0 55%, rgba(177, 18, 38, 0.078) 55.2% 69%, transparent 69.3% 100%) !important;
  background-size:
    22px 22px,
    29px 29px,
    auto,
    auto,
    auto !important;
  opacity: 0.9 !important;
}

body::after {
  content: "" !important;
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.09), transparent 22%, transparent 75%, rgba(11, 11, 13, 0.042)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.46), transparent 38rem) !important;
  opacity: 0.58 !important;
}

.navbar {
  background:
    linear-gradient(180deg, rgba(255, 248, 249, 0.97), rgba(246, 232, 236, 0.94)) !important;
  border-bottom-color: rgba(177, 18, 38, 0.2) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 5px 0 rgba(177, 18, 38, 0.045),
    0 8px 8px rgba(11, 11, 13, 0.06) !important;
}

.hero,
.hero.bg-block-white {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 18%, rgba(177, 18, 38, 0.18), transparent 35rem),
    radial-gradient(circle at 88% 21%, rgba(177, 18, 38, 0.115), transparent 31rem),
    radial-gradient(circle at 68% 94%, rgba(11, 11, 13, 0.055), transparent 31rem),
    linear-gradient(113deg, transparent 0 51%, rgba(177, 18, 38, 0.12) 51.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #fff0f2 0%, #f4e6e9 62%, #eceff2 100%) !important;
  background-size:
    24px 24px,
    31px 31px,
    auto,
    auto,
    auto,
    auto,
    auto !important;
  box-shadow:
    0 0 0 100vmax #f4e6e9,
    inset 0 -1px 0 rgba(177, 18, 38, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.bg-block-white,
.checker-section,
.faq-section,
.info-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 9% 18%, rgba(177, 18, 38, 0.082), transparent 26rem),
    linear-gradient(180deg, rgba(255, 244, 246, 0.95), rgba(244, 232, 236, 0.94)) !important;
  background-size:
    25px 25px,
    33px 33px,
    auto,
    auto !important;
}

.bg-block-grey,
.reviews-section,
.timeline-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 9% 18%, rgba(177, 18, 38, 0.11), transparent 31rem),
    radial-gradient(circle at 95% 76%, rgba(11, 11, 13, 0.047), transparent 31rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.085), transparent 27%, rgba(11, 11, 13, 0.04) 100%),
    linear-gradient(180deg, #f6e6ea 0%, #eceff2 100%) !important;
  background-size:
    25px 25px,
    33px 33px,
    auto,
    auto,
    auto,
    auto !important;
}

section,
.bg-block-white,
.bg-block-grey,
.checker-section,
.reviews-section,
.faq-section,
.timeline-section,
.info-section {
  border-top-color: rgba(177, 18, 38, 0.11) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(177, 18, 38, 0.1) !important;
}

.glass-card,
.stat-card,
.faq-item,
.review-card,
.timeline-step,
.timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
.doc-card,
.fca-redress-banner,
.address-dropdown,
.vehicle-card {
  background: var(--cg-surface-paper) !important;
  border-color: rgba(177, 18, 38, 0.17) !important;
  box-shadow: var(--cg-surface-depth) !important;
}

.glass-card:hover,
.glass-card:focus-within,
.stat-card:hover,
.stat-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.review-card:hover,
.review-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.timeline-v-item:hover,
.timeline-v-item:focus-within,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
.doc-card:hover,
.doc-card:focus-within,
.vehicle-card:hover,
.vehicle-card:focus-within {
  border-color: rgba(177, 18, 38, 0.42) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 5px 0 rgba(177, 18, 38, 0.16),
    0 8px 8px rgba(91, 8, 18, 0.11) !important;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background:
    linear-gradient(180deg, rgba(255, 250, 251, 0.99), rgba(249, 240, 243, 0.98)) !important;
  border-color: rgba(177, 18, 38, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 4px 0 rgba(177, 18, 38, 0.09) !important;
}

.selector-btn:hover,
.selector-btn:focus-visible,
.form-input:hover,
.form-select:hover,
.sig-pad-container:hover,
.address-dropdown-container:hover {
  background:
    linear-gradient(180deg, rgba(255, 250, 251, 1), rgba(255, 239, 243, 0.99)) !important;
  border-color: rgba(177, 18, 38, 0.42) !important;
}

.reviews-ticker-container::before {
  background: linear-gradient(to right, #f6e6ea, rgba(246, 230, 234, 0)) !important;
}

.reviews-ticker-container::after {
  background: linear-gradient(to left, #eceff2, rgba(236, 239, 242, 0)) !important;
}

.footer {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 0%, rgba(177, 18, 38, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 70%, rgba(11, 11, 13, 0.048), transparent 30rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.082), transparent 33%, rgba(11, 11, 13, 0.04)),
    linear-gradient(180deg, #fbedef, #eceff2) !important;
  background-size:
    26px 26px,
    34px 34px,
    auto,
    auto,
    auto,
    auto !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.62 !important;
    background-size:
      30px 30px,
      38px 38px,
      auto,
      auto,
      auto !important;
  }

  body::after {
    opacity: 0.38 !important;
  }

  .hero,
  .hero.bg-block-white,
  .bg-block-white,
  .bg-block-grey,
  .checker-section,
  .reviews-section,
  .faq-section,
  .timeline-section,
  .info-section {
    background-size:
      31px 31px,
      40px 40px,
      auto,
      auto,
      auto,
      auto,
      auto !important;
  }
}

/* =============================================
   CLAIMGRID LIGHT BRAND PAPER SURFACE (v13 ACTIVE RESTORE)
   ============================================= */

:root {
  --cg-page-base: #f7f4f5;
  --cg-page-warm: #fff8f8;
  --cg-page-cool: #eef1f4;
  --cg-paper-speckle:
    radial-gradient(circle at 18% 24%, rgba(11, 11, 13, 0.035) 0 0.7px, transparent 0.95px),
    radial-gradient(circle at 76% 62%, rgba(177, 18, 38, 0.036) 0 0.72px, transparent 1px);
  --cg-surface-depth:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 5px 0 rgba(11, 11, 13, 0.035),
    0 10px 10px rgba(177, 18, 38, 0.045);
}

html,
body {
  background:
    radial-gradient(circle at 13% 5%, rgba(177, 18, 38, 0.09), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(11, 11, 13, 0.045), transparent 28rem),
    linear-gradient(180deg, var(--cg-page-warm) 0%, var(--cg-page-base) 42%, var(--cg-page-cool) 100%) !important;
}

body {
  background:
    radial-gradient(circle at 15% 8%, rgba(177, 18, 38, 0.095), transparent 31rem),
    radial-gradient(circle at 84% 7%, rgba(11, 11, 13, 0.045), transparent 29rem),
    linear-gradient(180deg, #fffafa 0%, #f7f4f5 40%, #eef1f4 100%) !important;
}

body::before {
  content: "" !important;
  background-image:
    var(--cg-paper-speckle),
    radial-gradient(circle at 8% 28%, rgba(177, 18, 38, 0.06), transparent 25rem),
    radial-gradient(circle at 95% 62%, rgba(177, 18, 38, 0.045), transparent 27rem),
    linear-gradient(116deg, transparent 0 58%, rgba(177, 18, 38, 0.045) 58.2% 70%, transparent 70.3% 100%) !important;
  background-size:
    26px 26px,
    34px 34px,
    auto,
    auto,
    auto !important;
  opacity: 0.72 !important;
}

body::after {
  content: none !important;
  display: none !important;
}

.hero,
.hero.bg-block-white {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 14% 18%, rgba(177, 18, 38, 0.105), transparent 32rem),
    radial-gradient(circle at 92% 22%, rgba(11, 11, 13, 0.045), transparent 31rem),
    linear-gradient(113deg, transparent 0 54%, rgba(177, 18, 38, 0.078) 54.2% 72%, transparent 72.2% 100%),
    linear-gradient(180deg, #fffafa 0%, #f5f1f2 62%, #eef1f4 100%) !important;
  box-shadow:
    0 0 0 100vmax #f5f1f2,
    inset 0 -1px 0 rgba(177, 18, 38, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.bg-block-white,
.checker-section,
.faq-section,
.info-section {
  background:
    var(--cg-paper-speckle),
    linear-gradient(180deg, rgba(255, 252, 252, 0.92), rgba(248, 244, 245, 0.9)) !important;
}

.bg-block-grey,
.reviews-section,
.timeline-section {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 10% 18%, rgba(177, 18, 38, 0.065), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.048), transparent 28%, rgba(11, 11, 13, 0.034) 100%),
    linear-gradient(180deg, #f8f3f4 0%, #eef1f4 100%) !important;
}

.glass-card,
.stat-card,
.faq-item,
.review-card,
.timeline-step,
.timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
.doc-card,
.fca-redress-banner,
.address-dropdown,
.vehicle-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 250, 250, 0.94) 100%) !important;
  border-color: rgba(11, 11, 13, 0.115) !important;
  box-shadow: var(--cg-surface-depth) !important;
}

.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 249, 0.96)) !important;
  border-color: rgba(11, 11, 13, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.footer {
  background:
    var(--cg-paper-speckle),
    radial-gradient(circle at 12% 0%, rgba(177, 18, 38, 0.075), transparent 28rem),
    linear-gradient(112deg, rgba(177, 18, 38, 0.055), transparent 34%, rgba(11, 11, 13, 0.035)),
    linear-gradient(180deg, #fbf8f8, #eef1f4) !important;
}

.footer-disclosure .cg-legal-link {
  color: var(--cg-red) !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.footer-disclosure .cg-legal-link:hover,
.footer-disclosure .cg-legal-link:focus-visible {
  color: var(--cg-red-hot) !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.46 !important;
  }
}

/* =============================================
   LIGHT/DARK CHROME MOTION PARITY
   Keep the light theme visually static so it behaves like the
   dark Chrome rendering: no decorative reveals, shimmers, lifts,
   ticker movement, press pops, or smooth-scroll motion.
   ============================================= */

html,
body {
  scroll-behavior: auto !important;
}

.animate-fade-in-up,
.animate-on-scroll,
.animate-on-scroll.is-visible,
.stagger-children > *,
.stagger-children.is-visible > *,
.step-animation {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  transition-delay: 0s !important;
  will-change: auto !important;
}

.delay-100,
.delay-200,
.delay-300,
.delay-400,
.delay-500,
.stagger-children.is-visible > * {
  animation-delay: 0s !important;
  transition-delay: 0s !important;
}

.navbar::before,
.badge,
.badge-pulse,
.fca-redress-banner::after,
.checker-section .glass-card::before,
.reviews-ticker-track,
.floating-mobile-cta::before,
.stat-number,
.cg-reactive.cg-pressed {
  animation: none !important;
}

.section-title::after {
  width: 70px !important;
  animation: none !important;
}

.btn::after,
.btn-primary::after,
.cg-floating-pop,
#timeline-section .cg-timeline-scanner {
  display: none !important;
}

@media (min-width: 769px) {
  .navbar .nav-container {
    justify-content: flex-start;
  }

  .navbar .nav-links {
    margin-left: auto;
    margin-right: 0;
  }

  .navbar .nav-container > .btn {
    margin-left: 0;
  }
}

.navbar,
.logo img,
.nav-link,
.nav-link::before,
.nav-link::after,
.mobile-menu-toggle,
.mobile-drawer,
.mobile-drawer-overlay,
.mobile-drawer-link,
.floating-mobile-cta,
.btn,
.btn::after,
.glass-card,
.stat-card,
.faq-item,
.faq-answer,
.faq-icon,
.review-card,
.timeline-step,
.timeline-v-item,
.doc-card,
.fca-redress-banner,
.fca-redress-banner::before,
.fca-banner-icon,
.icon-box,
.step-num,
.selector-btn,
.form-input,
.form-select,
.sig-pad-container,
.address-dropdown-container,
.steps-line-fill,
.step-circle,
#timeline-section .timeline-v.cg-legal-timeline,
#timeline-section .timeline-v.cg-legal-timeline::after,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item::before,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item::after,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item > div[style*="border-radius"] {
  transition: none !important;
  will-change: auto !important;
}

.logo:hover img,
.nav-link:hover,
.badge:hover,
.mobile-menu-toggle:hover,
.btn:hover,
.btn:focus-visible,
.btn:active,
.btn.cg-pressed,
.btn-primary:hover,
.btn-secondary:hover,
.glass-card:hover,
.glass-card:focus-within,
.stat-card:hover,
.stat-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.review-card:hover,
.review-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.timeline-v-item:hover,
.timeline-v-item:focus-within,
.doc-card:hover,
.doc-card:focus-within,
.fca-redress-banner:hover,
.fca-redress-banner:focus-within,
.fca-redress-banner.cg-pressed,
.fca-redress-banner:hover::before,
.fca-redress-banner:hover .fca-banner-icon,
.fca-redress-banner.cg-pressed .fca-banner-icon,
.info-card:hover .icon-box,
.timeline-step:hover .step-num,
.selector-btn:hover,
.selector-btn:focus-visible,
.selector-btn:active,
.selector-btn.cg-pressed,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.cg-pressed,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item.is-active > div[style*="border-radius"],
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:hover > div[style*="border-radius"],
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item:focus-visible > div[style*="border-radius"] {
  transform: none !important;
}

.reviews-ticker-track {
  transform: none !important;
}

.cg-reactive {
  will-change: auto !important;
}

/* =============================================
   LEGAL TIMELINE CARD SPACING
   ============================================= */

#timeline-section .timeline-v {
  padding: clamp(0.75rem, 1.5vw, 1rem) 0 clamp(0.75rem, 1.5vw, 1rem) 0.85rem !important;
}

#timeline-section .timeline-v-item,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item {
  padding:
    clamp(1rem, 1.8vw, 1.2rem)
    clamp(1.15rem, 2vw, 1.45rem)
    clamp(1.05rem, 1.8vw, 1.25rem)
    clamp(2rem, 3vw, 2.3rem) !important;
  min-height: auto !important;
}

#timeline-section .timeline-v-item > div[style*="border-radius"],
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item > div[style*="border-radius"] {
  top: clamp(1rem, 1.8vw, 1.16rem) !important;
}

#timeline-section .timeline-v-item h4,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item h4 {
  margin: 0 0 0.45rem !important;
  line-height: 1.25 !important;
}

#timeline-section .timeline-v-item p,
#timeline-section .timeline-v.cg-legal-timeline .timeline-v-item p {
  margin: 0 !important;
  line-height: 1.58 !important;
}

@media (max-width: 768px) {
  #timeline-section .timeline-v {
    padding-left: 0.65rem !important;
    padding-right: 0 !important;
  }

  #timeline-section .timeline-v-item,
  #timeline-section .timeline-v.cg-legal-timeline .timeline-v-item {
    padding: 0.95rem 1rem 1rem 1.85rem !important;
  }
}

/* Final legal disclosure placement: keep the small print aligned with the stat row. */
.hero.bg-block-white > .stats-grid,
.hero > .stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  justify-items: stretch !important;
  align-items: stretch !important;
}

.hero.bg-block-white > .hero-disclosure,
.hero > p.hero-disclosure {
  grid-column: 1 / -1 !important;
  grid-row: 6 !important;
  justify-self: stretch !important;
  max-width: none !important;
  width: 100% !important;
}

.hero > div[style*="display: flex"] > .btn-primary:first-child {
  animation: heroCtaZoom 1.85s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.hero > div[style*="display: flex"] > .btn-primary:first-child:hover,
.hero > div[style*="display: flex"] > .btn-primary:first-child:focus-visible {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.06) !important;
}

@keyframes heroCtaZoom {
  0%,
  100% {
    transform: translateZ(0) scale(1);
    filter: saturate(1) brightness(1);
  }

  50% {
    transform: translateZ(0) scale(1.075);
    filter: saturate(1.08) brightness(1.04) drop-shadow(0 10px 12px rgba(177, 18, 38, 0.24));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > div[style*="display: flex"] > .btn-primary:first-child {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .hero.bg-block-white > .stats-grid,
  .hero > .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .hero.bg-block-white > .hero-disclosure,
  .hero > p.hero-disclosure {
    grid-column: 1 !important;
    grid-row: 7 !important;
  }
}

@media (max-width: 768px) {
  .hero.bg-block-white > .stats-grid,
  .hero > .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   GENERATED SITE IMAGERY
   ============================================= */

.hero,
.hero.bg-block-white {
  --cg-hero-photo: url("./images/claimgrid-hero-finance-review.webp");
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  top: clamp(1.8rem, 4vw, 3.2rem) !important;
  right: clamp(-7.5rem, -8vw, -3rem) !important;
  bottom: clamp(2.8rem, 6vw, 5.5rem) !important;
  z-index: 0 !important;
  width: min(52vw, 760px) !important;
  height: auto !important;
  border: 1px solid rgba(177, 18, 38, 0.16) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(90deg, rgba(245, 241, 242, 0.98) 0%, rgba(245, 241, 242, 0.72) 31%, rgba(245, 241, 242, 0.08) 68%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.02), rgba(177, 18, 38, 0.12)),
    var(--cg-hero-photo) center / cover no-repeat !important;
  box-shadow: 0 24px 64px rgba(11, 11, 13, 0.13) !important;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%) !important;
  filter: saturate(0.92) contrast(0.96);
  opacity: 0.32 !important;
  pointer-events: none;
  transform: none !important;
}

.cg-site-visual {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 11, 13, 0.12);
  border-radius: 8px;
  background: #0b0b0d;
  box-shadow: 0 18px 44px rgba(11, 11, 13, 0.13);
}

.cg-site-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(177, 18, 38, 0.18), transparent 24%, transparent 76%, rgba(11, 11, 13, 0.10));
  mix-blend-mode: screen;
  opacity: 0.48;
}

.cg-site-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fca-redress-banner {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "media media"
    "icon text";
  align-items: start !important;
  justify-content: stretch !important;
  column-gap: 0.65rem !important;
  row-gap: 0.85rem !important;
  padding: clamp(0.8rem, 1.5vw, 1rem) !important;
}

.fca-redress-banner::before {
  display: none !important;
}

.cg-hero-media {
  grid-area: media;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  margin-bottom: 0;
}

.cg-hero-media img {
  object-position: 54% 50%;
}

.fca-redress-banner .fca-banner-icon {
  grid-area: icon;
  width: 46px;
  height: 46px;
  margin: 0 !important;
  align-self: start;
}

.fca-redress-banner .fca-banner-text {
  grid-area: text;
  flex: 1;
  min-width: 0;
}

.section-header.cg-with-visual {
  margin-bottom: clamp(1.25rem, 3vw, 2rem) !important;
}

.cg-section-media {
  width: min(100%, 1040px);
  aspect-ratio: 16 / 6.7;
  margin: 0 auto clamp(2.2rem, 4.2vw, 3.25rem);
}

.cg-evidence-media img {
  object-position: center 48%;
}

@media (max-width: 1024px) {
  .hero::after {
    top: auto !important;
    right: -5rem !important;
    bottom: 5rem !important;
    width: 54vw !important;
    height: 42% !important;
    opacity: 0.2 !important;
  }

  .cg-section-media {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 768px) {
  .hero::after {
    display: none !important;
  }

  .cg-hero-media {
    aspect-ratio: 16 / 10.5;
  }

  .cg-section-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.7rem;
  }

  .cg-site-visual {
    box-shadow: 0 12px 28px rgba(11, 11, 13, 0.12);
  }
}

/* =============================================
   ASTRYX CORE TOKEN ADOPTION
   ============================================= */

:root[data-astryx-theme="claimgrid"] {
  --cg-black: var(--color-background-inverted);
  --cg-ink: var(--color-text-primary);
  --cg-muted: var(--color-text-secondary);
  --cg-soft: var(--color-background-body);
  --cg-panel: var(--color-background-surface);
  --cg-panel-warm: color-mix(in srgb, var(--color-background-surface) 92%, var(--color-accent) 8%);
  --cg-line: var(--color-border);
  --cg-line-strong: var(--color-border-emphasized);
  --cg-red: var(--color-accent);
  --cg-red-bright: #d71932;
  --cg-red-deep: #8f0e1f;
  --cg-red-soft: var(--color-accent-muted);
  --cg-red-glow: rgba(177, 18, 38, 0.18);
  --cg-green: var(--color-success);

  --bg-primary: var(--color-background-body);
  --bg-secondary: var(--color-background-muted);
  --bg-card: color-mix(in srgb, var(--color-background-card) 92%, transparent);
  --bg-card-hover: var(--color-background-card);
  --border-color: var(--color-border);
  --border-color-hover: color-mix(in srgb, var(--color-accent) 34%, transparent);
  --primary: var(--color-accent);
  --primary-hover: var(--cg-red-deep);
  --teal: var(--color-icon-secondary);
  --teal-hover: var(--color-text-primary);
  --text-primary: var(--color-text-primary);
  --text-secondary: var(--color-text-secondary);
  --text-muted: var(--color-text-disabled);
  --font-sans: var(--font-family-body);
  --radius-sm: calc(var(--radius-inner) + 2px);
  --radius-md: calc(var(--radius-element) + 2px);
  --radius-lg: calc(var(--radius-container) + 2px);
  --radius-xl: calc(var(--radius-container) + var(--spacing-2));
  --shadow-xs: var(--shadow-low);
  --shadow-sm: var(--shadow-low);
  --shadow-md: var(--shadow-med);
  --shadow-lg: var(--shadow-high);
  --shadow-glow: var(--shadow-med);
  --shadow-glow-strong: var(--shadow-high);
  --ease-out: var(--ease-standard);
  --ease-circ: var(--ease-standard);
}

[data-astryx-theme="claimgrid"] body {
  font-family: var(--font-family-body);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-leading);
}

[data-astryx-theme="claimgrid"] h1,
[data-astryx-theme="claimgrid"] h2,
[data-astryx-theme="claimgrid"] h3,
[data-astryx-theme="claimgrid"] h4,
[data-astryx-theme="claimgrid"] h5,
[data-astryx-theme="claimgrid"] h6 {
  font-family: var(--font-family-heading);
}

[data-astryx-theme="claimgrid"] .section-subtitle,
[data-astryx-theme="claimgrid"] .hero-subtitle,
[data-astryx-theme="claimgrid"] .info-card-text,
[data-astryx-theme="claimgrid"] .timeline-desc,
[data-astryx-theme="claimgrid"] .faq-answer,
[data-astryx-theme="claimgrid"] .footer-disclosure {
  color: var(--color-text-secondary);
}

/* Mirrors Astryx Button sizing, variants, focus, and press tokens. */
[data-astryx-theme="claimgrid"] .btn {
  min-height: calc(var(--size-element-lg) + var(--spacing-3));
  padding-block: var(--spacing-3);
  padding-inline: var(--spacing-6);
  border-radius: var(--radius-element);
  font-weight: var(--font-weight-semibold);
  outline-offset: var(--button-focus-offset);
}

[data-astryx-theme="claimgrid"] .btn-primary {
  background: var(--color-accent) !important;
  color: var(--color-on-accent) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 5px 0 rgba(120, 8, 21, 0.16),
    0 9px 10px rgba(177, 18, 38, 0.13) !important;
}

[data-astryx-theme="claimgrid"] .btn-primary:hover,
[data-astryx-theme="claimgrid"] .btn-primary:focus-visible {
  background: var(--primary-hover) !important;
}

[data-astryx-theme="claimgrid"] .btn-secondary {
  background: var(--color-background-surface) !important;
  border-color: var(--color-border) !important;
  color: var(--color-text-primary) !important;
}

[data-astryx-theme="claimgrid"] .btn-secondary:hover,
[data-astryx-theme="claimgrid"] .btn-secondary:focus-visible {
  background: var(--color-background-muted) !important;
  border-color: var(--color-border-emphasized) !important;
}

[data-astryx-theme="claimgrid"] .btn:active,
[data-astryx-theme="claimgrid"] .btn.cg-pressed {
  transform: var(--button-press-scale) !important;
}

[data-astryx-theme="claimgrid"] .btn:disabled {
  opacity: var(--button-disabled-opacity);
}

/* Card-like units follow the Astryx Card surface/radius/elevation contract. */
[data-astryx-theme="claimgrid"] .glass-card,
[data-astryx-theme="claimgrid"] .stat-card,
[data-astryx-theme="claimgrid"] .faq-item,
[data-astryx-theme="claimgrid"] .timeline-step,
[data-astryx-theme="claimgrid"] .doc-card {
  background: var(--color-background-card) !important;
  border-color: var(--color-border) !important;
  border-radius: var(--radius-container) !important;
  box-shadow: var(--shadow-low) !important;
}

[data-astryx-theme="claimgrid"] .glass-card:hover,
[data-astryx-theme="claimgrid"] .glass-card:focus-within,
[data-astryx-theme="claimgrid"] .stat-card:hover,
[data-astryx-theme="claimgrid"] .stat-card:focus-within,
[data-astryx-theme="claimgrid"] .faq-item:hover,
[data-astryx-theme="claimgrid"] .faq-item:focus-within,
[data-astryx-theme="claimgrid"] .timeline-step:hover,
[data-astryx-theme="claimgrid"] .timeline-step:focus-within,
[data-astryx-theme="claimgrid"] .doc-card:hover,
[data-astryx-theme="claimgrid"] .doc-card:focus-within {
  border-color: var(--border-color-hover) !important;
  box-shadow: var(--shadow-med) !important;
}

[data-astryx-theme="claimgrid"] .glass-card,
[data-astryx-theme="claimgrid"] .doc-card {
  padding: clamp(var(--spacing-4), 2.2vw, var(--astryx-card-padding)) !important;
}

/* Badges and notices reuse Astryx status/background token names. */
[data-astryx-theme="claimgrid"] .badge {
  background: var(--color-background-red) !important;
  border-color: color-mix(in srgb, var(--color-border-red) 18%, transparent) !important;
  color: var(--color-icon-red) !important;
  border-radius: var(--radius-full) !important;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

[data-astryx-theme="claimgrid"] .fca-redress-banner {
  background:
    linear-gradient(180deg, var(--color-background-red), rgba(255, 255, 255, 0.92)) !important;
  border-color: color-mix(in srgb, var(--color-border-red) 20%, transparent) !important;
  border-radius: var(--radius-container) !important;
  box-shadow: var(--shadow-low) !important;
}

[data-astryx-theme="claimgrid"] .icon-box,
[data-astryx-theme="claimgrid"] .success-icon-box {
  background: var(--color-background-red) !important;
  border-color: color-mix(in srgb, var(--color-border-red) 18%, transparent) !important;
  border-radius: var(--radius-element) !important;
  color: var(--color-icon-red) !important;
}

[data-astryx-theme="claimgrid"] .step-num,
[data-astryx-theme="claimgrid"] .step-circle.completed,
[data-astryx-theme="claimgrid"] .steps-line-fill {
  background: var(--color-accent) !important;
  color: var(--color-on-accent) !important;
}

[data-astryx-theme="claimgrid"] .step-circle {
  background: var(--color-background-surface) !important;
  border-color: var(--color-border) !important;
  color: var(--color-text-disabled) !important;
  box-shadow: none !important;
}

[data-astryx-theme="claimgrid"] .step-circle.active {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
  box-shadow: var(--shadow-inset-selected) !important;
}

[data-astryx-theme="claimgrid"] .steps-line {
  background: var(--color-track) !important;
}

/* Field-like controls inherit Astryx Field/TextInput sizing, radius, and states. */
[data-astryx-theme="claimgrid"] .form-label,
[data-astryx-theme="claimgrid"] .question-title {
  color: var(--color-text-primary);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-leading);
}

[data-astryx-theme="claimgrid"] .selector-btn,
[data-astryx-theme="claimgrid"] .form-input,
[data-astryx-theme="claimgrid"] .form-select,
[data-astryx-theme="claimgrid"] .sig-pad-container,
[data-astryx-theme="claimgrid"] .address-dropdown-container {
  min-height: calc(var(--size-element-lg) + var(--spacing-3));
  background: var(--color-background-surface) !important;
  border-color: var(--color-border) !important;
  border-radius: var(--radius-element) !important;
  color: var(--color-text-primary) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

[data-astryx-theme="claimgrid"] .selector-btn:hover,
[data-astryx-theme="claimgrid"] .selector-btn:focus-visible,
[data-astryx-theme="claimgrid"] .form-input:hover,
[data-astryx-theme="claimgrid"] .form-select:hover,
[data-astryx-theme="claimgrid"] .sig-pad-container:hover,
[data-astryx-theme="claimgrid"] .address-dropdown-container:hover {
  border-color: var(--color-border-emphasized) !important;
  box-shadow: var(--shadow-inset-hover) !important;
}

[data-astryx-theme="claimgrid"] .form-input:focus,
[data-astryx-theme="claimgrid"] .form-select:focus {
  border-color: var(--color-accent) !important;
  box-shadow: var(--shadow-inset-selected) !important;
}

[data-astryx-theme="claimgrid"] .selector-btn.selected,
[data-astryx-theme="claimgrid"] .address-option.selected {
  background: var(--color-background-red) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
  box-shadow: var(--shadow-inset-selected) !important;
}

[data-astryx-theme="claimgrid"] .consent-checkbox-row input[type="checkbox"] {
  accent-color: var(--color-accent);
}

[data-astryx-theme="claimgrid"] .footer {
  background: var(--color-background-muted) !important;
  border-color: var(--color-border) !important;
  color: var(--color-text-secondary);
}

[data-astryx-theme="claimgrid"] .footer-bottom {
  border-color: var(--color-border) !important;
}
