/* ============================================================
   CLEARPATH PROTECTION WEBSITE 2.0
   style.css — COMPLETE (Parts 1–16 Compiled)
   Foundation • Header • Hero • Components • Forms • Responsive
============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap");

/* ============================================================
   PART 1 — FOUNDATION + HEADER + HERO
============================================================ */

:root{
  --navy:#0B2341;
  --navy-dark:#061728;
  --navy-light:#153C63;
  --teal:#14B8A6;
  --teal-dark:#0E9486;
  --teal-soft:#D9FFFB;
  --white:#FFFFFF;
  --light:#F8FAFC;
  --light-2:#EEF4F8;
  --grey:#64748B;
  --grey-light:#CBD5E1;
  --border:#E2E8F0;
  --success:#22C55E;
  --warning:#F59E0B;
  --danger:#EF4444;
  --shadow-sm:0 6px 18px rgba(15,23,42,.05);
  --shadow-md:0 14px 40px rgba(15,23,42,.10);
  --shadow-lg:0 24px 60px rgba(2,8,23,.16);
  --radius-xs:10px;
  --radius-sm:14px;
  --radius-md:20px;
  --radius-lg:26px;
  --radius-xl:36px;
  --transition:.35s ease;
  --transition-fast:.2s ease;
  --transition-smooth:.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container:1240px;
}

/* PREMIUM ANIMATIONS */
@keyframes fadeInUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes slideInLeft{from{opacity:0;transform:translateX(-30px);}to{opacity:1;transform:translateX(0);}}
@keyframes slideInRight{from{opacity:0;transform:translateX(30px);}to{opacity:1;transform:translateX(0);}}
@keyframes scaleIn{from{opacity:0;transform:scale(0.95);}to{opacity:1;transform:scale(1);}}
@keyframes float{0%,100%{transform:translateY(0px);}50%{transform:translateY(-8px);}}

/* FADE UP ANIMATION */
.fade-up{animation:fadeInUp 0.7s ease-out forwards;opacity:0;}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;scroll-padding-top:90px;}
body{
  font-family:"Inter",sans-serif;
  color:var(--navy);
  background:linear-gradient(135deg, #FFFFFF 0%, #F0F8FB 50%, #E8F4F9 100%);
  min-height:100vh;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  opacity:0;
  transition:opacity .35s ease;
}
body.loaded{opacity:1;}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;}
button,input,select,textarea{font-family:inherit;outline:none;}
ul{list-style:none;}

.container{
  width:min(var(--container),92%);
  margin:auto;
}

h1{
  font-family:"Poppins",sans-serif;
  line-height:1.15;
  color:#ffffff;
}
h2,h3,h4{
  font-family:"Poppins",sans-serif;
  line-height:1.15;
  color:var(--navy);
}
h1{font-size:clamp(42px,5vw,72px);}
.hero h1, .hero-content h1{color:#ffffff !important;}
h2{font-size:clamp(34px,4vw,54px);}
h3{font-size:28px;}
p{color:var(--grey);font-size:17px;}

section{padding:100px 0;position:relative;}

.section-heading{max-width:760px;margin:auto auto 60px;}
.section-heading.center{text-align:center;}

.section-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  background:rgba(20,184,166,.12);
  color:var(--teal-dark);
  border-radius:100px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.btn-primary,.btn-secondary,.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:17px 34px;
  border-radius:100px;
  font-weight:700;
  transition:all var(--transition-smooth);
  cursor:pointer;
  border:none;
  position:relative;
  overflow:hidden;
}

.btn-primary{
  background:linear-gradient(135deg,var(--teal),#18D4C2);
  color:#fff;
  box-shadow:0 12px 30px rgba(20,184,166,.25), inset 0 1px 0 rgba(255,255,255,.2);
  letter-spacing:0.5px;
}
.btn-primary:hover{
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 24px 48px rgba(20,184,166,.35), inset 0 1px 0 rgba(255,255,255,.3);
  letter-spacing:1px;
}
.btn-primary:active{
  transform:translateY(-2px) scale(0.98);
}
.btn-primary.large{padding:20px 42px;font-size:17px;}

.btn-secondary{
  background:#fff;
  color:var(--navy);
  border:2px solid var(--navy);
  box-shadow:0 8px 20px rgba(11,35,65,.12);
}
.btn-secondary:hover{
  background:var(--navy);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 16px 35px rgba(11,35,65,.25);
}
.btn-secondary:active{
  transform:translateY(-1px);
}
.btn-secondary.large{padding:20px 42px;font-size:17px;}

.btn-outline{
  background:transparent;
  color:var(--navy);
  border:2px solid var(--border);
  transition:all var(--transition-fast);
}
.btn-outline:hover{
  border-color:var(--teal);
  color:var(--teal);
  background:rgba(20,184,166,.05);
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(20,184,166,.15);
}

/* TOP TRUST BAR */
.top-trust-bar{
  background:var(--navy);
  color:#fff;
  padding:12px 0;
}
.trust-bar-layout{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.trust-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.trust-left img{width:100px;}
.trust-right{
  display:flex;
  gap:24px;
  align-items:center;
}
.trust-right a{color:#fff;font-weight:600;}
.trust-right a:hover{color:var(--teal);}

/* TOPBAR */
.topbar{
  background:var(--navy-dark);
  color:#fff;
  padding:10px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding-left:4%;
  padding-right:4%;
}
.topbar-left{font-size:14px;}
.topbar-right{display:flex;gap:20px;}
.topbar-right a{color:#CBD5E1;font-size:14px;}
.topbar-right a:hover{color:var(--teal);}

/* HEADER / NAVBAR */
.header,.navbar{
  position:relative;
  width:100%;
  z-index:1000;
  background:#fff;
  transition:.35s ease;
}
.header.scrolled,.navbar.scrolled{
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 4%;
}
.logo{ display:flex; align-items:center; min-width:0; }

.logo img{
  display:block;
  width:auto;
  height:52px;
  max-height:52px;
  max-width:220px;
  object-fit:contain;
  animation:logoGlow 2.6s ease-in-out infinite;
}
@keyframes logoGlow{
  0%,100%{filter:drop-shadow(0 0 0px rgba(20,184,166,0));}
  50%{filter:drop-shadow(0 0 9px rgba(20,184,166,.55));}
}
.navbar nav,.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
}
.navbar nav a,.nav-links a{
  font-weight:600;
  position:relative;
  color:var(--navy);
}
.navbar nav a::after,.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--teal);
  transition:.35s ease;
}
.navbar nav a:hover::after,.nav-links a:hover::after{width:100%;}
.nav-actions{display:flex;gap:16px;align-items:center;}

.mobile-menu-toggle,.menu-toggle{
  display:none;
  background:none;
  border:none;
  width:42px;
  height:42px;
  cursor:pointer;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}
.mobile-menu-toggle span,.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--navy);
  transition:.3s;
}

.mobile-nav,.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:320px;
  height:100vh;
  background:#fff;
  padding:110px 36px;
  transition:.35s ease;
  z-index:999;
  box-shadow:-10px 0 40px rgba(0,0,0,.12);
  display:flex;
  flex-direction:column;
  gap:22px;
}
.mobile-nav.active,.mobile-menu.active{right:0;}
.mobile-nav a,.mobile-menu a{
  font-weight:700;
  font-size:18px;
  color:var(--navy);
}
body.menu-open{overflow:hidden;}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:120px;
  background:
    linear-gradient(135deg, rgba(11, 35, 65, 0.94) 0%, rgba(20, 184, 166, 0.35) 100%),
    url("../images/hero/clearpath-hero.jpg") center/cover no-repeat;
  background-color: #0B2341;
  color:#fff;
  position:relative;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 163, 163, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 163, 163, 0.08) 0%, transparent 50%);
  pointer-events:none;
}
.hero-container,.hero-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:1;
  width:min(var(--container),92%);
  margin:auto;
}
.hero-content h1{
  color:#fff;
  margin-bottom:24px;
}
.hero-content p,.hero-description{
  color:#E6EEF7;
  font-size:20px;
  margin-bottom:36px;
  max-width:560px;
}
.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.discount-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  background:rgba(20,184,166,.2);
  color:#fff;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  margin-bottom:20px;
  border:1px solid rgba(20,184,166,.35);
}
/* Premium instant-quote card embedded in the hero */
.hero-quote-card{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1.5px solid rgba(15,163,163,.35);
  border-radius:20px;
  padding:42px;
  max-width:520px;
  box-shadow:0 20px 60px rgba(15,163,163,.2), 0 0 1px rgba(15,163,163,.3);
  transition:all 0.3s ease;
}
.hero-quote-card:hover{box-shadow:0 24px 70px rgba(15,163,163,.25), 0 0 1px rgba(15,163,163,.4);}
.hero-quote-label{
  display:block;font-size:11px;font-weight:800;letter-spacing:.16em;
  text-transform:uppercase;color:var(--teal);margin-bottom:22px;
}
.hero-quote-fields{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:18px;}
.hero-quote-field label{display:block;font-size:12.5px;font-weight:600;color:#CBD5E1;margin-bottom:8px;}
.hero-quote-field input{
  width:100%;padding:14px 16px;border-radius:var(--radius-xs);
  border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.06);
  color:#fff;font-family:inherit;font-size:15px;
}
.hero-quote-field input::placeholder{color:rgba(255,255,255,.4);}
.hero-quote-field input:focus{outline:none;border-color:var(--teal);background:rgba(255,255,255,.1);}
.hero-quote-field input.error{border-color:var(--danger);}
.hero-quote-btn{width:100%;justify-content:center;font-size:16px;}
.hero-quote-call{
  display:block;text-align:center;margin-top:16px;font-size:13.5px;
  color:rgba(255,255,255,.65);font-weight:600;
}
.hero-quote-call:hover{color:var(--teal);}
@media(max-width:480px){
  .hero-quote-fields{grid-template-columns:1fr;}
  .hero-quote-card{padding:24px;max-width:none;}
}

.hero-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:48px;
  width:100%;
  justify-items:center;
}
.feature-item{
  color:#CBD5E1;
  font-size:16px;
  font-weight:600;
  line-height:1.5;
  padding:16px 20px;
  background:rgba(255,255,255,.05);
  border-radius:12px;
  border:1px solid rgba(15,163,163,.2);
}
.feature-item::before{
  content:'✔ ';
  color:var(--teal);
  font-weight:700;
  margin-right:8px;
}
.hero-card,.hero-quote .quote-card{
  background:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow-lg);
}
.quote-header h2{margin-bottom:8px;}
.quote-header p{margin-bottom:20px;font-size:15px;}
.quote-mini-form,.quote-card form{
  display:grid;
  gap:18px;
  margin-top:20px;
}
.quote-mini-form input,
.quote-mini-form select,
.quote-card input,
.quote-card select{
  width:100%;
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:14px;
}
.quote-button{
  width:100%;
  padding:18px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,var(--teal),#18D4C2);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition:var(--transition);
}
.quote-button:hover{transform:translateY(-2px);}
.quote-footer{
  margin-top:18px;
  text-align:center;
  font-size:14px;
  color:var(--grey);
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:28px;
}
.hero-badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
}

/* LOADER */
.loader{
  position:fixed;
  inset:0;
  background:var(--navy);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999;
  transition:opacity .5s ease,visibility .5s;
}
.loader.hidden{opacity:0;visibility:hidden;pointer-events:none;}
.loader-logo img{width:180px;margin-bottom:30px;}
.loader-bar{
  width:200px;
  height:4px;
  background:rgba(255,255,255,.15);
  border-radius:999px;
  overflow:hidden;
}
.loader-progress{
  height:100%;
  width:0;
  background:var(--teal);
  animation:loadProgress 1.2s ease forwards;
}
@keyframes loadProgress{to{width:100%;}}

/* FADE UP (base) */
.fade-up{
  opacity:0;
  transform:translateY(16px);
  transition:.35s ease;
}
.fade-up.visible{
  opacity:1;
  transform:none;
}

/* ============================================================
   PART 2 — BENEFITS • COVERAGE • PLANS • CARDS • FORMS
============================================================ */

.benefits-section{background:var(--light);}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.benefit-card{
  background:#fff;
  padding:32px;
  border-radius:24px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
  text-align:center;
  border:1px solid var(--border);
}
.benefit-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}
.benefit-card img{width:64px;margin:0 auto 20px;}
.benefit-card h3{font-size:22px;margin-bottom:14px;}
.benefit-card p{font-size:15px;}

.coverage-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.coverage-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:34px;
  box-shadow:var(--shadow-sm);
}
.coverage-card h3{margin-bottom:18px;}
.coverage-card.included{border-top:4px solid var(--success);}
.coverage-card.excluded{border-top:4px solid var(--danger);}
.coverage-list,.coverage-card ul{
  display:grid;
  gap:14px;
  margin-top:20px;
}
.coverage-list li,.coverage-card li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-weight:600;
}
.coverage-list img{width:22px;flex-shrink:0;margin-top:2px;}
.coverage-item{
  padding:14px 18px;
  background:var(--light);
  border-radius:14px;
  font-weight:600;
  border:1px solid var(--border);
}
.coverage-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.coverage-image img{
  border-radius:28px;
  box-shadow:var(--shadow-lg);
}

.warranty-plans,.plans-section{
  background:linear-gradient(180deg,rgba(255,255,255,.4),rgba(238,244,248,.6)),
    url("../images/backgrounds/soft-pattern.svg") center/cover no-repeat;
}
.comparison-section{
  background:url("../images/backgrounds/soft-pattern.svg") center/cover no-repeat;
}
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.plan-card{
  background:#fff;
  border-radius:30px;
  padding:36px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  position:relative;
  transition:var(--transition);
}
.plan-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow-lg);
}
.plan-card.featured{
  border:2px solid var(--teal);
  transform:scale(1.02);
}
.plan-icon{font-size:36px;margin-bottom:12px;}
.plan-type{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  color:var(--teal-dark);
  margin-bottom:10px;
}
.plan-card h3{margin-bottom:12px;}
.plan-card p{margin-bottom:18px;font-size:15px;}
.plan-card ul{display:grid;gap:10px;margin:20px 0 28px;}
.plan-card li{font-weight:600;color:var(--navy);}
.plan-button,.plan-card .btn-primary{
  width:100%;
  text-align:center;
  padding:16px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-weight:700;
  display:block;
  transition:var(--transition);
}
.plan-button:hover,.plan-card .btn-primary:hover{background:var(--teal);}
.plan-button.white{background:#fff;color:var(--navy);border:2px solid var(--navy);}
.plan-button.white:hover{background:var(--navy);color:#fff;}

.popular-badge,.featured-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:var(--teal);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:8px 14px;
  border-radius:999px;
  letter-spacing:.08em;
}
.featured-badge{top:-12px;left:50%;transform:translateX(-50%);right:auto;}

.plan-price{
  font-size:42px;
  font-weight:800;
  color:var(--navy);
  margin:24px 0;
}
.plan-price small{font-size:15px;color:var(--grey);}
.plan-features{display:grid;gap:14px;margin:28px 0 34px;}
.plan-features li{display:flex;align-items:center;gap:10px;}
.plan-features img{width:18px;}

.plan-comparison{margin-top:80px;}
.plan-table,.comparison-table table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:20px;
  box-shadow:var(--shadow-sm);
}
.plan-table th,.comparison-table th{
  background:var(--navy);
  color:#fff;
  padding:20px;
  text-align:center;
}
.plan-table td,.comparison-table td{
  padding:18px;
  border-bottom:1px solid var(--border);
  text-align:center;
  background:#fff;
}
.plan-table tr:nth-child(even) td,
.comparison-table tr:nth-child(even) td{background:#F8FBFD;}
.comparison-table{overflow:auto;border-radius:22px;}

/* FIND MY COVER / QUOTE FORM */
.quote-form{display:grid;gap:40px;}
.quote-step{display:none;}
.quote-step.active{display:block;}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.form-group.full{grid-column:1 / -1;}
.form-group label{font-weight:700;color:var(--navy);}
.form-group input,
.form-group select,
.form-group textarea{
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  transition:var(--transition);
  font-size:15px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(20,184,166,.12);
}
.form-group input.error,
.form-group select.error{border-color:var(--danger);background:#FEF2F2;}

.quote-progress{margin-bottom:42px;}
.quote-progress-bar{
  height:8px;
  background:linear-gradient(90deg,var(--teal),#29D6C5);
  width:33%;
  border-radius:999px;
  transition:.4s ease;
}
.quote-progress-labels{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  font-size:14px;
  font-weight:700;
  color:var(--grey);
}
.step-buttons{display:flex;gap:16px;margin-top:32px;}
.step-buttons.end{justify-content:flex-end;}
.step-buttons.between{justify-content:space-between;}
.checkbox-wrapper{
  display:flex;
  gap:12px;
  margin-top:28px;
  align-items:flex-start;
}
.checkbox-wrapper input{margin-top:4px;}

/* ============================================================
   PART 3 — REPAIR COST • BRANDS • WHY CHOOSE • TIMELINE • TRUSTPILOT
============================================================ */

.repair-estimator,.repair-section,.repair-costs{
  background:linear-gradient(180deg,var(--light),#fff);
}
.estimator-layout,.repair-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.estimator-card{
  background:#fff;
  border-radius:28px;
  padding:36px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--border);
}
.estimator-card h3{margin-bottom:20px;}
.estimator-card input,
.estimator-card select{
  width:100%;
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  margin-bottom:18px;
}
.estimator-result{
  margin-top:24px;
  padding:24px;
  border-radius:20px;
  background:var(--teal-soft);
  border-left:5px solid var(--teal);
}
.estimator-result h4{color:var(--teal-dark);margin-bottom:8px;}
.repair-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.repair-card{
  background:#fff;
  border-radius:22px;
  padding:28px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.repair-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.repair-card h3{font-size:20px;margin-bottom:10px;}
.repair-card span,.repair-card small{color:var(--teal-dark);font-weight:800;font-size:22px;}
.repair-card small{display:block;font-size:13px;color:var(--grey);font-weight:600;margin-bottom:8px;}
.repair-cta{text-align:center;margin-top:48px;}
.repair-cta p{margin-bottom:24px;font-size:18px;}

.brands-section{background:#fff;}
.brands-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
  align-items:center;
}
.brand-item,.brand-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100px;
}
.brand-item:hover,.brand-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.brand-item img,.brand-card img{
  max-height:48px;
  width:auto;
  max-width:100%;
}

.drivers-section,.why-clearpath{
  background:linear-gradient(180deg,#fff,var(--light));
}
.drivers-grid,.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.why-grid{grid-template-columns:repeat(3,1fr);}
.driver-card,.why-card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.driver-card:hover,.why-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}
.driver-card img,.why-icon{width:64px;margin:0 auto 18px;font-size:36px;}
.driver-card h3,.why-card h3{font-size:20px;margin-bottom:12px;}

.claims-section{
  background:var(--navy);
  color:#fff;
}
.claims-section .section-heading h2,
.claims-section .section-heading p{color:#fff;}
.claims-section .section-pill{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.claims-timeline{
  position:relative;
  display:grid;
  gap:28px;
  margin-top:50px;
}
.claims-timeline::before{
  content:"";
  position:absolute;
  left:30px;
  top:10px;
  bottom:10px;
  width:2px;
  background:rgba(255,255,255,.18);
}
.claim-step{
  display:flex;
  gap:26px;
  align-items:flex-start;
  position:relative;
}
.claim-number{
  width:62px;
  height:62px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 0 0 8px rgba(20,184,166,.15);
}
.claim-content{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  padding:24px;
  border-radius:20px;
  flex:1;
}
.claim-content h3{color:#fff;margin-bottom:8px;}
.claim-content p{color:#CBD5E1;}

.trustpilot-section{background:#fff;}
.trustpilot-rating{text-align:center;margin-bottom:50px;}
.trustpilot-rating img{width:180px;margin:0 auto 20px;}
.trustpilot-rating h3{color:#00B67A;margin-bottom:10px;}
.review-card [style*="color:var(--teal)"],
.review-card div[style*="color:var(--teal)"] {
  color: #FDB927 !important;
}
.trustpilot-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#00B67A;
  font-weight:700;
  margin-top:16px;
}
.review-slider{max-width:820px;margin:auto;}
.review-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:36px;
  text-align:center;
  box-shadow:var(--shadow-md);
  transition:all var(--transition-smooth);
}
.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(20,184,166,.2);
  border-color:rgba(20,184,166,.4);
}
.review-card p{
  font-size:19px;
  color:var(--navy);
  margin-bottom:24px;
}
.review-author{
  color:#16A34A;
  font-weight:700;
  display:grid;
  gap:8px;
}
.review-author strong{color:var(--navy);}

.promise-strip{
  background:var(--navy);
  color:#fff;
  padding:20px 0;
}
.promise-strip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  text-align:center;
  font-weight:700;
  font-size:15px;
}

/* TRUST STRIP — ícones em cima, 4 colunas */ .trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: linear-gradient(135deg, rgba(15,163,163,0.08) 0%, rgba(13,27,42,0.04) 100%); padding: 56px 40px; border-radius: 16px; margin: 80px 0; }
.trust-card { padding: 40px 32px; text-align: center; border: 1.5px solid rgba(15,163,163,0.25); background: rgba(255,255,255,0.7); border-radius: 12px; transition: all 0.3s ease; }
.trust-card:hover { transform: translateY(-4px); border-color: rgba(15,163,163,0.5); background: rgba(255,255,255,0.9); box-shadow: 0 12px 32px rgba(15,163,163,0.15); }
.trust-card img { width: 56px; height: 56px; margin: 0 auto 20px; display: block; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(15,163,163,0.1)); }
.trust-card h3 { color: #0D1B2A; font-size: 16px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.trust-card p { color: #6B7280; font-size: 13px; font-weight: 500; margin: 0; line-height: 1.5; }
@media (max-width: 992px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } .trust-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); } }
@media (max-width: 768px) { .trust-strip { grid-template-columns: 1fr; } }


/* INTRO — Seção 3 com cards bordados */
.intro-section{
  background:#fff;
  padding:90px 0 100px;
}
.intro-section .section-heading{
  max-width:760px;
  margin:0 auto 56px;
  text-align:center;
}
.intro-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:48px;
}
.intro-grid > div,
.intro-grid .intro-card,
.intro-grid .feature-item-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:32px 24px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
  height:100%;
}
.intro-grid > div:hover,
.intro-grid .intro-card:hover,
.intro-grid .feature-item-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-color:rgba(20,184,166,.35);
}
.intro-grid img{
  width:56px;
  height:56px;
  margin:0 auto 18px;
  padding:12px;
  border-radius:50%;
  background:var(--teal-soft);
  object-fit:contain;
}
.intro-grid h3{
  font-size:18px;
  margin-bottom:10px;
  color:var(--navy);
  line-height:1.3;
}
.intro-grid p{
  font-size:15px;
  color:var(--grey);
  margin:0;
  line-height:1.55;
}

/* HOW IT WORKS */
.how-it-works{
  background: linear-gradient(135deg, #0D1B2A 0%, #0F3A4E 25%, #0F5A6F 50%, #0D4F69 75%, #0A2F3F 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 163, 163, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 163, 163, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.how-it-works .container{
  position: relative;
  z-index: 1;
}
.how-it-works .section-heading h2{color: #fff; font-weight: 700;}
.how-it-works .section-pill{background: rgba(15, 163, 163, 0.25); color: #0FA3A3;}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.step-card{
  background:#fff;
  border-radius:24px;
  padding:32px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  position:relative;
}
.step-card span{
  display:inline-flex;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
  background:var(--teal);
  color:#fff;
  border-radius:50%;
  font-weight:800;
  margin-bottom:18px;
}
.step-card h3{margin-bottom:10px;}

/* EV SECTION */
.ev-section{background:#fff;}
.ev-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.ev-image img{
  border-radius:28px;
  box-shadow:var(--shadow-lg);
}
.ev-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:28px 0 32px;
}
.ev-box{
  padding:16px 18px;
  background:var(--light);
  border-radius:14px;
  font-weight:700;
  border:1px solid var(--border);
}

/* VEHICLE TYPES */
.vehicle-types{background:var(--light);}
.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.vehicle-card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.vehicle-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);}
.vehicle-card img{width:56px;margin:0 auto 18px;}
.vehicle-card h3{margin-bottom:10px;}

/* UK COVERAGE */
.uk-coverage{background:#fff;}
.uk-coverage .coverage-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.uk-coverage ul{display:grid;gap:12px;margin-top:24px;}
.uk-coverage li{font-weight:600;}
.coverage-map img{border-radius:24px;box-shadow:var(--shadow-md);}

/* PROMISE SECTION */
.promise-section{background:var(--light);}
.promise-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.promise-card{
  background:#fff;
  border-radius:22px;
  padding:28px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.promise-card img{width:48px;margin:0 auto 16px;}
.promise-card h3{font-size:18px;margin-bottom:8px;}

/* ============================================================
   PART 4 — DEALER • FAQ • CONTACT CTA • KNOWLEDGE HUB • NEWSLETTER
============================================================ */

.dealer-programme{
  background:linear-gradient(180deg,var(--light),#fff);
}
.dealer-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.dealer-content ul{
  display:grid;
  gap:16px;
  margin:28px 0 36px;
}
.dealer-content li{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  color:var(--navy);
}
.dealer-image img{
  border-radius:28px;
  box-shadow:var(--shadow-lg);
  object-fit:cover;
}

.faq-section{background:#fff;}
.faq-container{max-width:900px;margin:auto;}
.faq-item{
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  margin-bottom:18px;
  box-shadow:var(--shadow-sm);
  background:#fff;
}
.faq-question{
  width:100%;
  padding:24px 28px;
  background:#fff;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
  color:var(--navy);
  transition:var(--transition);
}
.faq-question:hover{background:var(--light);}
.faq-question span{
  color:var(--teal);
  font-size:26px;
  transition:.3s ease;
}
.faq-item.active .faq-question span{transform:rotate(45deg);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  background:#fff;
}
.faq-answer p{padding:0 28px 28px;}

.contact-cta{
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  color:#fff;
}
.contact-layout{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:center;
}
.contact-cta .section-pill{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.contact-cta h2,.contact-cta p{color:#fff;}
.cta-buttons{display:flex;flex-direction:column;gap:18px;}

.knowledge-hub{
  background: linear-gradient(135deg, #0D1B2A 0%, #0F3A4E 25%, #0F5A6F 50%, #0D4F69 75%, #0A2F3F 100%);
  position: relative;
  overflow: hidden;
}
.knowledge-hub::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 163, 163, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 163, 163, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.knowledge-hub .container{
  position: relative;
  z-index: 1;
}
.knowledge-hub .section-heading h2{color: #fff; font-weight: 700;}
.knowledge-hub .section-heading p{color: rgba(255, 255, 255, 0.85);}
.knowledge-hub .section-pill{background: rgba(15, 163, 163, 0.25); color: #0FA3A3;}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.blog-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}
.blog-card img{width:100%;aspect-ratio:16/10;object-fit:cover;}
.blog-card h3{padding:20px 24px 8px;font-size:20px;}
.blog-card a{
  display:inline-block;
  padding:0 24px 24px;
  color:var(--teal-dark);
  font-weight:700;
}
.blog-content{padding:26px;}
.blog-category{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(20,184,166,.12);
  color:var(--teal-dark);
  font-size:12px;
  font-weight:700;
  margin-bottom:16px;
}
.blog-link{color:var(--teal-dark);font-weight:700;}

.knowledge-search{background:#fff;}
.knowledge-search-form{
  display:flex;
  gap:16px;
  margin:36px auto 28px;
  max-width:760px;
}
.knowledge-search-form input{
  flex:1;
  padding:18px 22px;
  border-radius:999px;
  border:1px solid var(--border);
}
.knowledge-search-form button{
  padding:18px 28px;
  border:none;
  border-radius:999px;
  background:var(--teal);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.knowledge-tags{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.knowledge-tags a{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:600;
  transition:var(--transition);
}
.knowledge-tags a:hover{
  background:var(--teal);
  color:#fff;
  border-color:var(--teal);
}

.newsletter-section{
  background:#fff;
  color:var(--navy);
}
.newsletter-layout{
  display:grid;
  grid-template-columns:1fr auto;
  gap:36px;
  align-items:center;
}
.newsletter-content h2,.newsletter-content p{color:var(--navy);}
.newsletter-section .section-pill{background:rgba(15,163,163,0.15);color:var(--teal);}
.newsletter-form{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  background:linear-gradient(135deg, rgba(15,163,163,0.08) 0%, rgba(15,163,163,0.04) 100%);
  padding:32px;
  border-radius:20px;
  border:2px solid rgba(15,163,163,0.2);
  max-width:680px;
  margin:0 auto;
}
.newsletter-form input{
  flex:1;
  min-width:280px;
  padding:16px 28px;
  border-radius:999px;
  border:2px solid rgba(15,163,163,0.3);
  background:#fff;
  font-size:16px;
  font-weight:500;
  color:var(--navy);
  transition:all 0.3s ease;
}
.newsletter-form input:focus{
  outline:none;
  border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(15,163,163,0.1);
}
.newsletter-form input::placeholder{color:var(--grey);}
.newsletter-form button{
  padding:16px 42px;
  border:none;
  border-radius:999px;
  background:var(--teal);
  color:#fff;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 8px 20px rgba(15,163,163,0.3);
  white-space:nowrap;
}
.newsletter-form button:hover{
  background:#0D8F8F;
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(15,163,163,0.4);
}

/* ============================================================
   PART 5 — FOOTER • FLOATING • COOKIE • PROMO • GUARANTEE
============================================================ */

.promo-banner{
  background: linear-gradient(135deg, #0D1B2A 0%, #0F3A4E 25%, #0F5A6F 50%, #0D4F69 75%, #0A2F3F 100%);
  color:#fff;
  position: relative;
  overflow: hidden;
}
.promo-banner::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 163, 163, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 163, 163, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.promo-layout{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:center;
  position: relative;
  z-index: 1;
}
.promo-content h2,.promo-content p{color:#fff;}
.promo-code{
  font-size:52px;
  font-weight:800;
  color:var(--teal);
  margin-bottom:16px;
  text-align:center;
}
.promo-action{text-align:center;}

.guarantee-section{background:#fff;}
.guarantee-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.guarantee-card{
  padding:30px;
  border-radius:24px;
  background:var(--light);
  text-align:center;
  border:1px solid var(--border);
  transition:var(--transition);
}
.guarantee-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}
.guarantee-card img{width:60px;margin:0 auto 20px;}

.final-banner{
  background:linear-gradient(135deg,var(--teal),#18D4C2);
  color:#fff;
}
.final-layout{
  display:grid;
  grid-template-columns:1fr auto;
  gap:36px;
  align-items:center;
}
.final-layout h2,.final-layout p{color:#fff;}
.final-banner .section-pill{
  background:rgba(255,255,255,.2);
  color:#fff;
}

.footer{
  background:var(--navy);
  color:#E2E8F0;
  padding-top:80px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:42px;
  padding-bottom:60px;
}
.footer-brand img{width:210px;margin-bottom:24px;}
.footer-description{color:#CBD5E1;margin-bottom:24px;}
.footer h4{color:#fff;margin-bottom:18px;}
.footer ul{display:grid;gap:14px;}
.footer a{color:#CBD5E1;transition:var(--transition);}
.footer a:hover{color:var(--teal);}
.trustpilot-footer{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:20px;
}
.trustpilot-footer img{width:120px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:28px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.footer-links{display:flex;gap:22px;flex-wrap:wrap;}
.social-icons{display:flex;gap:16px;margin-top:20px;flex-wrap:wrap;}
.social-icons a{color:#94A3B8;font-size:14px;}
.social-icons a:hover{color:var(--teal);}

.floating-whatsapp,
.floating-phone,
.floating-quote{
  position:fixed;
  right:24px;
  z-index:999;
  border-radius:999px;
  box-shadow:var(--shadow-md);
  transition:var(--transition);
}
.floating-whatsapp{
  bottom:172px;
  width:64px;
  height:64px;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
}
.floating-phone{
  bottom:92px;
  width:64px;
  height:64px;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
}
.floating-quote{
  bottom:24px;
  background:var(--teal);
  color:#fff;
  padding:14px 24px;
  font-weight:700;
}
.floating-whatsapp img,
.floating-phone img{width:34px;}
.floating-whatsapp:hover,
.floating-phone:hover,
.floating-quote:hover{transform:scale(1.08);}

.cookie-banner{
  position:fixed;
  bottom:24px;
  left:24px;
  width:min(440px,calc(100% - 48px));
  background:#fff;
  border-radius:24px;
  box-shadow:var(--shadow-lg);
  padding:26px;
  z-index:1100;
}
.cookie-content p{margin-bottom:18px;font-size:15px;}
.cookie-buttons{display:flex;gap:14px;flex-wrap:wrap;}

.legal-disclaimer{
  background: linear-gradient(135deg, #0D1B2A 0%, #0F3A4E 25%, #0F5A6F 50%, #0D4F69 75%, #0A2F3F 100%);
  border-top:1px solid rgba(15,163,163,0.3);
  border-bottom:1px solid rgba(15,163,163,0.3);
  position: relative;
  overflow: hidden;
}
.legal-disclaimer::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 163, 163, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 163, 163, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.legal-disclaimer .container{
  position: relative;
  z-index: 1;
}
.legal-disclaimer h3{margin-bottom:16px;color:#fff;font-weight:700;}
.legal-disclaimer p{color:rgba(255,255,255,0.85);}

.support-links{background:#fff;}
.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.support-grid a{
  padding:28px;
  border-radius:22px;
  border:1px solid var(--border);
  background:var(--light);
  transition:var(--transition);
  display:block;
}
.support-grid a:hover{
  background:#fff;
  box-shadow:var(--shadow-md);
  transform:translateY(-6px);
}
.support-grid h4{margin-bottom:8px;}

/* ============================================================
   PART 6 — PREMIUM QUOTE ENGINE • PLAN SELECTOR • ELIGIBILITY
============================================================ */

.premium-quote-section{
  background:linear-gradient(180deg,#fff,#F8FCFD);
}
.premium-quote-section .quote-progress{margin:40px 0 60px;}
.premium-quote-section .quote-progress-bar{
  height:10px;
  width:33%;
  background:linear-gradient(90deg,var(--teal),#2DD4BF);
  border-radius:999px;
  transition:.4s;
}
.premium-quote-section .quote-progress-labels{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  font-size:13px;
  font-weight:700;
  color:var(--grey);
}
.premium-quote-section .quote-step{
  display:none;
  animation:fadeQuote .4s ease;
}
.premium-quote-section .quote-step.active{display:block;}
@keyframes fadeQuote{
  from{opacity:0;transform:translateY(16px);}
  to{opacity:1;transform:none;}
}

.plan-selector{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:32px 0;
}
.plan-option input{display:none;}
.plan-option .plan-card{
  cursor:pointer;
  border:2px solid var(--border);
  border-radius:26px;
  padding:30px;
  transition:.35s;
  background:#fff;
  height:100%;
}
.plan-option input:checked + .plan-card{
  border-color:var(--teal);
  background:rgba(20,184,166,.06);
  box-shadow:0 12px 32px rgba(20,184,166,.18);
}
.plan-option .plan-card.featured{position:relative;border-color:var(--teal);}
.plan-option .popular-badge{
  position:absolute;
  top:-12px;
  left:24px;
  background:var(--teal);
  color:#fff;
  padding:8px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.plan-option .plan-card ul{margin-top:22px;display:grid;gap:12px;}
.plan-option .plan-card li{font-weight:600;color:var(--navy);}

.eligibility-section{background:#fff;}
.eligibility-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.eligibility-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow-md);
}
.eligibility-item{margin-bottom:20px;}
.eligibility-item label{display:block;margin-bottom:10px;font-weight:700;}
.eligibility-item select{
  width:100%;
  padding:18px;
  border-radius:16px;
  border:1px solid var(--border);
}

.quote-loading,.quote-success{
  position:fixed;
  inset:0;
  background:rgba(6,23,40,.82);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
  padding:24px;
}
.quote-loading.active,.quote-success.active{display:flex;}
.loading-box,.success-box{
  background:#fff;
  padding:42px;
  border-radius:30px;
  text-align:center;
  max-width:480px;
  width:100%;
  box-shadow:var(--shadow-lg);
}
.spinner{
  width:72px;
  height:72px;
  border:6px solid #E2E8F0;
  border-top-color:var(--teal);
  border-radius:50%;
  margin:0 auto 24px;
  animation:spin 1s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg);}}
.success-box img{width:84px;margin:0 auto 20px;}
.success-box h3{margin-bottom:14px;}

/* ============================================================
   PART 7 — TRUSTPILOT SLIDER • EXIT POPUP • STICKY CTA • COOKIE PREFS
============================================================ */

.review-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:28px;
}
.review-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#CBD5E1;
  cursor:pointer;
  transition:.3s;
}
.review-dot.active{background:var(--teal);transform:scale(1.2);}

.exit-popup{
  position:fixed;
  inset:0;
  background:rgba(6,23,40,.82);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1900;
  padding:24px;
}
.exit-popup.active{display:flex;}
.exit-box{
  background:#fff;
  border-radius:30px;
  padding:42px;
  max-width:560px;
  width:100%;
  text-align:center;
  position:relative;
  box-shadow:var(--shadow-lg);
}
.exit-close{
  position:absolute;
  top:18px;
  right:18px;
  width:40px;
  height:40px;
  border:none;
  background:#F1F5F9;
  border-radius:50%;
  font-size:22px;
  cursor:pointer;
}

.sticky-mobile-cta{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:var(--navy);
  padding:14px 18px;
  z-index:1800;
  box-shadow:0 -10px 30px rgba(0,0,0,.18);
}
.sticky-mobile-cta a{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  background:var(--teal);
  color:#fff;
  padding:16px;
  border-radius:999px;
  font-weight:700;
}
.sticky-mobile-cta img{width:22px;}

.cookie-preferences{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(6,23,40,.75);
  align-items:center;
  justify-content:center;
  z-index:2100;
  padding:24px;
}
.cookie-preferences.active{display:flex;}
.cookie-preferences-card{
  background:#fff;
  border-radius:28px;
  padding:34px;
  max-width:560px;
  width:100%;
  box-shadow:var(--shadow-lg);
}
.cookie-option{
  padding:14px 0;
  border-bottom:1px solid var(--border);
}
.cookie-option label{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
}
.cookie-option:last-child{border-bottom:none;}

#scrollProgress{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  background:var(--teal);
  width:0;
  z-index:3000;
}

.back-to-top{
  position:fixed;
  bottom:24px;
  left:24px;
  width:56px;
  height:56px;
  background:var(--navy);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:.3s;
  box-shadow:var(--shadow-md);
  z-index:900;
}
.back-to-top.show{opacity:1;pointer-events:auto;}
.back-to-top img{width:20px;}

/* ============================================================
   PART 8 — KNOWLEDGE HUB • BLOG PAGES • ARTICLE COMPONENTS
============================================================ */

.knowledge-hub-page{background:#fff;padding-top:120px;}
.blog-hero{text-align:center;padding-bottom:70px;}
.blog-hero h1{max-width:900px;margin:auto auto 20px;}
.blog-hero p{max-width:760px;margin:auto;}

.blog-featured{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:36px;
  margin-bottom:70px;
}
.featured-image img{
  border-radius:28px;
  aspect-ratio:16/10;
  object-fit:cover;
  box-shadow:var(--shadow-lg);
}
.featured-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.blog-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:18px;
  color:var(--grey);
  font-size:14px;
  font-weight:600;
}
.blog-grid-large{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.article-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:var(--transition);
  box-shadow:var(--shadow-sm);
}
.article-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}
.article-card img{aspect-ratio:16/9;object-fit:cover;}
.article-card-content{padding:24px;}
.article-card-content h3{font-size:22px;margin-bottom:12px;}
.article-card-content p{margin-bottom:18px;}
.article-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.article-tag{
  background:var(--teal-soft);
  color:var(--teal-dark);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.article-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:60px;
  align-items:start;
}
.article-sidebar{position:sticky;top:120px;}
.sidebar-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow-sm);
  margin-bottom:24px;
}
.sidebar-card h4{margin-bottom:16px;}
.sidebar-card ul{display:grid;gap:12px;}
.sidebar-card a:hover{color:var(--teal-dark);}
.article-content{max-width:760px;}
.article-content h2{margin-top:50px;margin-bottom:20px;}
.article-content h3{margin-top:36px;margin-bottom:16px;}
.article-content p{margin-bottom:18px;}
.article-content ul{
  list-style:disc;
  padding-left:22px;
  margin-bottom:24px;
}
.article-content li{margin-bottom:10px;}
.article-content blockquote{
  background:var(--teal-soft);
  border-left:4px solid var(--teal);
  padding:24px;
  border-radius:18px;
  margin:34px 0;
  font-style:italic;
}
.table-of-contents{display:grid;gap:10px;}
.table-of-contents a{
  padding:10px 14px;
  border-radius:12px;
  transition:var(--transition);
}
.table-of-contents a:hover{
  background:var(--light);
  color:var(--teal-dark);
}
.related-posts{margin-top:80px;}
.related-posts-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* ============================================================
   PART 9 — ABOUT • COVERAGE TABLES • COMPARISON • UTILITIES
============================================================ */

.about-section,.about-preview{
  background:linear-gradient(180deg,#fff,var(--light));
}
.about-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.about-image img{
  border-radius:30px;
  box-shadow:var(--shadow-lg);
}
.about-list{
  display:grid;
  gap:18px;
  margin-top:28px;
}
.about-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.stats-section{background:#fff;}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:40px;
}
.stat-card,.stat-box{
  background:#fff;
  border-radius:22px;
  padding:28px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.stat-card h3,.stat-box h2{
  color:var(--teal);
  font-size:38px;
  margin-bottom:8px;
}
.stat-card span,.stat-box span{color:var(--grey);font-weight:600;}

.coverage-table-wrapper{
  overflow:auto;
  border-radius:24px;
  box-shadow:var(--shadow-sm);
}
.coverage-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
.coverage-table th{
  background:var(--navy);
  color:#fff;
  padding:20px;
  text-align:left;
}
.coverage-table td{
  padding:18px;
  border-bottom:1px solid var(--border);
}
.coverage-table tr:nth-child(even) td{background:#F8FBFD;}
.coverage-check{color:var(--success);font-weight:700;}
.coverage-cross{color:var(--danger);font-weight:700;}

.comparison-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.compare-card{
  border-radius:26px;
  padding:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.compare-card h3{margin-bottom:20px;}
.compare-card ul{display:grid;gap:12px;}

.info-box{
  border-left:5px solid var(--teal);
  background:var(--teal-soft);
  padding:24px;
  border-radius:18px;
  margin:28px 0;
}
.warning-box{
  border-left:5px solid var(--warning);
  background:#FEF3C7;
  padding:24px;
  border-radius:18px;
  margin:28px 0;
}
.success-box-inline{
  border-left:5px solid var(--success);
  background:#DCFCE7;
  padding:24px;
  border-radius:18px;
  margin:28px 0;
}

.icon-list{display:grid;gap:18px;}
.icon-list li{display:flex;gap:16px;align-items:flex-start;}
.icon-list img{width:24px;flex-shrink:0;}

.divider{
  width:100%;
  height:1px;
  background:var(--border);
  margin:60px 0;
}

/* ============================================================
   QUOTE JOURNEY — 4 STEP FORM WITH KLARNA
============================================================ */

.instant-quote-card{
  background:#fff;
  border-radius:28px;
  padding:40px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--border);
  max-width:760px;
  margin:auto;
}

.instant-quote-card h3{
  color:var(--navy);
  font-size:24px;
  margin-bottom:30px;
  text-align:center;
}

.quote-step{
  display:none;
}

.quote-step.active{
  display:block;
  animation:fadeIn .4s ease;
}

@keyframes fadeIn{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:none;}
}

.instant-quote-card .form-group select{
  width:100%;
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  font-family:inherit;
  font-size:15px;
  cursor:pointer;
  transition:var(--transition);
  color:var(--navy);
}

.instant-quote-card .form-group select:focus{
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(20,184,166,.12);
}

.instant-quote-card .form-group input.error,
.instant-quote-card .form-group select.error{
  border-color:var(--danger);
  background:#FEF2F2;
}

.step-buttons{
  display:flex;
  gap:16px;
  margin-top:32px;
  justify-content:space-between;
}

.step-buttons.end{
  justify-content:flex-end;
}

.step-buttons.between{
  justify-content:space-between;
}

.step-buttons .btn-outline{
  flex:1;
}

.step-buttons .btn-primary{
  flex:1;
}

/* Klarna Display Styles */
#proceedToCheckout{
  margin-top:10px;
}

/* ============================================================
   MOBILE RESPONSIVE — QUOTE JOURNEY
============================================================ */

@media(max-width:768px){
  .instant-quote-card{
    padding:24px;
    border-radius:20px;
  }

  .instant-quote-card h3{
    font-size:20px;
    margin-bottom:20px;
  }

  .quote-progress-labels{
    font-size:12px;
  }

  .step-buttons{
    flex-direction:column;
    gap:12px;
  }

  .step-buttons .btn-outline,
  .step-buttons .btn-primary{
    width:100%;
  }
}

@media(max-width:480px){
  .instant-quote-card{
    padding:18px;
  }

  .instant-quote-card h3{
    font-size:18px;
    margin-bottom:16px;
  }

  .form-grid{
    grid-template-columns:1fr !important;
  }

  .quote-progress-labels{
    font-size:11px;
    flex-wrap:wrap;
  }

  .quote-progress-labels span{
    flex:0 0 50%;
    text-align:center;
  }

  /* Klarna grid on mobile */
  [style*="grid-template-columns: 1fr 1fr"]{
    grid-template-columns:1fr !important;
  }

  .instant-quote-card .form-group input,
  .instant-quote-card .form-group select{
    font-size:16px;
    padding:14px 16px;
  }

  #quotePrice{
    font-size:42px !important;
  }
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--teal-soft);
  color:var(--teal-dark);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.badge.success{background:#DCFCE7;color:#15803D;}
.badge.warning{background:#FEF3C7;color:#B45309;}

.shadow-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--border);
}
.grid-two{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.grid-three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.trust-badges{background:var(--light);}
.badges-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.badge-card{
  background:#fff;
  border-radius:24px;
  padding:32px;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.badge-card img{width:80px;margin:0 auto 18px;}
.badge-card h3{margin-bottom:10px;}

/* ============================================================
   PART 10 — ANIMATIONS • SCROLL • HOVER • UTILITY EFFECTS
============================================================ */

.fade-left{
  opacity:0;
  transform:translateX(-40px);
  transition:.8s ease;
}
.fade-left.visible{opacity:1;transform:none;}
.fade-right{
  opacity:0;
  transform:translateX(40px);
  transition:.8s ease;
}
.fade-right.visible{opacity:1;transform:none;}
.zoom-in{
  opacity:0;
  transform:scale(.9);
  transition:.7s ease;
}
.zoom-in.visible{opacity:1;transform:scale(1);}

@keyframes floatY{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}
.float-animation{animation:floatY 4s ease-in-out infinite;}

@keyframes pulseGlow{
  0%,100%{box-shadow:0 0 0 0 rgba(20,184,166,.35);}
  70%{box-shadow:0 0 0 16px rgba(20,184,166,0);}
}
.pulse-button{animation:pulseGlow 2.5s infinite;}

.card-hover{transition:.35s ease;}
.card-hover:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow-lg);
}

.gradient-border{
  position:relative;
  border-radius:28px;
  padding:2px;
  background:linear-gradient(135deg,var(--teal),var(--navy));
}
.gradient-border>*{
  background:#fff;
  border-radius:26px;
  padding:28px;
}

.counter-section{background:var(--navy);color:#fff;}
.counter-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  text-align:center;
}
.counter-card h3{font-size:48px;color:var(--teal);margin-bottom:10px;}
.counter-card p{color:#CBD5E1;}

.progress-circle{
  width:120px;
  height:120px;
  border-radius:50%;
  background:conic-gradient(var(--teal) 270deg,#E2E8F0 0);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
}
.progress-circle span{
  background:#fff;
  width:90px;
  height:90px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:var(--navy);
}

.scroll-reveal{
  opacity:0;
  transform:translateY(30px);
  transition:.8s ease;
}
.scroll-reveal.show{opacity:1;transform:none;}

.hover-lift{transition:.3s ease;}
.hover-lift:hover{transform:translateY(-6px);}
.hover-scale{transition:.3s ease;}
.hover-scale:hover{transform:scale(1.04);}
.hover-shadow:hover{box-shadow:var(--shadow-lg);}

.glass-card{
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:28px;
  padding:28px;
}

.ribbon{
  position:absolute;
  top:22px;
  right:-36px;
  background:var(--teal);
  color:#fff;
  padding:10px 40px;
  transform:rotate(45deg);
  font-size:12px;
  font-weight:700;
}

/* ============================================================
   PART 11 — RESPONSIVE (TABLET + MOBILE + LARGE DESKTOP)
============================================================ */

@media(max-width:1200px){
  .container{width:min(94%,1140px);}
  .hero-layout,.hero-container,
  .dealer-layout,.about-layout,
  .contact-layout,.newsletter-layout,
  .coverage-layout,.ev-layout,
  .uk-coverage .coverage-layout,
  .estimator-layout,.repair-layout{grid-template-columns:1fr;}
  .hero{text-align:center;}
  .hero-buttons{justify-content:center;}
  .hero-features{grid-template-columns:1fr;}
  .hero-description{margin-left:auto;margin-right:auto;}
}

@media(max-width:992px){
  section{padding:80px 0;}
  .plans-grid,.drivers-grid,.benefits-grid,
  .comparison-cards,.grid-three,.blog-grid,
  .blog-grid-large,.related-posts-grid,
  .vehicle-grid,.steps-grid,.promise-grid,
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .coverage-grid,.form-grid,.support-grid,
  .grid-two{grid-template-columns:1fr;}
  .intro-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .navbar{padding:18px 0;}
  .nav-links,.navbar nav,.nav-actions{display:none;}
  .mobile-menu-toggle,.menu-toggle{display:flex;}
  .trust-strip{grid-template-columns:repeat(2,1fr);}
  .brands-grid{grid-template-columns:repeat(3,1fr);}
}

@media(max-width:768px){
  body{font-size:15px;}
  h1{font-size:40px;}
  h2{font-size:34px;}
  h3{font-size:24px;}
  p{font-size:16px;}
  section{padding:70px 0;}
  .plans-grid,.drivers-grid,.benefits-grid,
  .guarantee-grid,.comparison-cards,.grid-three,
  .blog-grid,.blog-grid-large,.related-posts-grid,
  .footer-grid,.stats-grid,.vehicle-grid,
  .steps-grid,.promise-grid,.why-grid,
  .repair-grid,.badges-grid,.intro-grid{grid-template-columns:1fr;}
  .plan-card.featured{transform:none;}
  .hero-card,.dealer-image img,.review-card,
  .coverage-card,.benefit-card,.driver-card{border-radius:22px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .trust-bar-layout,.promo-layout,
  .contact-layout,.newsletter-layout,
  .final-layout{grid-template-columns:1fr;text-align:center;}
  .knowledge-search-form,.newsletter-form{flex-direction:column;}
  .knowledge-search-form input,.newsletter-form input{width:100%;min-width:100%;}
  .sticky-mobile-cta{display:block;}
  .floating-quote{display:none;}
  .exit-box,.cookie-preferences-card{padding:28px;}
  .brands-grid{grid-template-columns:repeat(2,1fr);}
  .promise-strip-grid{grid-template-columns:1fr;}
  .claim-step{flex-direction:column;}
  .claims-timeline::before{display:none;}
  .review-card{padding:28px;}
  .trust-strip{grid-template-columns:1fr;}
  .ev-feature-grid{grid-template-columns:1fr;}
  .plan-selector,.eligibility-layout{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .step-buttons{flex-direction:column;}
  .counter-grid{grid-template-columns:1fr;}
  .progress-circle{width:96px;height:96px;}
  .progress-circle span{width:70px;height:70px;font-size:14px;}
  .blog-featured,.article-layout,
  .related-posts-grid,.blog-grid-large{grid-template-columns:1fr;}
  .article-sidebar{position:relative;top:auto;}
  .about-layout,.comparison-cards,.grid-two,.grid-three{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:1fr;}
  .guarantee-grid{grid-template-columns:1fr;}
  .support-grid{grid-template-columns:1fr;}
}

@media(max-width:480px){
  .container{width:92%;}
  .hero-buttons,.step-buttons{flex-direction:column;width:100%;}
  .btn-primary,.btn-secondary,.btn-outline{width:100%;}
  .floating-whatsapp,.floating-phone{width:54px;height:54px;right:14px;}
  .floating-whatsapp img,.floating-phone img{width:28px;}
  .floating-phone{bottom:96px;}
  .floating-whatsapp{bottom:160px;}
  .cookie-banner{
    left:12px;right:12px;bottom:12px;
    width:auto;padding:20px;
  }
  .cookie-buttons{flex-direction:column;}
}

@media(min-width:1440px){
  .container{max-width:1320px;}
  .hero{min-height:1080px;}
  .hero-content h1{font-size:78px;}
  .section-heading h2{font-size:60px;}
  .plans-grid,.benefits-grid,.drivers-grid,.guarantee-grid{gap:34px;}
}

@media print{
  body{background:#fff;color:#000;}
  .header,.navbar,.footer,
  .floating-whatsapp,.floating-phone,.floating-quote,
  .cookie-banner,.sticky-mobile-cta,.exit-popup,
  .quote-loading,.quote-success,.top-trust-bar,.topbar,
  .loader,.back-to-top{display:none!important;}
  section{padding:20px 0;}
  a{color:#000;text-decoration:none;}
}

/* ============================================================
   PART 12 — UTILITIES • ACCESSIBILITY • PERFORMANCE • POLISH
============================================================ */

.mt-0{margin-top:0!important;}
.mt-1{margin-top:8px!important;}
.mt-2{margin-top:16px!important;}
.mt-3{margin-top:24px!important;}
.mt-4{margin-top:32px!important;}
.mt-5{margin-top:48px!important;}
.mt-6{margin-top:64px!important;}
.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:8px!important;}
.mb-2{margin-bottom:16px!important;}
.mb-3{margin-bottom:24px!important;}
.mb-4{margin-bottom:32px!important;}
.mb-5{margin-bottom:48px!important;}
.mb-6{margin-bottom:64px!important;}
.pt-0{padding-top:0!important;}
.pt-2{padding-top:20px!important;}
.pt-4{padding-top:40px!important;}
.pb-0{padding-bottom:0!important;}
.pb-2{padding-bottom:20px!important;}
.pb-4{padding-bottom:40px!important;}

.text-center{text-align:center!important;}
.text-left{text-align:left!important;}
.text-right{text-align:right!important;}

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

.w-100{width:100%!important;}
.h-100{height:100%!important;}
.hidden{display:none!important;}
.visible{display:block!important;}

.radius-sm{border-radius:14px!important;}
.radius-md{border-radius:20px!important;}
.radius-lg{border-radius:28px!important;}
.radius-xl{border-radius:36px!important;}
.rounded-full{border-radius:999px!important;}

.border{border:1px solid var(--border);}
.border-teal{border:1px solid var(--teal);}
.border-navy{border:1px solid var(--navy);}

.bg-white{background:#fff;}
.bg-light{background:var(--light);}
.bg-navy{background:var(--navy);color:#fff;}
.bg-teal{background:var(--teal);color:#fff;}
.bg-soft-teal{background:var(--teal-soft);}

.text-navy{color:var(--navy);}
.text-teal{color:var(--teal);}
.text-grey{color:var(--grey);}
.text-white{color:#fff;}
.text-success{color:var(--success);}
.text-warning{color:var(--warning);}
.text-danger{color:var(--danger);}

.font-light{font-weight:300;}
.font-medium{font-weight:500;}
.font-semibold{font-weight:600;}
.font-bold{font-weight:700;}
.font-extra-bold{font-weight:800;}

.shadow-sm{box-shadow:var(--shadow-sm);}
.shadow-md{box-shadow:var(--shadow-md);}
.shadow-lg{box-shadow:var(--shadow-lg);}

.img-cover{width:100%;height:100%;object-fit:cover;}
.img-contain{width:100%;height:100%;object-fit:contain;}

.transition{transition:var(--transition);}
.hover-opacity:hover{opacity:.85;}
.hover-teal:hover{color:var(--teal);}
.hover-bg-teal:hover{background:var(--teal);color:#fff;}

:focus-visible{
  outline:3px solid rgba(20,184,166,.35);
  outline-offset:3px;
  border-radius:8px;
}

.skip-link{
  position:absolute;
  top:-50px;
  left:20px;
  background:#fff;
  color:var(--navy);
  padding:12px 18px;
  border-radius:999px;
  box-shadow:var(--shadow-md);
  z-index:5000;
  transition:.3s ease;
}
.skip-link:focus{top:20px;}

::selection{
  background:rgba(20,184,166,.22);
  color:var(--navy);
}

img,button,a,input,select,textarea{transition:var(--transition);}

::-webkit-scrollbar{width:10px;}
::-webkit-scrollbar-track{background:#F1F5F9;}
::-webkit-scrollbar-thumb{background:var(--teal);border-radius:999px;}
::-webkit-scrollbar-thumb:hover{background:var(--teal-dark);}

.lazy-image{opacity:0;transition:opacity .5s ease;}
.lazy-image.loaded{opacity:1;}

@media(prefers-reduced-motion:reduce){
  *{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

@media(min-width:1600px){
  .container{max-width:1400px;}
  h1{font-size:86px;}
  h2{font-size:64px;}
  .hero-content p{font-size:22px;}
}

/* ============================================================
   PART 13 — PREMIUM NAVIGATION • MEGA MENU • STICKY HEADER • BREADCRUMBS
============================================================ */

.mega-menu{
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  background:#fff;
  border-top:1px solid var(--border);
  box-shadow:var(--shadow-lg);
  padding:42px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px);
  transition:.35s ease;
  z-index:999;
}
.nav-item:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:none;
}
.mega-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
}
.mega-column h4{
  margin-bottom:18px;
  font-size:15px;
  text-transform:uppercase;
  color:var(--teal);
}
.mega-column ul{display:grid;gap:12px;}
.mega-column a{font-weight:600;color:var(--navy);}
.mega-column a:hover{color:var(--teal);}

.header.transparent{background:transparent;}
.header.scrolled{background:#fff;box-shadow:0 8px 30px rgba(2,8,23,.08);}
.header.scrolled .nav-links a{color:var(--navy);}

.mobile-dropdown{
  border-top:1px solid var(--border);
  padding-top:18px;
}
.mobile-dropdown summary{font-weight:700;cursor:pointer;}
.mobile-dropdown ul{margin-top:14px;display:grid;gap:10px;}

.breadcrumbs{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--grey);
  margin-bottom:28px;
}
.breadcrumbs a:hover{color:var(--teal);}

.page-hero{
  padding:160px 0 90px;
  background:linear-gradient(180deg,var(--navy),var(--navy-light));
  color:#fff;
}
.page-hero h1,.page-hero p{color:#fff;}

.search-nav{position:relative;}
.search-nav input{
  padding:12px 44px 12px 18px;
  border-radius:999px;
  border:1px solid var(--border);
  width:220px;
}
.search-nav button{
  position:absolute;
  right:6px;
  top:6px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
}

@media(max-width:1024px){
  .mega-menu{display:none;}
  .search-nav{display:none;}
}

/* ============================================================
   PART 14 — TABS • ACCORDIONS • TESTIMONIALS • COMPARISON
============================================================ */

.tabs{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:34px;
}
.tab-button{
  padding:14px 22px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}
.tab-button.active,.tab-button:hover{
  background:var(--teal);
  color:#fff;
  border-color:var(--teal);
}
.tab-panel{display:none;animation:fadeTab .3s ease;}
.tab-panel.active{display:block;}
@keyframes fadeTab{
  from{opacity:0;transform:translateY(12px);}
  to{opacity:1;transform:none;}
}

.testimonials-carousel{position:relative;overflow:hidden;}
.testimonial-track{display:flex;transition:transform .5s ease;}
.testimonial-card{
  min-width:100%;
  padding:36px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow-md);
}
.testimonial-stars{color:#00B67A;font-size:20px;margin-bottom:16px;}
.carousel-controls{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:26px;
}
.carousel-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:var(--navy);
  color:#fff;
  cursor:pointer;
}

.accordion{display:grid;gap:16px;}
.accordion-item{
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  background:#fff;
}
.accordion-header{
  padding:22px 24px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  font-weight:700;
}
.accordion-body{display:none;padding:0 24px 24px;}
.accordion-item.active .accordion-body{display:block;}

.comparison-toggle{
  display:flex;
  background:#EEF4F8;
  padding:6px;
  border-radius:999px;
  gap:6px;
}
.comparison-toggle button{
  flex:1;
  border:none;
  padding:12px 16px;
  border-radius:999px;
  background:transparent;
  font-weight:700;
  cursor:pointer;
}
.comparison-toggle button.active{
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.feature-table{
  overflow:auto;
  border-radius:22px;
  box-shadow:var(--shadow-sm);
}
.feature-table table{
  min-width:900px;
  width:100%;
  border-collapse:collapse;
}
.feature-table th{
  background:var(--navy);
  color:#fff;
  padding:18px;
}
.feature-table td{
  padding:16px;
  border-bottom:1px solid var(--border);
}

.vehicle-tabs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.vehicle-tab-card{
  padding:22px;
  border:1px solid var(--border);
  border-radius:20px;
  text-align:center;
  cursor:pointer;
  transition:.3s;
}
.vehicle-tab-card.active,.vehicle-tab-card:hover{
  border-color:var(--teal);
  background:rgba(20,184,166,.06);
}

@media(max-width:768px){
  .vehicle-tabs{grid-template-columns:repeat(2,1fr);}
  .tabs{flex-direction:column;}
  .carousel-controls{margin-top:18px;}
}

/* ============================================================
   PART 15 — ADVANCED FORMS • HUBSPOT • VALIDATION • SUCCESS
============================================================ */

.hubspot-form-container{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:36px;
  box-shadow:var(--shadow-md);
}
.hubspot-form-container h3{margin-bottom:20px;}
.hs-form{display:grid;gap:22px;}
.hs-form fieldset{border:none;display:grid;gap:18px;}
.hs-form label{
  display:block;
  font-weight:700;
  margin-bottom:8px;
  color:var(--navy);
}
.hs-form input,
.hs-form textarea,
.hs-form select{
  width:100%;
  padding:18px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  transition:var(--transition);
}
.hs-form input:focus,
.hs-form textarea:focus,
.hs-form select:focus{
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(20,184,166,.12);
}
.hs-error-msg{
  color:var(--danger);
  font-size:13px;
  margin-top:6px;
}
.field-error input,
.field-error textarea,
.field-error select{
  border-color:var(--danger);
  background:#FEF2F2;
}
.field-success input,
.field-success textarea,
.field-success select{
  border-color:var(--success);
  background:#ECFDF5;
}
.validation-message{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin-top:8px;
}
.validation-message.success{color:var(--success);}
.validation-message.error{color:var(--danger);}

.loading-button{
  position:relative;
  pointer-events:none;
  opacity:.9;
}
.loading-button::after{
  content:"";
  position:absolute;
  right:20px;
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.4);
  border-top-color:#fff;
  border-radius:50%;
  animation:spin .8s linear infinite;
}

.form-success-banner{
  background:#DCFCE7;
  border-left:5px solid var(--success);
  color:#166534;
  padding:22px;
  border-radius:18px;
  margin-bottom:24px;
}
.form-error-banner{
  background:#FEE2E2;
  border-left:5px solid var(--danger);
  color:#991B1B;
  padding:22px;
  border-radius:18px;
  margin-bottom:24px;
}

input[type=checkbox],
input[type=radio]{accent-color:var(--teal);}

.checkbox-grid{display:grid;gap:14px;}
.checkbox-grid label{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:500;
}
.form-help{font-size:13px;color:var(--grey);}

.quote-summary{
  background:var(--light);
  border-radius:24px;
  padding:28px;
  border:1px solid var(--border);
}
.quote-summary h4{margin-bottom:18px;}
.quote-summary-row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.quote-summary-row:last-child{border-bottom:none;}
.quote-summary strong{color:var(--navy);}

.file-upload{
  border:2px dashed var(--grey-light);
  border-radius:20px;
  padding:28px;
  text-align:center;
  transition:var(--transition);
}
.file-upload:hover{
  border-color:var(--teal);
  background:var(--teal-soft);
}
.file-upload input{display:none;}
.file-upload span{
  display:block;
  margin-top:12px;
  color:var(--grey);
}

@media(max-width:768px){
  .hubspot-form-container{padding:24px;}
  .quote-summary-row{flex-direction:column;gap:6px;}
}

/* ============================================================
   PART 16 — SEO LANDING PAGES • ABOUT • CLAIMS • CONTACT • PRINT
============================================================ */

.vehicle-page-hero{
  background:linear-gradient(180deg,var(--navy),var(--navy-light));
  color:#fff;
  padding:150px 0 90px;
}
.vehicle-page-hero h1,
.vehicle-page-hero p{color:#fff;}

.vehicle-cover-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:36px;
}
.vehicle-cover-card{
  background:#fff;
  border-radius:24px;
  border:1px solid var(--border);
  padding:30px;
  box-shadow:var(--shadow-sm);
}
.vehicle-cover-card h3{margin-bottom:16px;}

.claims-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.claim-box{
  background:#fff;
  border-radius:24px;
  padding:28px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.claim-box h3{margin-bottom:14px;}

.contact-page-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.contact-card ul{display:grid;gap:14px;}

.map-wrapper{
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.dealer-benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.dealer-benefit{
  background:#fff;
  border-radius:22px;
  padding:26px;
  text-align:center;
  border:1px solid var(--border);
}
.dealer-benefit img{width:56px;margin:0 auto 16px;}

.seo-content{max-width:860px;margin:auto;}
.seo-content h2{margin-top:48px;margin-bottom:18px;}
.seo-content p{margin-bottom:18px;}
.seo-content ul{
  list-style:disc;
  padding-left:24px;
  margin-bottom:24px;
}

.author-box{
  display:flex;
  gap:20px;
  align-items:center;
  background:var(--light);
  border-radius:22px;
  padding:22px;
  margin-top:50px;
}
.author-avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  background:var(--teal);
}

.cta-inline{
  margin:50px 0;
  padding:32px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--teal),#2DD4BF);
  color:#fff;
}
.cta-inline h3,.cta-inline p{color:#fff;}

.print-only{display:none;}

@media(max-width:1024px){
  .vehicle-cover-grid,
  .claims-layout,
  .contact-page-grid,
  .dealer-benefits-grid{grid-template-columns:1fr;}
  .counter-grid{grid-template-columns:repeat(2,1fr);}
}

@media print{
  .no-print{display:none!important;}
  .print-only{display:block!important;}
  body{background:#fff;color:#000;}
  a{text-decoration:none;color:#000;}
  section{page-break-inside:avoid;}
}

/* ============================================================
   END OF CLEARPATH PROTECTION WEBSITE 2.0
   Production CSS (Parts 1–16 Complete)
============================================================ */

/* ============================================================
   CLEARPATH — TOPO v3.3  (logo NÃO achata)
============================================================ */

.top-trust-bar{
  background:var(--navy);
  color:#fff;
  padding:9px 0;
}
.trust-bar-layout{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.trust-left{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
}
.trust-left img{display:none;}
.trust-stars{color:#00B67A;letter-spacing:1px;font-size:13px;}
.trust-right{display:flex;gap:22px;align-items:center;}
.trust-right a{
  color:#fff;font-weight:600;font-size:13px;
  display:inline-flex;align-items:center;gap:8px;
}
.trust-right a:hover{color:var(--teal);}

.trust-right a[href^="tel:"]::before,
.trust-right a[href*="wa.me"]::before,
.trust-right a[href^="mailto:"]::before{
  content:"";
  width:15px;
  height:15px;
  display:inline-block;
  background:currentColor;
  flex:0 0 15px;
}
.trust-right a[href^="tel:"]::before{
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.trust-right a[href*="wa.me"]::before{
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 3.9A10 10 0 0 0 3.2 17.4L2 22l4.7-1.2A10 10 0 0 0 20 3.9zm-8 16.2a8.3 8.3 0 0 1-4.2-1.2l-.3-.2-2.8.7.8-2.7-.2-.3A8.3 8.3 0 1 1 12 20.1zm4.6-6.2c-.3-.1-1.5-.8-1.8-.8-.2-.1-.4-.1-.6.1s-.6.8-.8 1c-.1.2-.3.2-.6.1a6.8 6.8 0 0 1-2-1.2 7.5 7.5 0 0 1-1.4-1.7c-.1-.3 0-.4.1-.6l.4-.5c.1-.1.2-.3.2-.4 0-.2 0-.3 0-.4s-.6-1.5-.8-2c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 1.9s.8 2.2.9 2.3c.1.2 1.6 2.5 3.8 3.5 1.4.6 2 .7 2.7.6.4-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.1-1.2 0-.1-.2-.2-.5-.3z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 3.9A10 10 0 0 0 3.2 17.4L2 22l4.7-1.2A10 10 0 0 0 20 3.9zm-8 16.2a8.3 8.3 0 0 1-4.2-1.2l-.3-.2-2.8.7.8-2.7-.2-.3A8.3 8.3 0 1 1 12 20.1zm4.6-6.2c-.3-.1-1.5-.8-1.8-.8-.2-.1-.4-.1-.6.1s-.6.8-.8 1c-.1.2-.3.2-.6.1a6.8 6.8 0 0 1-2-1.2 7.5 7.5 0 0 1-1.4-1.7c-.1-.3 0-.4.1-.6l.4-.5c.1-.1.2-.3.2-.4 0-.2 0-.3 0-.4s-.6-1.5-.8-2c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 1.9s.8 2.2.9 2.3c.1.2 1.6 2.5 3.8 3.5 1.4.6 2 .7 2.7.6.4-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.1-1.2 0-.1-.2-.2-.5-.3z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.trust-right a[href^="mailto:"]::before{
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.topbar{display:none !important;}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:80px;
  height:auto;
  padding:10px 4%;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.logo,
.logo a{
  display:flex !important;
  align-items:center;
  flex:0 0 auto;
  min-width:0 !important;
  width:auto !important;
  line-height:0;
}
.logo img,
.navbar .logo img,
header .logo img{
  display:block !important;
  width:auto !important;
  max-width:240px !important;
  height:58px !important;
  max-height:58px !important;
  object-fit:contain !important;
  object-position:left center !important;
}

.navbar nav{display:flex;gap:26px;align-items:center;}
.navbar nav a{font-weight:600;font-size:15px;color:var(--navy);}

.nav-actions .btn-outline,
.navbar .btn-outline{
  background:linear-gradient(135deg,var(--teal),#18D4C2) !important;
  color:#fff !important;
  border:none !important;
  padding:12px 26px !important;
  box-shadow:0 10px 24px rgba(20,184,166,.28);
}
.nav-actions .btn-outline:hover,
.navbar .btn-outline:hover{
  background:var(--teal-dark) !important;
  color:#fff !important;
}

.hero{
  min-height:auto;
  padding:110px 0 100px;
  background:
    linear-gradient(90deg, rgba(6,23,40,.72) 0%, rgba(6,23,40,.28) 48%, rgba(6,23,40,.12) 100%),
    url("../images/hero/clearpath-hero.jpg") center / cover no-repeat;
  background-color:#0B2341;
}
.hero-overlay{display:none;}
.hero-container,.hero-layout{
  display:block;
  width:min(var(--container),92%);
  margin:auto;
}
.hero-content{
  max-width:1000px;
  display:flex;
  flex-direction:column;
  gap:48px;
  align-items:center;
  text-align:center;
  margin:0 auto;
  padding:60px 40px;
}
.hero-text{max-width:100%;}
.hero-content h1{color:#ffffff !important;margin-bottom:24px;font-size:clamp(48px,7vw,72px);line-height:1.1;font-weight:800;letter-spacing:-0.02em;}
.hero-description{color:#E6EEF7;font-size:clamp(17px,2.5vw,22px);margin-bottom:40px;max-width:100%;line-height:1.6;font-weight:400;}
.hero-quote-card{margin:0;}
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr;max-width:600px;text-align:center;margin-left:auto;margin-right:auto;}
  .hero-text{max-width:100%;}
  .hero-description{margin-left:auto;margin-right:auto;}
  .hero-quote-card{margin:0 auto;}
}
.loader-logo img,
.footer-brand img{
  width:auto !important;
  max-width:200px !important;
  height:52px !important;
  object-fit:contain !important;
}

@media(max-width:992px){
  .navbar{padding:10px 4%;}
  .navbar nav,
  .nav-actions{display:none;}
  .mobile-menu-toggle{display:flex;}
  .hero{padding:70px 0 60px;text-align:center;}
  .hero-content{margin:auto;}
  .hero-buttons{justify-content:center;}
  .trust-bar-layout{justify-content:center;text-align:center;}
  .trust-right{flex-wrap:wrap;justify-content:center;row-gap:6px;}
}
@media(max-width:480px){
  .trust-left,.trust-right{font-size:12px;}
  .trust-right{gap:10px 14px;}
  .trust-right a[href^="mailto:"]{display:none;}
}
@media(max-width:768px){
  .logo img,
  .navbar .logo img{
    width:auto !important;
    max-width:160px !important;
    height:40px !important;
    max-height:40px !important;
  }
}

/* ============================================================
   CLEARPATH FIXES v5.0 — Structure, design & functionality
============================================================ */

/* Trust bar items layout (was missing) */
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 24px 16px;
}
.trust-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}
.trust-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 14px;
  margin: 0;
}

/* Fix hero — single column, no broken closing divs */
.hero {
  min-height: auto;
  padding: 110px 0 100px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6,23,40,.78) 0%, rgba(6,23,40,.45) 55%, rgba(6,23,40,.25) 100%),
    url("../images/hero/clearpath-hero.jpg") center / cover no-repeat;
  background-color: #0B2341;
}
.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1025px) {
  .hero-content {
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: start;
  }
}
.hero-content h1 {
  color: #ffffff !important;
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 64px);
}
.hero-description {
  color: #E6EEF7;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.65;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.feature-item {
  color: #CBD5E1;
  font-size: 15px;
  font-weight: 600;
}

/* Logo never flattens */
.logo img,
.navbar .logo img,
header .logo img {
  display: block !important;
  width: auto !important;
  max-width: 220px !important;
  height: 52px !important;
  max-height: 52px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

/* Mobile menu improvements */
.mobile-menu,
.mobile-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu a,
.mobile-nav a {
  padding: 4px 0;
}

/* FAQ open state */
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 28px 28px;
  margin: 0;
}

/* Coverage grid for "what's covered" list */
.coverage-section .coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
}

/* Plan selector radio cards */
.plan-option {
  display: block;
  cursor: pointer;
}
.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Cookie preferences visibility */
.cookie-preferences {
  display: none;
}
.cookie-preferences.active {
  display: flex;
}

/* Back to top */
.back-to-top {
  opacity: 0;
  pointer-events: none;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Loader hide */
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Body loaded state */
body.loaded {
  opacity: 1;
}

/* Quote form steps */
.quote-step {
  display: none;
}
.quote-step.active {
  display: block;
}

/* Comparison table mobile scroll */
.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table table {
  min-width: 560px;
}

/* Sticky mobile CTA spacing so it doesn't cover content */
@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
  .trust-bar .container {
    grid-template-columns: 1fr 1fr;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .coverage-section .coverage-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 70px 0 60px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .trust-bar .container {
    grid-template-columns: 1fr;
  }
}

/* Accessibility focus */
:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.4);
  outline-offset: 2px;
}

/* Prevent horizontal scroll from floating elements */
html, body {
  overflow-x: hidden;
}

/* Image fallbacks */
img {
  background: transparent;
}

/* ============================================================
   CLEARPATH FIXES v5.1 — Cookie buttons + Hero height + Pages
============================================================ */

/* --- Hero: stop oversized background --- */
.hero {
  min-height: 0 !important;
  height: auto !important;
  padding: 96px 0 88px !important;
  background:
    linear-gradient(100deg, rgba(6,23,40,.82) 0%, rgba(6,23,40,.55) 45%, rgba(6,23,40,.35) 100%),
    url("../images/hero/clearpath-hero.jpg") center / cover no-repeat !important;
  background-color: #0B2341 !important;
}
@media (min-width: 1440px) {
  .hero {
    min-height: 0 !important;
    padding: 110px 0 100px !important;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 64px 0 56px !important;
  }
}

/* --- Cookie banner: clear, working buttons --- */
.cookie-banner {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  width: min(420px, calc(100% - 48px)) !important;
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(2, 8, 23, 0.22) !important;
  padding: 22px 24px !important;
  z-index: 99999 !important;
  border: 1px solid var(--border);
  display: none; /* shown by JS */
}
.cookie-banner.is-visible {
  display: block !important;
}
.cookie-content p {
  margin: 0 0 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--grey) !important;
}
.cookie-buttons {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}
.cookie-buttons .btn-primary,
.cookie-buttons button#acceptCookies {
  flex: 1 1 auto;
  min-width: 110px;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--teal), #18D4C2) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25) !important;
}
.cookie-buttons .btn-outline,
.cookie-buttons button#rejectCookies {
  flex: 1 1 auto;
  min-width: 110px;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--navy) !important;
  border: 2px solid var(--border) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
}
.cookie-buttons .btn-outline:hover,
.cookie-buttons button#rejectCookies:hover {
  border-color: var(--teal) !important;
  color: var(--teal) !important;
  background: #fff !important;
}

/* Cookie preferences modal */
.cookie-preferences {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(6, 23, 40, 0.75) !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 100000 !important;
  padding: 24px !important;
}
.cookie-preferences.active {
  display: flex !important;
}

/* --- Page hero for Plans / About --- */
.page-hero {
  padding: 120px 0 72px;
  background:
    linear-gradient(120deg, rgba(11, 35, 65, 0.92) 0%, rgba(21, 60, 99, 0.85) 100%),
    url("../images/hero/clearpath-hero.jpg") center / cover no-repeat;
  background-color: #0B2341;
  color: #fff;
  text-align: center;
}
.page-hero h1,
.page-hero p {
  color: #fff;
}
.page-hero p {
  max-width: 640px;
  margin: 16px auto 0;
  color: #E6EEF7;
  font-size: 18px;
}
.page-hero .section-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Plans page cards with icons */
.plans-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.plans-page-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.plans-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.plans-page-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.18);
}
.plans-page-card .plan-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.plans-page-card.featured .plan-icon-wrap {
  background: linear-gradient(135deg, var(--teal), #18D4C2);
  color: #fff;
}
.plans-page-card h3 {
  margin-bottom: 8px;
}
.plans-page-card .plan-term {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.plans-page-card ul {
  text-align: left;
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
}
.plans-page-card li {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

/* Feature strip on plans */
.plans-feature-strip {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.plans-feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.plans-feature-strip .feat-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.plans-feature-strip h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}
.plans-feature-strip p {
  color: #94A3B8;
  font-size: 14px;
  margin: 0;
}

/* About page */
.about-hero {
  padding: 120px 0 72px;
  background:
    linear-gradient(135deg, rgba(11, 35, 65, 0.94) 0%, rgba(20, 184, 166, 0.35) 100%),
    url("../images/hero/clearpath-hero.jpg") center / cover no-repeat;
  background-color: #0B2341;
  color: #fff;
  text-align: center;
}
.about-hero h1,
.about-hero p {
  color: #fff;
}
.about-hero p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #E6EEF7;
  font-size: 18px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-value-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.about-value-card .val-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.founder-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.founder-card .founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
  overflow: hidden;
}
.founder-card .founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card h3 {
  margin-bottom: 4px;
}
.founder-card .role {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  display: block;
}
.about-promise-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.about-promise-banner h2,
.about-promise-banner p {
  color: #fff;
}
.about-promise-banner p {
  max-width: 640px;
  margin: 16px auto 28px;
  color: #CBD5E1;
}

@media (max-width: 992px) {
  .plans-page-grid,
  .plans-feature-strip .container,
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .plans-page-grid,
  .plans-feature-strip .container,
  .about-values {
    grid-template-columns: 1fr;
  }
  .page-hero,
  .about-hero {
    padding: 100px 0 56px;
  }
  .cookie-banner {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    bottom: 12px !important;
  }
  .cookie-buttons {
    flex-direction: column !important;
  }
  .cookie-buttons button {
    width: 100% !important;
  }
}

/* ============================================================
   INSTANT QUOTE WIZARD (homepage) — registration + mileage,
   then year + fuel, then instant price, then on to quote-details.html
============================================================ */
.instant-quote-section{
  position: relative;
  overflow: hidden;
}
.instant-quote-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 163, 163, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 163, 163, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.instant-quote-section .container{
  position: relative;
  z-index: 1;
}
.instant-quote-card{
  max-width:640px;margin:40px auto 0;background:#fff;
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:44px;box-shadow:var(--shadow-md);
}
.iq-step{display:none;animation:fadeQuote .4s ease;}
.iq-step.active{display:block;}
.iq-label{display:block;font-weight:700;color:var(--navy);margin:28px 0 14px;}
.iq-fuel-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.iq-fuel-grid.error{outline:2px solid var(--danger);outline-offset:6px;border-radius:var(--radius-sm);}
.iq-fuel-chip{
  padding:16px 8px;border:2px solid var(--border);border-radius:var(--radius-sm);
  background:#fff;font-weight:700;font-size:14px;color:var(--navy);cursor:pointer;
  transition:var(--transition);text-align:center;
}
.iq-fuel-chip:hover{border-color:var(--teal);}
.iq-fuel-chip.active{border-color:var(--teal);background:var(--teal-soft);color:var(--teal-dark);}
.iq-price-preview{
  text-align:center;background:linear-gradient(180deg,var(--navy),var(--navy-dark));
  border-radius:var(--radius-md);padding:40px 28px;color:#fff;margin-bottom:8px;
}
.iq-price-label{display:block;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--teal);margin-bottom:12px;}
.iq-price{font-size:48px;font-weight:800;letter-spacing:-0.02em;}
.iq-price span{font-size:16px;font-weight:500;color:rgba(255,255,255,.6);}
.iq-price-sub{margin-top:8px;font-size:13px;color:rgba(255,255,255,.6);}
.iq-ineligible-text{color:var(--grey);font-size:15px;line-height:1.7;}
@media(max-width:768px){
  .instant-quote-card{padding:28px 22px;}
  .iq-fuel-grid{grid-template-columns:repeat(2,1fr);}
}

/* ============================================================
   PART 13 — SECTIONS WITHOUT A SUPPLIED PHOTO
   (engine bay / EV / team images not yet supplied — content
   column takes the full width instead of leaving a blank gap)
============================================================ */
.coverage-layout.no-image,
.ev-layout.no-image,
.about-layout.no-image {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.coverage-layout.no-image .coverage-grid,
.ev-layout.no-image .ev-feature-grid {
  text-align: left;
}
.coverage-layout.no-image .coverage-content > a,
.ev-layout.no-image .ev-content > a,
.about-layout.no-image .about-content > a {
  margin-left: auto;
  margin-right: auto;
}

/* Brand strip without logo artwork — plain text badges instead of
   fabricated/placeholder brand marks */
.brands-grid-text .brand-item {
  min-height: 64px;
}
.brands-grid-text .brand-item span {
  font-family: var(--font-heading, inherit);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--navy, #0B2341);
}

.coverage-grid-split {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .coverage-grid-split { grid-template-columns: 1fr; }
}

.comparison-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--gray, #667085);
  margin-top: 14px;
}

/* Single-plan layout (ClearPath currently sells one Premium plan) */
.plans-grid.single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.plan-selector.single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

/* Blog cards without a thumbnail image supplied yet */
.blog-card.no-image h3 {
  padding: 28px 24px 8px;
}

@media (max-width: 1200px) {
  .coverage-layout.no-image,
  .ev-layout.no-image,
  .about-layout.no-image {
    max-width: none;
  }
}

/* ============================================================
   MOBILE QUOTE BUTTON — added September 2026
   Paste this at the very END of css/style.css
   ============================================================

   The rule at line ~2550 hides .floating-quote below 768px:

       @media(max-width:768px){
         .sticky-mobile-cta{display:block;}
         .floating-quote{display:none;}
       }

   It hides the button and shows .sticky-mobile-cta in its place.
   The trouble is that .sticky-mobile-cta only exists as MARKUP in
   indexold.html. Not one live page has it. So on every phone, on
   every page, the button was hidden and nothing replaced it.

   This brings the button back and sizes it for a small screen.
   It comes after the media query above, so it wins.
   ============================================================ */

@media (max-width: 768px){

  .floating-quote{
    display:flex !important;
    align-items:center;
    justify-content:center;
    /* clear of the phone and WhatsApp buttons stacked above it */
    right:16px;
    bottom:18px;
    padding:14px 22px;
    font-size:15px;
    border-radius:999px;
    /* comfortably above the 44px minimum tap target */
    min-height:48px;
    box-shadow:0 10px 26px rgba(20,184,166,.34);
  }

  /* pull the other two in to match, so the column lines up */
  .floating-whatsapp,
  .floating-phone{
    right:16px;
    width:54px;
    height:54px;
  }
  .floating-phone{ bottom:80px; }
  .floating-whatsapp{ bottom:146px; }
  .floating-whatsapp img,
  .floating-phone img{ width:28px; }
}

/* Very small phones — keep the stack off the content */
@media (max-width: 380px){
  .floating-quote{ padding:12px 18px; font-size:14px; }
  .floating-whatsapp,
  .floating-phone{ width:48px; height:48px; }
  .floating-phone{ bottom:74px; }
  .floating-whatsapp{ bottom:132px; }
}
/* ==================================================================
   ClearPath â€” one hero headline size across the site
   Paste at the VERY END of css/style.css
   ------------------------------------------------------------------
   Every inner page already shares the same photo, gradient, padding
   and 520px band. The only thing that still made them look like
   different designs was the headline: 72px on Plans and EV & Hybrid,
   48px on Dealers, 38px on Claims, 32px on the Reliability Hub.

   5vw is 72px at 1440px wide -- the size the EV & Hybrid hero you
   liked already uses -- and scales down in step below that, so the
   pages stay matched at every screen size instead of only one.

   The homepage is deliberately not included: .hero is left alone.
   ================================================================== */
.about-hero h1,
.contact-hero h1,
.page-hero h1,
.dp-hero h1,
.gb-hero h1,
.rel-hero h1,
.hero-alt h1,
.nf h1,
.blog-head h1,
.article-head h1,
.page-head h1 {
  font-size: clamp(34px, 5vw, 72px) !important;
  line-height: 1.12 !important;
  margin-bottom: 16px;
}
