/* ============================================================
   Accord Solutions — Smart EV Solutions
   Theme: Blue (brand) + Green (eco accent) + White
   Fonts: Poppins (headings) / Open Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand blue */
  --blue-50:  #eef5ff;
  --blue-100: #d9e8ff;
  --blue-500: #1f6fe5;
  --blue-600: #1559c7;
  --blue-700: #0f47a1;
  --blue-900: #0a2f6b;

  /* Eco green */
  --green-50:  #e9faf0;
  --green-100: #c9f3da;
  --green-500: #1fb866;
  --green-600: #14a058;
  --green-700: #0c7e44;

  /* Neutrals — soft, not pure black */
  --ink:    #1f2a37;   /* headings */
  --body:   #4b5563;   /* paragraph text */
  --muted:  #6b7280;   /* secondary text */
  --line:   #e4ebf3;   /* borders */
  --surface:#f4f8fd;   /* tinted section bg */
  --surface-2:#eaf2fb;
  --white:  #ffffff;

  /* Semantic */
  --primary: var(--blue-600);
  --accent:  var(--green-600);
  --bg:      var(--white);

  /* Effects */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16,42,77,.06), 0 2px 8px rgba(16,42,77,.05);
  --shadow:    0 8px 24px rgba(16,42,77,.08);
  --shadow-lg: 0 18px 50px rgba(16,42,77,.14);
  --ring: 0 0 0 4px rgba(31,111,229,.25);

  --container: 1180px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--ink); line-height: 1.15; font-weight: 700; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; }
.section--tint { background: var(--surface); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-50);
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.text-green { color: var(--green-600); }
.text-blue { color: var(--blue-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px rgba(21,89,199,.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(21,89,199,.36); }
.btn--green { background: var(--green-600); color: #fff; box-shadow: 0 10px 24px rgba(12,126,68,.26); }
.btn--green:hover { transform: translateY(-2px); background: var(--green-700); box-shadow: 0 16px 32px rgba(12,126,68,.32); }
.btn--outline { background: #fff; color: var(--blue-700); border: 1.5px solid var(--blue-100); }
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: var(--surface-2); color: var(--ink); }
.btn--ghost:hover { background: var(--blue-100); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--blue-700); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn--light:hover { transform: translateY(-2px); color: var(--blue-600); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.btn--lg { padding: 10px 25px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 62px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: 9px 14px; border-radius: var(--radius-pill); transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__links .btn--primary, .nav__links .btn--primary:hover { color: #fff; background: var(--blue-600); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); place-items: center; }
.nav__toggle svg { width: 24px; height: 24px; color: var(--ink); }

/* Nav dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: 9px 14px; border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: none;
}
.nav__dropdown-toggle:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__dropdown-toggle .chevron { width: 14px; height: 14px; transition: transform .2s; flex: none; }
.nav__dropdown.open .nav__dropdown-toggle .chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); min-width: 160px; padding: 6px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s, transform .18s, visibility 0s .18s;
  z-index: 100;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  transition: opacity .18s, transform .18s, visibility 0s;
}
.nav__dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .9rem; color: var(--ink); white-space: nowrap;
}
.nav__dropdown-menu a:hover { color: var(--blue-600); background: var(--blue-50); }

/* ============================================================
   HERO  — full-bleed video banner with overlay text
   ============================================================ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(90vh, 760px); display: flex; align-items: center;
  background: #06162e;
}
/* Media layer (video + placeholder) */
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--blue-900) 0%, var(--blue-600) 52%, var(--blue-500) 118%);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1px, transparent 0);
  background-size: 30px 30px; opacity: .4;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; background: transparent; }
.hero__video.no-src { display: none; } /* JS hides it when no clip is available */

.hero__placeholder {
  position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center;
  color: rgba(255,255,255,.92); pointer-events: none;
}
.hero__placeholder .play {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.5);
  animation: heroPulse 2.6s ease-in-out infinite;
}
.hero__placeholder .play svg { width: 30px; height: 30px; margin-left: 4px; }
.hero__placeholder b { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; letter-spacing: .03em; }
.hero__placeholder small { font-size: .82rem; opacity: .72; }
.hero__placeholder code { background: rgba(255,255,255,.16); padding: 2px 7px; border-radius: 6px; font-size: .8rem; }
@keyframes heroPulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(255,255,255,.28); }
  50%      { transform: scale(1.07); box-shadow: 0 0 0 18px rgba(255,255,255,0); }
}

/* Readability scrim — darker on the left where text sits */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(5,18,40,.9) 0%, rgba(5,18,40,.66) 40%, rgba(5,18,40,.18) 74%, rgba(5,18,40,0) 100%);
}

.hero__inner { position: relative; z-index: 3; width: 100%; padding: 64px 0; }
.hero__copy { max-width: 620px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -.01em; color: #fff; }
.hero h1 .hl { color: var(--green-500); }
.hero__lead { margin-top: 18px; font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero .stat__num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2rem; color: #fff; }
.hero .stat__num .text-green { color: var(--green-500); }
.hero .stat__label { font-size: .9rem; color: rgba(255,255,255,.75); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__visual {
  border-radius: var(--radius-lg);
  display: grid; place-items: center; padding: 10px;
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.about__visual svg { width: 80%; filter: drop-shadow(0 14px 24px rgba(16,42,77,.12)); }
.about__visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.about h2 .lines { display: block; color: var(--green-600); margin-top: 6px; }
.about p { margin-top: 20px; color: var(--body); font-size: 1.05rem; }
.about__list { margin-top: 24px; display: grid; gap: 14px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; }
.about__list .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; margin-top: 2px; }
.about__list .tick svg { width: 16px; height: 16px; }
.about__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ============================================================
   FEATURED EV CARDS
   ============================================================ */
.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ev-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.ev-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ev-card__media {
  background: linear-gradient(155deg, var(--surface), var(--surface-2));
  aspect-ratio: 16/10; display: grid; place-items: center; padding: 24px; position: relative;
}
.ev-card__media svg { width: 82%; filter: drop-shadow(0 12px 20px rgba(16,42,77,.14)); }
.ev-card__tag {
  position: absolute; top: 14px; left: 14px; font-family:'Poppins',sans-serif; font-weight: 600; font-size: .72rem;
  letter-spacing: .04em; color: var(--green-700); background: var(--green-50); padding: 5px 12px; border-radius: var(--radius-pill);
}
.ev-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.ev-card__name { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.ev-spec { margin-top: 16px; display: grid; gap: 12px; }
.ev-spec li { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.ev-spec li:last-child { border-bottom: none; padding-bottom: 0; }
.ev-spec .si { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.ev-spec .si svg { width: 18px; height: 18px; }
.ev-spec .sl { font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 600; }
.ev-spec .sv { font-family:'Poppins',sans-serif; font-weight: 600; color: var(--ink); font-size: .95rem; }
.ev-card__install { margin-top: 16px; background: var(--blue-50); border-radius: var(--radius); padding: 10px 14px; display: flex; flex-direction: column; gap: 1px; }
.ev-card__install-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-600); font-weight: 700; }
.ev-card__install-value { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--ink); line-height: 1.3; }
.ev-card__install-value small { font-size: .75rem; font-weight: 500; color: var(--muted); }
.ev-card__install-note { font-size: .68rem; color: var(--muted); margin-top: 1px; }
.fleet__more { text-align: center; margin-top: 44px; }

/* ---------- EV Match Bar (vehicles page) ---------- */
.ev-match {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 72px;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ev-match__inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ev-match__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
}
.ev-match__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.ev-match__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .82rem;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer; transition: var(--transition); text-decoration: none; line-height: 1;
}
.ev-match__pill svg { width: 15px; height: 15px; flex: none; }
.ev-match__pill:hover { border-color: var(--green-600); color: var(--green-600); background: var(--green-50); }
.ev-match__pill--wa { background: #25d366; border-color: #25d366; color: #fff; }
.ev-match__pill--wa svg { fill: #fff; stroke: none; }
.ev-match__pill--wa:hover { background: #1dba57; border-color: #1dba57; color: #fff; }
@media (max-width: 600px) {
  .ev-match__label { display: none; }
  .ev-match__pill { font-size: .78rem; padding: 7px 12px; }
}

/* ---------- EV Recommend CTA band (vehicles page) ---------- */
.ev-recommend-cta {
  background: linear-gradient(135deg, #071f12 0%, #091c2a 100%);
  padding: 72px 0;
  text-align: center;
}
.ev-recommend-cta__inner { max-width: 600px; margin: 0 auto; }
.ev-recommend-cta__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(20,160,88,.15); border: 1.5px solid rgba(20,160,88,.35);
  display: grid; place-items: center; margin: 0 auto 24px;
  color: var(--green-500);
}
.ev-recommend-cta__icon svg { width: 30px; height: 30px; }
.ev-recommend-cta__inner h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.ev-recommend-cta__inner p { color: rgba(255,255,255,.72); margin: 14px 0 32px; font-size: 1rem; line-height: 1.6; }
.ev-recommend-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Fleet Category Filter */
.fleet-filter { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:36px; }
.ff-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 22px; border-radius:var(--radius-pill); border:2px solid var(--line); background:#fff; font-family:'Poppins',sans-serif; font-weight:600; font-size:.9rem; color:var(--muted); cursor:pointer; transition:all .2s; }
.ff-btn svg { width:20px; height:20px; flex:none; }
.ff-btn:hover { border-color:var(--blue-500); color:var(--blue-600); }
.ff-btn--active { background:var(--blue-600); border-color:var(--blue-600); color:#fff; }
.ff-btn--active svg { stroke:#fff; }

/* ============================================================
   TRADE-IN
   ============================================================ */
.tradein__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.tradein h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.tradein__hint { margin-top: 16px; display: inline-flex; align-items: center; gap: 10px; color: var(--body); }
.whatsapp-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green-600); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 600; font-family:'Poppins',sans-serif; font-size: .9rem;
  transition: transform var(--transition), background var(--transition);
}
.whatsapp-pill:hover { transform: translateY(-2px); background: var(--green-700); }
.whatsapp-pill svg { width: 18px; height: 18px; }
.trust { margin-top: 32px; display: grid; gap: 18px; }
.trust li { display: flex; gap: 16px; align-items: center; }
.trust .badge { width: 54px; height: 54px; border-radius: 14px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.trust .badge svg { width: 28px; height: 28px; }
.trust strong { display: block; font-family:'Poppins',sans-serif; color: var(--ink); font-size: 1.02rem; }
.trust span { color: var(--muted); font-size: .92rem; }

/* Forms */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family:'Poppins',sans-serif; font-weight: 500; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--blue-600); }
.field input, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field input::placeholder { color: #9aa6b2; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: var(--ring); }
.form-note { text-align: center; font-size: .76rem; color: var(--muted); margin-top: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field__hint { font-size: .75rem; color: var(--muted); font-weight: 400; margin-left: 6px; }
.field__section-hint { font-size: .85rem; color: var(--muted); font-style: italic; margin: 4px 0 8px; }
.field__lta-link { font-size: .75rem; font-weight: 400; color: var(--blue-500); margin-left: 6px; text-decoration: none; }
.field__lta-link:hover { text-decoration: underline; }

/* Upload zone */
.upload-zone { position: relative; border: 2px dashed var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .2s, background .2s; cursor: pointer; }
.upload-zone:hover, .upload-zone--drag { border-color: var(--blue-400); background: var(--blue-50); }
.upload-zone--has-files { border-color: var(--blue-300); border-style: solid; }
.upload-zone__input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-zone__body { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 28px 20px; pointer-events: none; text-align: center; }
.upload-zone__body svg { width: 32px; height: 32px; color: var(--blue-400); }
.upload-zone__body p { font-size: .9rem; color: var(--muted); margin: 0; }
.upload-zone__body strong { color: var(--blue-600); }
.upload-zone__hint { font-size: .78rem !important; color: var(--muted); }
.upload-file-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.upload-file-list__item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .85rem; color: var(--ink); }
.upload-file-list__icon { width: 20px; height: 20px; color: var(--blue-500); flex: none; }
.upload-file-list__icon svg { width: 20px; height: 20px; }
.upload-file-list__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================================
   FEATURE GRID (Leasing / Financing)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 16px; }
.feature {
  text-align: center; padding: 28px 18px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.feature__ic { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 14px; display: grid; place-items: center; }
.feature__ic svg { width: 27px; height: 27px; }
.feature__ic { background: var(--blue-50); color: var(--blue-600); }
.feature h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: 9px; }
.feature p { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.section-cta { text-align: center; margin: 38px 0 6px; }

/* ============================================================
   FINANCE BENEFITS GRID (3+2 centred layout)
   ============================================================ */
.finance-feat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.finance-feat-grid > .finance-feat:nth-child(-n+3) { grid-column: span 2; }
.finance-feat-grid > .finance-feat:nth-child(4)    { grid-column: 2 / span 2; }
.finance-feat-grid > .finance-feat:nth-child(5)    { grid-column: 4 / span 2; }

.finance-feat {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.finance-feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(21,89,199,.13);
  border-color: var(--blue-100);
}
.finance-feat__ic {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.finance-feat:hover .finance-feat__ic { background: var(--blue-600); color: #fff; }
.finance-feat__ic svg { width: 28px; height: 28px; }
.finance-feat h4 {
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink); margin-bottom: 10px;
}
.finance-feat p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* Finance comparison cards */
.finance-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; max-width: 820px; margin-left: auto; margin-right: auto; }
.finance-compare__card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.finance-compare__card--alt { border-color: var(--blue-100); }
.finance-compare__head { display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.finance-compare__head--bank { background: var(--surface-2); }
.finance-compare__head--inhouse { background: var(--blue-50); }
.finance-compare__head svg { width: 32px; height: 32px; color: var(--blue-600); flex: none; }
.finance-compare__head h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin: 0; color: var(--ink); }
.finance-compare__list { list-style: none; padding: 20px 24px 24px; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.finance-compare__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink); }

/* Slider calculator */
.sldr-calc { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.sldr-calc__result { background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%); padding: 36px 36px 32px; text-align: center; }
.sldr-calc__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 8px; }
.sldr-calc__amount { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.4rem); color: #fff; line-height: 1; margin-bottom: 10px; }
.sldr-calc__mo { font-size: 1.2rem; font-weight: 500; opacity: .8; margin-left: 2px; }
.sldr-calc__meta { font-size: .85rem; color: rgba(255,255,255,.75); }
.sldr-row { padding: 28px 36px 22px; border-bottom: 1px solid var(--line); }
.sldr-row:last-of-type { border-bottom: none; }
.sldr-row__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.sldr-row__name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem; color: var(--ink); }
.sldr-row__val { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--blue-600); }
.sldr-row__ctrl { display: flex; align-items: center; gap: 12px; }
.sldr-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--blue-200);
  background: var(--blue-50); color: var(--blue-600); font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer; flex: none;
  transition: background .15s, border-color .15s;
}
.sldr-btn:hover { background: var(--blue-100); border-color: var(--blue-400); }
.sldr { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 99px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--blue-500) var(--fill, 0%), var(--line) var(--fill, 0%));
}
.sldr::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-600); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(21,89,199,.35); cursor: pointer; }
.sldr::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-600); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(21,89,199,.35); cursor: pointer; }
.sldr-row__range { display: flex; justify-content: space-between; margin-top: 8px; font-size: .74rem; color: var(--muted); }
.sldr-calc__info { padding: 18px 36px; background: var(--surface); display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.sldr-calc__info strong { color: var(--ink); }

/* Calculator summary (total interest / total repayment) */
.sldr-calc__summary { display: flex; align-items: center; justify-content: center; margin-top: 20px; background: rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; }
.sldr-calc__summary-item { flex: 1; padding: 12px 16px; text-align: center; }
.sldr-calc__summary-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.65); font-weight: 600; margin-bottom: 4px; }
.sldr-calc__summary-val { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.sldr-calc__summary-sep { width: 1px; height: 44px; background: rgba(255,255,255,.25); flex: none; }

/* Loan amount number input */
.calc-input-wrap { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.calc-input-wrap:focus-within { border-color: var(--blue-500); box-shadow: var(--ring); background: #fff; }
.calc-input__prefix { padding: 0 14px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: var(--blue-600); background: var(--blue-50); border-right: 1.5px solid var(--line); align-self: stretch; display: flex; align-items: center; }
.calc-input { flex: 1; border: none; outline: none; background: transparent; padding: 14px 16px; font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); width: 100%; }
.calc-input::-webkit-outer-spin-button, .calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input[type=number] { -moz-appearance: textfield; }

/* Duration year buttons */
.calc-yr-btns { display: flex; gap: 10px; }
.calc-yr-btn { flex: 1; padding: 11px 8px; border: 1.5px solid var(--blue-300); border-radius: var(--radius); background: transparent; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; color: var(--blue-600); cursor: pointer; transition: background .18s, color .18s, border-color .18s; }
.calc-yr-btn:hover { background: var(--blue-50); border-color: var(--blue-500); }
.calc-yr-btn--active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

/* Partners grid */
.partners-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 32px; }
.partner-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 18px 28px; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .95rem; color: var(--muted); min-width: 160px; text-align: center;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.partner-card:hover { border-color: var(--blue-200); color: var(--blue-700); box-shadow: var(--shadow-sm); }

/* Section with tinted bg */
.section--blue-tint { background: linear-gradient(180deg, var(--blue-50), var(--white)); }

/* Diagonal gradient bridge — fleet section (light) → charging section (dark) */
.section--grad-bridge {
  background: linear-gradient(180deg,
    var(--surface)  0%,
    var(--surface) 12%,
    #091c2a        55%,
    #071f12       100%
  );
  position: relative;
}
/* Subtle grid overlay only in the dark half */
.section--grad-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, transparent 10%, black 45%);
  mask-image:         linear-gradient(180deg, transparent 10%, black 45%);
}
.section--grad-bridge .container { position: relative; z-index: 1; }
/* Orbit ring/spoke lines (light grey) read cleanly on the dark half */
.section--grad-bridge .orbit-stage .ring,
.section--grad-bridge .orbit-stage .spoke { stroke: rgba(228,235,243,.35); }
.section--grad-bridge .orbit-stage .ring.dash { stroke: rgba(228,235,243,.25); }

/* ============================================================
   SERVICES — image panel banner (Trade-In / Leasing / Financing)
   ============================================================ */
.services-panels {
  display: flex;
  min-height: 90vh;
}
.svc-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  transition: flex 0.45s cubic-bezier(.4,0,.2,1);
}
.svc-panel:hover { flex: 1.45; }
.svc-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,18,40,.92) 0%, rgba(5,18,40,.55) 55%, rgba(5,18,40,.22) 100%);
  transition: background 0.35s;
}
.svc-panel--accent::before {
  background: linear-gradient(to top, rgba(14,68,163,.95) 0%, rgba(31,111,229,.65) 55%, rgba(31,111,229,.2) 100%);
}
.svc-panel:hover::before { background: linear-gradient(to top, rgba(5,18,40,.97) 0%, rgba(5,18,40,.72) 60%, rgba(5,18,40,.28) 100%); }
.svc-panel--accent:hover::before { background: linear-gradient(to top, rgba(10,52,130,.98) 0%, rgba(31,111,229,.8) 60%, rgba(31,111,229,.25) 100%); }
.svc-panel__inner {
  position: relative; z-index: 1;
  padding: 36px 32px;
  width: 100%;
}
.svc-panel__eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 10px;
}
.svc-panel__title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.svc-panel__desc {
  color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.6;
  margin-bottom: 22px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-bottom 0.35s;
}
.svc-panel:hover .svc-panel__desc { max-height: 80px; opacity: 1; margin-bottom: 22px; }
.svc-panel__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem;
  padding: 11px 20px; border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s, transform 0.25s;
  white-space: nowrap;
}
.svc-panel--accent .svc-panel__btn { background: #fff; color: var(--blue-700); }
.svc-panel__btn svg { width: 15px; height: 15px; transition: transform 0.25s; }
.svc-panel:hover .svc-panel__btn { background: var(--blue-600); color: #fff; transform: translateY(-2px); }
.svc-panel:hover .svc-panel__btn svg { transform: translateX(3px); }

/* ============================================================
   AC vs DC CHARGING
   ============================================================ */
.charge__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.charge-card {
  border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); background: #fff;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.charge-card--ac { border-top: 4px solid var(--blue-500); --pulse-rgb: 31,111,229; }
.charge-card--dc { border-top: 4px solid var(--green-500); --pulse-rgb: 20,160,88; }
.charge-card__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--surface); margin-bottom: 22px; }
.charge-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.charge-card__media::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  animation: chargeRing 2.2s ease-out infinite;
}
.charge-card--dc .charge-card__media::after { animation-duration: 1.1s; }
.charge-card__badge {
  position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .76rem; color: #fff;
  padding: 6px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
.charge-card--ac .charge-card__badge { background: rgba(21,89,199,.88); }
.charge-card--dc .charge-card__badge { background: rgba(20,160,88,.88); }
.charge-card__badge .bolt { width: 13px; height: 13px; animation: boltPulse 1.3s ease-in-out infinite; }
.charge-card--dc .charge-card__badge .bolt { animation-duration: .6s; }
.charge-card__bar { height: 7px; border-radius: var(--radius-pill); background: var(--surface-2); overflow: hidden; margin-top: 22px; }
.charge-card__bar span {
  display: block; height: 100%; width: 100%; border-radius: inherit; transform-origin: left;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  animation: chargeFill 4s ease-in-out infinite;
}
.charge-card--dc .charge-card__bar span { background: linear-gradient(90deg, var(--green-500), var(--green-600)); animation-duration: 1.8s; }
@keyframes chargeRing {
  0%   { box-shadow: inset 0 0 0 0 rgba(var(--pulse-rgb), .5); }
  70%  { box-shadow: inset 0 0 0 16px rgba(var(--pulse-rgb), 0); }
  100% { box-shadow: inset 0 0 0 0 rgba(var(--pulse-rgb), 0); }
}
@keyframes boltPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(1.3); }
}
@keyframes chargeFill {
  0%   { transform: scaleX(0); }
  80%  { transform: scaleX(1); }
  92%  { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .charge-card__media::after, .charge-card__badge .bolt, .charge-card__bar span { animation: none; }
  .charge-card__bar span { transform: scaleX(1); }
}
.charge-card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.charge-card__title { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.charge-card__title span { font-weight: 800; }
.charge-card--ac .charge-card__title span { color: var(--blue-600); }
.charge-card--dc .charge-card__title span { color: var(--green-600); }
.charge-pill { font-family:'Poppins',sans-serif; font-weight: 700; font-size: .95rem; color: #fff; padding: 7px 16px; border-radius: var(--radius-pill); }
.charge-card--ac .charge-pill { background: var(--blue-600); }
.charge-card--dc .charge-pill { background: var(--green-600); }
.charge-list { display: grid; gap: 16px; }
.charge-list li { display: flex; gap: 14px; align-items: flex-start; }
.charge-list .ci { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.charge-card--ac .ci { background: var(--blue-50); color: var(--blue-600); }
.charge-card--dc .ci { background: var(--green-50); color: var(--green-600); }
.charge-list .ci svg { width: 20px; height: 20px; }
.charge-list strong { display: block; font-family:'Poppins',sans-serif; color: var(--ink); font-size: .98rem; }
.charge-list span { font-size: .9rem; color: var(--muted); }
.charge__note {
  margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 26px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.charge__note svg { width: 28px; height: 28px; color: var(--green-600); flex: none; }
.charge__note strong { color: var(--ink); font-family:'Poppins',sans-serif; }

/* ==== Charge Card Animation Illustration ==== */
.charge-anim {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: inherit;
}
.charge-card--ac .charge-anim { background: linear-gradient(155deg,#051230 0%,#0d2260 55%,#061838 100%); }
.charge-card--dc .charge-anim { background: linear-gradient(155deg,#04120a 0%,#0a2d16 55%,#051609 100%); }
.ca-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size: 38px 38px;
}
.ca-wave-track { position: absolute; inset: 0; overflow: hidden; display: flex; align-items: center; }
.ca-wave-scroller { display: flex; will-change: transform; width: 200%; animation: caWaveScroll 3s linear infinite; }
.charge-card--dc .ca-wave-scroller { animation-duration: 1.1s; }
.ca-wave-svg { width: 50%; flex: none; }
@keyframes caWaveScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ca-center { position: relative; z-index: 3; }
.ca-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.ca-ring { position: absolute; border-radius: 50%; opacity: 0; animation: caRingExpand 3s ease-out infinite; }
.charge-card--ac .ca-ring { border: 1.5px solid rgba(59,130,246,.75); }
.charge-card--dc .ca-ring { border: 1.5px solid rgba(34,197,94,.75); animation-duration: 1.2s; }
.ca-ring--1 { width: 100px; height: 100px; animation-delay: 0s; }
.ca-ring--2 { width: 100px; height: 100px; animation-delay: 1s; }
.ca-ring--3 { width: 100px; height: 100px; animation-delay: 2s; }
.charge-card--dc .ca-ring--2 { animation-delay: .4s; }
.charge-card--dc .ca-ring--3 { animation-delay: .8s; }
@keyframes caRingExpand { 0% { transform: scale(.25); opacity: .9; } 100% { transform: scale(2.5); opacity: 0; } }
.ca-icon-box { width: 68px; height: 68px; border-radius: 20px; display: grid; place-items: center; backdrop-filter: blur(8px); }
.charge-card--ac .ca-icon-box { background: rgba(59,130,246,.2); color: #93c5fd; border: 1px solid rgba(59,130,246,.3); }
.charge-card--dc .ca-icon-box { background: rgba(34,197,94,.2); color: #86efac; border: 1px solid rgba(34,197,94,.3); }
.ca-icon-box svg { width: 36px; height: 36px; animation: caIconGlow 3s ease-in-out infinite; }
.charge-card--dc .ca-icon-box svg { animation-name: caIconGlowDC; animation-duration: 1.2s; }
@keyframes caIconGlow { 0%,100% { filter: drop-shadow(0 0 5px rgba(59,130,246,.4)); } 50% { filter: drop-shadow(0 0 14px rgba(59,130,246,.9)); } }
@keyframes caIconGlowDC { 0%,100% { filter: drop-shadow(0 0 5px rgba(34,197,94,.4)); } 50% { filter: drop-shadow(0 0 14px rgba(34,197,94,.9)); } }
.ca-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; background: rgba(0,0,0,.32); backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ca-label { font-family:'Poppins',sans-serif; font-weight: 800; font-size: .73rem; letter-spacing: .1em; padding: 3px 10px; border-radius: 6px; }
.charge-card--ac .ca-label { background: rgba(59,130,246,.22); color: #93c5fd; border: 1px solid rgba(59,130,246,.3); }
.charge-card--dc .ca-label { background: rgba(34,197,94,.22); color: #86efac; border: 1px solid rgba(34,197,94,.3); }
.ca-speed-text { font-family:'Poppins',sans-serif; font-size: .71rem; font-weight: 600; }
.charge-card--ac .ca-speed-text { color: rgba(147,197,253,.8); }
.charge-card--dc .ca-speed-text { color: rgba(134,239,172,.8); }
.ca-batt { display: flex; align-items: center; gap: 3px; }
.ca-batt-shell { width: 42px; height: 18px; border-radius: 5px; border: 2px solid; position: relative; overflow: hidden; background: rgba(0,0,0,.25); }
.charge-card--ac .ca-batt-shell { border-color: rgba(59,130,246,.5); }
.charge-card--dc .ca-batt-shell { border-color: rgba(34,197,94,.5); }
.ca-batt-level { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; animation: caBattCharge 4.5s ease-in-out infinite; }
.charge-card--ac .ca-batt-level { background: linear-gradient(90deg,#1d4ed8,#3b82f6); }
.charge-card--dc .ca-batt-level { background: linear-gradient(90deg,#15803d,#22c55e); animation-duration: 1.9s; }
.ca-batt-nub { width: 5px; height: 10px; border-radius: 0 3px 3px 0; margin-left: 1px; }
.charge-card--ac .ca-batt-nub { background: rgba(59,130,246,.4); }
.charge-card--dc .ca-batt-nub { background: rgba(34,197,94,.4); }
@keyframes caBattCharge { 0% { width: 4%; } 75% { width: 92%; } 88%,100% { width: 4%; } }
.ca-sparks { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.ca-spark { position: absolute; border-radius: 50%; opacity: 0; animation: caSparkRise ease-in-out infinite; }
.charge-card--ac .ca-spark { background: rgba(99,153,255,.85); }
.charge-card--dc .ca-spark { background: rgba(74,222,128,.85); }
@keyframes caSparkRise { 0% { transform: translateY(0) scale(1); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(-75px) scale(0); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ca-wave-scroller,.ca-ring,.ca-icon-box svg,.ca-batt-level,.ca-spark { animation: none !important; }
  .ca-batt-level { width: 60%; }
}

/* ============================================================
   EXPERIENCE / BOOK TEST DRIVE
   ============================================================ */
.experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.experience h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.experience p { margin-top: 18px; color: var(--body); font-size: 1.05rem; }
.experience .noobl { font-family:'Poppins',sans-serif; font-weight: 600; color: var(--blue-600); margin-top: 14px; }
.experience__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.experience__hint { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; font-family:'Poppins',sans-serif; color: var(--ink); }

/* ============================================================
   SERVICE CTA + LOCATION
   ============================================================ */
.locate { background: var(--blue-600); color: #fff; min-height: 50vh; display: flex; align-items: center; }
.locate .container { position: relative; }
.locate__top { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.locate__top h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.4rem); }
.locate__top p { color: rgba(255,255,255,.9); margin-top: 14px; font-size: 1.08rem; }
.locate__top .btn { margin-top: 26px; }
.locate__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: stretch; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; border: 4px solid rgba(255,255,255,.15); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.locate-card {
  background: #fff; color: var(--body); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 20px;
}
.locate-card h3 { font-size: 1.3rem; color: var(--ink); }
.locate-item { display: flex; gap: 14px; align-items: flex-start; }
.locate-item .li { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.locate-item .li svg { width: 21px; height: 21px; }
.locate-item .lt { font-family:'Poppins',sans-serif; font-weight: 600; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.locate-item .lv { color: var(--body); font-size: .96rem; }
.locate-item .lv a:hover { color: var(--blue-600); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #cbd5e1; padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.1fr 1.3fr 1.4fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content:""; position: absolute; left:0; bottom:0; width: 38px; height: 3px; border-radius: 3px; background: var(--blue-600); }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.footer__links a { color: #cbd5e1; font-size: .95rem; transition: color var(--transition), padding var(--transition); }
.footer__links a:hover { color: var(--blue-500); padding-left: 4px; }
.footer__find p { font-size: .95rem; margin-bottom: 14px; color: #cbd5e1; }
.footer__find a:hover { color: var(--blue-500); }
.footer__hours strong { color: #fff; display: block; margin-bottom: 4px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background var(--transition), transform var(--transition); }
.footer__social a:hover { background: var(--blue-600); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.newsletter { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 30px; }
.newsletter h4 { font-family:'Poppins',sans-serif; }
.newsletter h4::after { display: none; }
.newsletter p { color: #cbd5e1; font-size: .9rem; margin-bottom: 16px; }
.newsletter form { display: flex; flex-direction: column; gap: 12px; }
.newsletter input { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; }
.newsletter input::placeholder { color: #94a3b8; }
.newsletter input:focus { outline: none; border-color: var(--blue-500); box-shadow: var(--ring); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 56px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: .88rem; color: #94a3b8; }
.footer__bottom nav { display: flex; gap: 24px; }
.footer__bottom a { font-size: .88rem; color: #94a3b8; }
.footer__bottom a:hover { color: var(--blue-500); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.5);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   CHARGER PAGE
   ============================================================ */

/* Stats strip */
.charger-stats-strip { border-bottom: 1px solid var(--line); }
.charger-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.charger-stat { padding: 28px 24px; text-align: center; border-right: 1px solid var(--line); }
.charger-stat:last-child { border-right: none; }
.charger-stat__val { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--green-600); line-height: 1.1; }
.charger-stat__lbl { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: 5px; }

/* Hero CTA pills */
.charger-hero-pills { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.charger-hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: 100px; font-size: .92rem; font-weight: 600; text-decoration: none; transition: transform var(--transition), background var(--transition); }
.charger-hero-pill svg { width: 16px; height: 16px; }
.charger-hero-pill--ac { background: var(--green-600); color: #fff; }
.charger-hero-pill--ac:hover { background: var(--green-700); transform: translateY(-2px); }
.charger-hero-pill--dc { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.charger-hero-pill--dc:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }

/* Section type badge (AC / DC) */
.charger-section-badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 14px; border-radius: 100px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.charger-section-badge--ac { background: var(--green-50); color: var(--green-700); border: 1.5px solid var(--green-100); }
.charger-section-badge--dc { background: var(--blue-50); color: var(--blue-700); border: 1.5px solid var(--blue-100); }

/* Charger card grid */
.charger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.charger-grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }

/* Charger card */
.charger-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.charger-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.charger-card__visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); padding: 32px 24px; height: 232px;
  position: relative; overflow: hidden; text-decoration: none;
}
.charger-card__visual img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform .35s ease; }
.charger-card:hover .charger-card__visual img { transform: scale(1.06); }
.charger-card__power { position: absolute; top: 12px; right: 12px; font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: .03em; }
.charger-card__power--ac { background: var(--green-600); color: #fff; }
.charger-card__power--dc { background: var(--blue-600); color: #fff; }
.charger-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.charger-card__type { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; }
.charger-card__type--ac { color: var(--green-600); }
.charger-card__type--dc { color: var(--blue-600); }
.charger-card__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.charger-card__body h3 a { color: inherit; text-decoration: none; }
.charger-card__body > p { font-size: .86rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.charger-card__specs { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.charger-card__specs li { display: flex; align-items: center; gap: 9px; font-size: .83rem; color: var(--ink); }
.charger-card__specs li svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green-600); }
.charger-card .btn { margin-top: auto; }

/* LTA Grant dark banner */
.lta-grant-wrap { background: var(--blue-900); border-radius: var(--radius); overflow: hidden; position: relative; }
.lta-grant-wrap::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0); background-size: 28px 28px; pointer-events: none; }
.lta-grant__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 52px 56px; }
.lta-grant__left .eyebrow { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.lta-grant__amount { font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 800; color: #fff; line-height: 1.1; margin: 14px 0 8px; }
.lta-grant__amount em { color: var(--green-500); font-style: normal; }
.lta-grant__subtitle { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.6; }
.lta-grant__validity { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); font-size: .78rem; padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); }
.lta-grant__validity svg { width: 14px; height: 14px; color: var(--green-500); flex-shrink: 0; }
.lta-grant__cta { margin-top: 28px; }
.lta-grant__note { color: rgba(255,255,255,.32); font-size: .75rem; margin-top: 14px; }
.lta-grant__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.lta-grant__list li { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.55; }
.lta-grant__check { width: 20px; height: 20px; flex-shrink: 0; color: var(--green-500); margin-top: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .hero__grid { gap: 30px; }
  .finance-feat-grid { grid-template-columns: repeat(3, 1fr); }
  .finance-feat-grid > .finance-feat:nth-child(n) { grid-column: span 1; }
  .charger-grid { grid-template-columns: repeat(2, 1fr); }
  .lta-grant__inner { padding: 40px 36px; gap: 36px; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: grid; }
  .about__grid, .tradein__grid, .experience__grid, .charge__grid, .locate__grid { grid-template-columns: 1fr; }
  .services-panels { flex-direction: column; min-height: unset; }
  .svc-panel { min-height: 240px; flex: none !important; }
  .svc-panel__desc { max-height: 80px; opacity: 1; }
  .hero { min-height: auto; }
  .hero__inner { padding: 84px 0 64px; }
  .hero__overlay { background: linear-gradient(180deg, rgba(5,18,40,.5) 0%, rgba(5,18,40,.78) 60%, rgba(5,18,40,.9) 100%); }
  .about__visual { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .finance-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .finance-compare { grid-template-columns: 1fr; max-width: 460px; }
  .charger-grid--2col { grid-template-columns: 1fr; max-width: 460px; }
  .charger-stats { grid-template-columns: repeat(2, 1fr); }
  .charger-stat:nth-child(2) { border-right: none; }
  .charger-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .lta-grant__inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; min-height: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }

  /* Mobile slide-in nav */
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: 76px; left: 0; right: 0; background: #fff;
    padding: 16px 24px 24px; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--line);
  }
  .nav__links.open a { padding: 13px 14px; }
  .nav__links.open .btn { margin-top: 8px; }
  .nav__links.open .nav__dropdown { width: 100%; }
  .nav__links.open .nav__dropdown-toggle { padding: 13px 14px; width: 100%; justify-content: space-between; }
  .nav__links.open .nav__dropdown-menu {
    position: static; transform: none !important; opacity: 1; visibility: visible;
    box-shadow: none; border: none; background: var(--surface); padding: 4px 0; display: none;
  }
  .nav__links.open .nav__dropdown.open .nav__dropdown-menu { display: block; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; max-width: 360px; margin: 16px auto 0; }
  .finance-feat-grid { grid-template-columns: 1fr; }
  .charger-grid, .charger-grid--2col { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .hero__stats { gap: 24px; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .btn { width: 100%; }
  .hero__cta .btn, .about__cta .btn, .experience__cta .btn { flex: 1 1 auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   REUSABLE VIDEO FRAME (with placeholder)
   ============================================================ */
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-600) 55%, var(--blue-500));
}
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; background: transparent; display: block; }
.video-frame video.no-src { display: none; }
.video-frame__ph {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 20px;
  color: rgba(255,255,255,.92);
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1px, transparent 0);
  background-size: 30px 30px;
}
.video-frame__ph .play {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.5);
  animation: heroPulse 2.6s ease-in-out infinite;
}
.video-frame__ph .play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-frame__ph b { font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: .03em; }
.video-frame__ph small { font-size: .8rem; opacity: .72; }
.video-frame__ph code { background: rgba(255,255,255,.16); padding: 2px 7px; border-radius: 6px; font-size: .78rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(120deg, var(--blue-900) 0%, var(--blue-700) 62%, var(--blue-600) 100%);
  color: #fff; padding: 104px 0 88px; text-align: left;
  min-height: 100vh; display: flex; align-items: center;
}
/* dot grid + directional readability scrim (darker where the copy sits) */
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0),
    linear-gradient(90deg, rgba(6,22,46,.9) 0%, rgba(6,22,46,.68) 42%, rgba(6,22,46,.22) 78%, rgba(6,22,46,.05) 100%),
    linear-gradient(0deg, rgba(6,22,46,.8) 0%, rgba(6,22,46,0) 36%);
  background-size: 30px 30px, 100% 100%, 100% 100%;
}

.page-hero--fleet { background: var(--blue-900); }
.page-hero__collage { position: absolute; inset: 0; z-index: -1; display: grid; grid-template-columns: repeat(4, 1fr); }
.page-hero__tile { display: flex; align-items: center; justify-content: center; padding: 22px; }
.page-hero__tile:nth-child(odd) { background: var(--blue-900); }
.page-hero__tile:nth-child(even) { background: var(--blue-700); }
.page-hero__tile img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(0,0,0,.3)); }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background: rgba(6,22,46,.4); }

.page-hero--vehicle { background: var(--blue-900); text-align: center; }
/* vehicle & charger detail pages: no dark overlay, centered copy */
.page-hero--vehicle::after { background: none; }
.page-hero--vehicle .page-hero__scrim { display: none; }
.page-hero.page-hero--vehicle h1 { margin-left: auto; margin-right: auto; }
.page-hero.page-hero--vehicle p { margin: 18px auto 0; }
.page-hero__media { position: absolute; inset: 0; z-index: -1; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroKenBurns 22s ease-in-out infinite alternate; }
@keyframes heroKenBurns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.09) translateX(-1.5%); }
}

/* ---------- Centered + product marquee variant (catalog pages) ---------- */
.page-hero--marquee {
  flex-direction: column; justify-content: center; text-align: center;
  padding: 140px 0 0;
}
.page-hero--marquee::after {
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.09) 1px, transparent 0);
  background-size: 30px 30px;
}
.page-hero--marquee h1 { margin: 0 auto; text-shadow: none; }
.page-hero.page-hero--marquee p { margin: 18px auto 0; text-shadow: none; }
.hero-marquee {
  width: 100%; margin-top: 56px; padding-bottom: 64px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marquee__track { display: flex; gap: 20px; width: max-content; animation: heroMarquee 36s linear infinite; }
.hero-marquee__card {
  width: 240px; flex: none; padding: 18px 18px 14px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); backdrop-filter: blur(6px);
}
.hero-marquee__card .ph { height: 130px; display: grid; place-items: center; }
.hero-marquee__card .ph img { max-height: 100%; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(0,0,0,.35)); }
.hero-marquee__card b {
  display: block; margin-top: 12px; text-align: center;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem; color: #fff;
}
@keyframes heroMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px) {
  .page-hero--marquee { padding-top: 110px; }
  .hero-marquee { margin-top: 40px; padding-bottom: 48px; }
  .hero-marquee__card { width: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track { animation: none; }
}

/* ---------- Diagonal split variant — copy on solid blue, photo clipped at an angle on the right ---------- */
.page-hero--diag { background: var(--blue-900); }
.page-hero--diag::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.1) 1px, transparent 0);
  background-size: 28px 28px;
}
.page-hero--diag .page-hero__media {
  left: auto; right: 0; width: 52%;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero--diag .page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,47,107,.75) 0%, rgba(10,47,107,.15) 45%, rgba(10,47,107,0) 100%);
}
.page-hero--diag h1 { max-width: 580px; text-shadow: none; }
.page-hero--diag p { max-width: 500px; text-shadow: none; }
/* keep all copy inside the blue panel — the photo starts at 48% at its lowest point */
.page-hero--diag .container { padding-right: 55%; }
@media (max-width: 900px) {
  .page-hero--diag .page-hero__media { width: 100%; clip-path: none; opacity: .18; }
  .page-hero--diag .page-hero__media img { animation: none; }
  .page-hero--diag .page-hero__media::after { display: none; }
  .page-hero--diag .container { padding-right: 24px; }
}
.page-hero .eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.page-hero h1 {
  color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800;
  letter-spacing: -.015em; line-height: 1.08; max-width: 820px;
  text-shadow: 0 2px 20px rgba(5,18,40,.7);
  animation: heroRise .8s cubic-bezier(.22,.8,.3,1) .08s both;
}
.page-hero h1 .hl { color: var(--green-500); }
.page-hero p {
  color: rgba(255,255,255,.92); max-width: 600px; margin: 18px 0 0;
  font-size: 1.15rem; line-height: 1.7; text-shadow: 0 1px 12px rgba(5,18,40,.6);
  animation: heroRise .8s cubic-bezier(.22,.8,.3,1) .22s both;
}
.page-hero .crumbs, .page-hero .hero-creds { animation: heroRise .8s cubic-bezier(.22,.8,.3,1) .38s both; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* credential chips (hero) */
.hero-creds { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.hero-cred {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border-radius: var(--radius-pill); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(6px);
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .84rem;
}
.hero-cred svg { width: 17px; height: 17px; color: var(--green-500); flex: none; }

/* scroll cue — injected by script.js on tall page heroes */
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; font-family: 'Poppins', sans-serif; font-weight: 600;
  pointer-events: none; animation: heroRise 1s ease .9s both;
}
.hero-scroll .mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll .mouse i {
  width: 3px; height: 8px; border-radius: 3px; background: #fff; display: block;
  animation: heroScrollDot 1.8s ease-in-out infinite;
}
@keyframes heroScrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.crumbs { display: flex; align-items: center; justify-content: flex-start; gap: 8px; margin-top: 22px; font-size: .9rem; color: rgba(255,255,255,.8); }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs svg { width: 15px; height: 15px; opacity: .8; }

/* ============================================================
   ABOUT — intro + vision/mission
   ============================================================ */
.about-intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.about-intro__copy p { color: var(--body); font-size: 1.06rem; margin-bottom: 18px; }
.about-intro__copy p:last-of-type { margin-bottom: 0; }
.about-intro__copy .hl-green { color: var(--green-600); font-weight: 600; }
.about-intro__copy .hl-blue { color: var(--blue-600); font-weight: 600; }
.about-intro__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* EV Services Band */
.ev-band {
  background: linear-gradient(180deg, #0B2A6B 0%, #071d4a 100%);
  padding: 54px 24px;
}
.ev-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.ev-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.28);
}
.ev-item:last-child { border-right: none; }
.ev-icon {
  width: 74px; height: 74px;
  margin-bottom: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ev-label {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .2px;
  font-family: 'Poppins', sans-serif;
}

.vm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px 36px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.vm-card__ic { width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 20px; display: grid; place-items: center; }
.vm-card__ic { background: var(--blue-50); color: var(--blue-600); }
.vm-card__ic svg { width: 36px; height: 36px; }
.vm-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.vm-card p { color: var(--muted); font-size: 1rem; }

/* About stats strip */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.about-stat { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.about-stat .n { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.1rem; color: var(--blue-700); }
.about-stat .n .text-green { color: var(--green-600); }
.about-stat .l { font-size: .9rem; color: var(--muted); margin-top: 4px; }

@media (max-width: 880px) {
  .about-intro__grid, .vm__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-intro__media { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .page-hero { padding: 76px 0 60px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .page-hero__collage { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ev-inner { flex-wrap: wrap; gap: 36px 0; }
  .ev-item {
    flex: 0 0 50%;
    border-right: 1px solid rgba(255,255,255,.28);
    padding: 0 18px;
  }
  .ev-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .ev-item {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.28);
    padding-bottom: 30px;
  }
  .ev-item:last-child { border-bottom: none; padding-bottom: 0; }
  .ev-label { font-size: 1rem; }
}

/* ============================================================
   OUR HISTORY — Horizontal Alternating Timeline
   ============================================================ */
.history__wrap {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar */
.history__big-title {
  display: flex; flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem; font-weight: 900; line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.history__big-title--accent { color: var(--blue-700); }
.history__rule {
  width: 44px; height: 4px; border-radius: 2px;
  background: linear-gradient(to right, var(--blue-700), var(--blue-500));
  margin-bottom: 18px;
}
.history__sidebar > p { font-size: .9rem; color: var(--body); margin-bottom: 14px; line-height: 1.6; }
.history__sidebar > p strong { color: var(--blue-700); }
.history__eco-list { padding-left: 0; margin: 0; list-style: none; }
.history__eco-list li {
  font-size: .88rem; color: var(--blue-700); margin-bottom: 10px;
  font-weight: 600; line-height: 1.4;
  display: flex; align-items: flex-start; gap: 8px;
}
.history__eco-list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-600);
  flex: none; margin-top: 5px;
}

/* Timeline wrapper */
.history__tl-wrap { overflow-x: auto; padding-bottom: 6px; }

/* 9-col grid: top items cols 1-2,3-4,5-6,7-8 | spine col 1-9 | bottom items cols 2-3,4-5,6-7,8-9 */
.history__tl {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: auto 4px auto;
  gap: 0 0;
  min-width: 680px;
}

/* Top nodes — grid placement (children 1–4) */
.history__tl > :nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.history__tl > :nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.history__tl > :nth-child(3) { grid-column: 5 / 7; grid-row: 1; }
.history__tl > :nth-child(4) { grid-column: 7 / 9; grid-row: 1; }

/* Spine — child 5 */
.history__spine {
  grid-column: 1 / -1; grid-row: 2;
  background: linear-gradient(to right, var(--blue-900), var(--blue-500));
  border-radius: 2px;
  align-self: center;
}

/* Bottom nodes — grid placement (children 6–9, offset by 1 col) */
.history__tl > :nth-child(6) { grid-column: 2 / 4; grid-row: 3; }
.history__tl > :nth-child(7) { grid-column: 4 / 6; grid-row: 3; }
.history__tl > :nth-child(8) { grid-column: 6 / 8; grid-row: 3; }
.history__tl > :nth-child(9) { grid-column: 8 / 10; grid-row: 3; }

/* Shared node styles */
.hist-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

/* Vertical connectors */
.hist-node--top::after,
.hist-node--bot::before {
  content: '';
  width: 2px;
  height: 22px;
  background: currentColor;
  opacity: .35;
  flex: none;
}

/* Icon circle */
.hist-node__ic {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  flex: none; color: #fff;
}
.hist-node__ic svg { width: 24px; height: 24px; }

/* Year */
.hist-node__year {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  margin: 6px 0 2px;
  line-height: 1;
}

/* Body */
.hist-node__body { flex: 1; }
.hist-node__body strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem; font-weight: 700;
  color: var(--ink); margin-bottom: 5px; margin-top: 6px;
  line-height: 1.3;
}
.hist-node__body p { font-size: .75rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Color variants — mapped to site palette */
.hist-node--red  { color: var(--blue-600); }
.hist-node--red  .hist-node__ic { background: var(--blue-600); }
.hist-node--navy { color: var(--blue-900); }
.hist-node--navy .hist-node__ic { background: var(--blue-900); }
.hist-node--teal { color: var(--green-600); }
.hist-node--teal .hist-node__ic { background: var(--green-600); }

/* Dot on spine at each node midpoint */
.hist-node--top::after { order: 10; }  /* connector sits at bottom of top node */
.hist-node--bot::before { order: -1; } /* connector sits at top of bottom node */

/* ── Responsive ── */
@media (max-width: 1024px) {
  .history__wrap { grid-template-columns: 1fr; }
  .history__sidebar { display: grid; grid-template-columns: auto 1fr; gap: 0 28px; align-items: start; }
  .history__big-title { font-size: 2rem; }
}
@media (max-width: 640px) {
  .history__sidebar { grid-template-columns: 1fr; }
  .history__tl { min-width: 560px; }
  .hist-node__body strong { font-size: .73rem; }
  .hist-node__body p { font-size: .7rem; }
  .hist-node__year { font-size: 1.05rem; }
  .hist-node__ic { width: 42px; height: 42px; }
  .hist-node__ic svg { width: 20px; height: 20px; }
}

/* ============================================================
   VEHICLE PROFILE
   ============================================================ */
.vp-overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.vp-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.vp-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vp-overview__copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.vp-overview__copy p { margin-top: 16px; color: var(--body); font-size: 1.05rem; }
.vp-highlights { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.vp-highlights .chip {
  background: var(--blue-50); color: var(--blue-700); font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: .85rem; padding: 8px 16px; border-radius: var(--radius-pill);
}
.vp-price { display: flex; align-items: baseline; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.vp-price__label { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.vp-price__value { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--green-600); line-height: 1; }
.vp-price__note { font-size: .78rem; color: var(--muted); align-self: flex-end; }
.vp-price__disclaimer { font-size: .6rem !important; color: var(--muted); margin-top: 8px; line-height: 1.45; }
.vp-overview__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.vp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; margin-top: 6px; }

.vp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 16px; }
.vp-gallery__item { display: block; padding: 0; border-radius: var(--radius); cursor: zoom-in; }
.vp-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform var(--transition);
}
.vp-gallery__item:hover img { transform: translateY(-4px); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 40px;
  background: rgba(6,16,30,.92);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,.22); }
.lightbox__close svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .vp-overview__grid { grid-template-columns: 1fr; gap: 36px; }
  .vp-specs { grid-template-columns: 1fr; }
  .vp-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page { padding-top: 56px; }

/* Category pill nav */
.faq-cats {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 56px;
}
.faq-cat-btn {
  display: inline-block; padding: 9px 20px;
  border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 500;
  color: var(--body); background: #fff; text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.faq-cat-btn:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

/* FAQ group */
.faq-group { margin-bottom: 56px; scroll-margin-top: 90px; }
.faq-group__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-100);
}
.faq-group__ic {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center;
}
.faq-group__ic svg { width: 20px; height: 20px; }

/* Accordion items */
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 10px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq-item[open] { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 1rem; color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: block; flex: none;
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231f6fe5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--blue-600); }

.faq-answer {
  padding: 0 22px 20px;
  color: var(--body); font-size: .97rem; line-height: 1.75;
  border-top: 1px solid var(--line);
}
.faq-answer p { margin-top: 14px; }
.faq-answer p:first-child { margin-top: 16px; }
.faq-answer ol, .faq-answer ul { padding-left: 22px; margin-top: 10px; }
.faq-answer li { margin-bottom: 6px; }
.faq-answer a { color: var(--blue-600); text-decoration: underline; }

/* FAQ CTA box */
.faq-cta {
  margin-top: 48px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  overflow: hidden;
}
.faq-cta__inner {
  padding: 52px 48px; text-align: center;
}
.faq-cta__inner h3 { font-size: 1.7rem; color: #fff; margin-bottom: 10px; }
.faq-cta__inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }
.faq-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-cta__btns .btn--primary { background: #fff; color: var(--blue-700); }
.faq-cta__btns .btn--primary:hover { background: var(--blue-50); }

/* ============================================================
   NEWS / ARTICLES PAGE
   ============================================================ */
.news-page { padding-top: 56px; }

/* Featured article */
.news-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff; box-shadow: var(--shadow-sm);
  margin-bottom: 52px;
}
.news-featured__media {
  display: block; position: relative; overflow: hidden;
  text-decoration: none;
}
.news-featured__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.news-featured:hover .news-featured__media img { transform: scale(1.04); }
.news-featured__cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--blue-600); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.news-featured__body {
  padding: 44px 40px; display: flex; flex-direction: column; justify-content: center;
}
.news-featured__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.news-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--muted);
}
.news-date svg { width: 14px; height: 14px; }
.news-read { font-size: .82rem; color: var(--muted); }
.news-featured__body h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 14px; line-height: 1.3; }
.news-featured__body h2 a { color: var(--ink); text-decoration: none; }
.news-featured__body h2 a:hover { color: var(--blue-600); }
.news-featured__body > p { color: var(--body); font-size: .97rem; line-height: 1.7; margin-bottom: 28px; }
.news-featured__body .btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; }
.news-featured__body .btn svg { width: 16px; height: 16px; }

/* Filter buttons */
.news-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.news-filter-btn {
  padding: 9px 20px; border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 500;
  color: var(--body); cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.news-filter-btn:hover,
.news-filter-btn--active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

/* Article grid (news.html page) */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 56px;
}

/* Bento grid (index.html home news section)
   Row 1: [wide — span 2] [normal]
   Row 2: [normal]        [wide — span 2]
*/
.news-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.news-bento .article-card--wide { grid-column: span 2; }

/* Wide card — horizontal image + text */
.article-card--wide { flex-direction: row; }
.article-card--wide .article-card__media {
  width: 48%; flex: none; aspect-ratio: 3/2;
}
.article-card--wide .article-card__body {
  padding: 28px 26px; justify-content: center;
}
.article-card--wide .article-card__body h3 { font-size: 1.15rem; }

/* Shared article card */
.article-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.article-card__media {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16/10; text-decoration: none;
}
.article-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue-600); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.article-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.article-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.article-card__body h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; }
.article-card__body h3 a { color: var(--ink); text-decoration: none; }
.article-card__body h3 a:hover { color: var(--blue-600); }
.article-card__body > p { font-size: .9rem; color: var(--body); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.article-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 600;
  color: var(--blue-600); text-decoration: none; margin-top: auto;
  transition: gap var(--transition);
}
.article-card__link:hover { gap: 10px; }
.article-card__link svg { width: 15px; height: 15px; }

/* Newsletter strip */
.news-newsletter {
  border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  padding: 44px 48px;
}
.news-newsletter__inner { display: flex; align-items: center; gap: 48px; }
.news-newsletter__copy { flex: 1; }
.news-newsletter__copy h3 { font-size: 1.45rem; margin-bottom: 6px; color: var(--ink); }
.news-newsletter__copy p { color: var(--muted); font-size: .97rem; }
.news-newsletter__form { flex: 1; }
.news-newsletter__row { display: flex; gap: 12px; }
.news-newsletter__row input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.news-newsletter__row input::placeholder { color: #9aa6b2; }
.news-newsletter__row input:focus { outline: none; border-color: var(--blue-500); box-shadow: var(--ring); }
.news-newsletter__row .btn { white-space: nowrap; }

/* Responsive */
@media (max-width: 880px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured__media { aspect-ratio: 16/9; }
  .news-featured__body { padding: 28px 28px 32px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-bento { grid-template-columns: 1fr 1fr; }
  .news-bento .article-card--wide { grid-column: span 2; flex-direction: column; }
  .news-bento .article-card--wide .article-card__media { width: 100%; aspect-ratio: 16/9; }
  .news-newsletter__inner { flex-direction: column; gap: 24px; }
  .faq-cta__inner { padding: 36px 28px; }
}
@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-bento { grid-template-columns: 1fr; }
  .news-bento .article-card--wide { grid-column: span 1; }
  .news-newsletter__row { flex-direction: column; }
  .faq-cta__btns { flex-direction: column; align-items: center; }
  .news-newsletter { padding: 28px 20px; }
}

/* ============================================================
   CUSTOMER REVIEWS — Marquee (Home)
   ============================================================ */
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-marquee {
  overflow: hidden;
  position: relative;
  padding: 8px 0 24px;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--green-50, #e9faf0), transparent);
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--green-50, #e9faf0), transparent);
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 38s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }

/* Card base */
.review-card {
  width: 300px;
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review-card--accent {
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.review-card__stars { display: flex; gap: 3px; }
.review-card__stars svg { width: 15px; height: 15px; color: #f59e0b; }
.review-card--accent .review-card__stars svg { color: #fde68a; }

.review-card__quote {
  font-size: .87rem;
  line-height: 1.65;
  color: var(--body);
  font-style: italic;
  margin: 0;
  flex: 1;
  position: relative;
  padding-left: 16px;
}
.review-card__quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -4px;
  font-size: 2rem; line-height: 1; color: var(--blue-200);
  font-style: normal; font-family: Georgia, serif;
}
.review-card--accent .review-card__quote { color: rgba(255,255,255,.88); }
.review-card--accent .review-card__quote::before { color: rgba(255,255,255,.28); }

.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--blue-100); color: var(--blue-700);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .85rem;
  display: grid; place-items: center;
}
.review-card--accent .review-card__avatar { background: rgba(255,255,255,.2); color: #fff; }
.review-card__name {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem; color: var(--ink);
}
.review-card--accent .review-card__name { color: #fff; }
.review-card__company { font-size: .78rem; color: var(--muted); margin-top: 1px; }
.review-card--accent .review-card__company { color: rgba(255,255,255,.65); }

/* ============================================================
   LOAN CALCULATOR
   ============================================================ */
.loan-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Form header */
.calc-form__header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.calc-form__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid; place-items: center;
}
.calc-form__icon svg { width: 22px; height: 22px; }
.calc-form__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin: 0 0 2px;
}
.calc-form__sub { font-size: .78rem; color: var(--muted); margin: 0; }

/* Form panel */
.loan-calc__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 22px;
}
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem; font-weight: 600;
  color: var(--ink); letter-spacing: .02em;
}
.calc-input-wrap {
  display: flex; align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  background: #fff;
}
.calc-input-wrap:focus-within { border-color: var(--blue-500); box-shadow: var(--ring); }
.calc-prefix, .calc-suffix {
  padding: 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border-right: 1.5px solid var(--line);
  align-self: stretch;
  display: flex; align-items: center;
  white-space: nowrap;
}
.calc-suffix { border-right: none; border-left: 1.5px solid var(--line); }
.calc-input-wrap input,
.calc-input-wrap select {
  flex: 1; border: none; outline: none;
  padding: 11px 14px;
  font-size: .95rem; color: var(--ink);
  background: transparent;
  font-family: inherit;
  min-width: 0;
}
.calc-input-wrap select { cursor: pointer; }

/* Preset buttons */
.calc-presets { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-preset {
  padding: 5px 12px;
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--blue-700);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem; font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.calc-preset:hover,
.calc-preset--active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

/* Fixed interest rate display */
.calc-fixed-rate {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius);
  background: var(--blue-50);
}
.calc-fixed-rate__value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--blue-700);
}
.calc-fixed-rate__label { font-size: .78rem; color: var(--blue-600); font-weight: 500; }

/* Custom term input */
.calc-custom-term { margin-top: 8px; }

/* Loan amount computed display */
.calc-loan-display {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: .95rem; font-weight: 700;
  color: var(--blue-700);
  font-family: 'Poppins', sans-serif;
}

/* Results panel */
.loan-calc__results {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.loan-calc__results.is-visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}

/* Monthly highlight */
.calc-monthly {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  padding: 32px 28px;
  color: #fff;
}
.calc-monthly__label {
  font-size: .82rem; font-weight: 600; opacity: .82;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 10px;
}
.calc-monthly__amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem; font-weight: 800; line-height: 1;
}
.calc-monthly__amount span { font-size: 2.4rem; }

/* Breakdown rows */
.calc-breakdown {
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  padding: 8px 0;
}
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  font-size: .9rem; color: var(--body);
  border-bottom: 1px solid var(--line);
}
.calc-row:last-child { border-bottom: none; }
.calc-row strong { color: var(--ink); font-family: 'Poppins', sans-serif; font-weight: 700; }
.calc-row--total {
  background: var(--blue-50);
}
.calc-row--total span:first-child { color: var(--blue-700); font-weight: 600; }
.calc-row--total strong { color: var(--blue-700); font-size: 1rem; }

.calc-disclaimer {
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  padding: 14px 28px;
  font-size: .75rem; color: var(--muted);
  line-height: 1.5;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Responsive */
@media (max-width: 880px) {
  .loan-calc { grid-template-columns: 1fr; }
  .loan-calc__results { opacity: 1; transform: none; pointer-events: auto; }
}
@media (max-width: 560px) {
  .loan-calc__form { padding: 24px 20px; }
  .calc-monthly { padding: 24px 20px; }
  .calc-monthly__amount { font-size: 1.8rem; }
  .calc-row { padding: 12px 20px; }
}

/* ============ OFFCANVAS DRAWER ============ */
.oc-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  z-index: 900;
}
.oc-overlay.is-open { opacity: 1; visibility: visible; }

.oc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 460px;
  background: #fff; box-shadow: -8px 0 40px rgba(0,0,0,.18);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 901; display: flex; flex-direction: column; overflow-y: auto;
}
.oc-drawer.is-open { transform: translateX(0); }

.oc-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.oc-drawer__head h3 { font-size: 1.15rem; margin: 0; }
.oc-drawer__head p  { font-size: .85rem; color: var(--muted); margin: 4px 0 0; }
.oc-drawer__close {
  width: 38px; height: 38px; border-radius: 50%; border: none; flex-shrink: 0;
  background: var(--surface); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.oc-drawer__close svg { width: 18px; height: 18px; }
.oc-drawer__close:hover { background: var(--surface-2); }

.oc-form { padding: 24px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.oc-form .field { display: flex; flex-direction: column; gap: 7px; }
.oc-form .field label { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .88rem; color: var(--ink); }
.oc-form .field input[type=text],
.oc-form .field input[type=email],
.oc-form .field input[type=tel],
.oc-form .field input[type=datetime-local],
.oc-form .field select {
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--ink); background: #fff; outline: none; transition: border-color .2s; width: 100%;
  box-sizing: border-box;
}
.oc-form .field select { appearance: auto; cursor: pointer; }
.oc-form .field input:focus,
.oc-form .field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(31,111,229,.1); }
.oc-form .req { color: var(--accent); }

.oc-location-opts {
  display: flex; gap: 0;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.oc-location-label {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 12px; cursor: pointer; position: relative;
  font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 600;
  transition: background .2s, color .2s; color: var(--muted);
  border-right: 1.5px solid var(--line); user-select: none;
}
.oc-location-label:last-child { border-right: none; }
.oc-location-label svg { width: 22px; height: 22px; transition: color .2s; }
.oc-location-label:has(input:checked) { background: var(--green-600); color: #fff; }
.oc-location-label input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }

.oc-form__note { font-size: .78rem; color: var(--muted); text-align: center; }

/* ============ LEASING BENEFITS — TWO-PANEL SPLIT ============ */
.leasing-benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 64px;
  align-items: start;
}
.leasing-benefits__intro {
  position: sticky;
  top: 96px;
}
.leasing-benefits__intro .eyebrow { display: inline-block; }
.leasing-benefits__intro h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  margin: 14px 0 18px;
  line-height: 1.2;
}
.leasing-benefits__intro > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 30px;
  font-size: 1.02rem;
}
.leasing-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.leasing-benefit {
  display: grid;
  grid-template-columns: 36px 52px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}
.leasing-benefit:hover {
  border-color: var(--blue-500);
  box-shadow: 0 8px 28px rgba(20,160,88,.1);
  transform: translateX(5px);
}
.leasing-benefit__num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--blue-100);
  line-height: 1;
  user-select: none;
}
.leasing-benefit__icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.leasing-benefit:hover .leasing-benefit__icon {
  background: var(--blue-600);
  color: #fff;
}
.leasing-benefit__icon svg { width: 24px; height: 24px; }
.leasing-benefit__copy h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.leasing-benefit__copy p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .leasing-benefits-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .leasing-benefits__intro { position: static; }
  .leasing-benefit { grid-template-columns: 36px 48px 1fr; padding: 18px 20px; gap: 14px; }
}
@media (max-width: 480px) {
  .leasing-benefit { grid-template-columns: 48px 1fr; }
  .leasing-benefit__num { display: none; }
}

/* ---------- Other Services · Ecosystem Orbit ---------- */
.orbit-stage { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 620px; margin: 12px auto 0; }
.orbit-stage svg { width: 100%; height: 100%; overflow: visible; }
.orbit-stage .ring { fill: none; stroke: var(--line); stroke-width: 1; }
.orbit-stage .ring.dash { stroke-dasharray: 2 7; stroke: var(--line); }
.orbit-stage .arc { fill: none; stroke-width: 4; stroke-linecap: round; opacity: .9; }
.arc-i { stroke: var(--blue-700); } .arc-f { stroke: var(--blue-600); } .arc-e { stroke: var(--green-600); }
.orbit-stage .spoke { stroke: #0f47a1; stroke-width: 1; }
.core-c { fill: #fff; stroke: var(--green-600); stroke-width: 1.6; }
.core-t { font-family: 'Poppins', sans-serif; font-weight: 700; fill: var(--ink); text-anchor: middle; }
.core-s { font-family: 'Poppins', sans-serif; fill: var(--green-600); text-anchor: middle; font-size: 9px; letter-spacing: .12em; }
.pip { fill: #fff; stroke: var(--line); stroke-width: 1.4; transition: .25s; }
.pip-i { stroke: var(--blue-700); } .pip-f { stroke: var(--blue-600); } .pip-e { stroke: var(--green-600); }
@keyframes ecoSpin { to { transform: rotate(360deg); } }
.orbit-stage .rot { transform-origin: 340px 340px; animation: ecoSpin 120s linear infinite; }
@media (prefers-reduced-motion: reduce) { .orbit-stage .rot { animation: none; } }

.orbit-stage .labels { position: absolute; inset: 0; pointer-events: none; }
.lbl { position: absolute; transform: translate(-50%,-50%); width: 140px; height: 66px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent-c); border-radius: 10px;
  padding: 6px 10px; text-align: center; pointer-events: auto; transition: var(--transition); cursor: default;
  box-shadow: var(--shadow-sm); }
.lbl:hover { transform: translate(-50%,-50%) scale(1.05); border-color: var(--accent-c); box-shadow: var(--shadow); }
.lbl .lt { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .8rem; line-height: 1.18; color: var(--ink); }
.lbl.i { --accent-c: var(--blue-700); } .lbl.f { --accent-c: var(--blue-600); } .lbl.e { --accent-c: var(--green-600); }
.p1{left:50%;top:4%} .p2{left:79%;top:15%} .p3{left:95%;top:42%} .p4{left:90%;top:73%}
.p5{left:66%;top:93%} .p6{left:34%;top:93%} .p7{left:11%;top:73%} .p8{left:5%;top:42%} .p9{left:21%;top:15%}
@media (max-width: 620px) {
  .orbit-stage { max-width: none; aspect-ratio: auto; height: auto; }
  .orbit-stage svg { display: none; }
  .orbit-stage .labels { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .lbl { position: static; transform: none; width: auto; height: auto; min-height: 58px; justify-content: flex-start; text-align: left; margin: 0; }
  .lbl:hover { transform: none; }
}
@media (max-width: 420px) {
  .orbit-stage .labels { grid-template-columns: 1fr; }
}
.legend { display: flex; gap: 24px; justify-content: center; margin-top: 26px; flex-wrap: wrap;
  font-size: .8rem; color: var(--muted); font-weight: 600; }
.legend span { display: flex; align-items: center; gap: 7px; }
.legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.li-i { background: var(--blue-700); } .li-f { background: var(--blue-600); } .li-e { background: var(--green-600); }

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
   ============================================================ */
.page-hero--sm { min-height: 0; padding: 100px 0 72px; }

.legal-doc { max-width: 800px; margin: 0 auto; }
.legal-doc h2 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 36px 0 10px; padding-top: 4px; border-top: 1px solid var(--line); }
.legal-doc h2:first-of-type { margin-top: 0; border-top: none; }
.legal-doc p { color: var(--body); line-height: 1.8; margin-bottom: 12px; font-size: .97rem; }
.legal-doc ul { margin: 4px 0 14px 22px; }
.legal-doc ul li { color: var(--body); line-height: 1.75; margin-bottom: 6px; list-style: disc; font-size: .97rem; }
.legal-doc a { color: var(--blue-600); text-decoration: underline; }
.legal-doc a:hover { color: var(--blue-700); }
.legal-meta { font-size: .82rem; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 32px !important; }

/* ============================================================
   INSPECTION & MAINTENANCE PAGE
   ============================================================ */

/* ---------- Credential ticker ---------- */
.im-ticker {
  background: linear-gradient(90deg, var(--blue-700), var(--blue-600));
  color: #fff; overflow: hidden; padding: 16px 0; position: relative;
}
.im-ticker__track { display: flex; width: max-content; animation: imTicker 30s linear infinite; }
.im-ticker:hover .im-ticker__track { animation-play-state: paused; }
@keyframes imTicker { to { transform: translateX(-50%); } }
.im-ticker__group { display: flex; align-items: center; flex: none; }
.im-ticker__item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 34px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; white-space: nowrap;
}
.im-ticker__item svg { width: 17px; height: 17px; color: var(--green-500); flex: none; }

/* ---------- Shared staggered scroll reveal ---------- */
.im-stagger > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.22,.8,.3,1), transform .65s cubic-bezier(.22,.8,.3,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.im-stagger.in > * { opacity: 1; transform: none; }

/* ---------- Split intro ---------- */
.im-split { display: grid; grid-template-columns: 1.02fr 1fr; gap: 60px; align-items: center; }
.im-split__visual { position: relative; }
.im-split__photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; position: relative;
}
.im-split__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.8,.3,1); }
.im-split__photo:hover img { transform: scale(1.05); }
.im-split__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,47,107,.28) 0%, transparent 45%);
}
.im-split__visual::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px; z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-50), var(--surface-2));
}
.im-float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 14px 18px;
  animation: imFloat 5s ease-in-out infinite;
}
.im-float--lta { top: -22px; right: -14px; }
.im-float--cert { bottom: -24px; left: -18px; animation-delay: 2.5s; }
@keyframes imFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.im-float img { width: 40px; height: 40px; object-fit: contain; flex: none; }
.im-float b { display: block; font-family: 'Poppins', sans-serif; font-size: .88rem; color: var(--ink); line-height: 1.25; }
.im-float span { font-size: .74rem; color: var(--muted); }

.im-split__copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); letter-spacing: -.01em; }
.im-split__copy h2 .hl { color: var(--green-600); }
.im-split__copy > p { margin-top: 18px; font-size: 1.05rem; line-height: 1.75; color: var(--body); }
.im-checklist { margin-top: 26px; display: grid; gap: 14px; }
.im-checklist li { display: flex; gap: 12px; align-items: flex-start; }
.im-checklist .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none; margin-top: 2px;
  background: var(--green-50); color: var(--green-600); display: grid; place-items: center;
}
.im-checklist .tick svg { width: 15px; height: 15px; }
.im-checklist b { color: var(--ink); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem; }
.im-checklist span { display: block; color: var(--muted); font-size: .9rem; }
.im-split__cta { margin-top: 30px; }

/* ---------- Benefits ---------- */
.im-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.im-benefit {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.im-benefit::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--blue-500), var(--green-500));
  transform: scaleY(0); transform-origin: top; transition: transform .35s ease;
}
.im-benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.im-benefit:hover::before { transform: scaleY(1); }
.im-benefit__ic {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.im-benefit:hover .im-benefit__ic { background: var(--blue-600); color: #fff; transform: scale(1.06) rotate(-4deg); }
.im-benefit__ic svg { width: 25px; height: 25px; }
.im-benefit h3 { font-size: 1.06rem; margin-bottom: 8px; }
.im-benefit p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ---------- Process timeline ---------- */
.im-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: imstep; }
.im-steps::before {
  content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 3px; z-index: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500));
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(.22,.8,.3,1) .2s;
}
.im-steps.in::before { transform: scaleX(1); }
.im-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.im-step__num {
  counter-increment: imstep; width: 68px; height: 68px; margin: 0 auto 18px;
  border-radius: 50%; background: #fff; border: 3px solid var(--blue-100);
  display: grid; place-items: center; color: var(--blue-600);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem;
  box-shadow: var(--shadow-sm); transition: border-color .3s, background .3s, color .3s, transform .3s;
}
.im-step__num::before { content: "0" counter(imstep); }
.im-step:hover .im-step__num { border-color: var(--green-500); background: var(--green-50); color: var(--green-700); transform: scale(1.08); }
.im-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.im-step p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ---------- Service coverage cards ---------- */
.im-scope { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.im-scope__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.im-scope__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.im-scope__media { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(155deg, var(--surface), var(--surface-2)); position: relative; }
.im-scope__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.8,.3,1); }
.im-scope__media--contain img { object-fit: contain; padding: 22px; }
.im-scope__card:hover .im-scope__media img { transform: scale(1.07); }
.im-scope__tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .05em;
  color: var(--green-700); background: var(--green-50); padding: 5px 12px; border-radius: var(--radius-pill);
}
.im-scope__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.im-scope__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.im-scope__body p { color: var(--muted); font-size: .93rem; line-height: 1.6; }

/* ---------- Why choose us ---------- */
.im-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.im-why__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 24px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.im-why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.im-why__ic {
  width: 62px; height: 62px; border-radius: 16px; margin: 0 auto 18px;
  background: var(--blue-50); display: grid; place-items: center;
  transition: transform .25s ease;
}
.im-why__card:hover .im-why__ic { transform: scale(1.08); }
.im-why__ic img { width: 34px; height: 34px; object-fit: contain; }
.im-why__card h4 { font-size: .92rem; letter-spacing: .02em; margin-bottom: 9px; }
.im-why__card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ---------- CTA band ---------- */
.im-cta {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  color: #fff; padding: 100px 0;
}
.im-cta::before, .im-cta::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(70px); opacity: .5;
  animation: imOrb 11s ease-in-out infinite alternate;
}
.im-cta::before { width: 420px; height: 420px; background: rgba(31,111,229,.55); top: -160px; left: -120px; }
.im-cta::after  { width: 380px; height: 380px; background: rgba(31,184,102,.4); bottom: -150px; right: -110px; animation-delay: 3s; }
@keyframes imOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(46px, 26px) scale(1.12); }
}
.im-cta__badge {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 24px;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3);
  display: grid; place-items: center; color: var(--green-500);
  animation: imFloat 5s ease-in-out infinite;
}
.im-cta__badge svg { width: 32px; height: 32px; }
.im-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); max-width: 640px; margin: 0 auto; }
.im-cta p { color: rgba(255,255,255,.85); margin: 16px auto 34px; max-width: 560px; font-size: 1.08rem; line-height: 1.7; }
.im-cta .hero__cta { justify-content: center; margin: 0; }

/* ============================================================
   IM-CTA-MID  –  mid-page CTA band with trust-badge strip
   ============================================================ */
.im-cta-mid {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  color: #fff; padding: 80px 0;
}
.im-cta-mid::before, .im-cta-mid::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(70px); opacity: .45; animation: imOrb 11s ease-in-out infinite alternate;
}
.im-cta-mid::before { width: 380px; height: 380px; background: rgba(31,111,229,.5); top: -140px; left: -100px; }
.im-cta-mid::after  { width: 320px; height: 320px; background: rgba(31,184,102,.35); bottom: -130px; right: -90px; animation-delay: 3s; }

/* 2-column inner layout */
.im-cta-mid__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px 64px; align-items: center;
}

/* Left column */
.im-cta-mid__copy { text-align: left; }
.im-cta-mid__copy h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin: 0 0 16px; }
.im-cta-mid__copy p  { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7; margin: 0 0 28px; }

/* Right column – 2×2 badge grid */
.im-cta-mid__trust {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.im-cta-mid__item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 600;
  letter-spacing: .02em; text-align: center;
}
.im-cta-mid__ic {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  display: grid; place-items: center; color: #4ade80;
  transition: background .25s ease, transform .25s ease;
}
.im-cta-mid__item:hover .im-cta-mid__ic { background: rgba(255,255,255,.22); transform: translateY(-4px); }
.im-cta-mid__ic svg { width: 26px; height: 26px; }

/* Responsive: stack on narrow screens */
@media (max-width: 760px) {
  .im-cta-mid__inner { grid-template-columns: 1fr; gap: 40px; }
  .im-cta-mid__copy { text-align: center; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .im-steps { grid-template-columns: repeat(2, 1fr); gap: 34px 22px; }
  .im-steps::before { display: none; }
  .im-why { grid-template-columns: repeat(2, 1fr); }
  .im-scope { grid-template-columns: 1fr 1fr; }
  .im-scope__card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .im-split { grid-template-columns: 1fr; gap: 56px; }
  .im-split__visual { margin: 0 16px; }
  .im-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .im-benefits, .im-scope, .im-why, .im-steps { grid-template-columns: 1fr; }
  .im-scope__card:last-child { grid-column: auto; }
  .im-float--lta { right: -6px; }
  .im-float--cert { left: -6px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-hero__media img, .im-ticker__track, .im-float,
  .im-cta::before, .im-cta::after, .im-cta__badge,
  .im-cta-mid::before, .im-cta-mid::after,
  .hero-scroll .mouse i { animation: none; }
  .page-hero h1, .page-hero p, .page-hero .crumbs, .page-hero .hero-creds, .hero-scroll { animation: none; opacity: 1; transform: none; }
  .hero-scroll { transform: translateX(-50%); }
  .im-stagger > * { opacity: 1; transform: none; transition: none; }
  .im-steps::before { transform: scaleX(1); transition: none; }
}
