/* ---------- Tokens ---------- */
:root{
  --wcar-orange: #FF6600;
  --wcar-orange-dark: #E05800;
  --wcar-orange-light: #FFF1E6;
  --indrive-lime: #BFF01B;
  --indrive-lime-dark: #9FCC12;

  --ink: #17171C;
  --ink-soft: #55555F;
  --ink-faint: #8A8A94;

  --bg: #FFFFFF;
  --bg-soft: #FBF8F5;
  --bg-tint: #FFF6EE;
  --border: #ECE7E1;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(23,23,28,.06), 0 1px 1px rgba(23,23,28,.04);
  --shadow-md: 0 8px 24px rgba(23,23,28,.08);
  --shadow-lg: 0 20px 48px rgba(23,23,28,.14);

  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--font-display); margin: 0; line-height: 1.15; }
p{ margin: 0; }
ul,ol{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input{ font: inherit; color: inherit; }
fieldset{ border: 0; margin: 0; padding: 0; }
legend{ padding: 0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0; z-index: 1000;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 2.5px solid var(--wcar-orange); outline-offset: 2px; }

.container{
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow{ max-width: 780px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary{
  background: var(--wcar-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,102,0,.28);
}
.btn--primary:hover{ background: var(--wcar-orange-dark); transform: translateY(-1px); }
.btn--primary:active{ transform: translateY(0); }
.btn--outline{
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn--outline:hover{ background: var(--ink); color: #fff; }
.btn--large{ padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--small{ padding: .65rem 1.15rem; font-size: .9rem; }
.btn--block{ width: 100%; white-space: normal; }

/* ---------- Header ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wcar-orange) 0%, var(--wcar-orange) 45%, var(--indrive-lime) 100%);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-lockup{
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}
.brand-lockup__logo--wcar{ height: 24px; width: auto; }
.brand-lockup__logo--indrive{ height: 20px; width: auto; }
.brand-lockup__divider{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wcar-orange), var(--indrive-lime));
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.header__cta{ flex-shrink: 0; }

@media (max-width: 420px){
  .brand-lockup__logo--wcar{ height: 20px; }
  .brand-lockup__logo--indrive{ height: 16px; }
  .header__cta{ padding: .6rem .9rem; font-size: .82rem; }
}

/* ---------- Eyebrow ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wcar-orange);
  margin: 0 0 .9rem;
}
.eyebrow--dark{ color: var(--wcar-orange-dark); }
.eyebrow__dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--indrive-lime);
  box-shadow: 0 0 0 3px var(--wcar-orange-light);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 78%);
  padding: 3.2rem 0 3.6rem;
}
.hero__glow{
  position: absolute;
  top: -180px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,102,0,.22) 0%, rgba(255,102,0,0) 70%);
  pointer-events: none;
}
.hero__glow--lime{
  top: auto; right: auto;
  left: -140px; bottom: -160px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(191,240,27,.26) 0%, rgba(191,240,27,0) 70%);
}
.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 960px){
  .hero__inner{ grid-template-columns: 1.05fr .95fr; gap: 3.2rem; }
}
.hero__content{ max-width: 640px; }
.hero__title{
  font-size: clamp(2rem, 6.5vw, 3.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.hero__subtitle{
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .9rem;
}
.hero__support{
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 1.8rem;
}
.hero__actions{ margin-bottom: 1.6rem; }

.trust-chips{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
}
.trust-chip{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--border);
  padding: .45rem .85rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.trust-chip__icon{ width: 15px; height: 15px; color: var(--indrive-lime-dark); flex-shrink: 0; }
.trust-chip--indrive{
  background: var(--indrive-lime);
  border-color: transparent;
  color: var(--ink);
}
.trust-chip--indrive .trust-chip__icon{ color: var(--ink); }

@media (min-width: 720px){
  .hero{ padding: 5.5rem 0 6rem; }
}

/* ---------- Editorial images + placeholders ---------- */
.img-placeholder{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1.6rem;
  text-align: center;
  border: 2px dashed rgba(255,102,0,.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--wcar-orange-light), #fff);
  color: var(--wcar-orange-dark);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.4;
}
.img-placeholder svg{ width: 32px; height: 32px; opacity: .75; }
.img-placeholder--dark{
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  color: rgba(255,255,255,.85);
}
.img-placeholder--active img{ display: none; }
.img-placeholder--active .img-placeholder{ display: flex; }

.hero__media{ position: relative; }
.hero__photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero__media .img-placeholder{ aspect-ratio: 1 / 1; box-shadow: var(--shadow-lg); }

.alliance-badge{
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: .5rem 1rem .5rem .5rem;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  max-width: calc(100% - 28px);
}
.alliance-badge__icon{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wcar-orange), var(--indrive-lime));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alliance-badge__icon svg{ width: 14px; height: 14px; }
@media (min-width: 960px){
  .alliance-badge{ left: 20px; bottom: 20px; padding: .6rem 1.2rem .6rem .6rem; font-size: .85rem; }
  .alliance-badge__icon{ width: 30px; height: 30px; }
  .alliance-badge__icon svg{ width: 16px; height: 16px; }
}
@media (min-width: 960px){
  .hero__photo, .hero__media .img-placeholder{ aspect-ratio: 4 / 5; }
}

/* ---------- Sections ---------- */
.section{ padding: 3.6rem 0; }
.section--tint{ background: var(--bg-soft); }
.section__head{ max-width: 640px; margin-bottom: 2.2rem; }
.section__title{
  font-size: clamp(1.6rem, 4.2vw, 2.3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
}
.section__title--light{ color: #fff; }

@media (min-width: 720px){
  .section{ padding: 5.5rem 0; }
}

/* ---------- Benefits ---------- */
.benefits-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 680px){
  .benefits-grid{ grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}
.benefit-card{
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--wcar-orange);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:nth-child(2){ border-top-color: var(--indrive-lime); }
.benefit-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon{
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--wcar-orange-light);
  color: var(--wcar-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.benefit-card__icon--lime{
  background: var(--indrive-lime);
  color: var(--ink);
}
.benefit-card__icon svg{ width: 24px; height: 24px; }
.benefit-card__title{
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.benefit-card__text{ color: var(--ink-soft); font-size: .95rem; }

/* ---------- Why grid ---------- */
.why-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 860px){
  .why-grid{ grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}
.why-grid__text{
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  font-size: 1rem;
}
.why-grid__copy .btn{ margin-top: .6rem; }

.why-grid__photo{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.why-grid__media .img-placeholder{ aspect-ratio: 4 / 3; }

.why-grid__stats{
  display: grid;
  gap: .9rem;
  position: relative;
  z-index: 2;
  margin-top: -2.25rem;
  padding: 0 .9rem;
}
@media (min-width: 480px){
  .why-grid__stats{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px){
  .why-grid__stats{ grid-template-columns: 1fr; }
}
.stat-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
}
.stat-card__icon{ width: 28px; height: 28px; color: var(--wcar-orange); margin-bottom: .8rem; }
.stat-card__icon--lime{ color: var(--indrive-lime-dark); }
.stat-card h3{ font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.stat-card p{ color: var(--ink-soft); font-size: .92rem; }

/* ---------- Steps ---------- */
.steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  counter-reset: step;
}
@media (min-width: 780px){
  .steps{ grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}
.step{
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--wcar-orange);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.step:nth-child(2){ border-top-color: var(--indrive-lime); }
.step__number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--indrive-lime);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.step__title{ font-size: 1.08rem; font-weight: 700; margin-bottom: .5rem; }
.step__text{ color: var(--ink-soft); font-size: .93rem; }

/* ---------- Form section ---------- */
.section--form{
  background: var(--ink);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(255,102,0,.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(191,240,27,.18), transparent 55%);
  color: #fff;
}
.form-panel{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 900px){
  .form-panel{ grid-template-columns: .85fr 1.15fr; gap: 3.2rem; align-items: start; }
}
.form-panel__text{ color: rgba(255,255,255,.78); margin-bottom: 1.3rem; }
.form-panel__list{ display: grid; gap: .6rem; }
.form-panel__list li{
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}
.form-panel__list li::before{
  content: '';
  position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--indrive-lime);
}

.form-panel__media{ margin-top: 1.5rem; }
.form-panel__photo{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.form-panel__media .img-placeholder{ aspect-ratio: 16 / 9; }
@media (min-width: 900px){
  .form-panel__media{ margin-top: 1.9rem; }
}

.lead-form{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 560px){
  .lead-form{ padding: 2.2rem; }
}
.lead-form--embed{ overflow: hidden; }
.lead-form--embed iframe{ max-width: 100%; }

/* ---------- FAQ ---------- */
.faq-list{ display: grid; gap: .8rem; }
.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.faq-item__question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  font-size: .98rem;
}
.faq-item__icon{
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after{
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--wcar-orange);
  transform: translate(-50%,-50%);
  transition: transform .2s ease;
}
.faq-item__icon::before{ width: 14px; height: 2px; }
.faq-item__icon::after{ width: 2px; height: 14px; }
.faq-item__question[aria-expanded="true"] .faq-item__icon::after{ transform: translate(-50%,-50%) rotate(90deg) scale(0); }

.faq-item__answer{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item__answer > p{
  overflow: hidden;
  padding: 0 1.3rem;
  color: var(--ink-soft);
  font-size: .93rem;
}
.faq-item__question[aria-expanded="true"] + .faq-item__answer{ grid-template-rows: 1fr; }
.faq-item__question[aria-expanded="true"] + .faq-item__answer > p{ padding-bottom: 1.2rem; }
.faq-item__answer{ display: grid; }
.faq-item__answer > p{ min-height: 0; }

/* ---------- CTA final ---------- */
.cta-final{
  background: var(--wcar-orange);
  background-image: linear-gradient(135deg, var(--wcar-orange) 0%, var(--wcar-orange-dark) 100%);
  padding: 4rem 0;
}
.cta-final__inner{
  max-width: 680px;
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}
.cta-final__title{
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  color: #fff;
}
.cta-final__text{ color: rgba(255,255,255,.92); font-size: 1rem; }
.cta-final__title::after{
  content: '';
  display: block;
  width: 64px; height: 4px;
  margin: .9rem auto 0;
  border-radius: 2px;
  background: var(--indrive-lime);
}
.cta-final .btn--primary{
  background: #fff;
  color: var(--wcar-orange-dark);
  box-shadow: var(--shadow-md);
}
.cta-final .btn--primary:hover{ background: var(--ink); color: #fff; }

/* ---------- Footer ---------- */
.footer{ position: relative; padding: 2.4rem 0 5.5rem; background: var(--bg-soft); border-top: 1px solid var(--border); }
.footer::before{
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indrive-lime) 0%, var(--wcar-orange) 100%);
}
.footer__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__copy{ color: var(--ink-faint); font-size: .82rem; }

@media (min-width: 720px){
  .footer{ padding-bottom: 2.4rem; }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  transform: translateY(0);
  transition: transform .25s ease;
}
.mobile-cta.is-hidden{ transform: translateY(110%); }

@media (min-width: 720px){
  .mobile-cta{ display: none; }
}
