:root{
  --ev-navy:#07255b;
  --ev-navy-deep:#041937;
  --ev-blue:#0b8fe8;
  --ev-green:#8dc63f;
  --ev-green-deep:#74b62d;
  --ev-white:#ffffff;
  --ev-bg:#f7fbff;
  --ev-bg-soft:#eef7ff;
  --ev-text:#15304f;
  --ev-muted:#5c728b;
  --ev-border:#d9e7f3;
  --shadow-soft:0 12px 40px rgba(7,37,91,.08);
  --shadow-card:0 18px 50px rgba(7,37,91,.10);
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--ev-text);
  background:#fff;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none}

.topbar{
  background:linear-gradient(90deg,var(--ev-navy-deep),var(--ev-navy));
  color:#dcecff;
  font-size:.92rem;
}
.topbar-inner{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-left,.topbar-right{display:flex;gap:18px;flex-wrap:wrap}
.topbar a,.topbar span{color:#dcecff}
.topbar i{color:var(--ev-green)}

.site-header{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(7,37,91,.06);
}
.nav-shell{padding-top:14px;padding-bottom:14px}
.navbar-brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--ev-text);
  flex-shrink:0;
  margin-right:18px;
}
.navbar-brand img{
  width:64px;
  height:64px;
  object-fit:contain;
}
.navbar-brand strong{
  display:block;
  font-size:1rem;
  line-height:1.15;
}
.navbar-brand span{
  display:block;
  font-size:.83rem;
  color:var(--ev-muted);
}
.nav-link{
  color:var(--ev-text);
  font-weight:600;
  margin:0 8px;
}
.nav-link:hover,.nav-link:focus{color:var(--ev-blue)}
.nav-cta{
  margin-left:16px;
  border-radius:999px;
  padding:.9rem 1.3rem;
}

.homepage-dealer-strip{
  position:relative;
  overflow:hidden;
  background:#071d38;
  background:linear-gradient(90deg,#061a34,#0a3767 54%,#0e5d68);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(7,37,91,.08);
  animation:dealerStripDrop .55s ease both;
}

.homepage-dealer-strip:before{
  content:"";
  position:absolute;
  inset:0 auto 0 -35%;
  width:32%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.16),transparent);
  transform:skewX(-18deg);
  animation:dealerStripShine 4.8s ease-in-out 1s infinite;
  pointer-events:none;
}

.homepage-dealer-strip a{
  position:relative;
  z-index:1;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:9px 0;
  color:#eaf7ff !important;
  font-size:.94rem;
  line-height:1.35;
  text-align:center;
  text-decoration:none;
}

.homepage-dealer-strip a:hover{
  color:#fff;
  text-decoration:none;
}

.homepage-dealer-strip strong{
  color:#fff !important;
  font-weight:900;
}

.homepage-dealer-strip__icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--ev-blue),var(--ev-green-deep));
  box-shadow:0 10px 22px rgba(11,143,232,.25);
  animation:dealerStripPulse 2.6s ease-in-out infinite;
}

.homepage-dealer-strip__cta{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#c9f59a !important;
  font-weight:900;
}

.homepage-dealer-strip__cta i{
  animation:dealerStripArrow 1.8s ease-in-out infinite;
}

.homepage-offer-strip{
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg,#fff7f7,#eef9ff 52%,#f4fff0);
  border-bottom:1px solid rgba(7,37,91,.08);
  animation:dealerStripDrop .55s ease both;
}

.homepage-offer-strip:before{
  content:"";
  position:absolute;
  inset:0 auto 0 -28%;
  width:24%;
  background:linear-gradient(90deg,transparent,rgba(11,143,232,.16),transparent);
  transform:skewX(-18deg);
  animation:dealerStripShine 5.4s ease-in-out 1.4s infinite;
  pointer-events:none;
}

.homepage-offer-strip a{
  position:relative;
  z-index:1;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:8px 0;
  color:var(--ev-text) !important;
  font-size:.93rem;
  line-height:1.35;
  text-align:center;
  text-decoration:none;
}

.homepage-offer-strip a:hover{
  color:var(--ev-navy) !important;
  text-decoration:none;
}

.homepage-offer-strip strong{
  color:var(--ev-navy) !important;
  font-weight:900;
}

.homepage-offer-strip__icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#f13232,var(--ev-blue),var(--ev-green-deep));
  box-shadow:0 10px 22px rgba(241,50,50,.26);
  animation:offerStripRedPulse 1.55s ease-in-out infinite;
}

.homepage-offer-strip__cta{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--ev-blue) !important;
  font-weight:900;
}

.homepage-offer-strip__cta i{
  animation:dealerStripArrow 1.8s ease-in-out infinite;
}

.homepage-offer-strip strong{
  position:relative;
}

.homepage-offer-strip strong:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-3px;
  height:3px;
  border-radius:999px;
  background:#f13232;
  opacity:.85;
  animation:offerStripUnderline 1.25s ease-in-out infinite;
}

.homepage-offer-strip .homepage-offer-strip__cta{
  animation:offerStripCtaFlash 1.45s ease-in-out infinite;
}

@keyframes offerStripRedPulse{
  0%,100%{transform:scale(1);box-shadow:0 10px 22px rgba(241,50,50,.22)}
  50%{transform:scale(1.1);box-shadow:0 0 0 7px rgba(241,50,50,.14),0 13px 28px rgba(11,143,232,.22)}
}

@keyframes offerStripUnderline{
  0%,100%{opacity:.45;transform:scaleX(.72)}
  50%{opacity:1;transform:scaleX(1)}
}

@keyframes offerStripCtaFlash{
  0%,100%{color:var(--ev-blue)}
  50%{color:#f13232}
}

@keyframes dealerStripDrop{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes dealerStripShine{
  0%,42%{left:-35%;opacity:0}
  52%{opacity:1}
  68%,100%{left:112%;opacity:0}
}

@keyframes dealerStripPulse{
  0%,100%{transform:scale(1);box-shadow:0 10px 22px rgba(11,143,232,.25)}
  50%{transform:scale(1.07);box-shadow:0 12px 28px rgba(141,198,63,.34)}
}

@keyframes dealerStripArrow{
  0%,100%{transform:translateX(0)}
  50%{transform:translateX(4px)}
}

.btn{
  border-radius:999px;
  font-weight:700;
  padding:.95rem 1.4rem;
  border-width:0;
}
.btn-primary{
  background:linear-gradient(135deg,var(--ev-blue),var(--ev-green-deep));
  box-shadow:0 14px 32px rgba(11,143,232,.22);
}
.btn-primary:hover,.btn-primary:focus{
  background:linear-gradient(135deg,var(--ev-navy),var(--ev-blue));
}
.btn-outline-primary{
  border:1.5px solid rgba(11,143,232,.22);
  color:var(--ev-blue);
  background:#fff;
}
.btn-outline-primary:hover,.btn-outline-primary:focus{
  color:#fff;
  background:var(--ev-navy);
  border-color:var(--ev-navy);
}

.hero-section{
  position:relative;
  overflow:hidden;
  padding:42px 0 24px;
  background:
    radial-gradient(circle at top right, rgba(141,198,63,.18), transparent 24%),
    radial-gradient(circle at top left, rgba(11,143,232,.14), transparent 26%),
    linear-gradient(180deg,#ffffff 0%, var(--ev-bg) 100%);
}
.hero-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(7,37,91,.06);
  border-radius:36px;
  padding:42px;
  box-shadow:var(--shadow-card);
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(11,143,232,.06), rgba(141,198,63,.05));
  pointer-events:none;
}
.hero-copy,.hero-visual{position:relative;z-index:1}
.eyebrow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:20px;
}
.eyebrow span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--ev-border);
  padding:10px 14px;
  font-size:.92rem;
  color:var(--ev-navy);
  font-weight:700;
}
.eyebrow i{color:var(--ev-green-deep)}
.hero-copy h1{
  font-size:clamp(2.5rem, 5vw, 4.6rem);
  line-height:1.02;
  letter-spacing:-.04em;
  margin:0 0 18px;
  max-width:11ch;
}
.hero-copy h1 span{
  color:var(--ev-blue);
}
.hero-copy p{
  font-size:1.08rem;
  color:var(--ev-muted);
  max-width:60ch;
  margin-bottom:28px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px}
.hero-trust-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.trust-pill{
  background:#fff;
  border:1px solid var(--ev-border);
  border-radius:18px;
  padding:14px 16px;
  font-weight:600;
  color:var(--ev-text);
  box-shadow:var(--shadow-soft);
}
.trust-pill i{color:var(--ev-blue);margin-right:8px}

.hero-visual{
  min-height:520px;
  position:relative;
}
.visual-glow{
  position:absolute;
  border-radius:999px;
  filter:blur(18px);
}
.glow-one{
  width:180px;height:180px;
  background:rgba(11,143,232,.16);
  top:24px;right:24px;
}
.glow-two{
  width:220px;height:220px;
  background:rgba(141,198,63,.14);
  left:20px;bottom:20px;
}
.hero-panel{
  position:absolute;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(7,37,91,.08);
  box-shadow:var(--shadow-card);
  border-radius:26px;
}
.logo-panel{
  inset:55px 70px 150px 55px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#f9fdff,#eef8ff);
}
.logo-panel img{max-width:78%;max-height:78%;object-fit:contain}
.stat-card{
  padding:18px 20px;
  max-width:260px;
}
.stat-card small{
  display:block;
  color:var(--ev-muted);
  font-weight:700;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.stat-card strong{
  display:block;
  font-size:1rem;
  line-height:1.35;
}
.stat-one{top:18px;left:0}
.stat-two{right:0;bottom:100px}
.diagnostic-card{
  left:30px;right:30px;bottom:0;
  padding:18px 20px;
  background:linear-gradient(135deg,var(--ev-navy),#0b356e);
  color:#fff;
}
.diag-header{
  display:flex;align-items:center;gap:10px;
  font-weight:700;
  margin-bottom:12px;
}
.pulse-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--ev-green);
  box-shadow:0 0 0 8px rgba(141,198,63,.15);
}
.diagnostic-card ul{list-style:none;padding:0;margin:0}
.diagnostic-card li{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:11px 0;
  border-top:1px solid rgba(255,255,255,.12);
}
.diagnostic-card li:first-child{border-top:0}
.diagnostic-card strong{color:#d7ff9f;font-size:.95rem}

.hero-badges{margin-top:24px}
.badge-box{
  background:#fff;
  border:1px solid var(--ev-border);
  border-radius:24px;
  padding:20px;
  height:100%;
  box-shadow:var(--shadow-soft);
}
.badge-box strong{
  display:block;
  font-size:1.2rem;
  color:var(--ev-navy);
  margin-bottom:6px;
}
.badge-box span{color:var(--ev-muted)}

.section-pad{padding:96px 0}
.section-light{background:linear-gradient(180deg,#fbfdff 0%, #f3f9ff 100%)}
.narrow{max-width:780px}
.section-heading{margin-bottom:48px}
.section-heading .mini-title,
.mini-title{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ev-blue);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  margin-bottom:14px;
}
.section-heading h2,
.contact-panel h2,
.trust-banner h2{
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin-bottom:14px;
}
.section-heading p,
.contact-panel p,
.trust-banner p{color:var(--ev-muted);font-size:1.02rem}

.feature-list{display:grid;gap:16px;margin-top:28px}
.feature-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--ev-border);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.feature-item i{
  width:54px;height:54px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(11,143,232,.14),rgba(141,198,63,.16));
  color:var(--ev-navy);
  font-size:1.25rem;
}
.feature-item h3{font-size:1.1rem;margin-bottom:6px}
.feature-item p{margin:0;color:var(--ev-muted)}

.about-highlight{
  background:#fff;
  border:1px solid var(--ev-border);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow-card);
}
.status-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:#f2faff;
  color:var(--ev-blue);
  padding:10px 14px;
  font-weight:700;
  border:1px solid rgba(11,143,232,.12);
}
.about-highlight h3{font-size:1.45rem;margin:20px 0 18px}
.about-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:24px;
}
.about-grid-card{
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f7fbff);
  border:1px solid var(--ev-border);
  padding:18px;
  font-weight:600;
}

.service-card,
.process-card,
.gallery-card,
.contact-panel,
.form-panel{
  background:#fff;
  border:1px solid var(--ev-border);
  border-radius:28px;
  box-shadow:var(--shadow-soft);
}
.service-card{
  padding:28px;
  height:100%;
  position:relative;
  overflow:hidden;
}
.service-card:before{
  content:"";
  position:absolute;
  inset:auto auto 0 0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,var(--ev-blue),var(--ev-green));
}
.icon-box{
  width:64px;height:64px;
  border-radius:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(11,143,232,.15),rgba(141,198,63,.18));
  color:var(--ev-navy);
  font-size:1.4rem;
  margin-bottom:20px;
}
.service-card h3{font-size:1.25rem;margin-bottom:12px}
.service-card p{color:var(--ev-muted);margin-bottom:18px}
.service-card ul{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.service-card li{
  position:relative;
  padding-left:22px;
  color:var(--ev-text);
  font-weight:500;
}
.service-card li:before{
  content:"";
  position:absolute;
  left:0;top:10px;
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(135deg,var(--ev-blue),var(--ev-green));
}

.process-card{
  padding:28px;
  height:100%;
  position:relative;
}
.step-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;height:54px;
  border-radius:999px;
  background:var(--ev-navy);
  color:#fff;
  font-weight:800;
  margin-bottom:18px;
}
.process-card h3{font-size:1.15rem;margin-bottom:10px}
.process-card p{color:var(--ev-muted);margin:0}

.trust-banner{
  background:linear-gradient(135deg,var(--ev-navy-deep),var(--ev-navy) 45%, #0d4d95 100%);
  color:#fff;
  border-radius:34px;
  padding:38px;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:24px;
  box-shadow:var(--shadow-card);
}
.trust-banner .mini-title{color:#bce1ff}
.trust-banner p{color:#cde0f5}
.trust-points{
  display:grid;
  gap:12px;
  align-content:center;
}
.trust-points span{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:14px 16px;
  font-weight:600;
}
.trust-points i{color:#aef06c}

.gallery-card{overflow:hidden;height:100%}
.gallery-placeholder{
  min-height:240px;
  background:linear-gradient(135deg,#eaf5ff,#f8fff0);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ev-blue);
  font-size:2.3rem;
}
.gallery-copy{padding:22px}
.gallery-copy h3{font-size:1.15rem;margin-bottom:8px}
.gallery-copy p{color:var(--ev-muted);margin:0}

.faq-accordion{max-width:900px;margin:0 auto}
.accordion-item{
  border:1px solid var(--ev-border);
  border-radius:20px !important;
  overflow:hidden;
  margin-bottom:14px;
  box-shadow:var(--shadow-soft);
}
.accordion-button{
  font-weight:700;
  color:var(--ev-text);
  background:#fff;
  padding:22px 24px;
}
.accordion-button:not(.collapsed){
  color:var(--ev-navy);
  background:#f3faff;
  box-shadow:none;
}
.accordion-button:focus{box-shadow:none}
.accordion-body{color:var(--ev-muted);padding:0 24px 22px}

.contact-panel,.form-panel{padding:30px;height:100%}
.contact-list{display:grid;gap:14px;margin-top:24px}
.contact-list a,.contact-list span{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--ev-text);
  font-weight:600;
  background:#f8fbff;
  border:1px solid var(--ev-border);
  border-radius:16px;
  padding:15px 16px;
}
.contact-list i{color:var(--ev-blue)}
.form-label{font-weight:700;margin-bottom:8px}
.form-control{
  border:1px solid var(--ev-border);
  border-radius:16px;
  min-height:54px;
  padding:.9rem 1rem;
}
.form-control:focus{
  border-color:rgba(11,143,232,.5);
  box-shadow:0 0 0 4px rgba(11,143,232,.12);
}
textarea.form-control{min-height:160px}

.site-footer{
  background:linear-gradient(180deg,var(--ev-navy-deep),var(--ev-navy));
  color:#dcecff;
  padding:26px 0;
}
.footer-shell{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}
.site-footer p{margin:6px 0 0;color:#b6cde6}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}
.footer-links a{color:#dcecff}
.footer-links a:hover{color:#fff}

@media (max-width: 1199px){
  .hero-copy h1{max-width:13ch}
  .logo-panel{inset:70px 50px 165px 45px}
}

@media (max-width: 991px){
  .topbar-inner{justify-content:center;text-align:center}
  .nav-cta{margin:14px 0 0}
  .hero-card{padding:28px}
  .hero-visual{min-height:500px}
  .trust-banner{grid-template-columns:1fr}
}

@media (max-width: 767px){
  .topbar{display:none}
  .navbar-brand img{width:56px;height:56px}
  .homepage-dealer-strip a{
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    padding:8px 0;
    min-height:42px;
    font-size:.86rem;
  }
  .homepage-dealer-strip__cta{
    margin-left:auto;
    white-space:nowrap;
  }
  .homepage-offer-strip a{
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    padding:8px 0;
    min-height:42px;
    font-size:.86rem;
  }
  .homepage-offer-strip__cta{
    margin-left:auto;
    white-space:nowrap;
  }
  .hero-section{padding-top:20px}
  .hero-card{border-radius:26px;padding:20px}
  .hero-copy h1{font-size:2.3rem;max-width:none}
  .hero-copy p{font-size:1rem}
  .hero-trust-grid{grid-template-columns:1fr}
  .hero-visual{min-height:420px;margin-top:10px}
  .logo-panel{inset:58px 24px 150px 24px}
  .stat-one{top:0;left:6px}
  .stat-two{right:6px;bottom:92px}
  .diagnostic-card{left:12px;right:12px}
  .about-grid{grid-template-columns:1fr}
  .section-pad{padding:74px 0}
  .gallery-placeholder{min-height:200px}
}

@media (max-width: 575px){
  .eyebrow{gap:8px}
  .homepage-dealer-strip a{
    display:grid;
    grid-template-columns:26px minmax(0,1fr);
    gap:4px 9px;
    font-size:.82rem;
    line-height:1.28;
  }
  .homepage-offer-strip a{
    display:grid;
    grid-template-columns:26px minmax(0,1fr);
    gap:4px 9px;
    font-size:.82rem;
    line-height:1.28;
  }
  .homepage-dealer-strip__icon,
  .homepage-offer-strip__icon{
    width:26px;
    height:26px;
    font-size:.78rem;
  }
  .homepage-dealer-strip__cta,
  .homepage-offer-strip__cta{
    grid-column:2;
    margin-left:0;
    font-size:.8rem;
  }
  .eyebrow span{font-size:.82rem;padding:8px 12px}
  .hero-actions{flex-direction:column}
  .btn,.btn-lg{width:100%}
  .hero-visual{min-height:380px}
  .logo-panel{inset:54px 18px 142px 18px}
  .stat-card{max-width:220px;padding:14px 16px}
  .stat-card strong{font-size:.92rem}
  .footer-shell{align-items:flex-start}
}

@media (prefers-reduced-motion: reduce){
  .homepage-dealer-strip,
  .homepage-dealer-strip:before,
  .homepage-dealer-strip__icon,
  .homepage-dealer-strip__cta i,
  .homepage-offer-strip,
  .homepage-offer-strip:before,
  .homepage-offer-strip__icon,
  .homepage-offer-strip__cta i,
  .homepage-offer-strip strong:after,
  .homepage-offer-strip .homepage-offer-strip__cta{
    animation:none;
  }
}
