/* ==========================================================================
   MPOWER — Shared stylesheet
   ========================================================================== */

:root {
  --navy: #070c4f;
  --navy-light: #1a2170;
  --navy-soft: #eef1fb;
  --green: #00ff42;
  --green-dark: #00b32e;
  --yellow: #ffc93c;
  --white: #ffffff;
  --gray-50: #f7f8fb;
  --gray-100: #eef0f5;
  --gray-400: #8891a5;
  --gray-600: #5b6472;
  --text: #1b2140;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow: 0 20px 45px -20px rgba(16, 33, 79, 0.25);
  --shadow-sm: 0 10px 25px -12px rgba(16, 33, 79, 0.2);
  --container: 1180px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 700;
}

p { line-height: 1.65; color: var(--gray-600); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: var(--green-dark);
  margin-bottom: 14px;
}

/* Buttons ---------------------------------------------------------------- */
[hidden] { display: none !important; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }

/* Header ------------------------------------------------------------------ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar .top-links { display: flex; gap: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img { height: 26px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active { color: var(--green-dark); }
.main-nav a:hover { color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 700; font-size: 14px; color: var(--navy); display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 940px) {
  .site-header .container { flex-wrap: wrap; row-gap: 0; }
  .main-nav {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 400px; padding: 10px 0 20px; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
}

/* Hero --------------------------------------------------------------------*/
.hero {
  background: var(--navy-soft);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero h1 { font-size: 46px; }
.hero .lede { font-size: 17px; max-width: 46ch; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 22px 0 18px;
}
.hero-tag .scribble { color: var(--yellow); font-size: 26px; }
.check-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); font-size: 16px; }
.check-list .tick {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-list li:nth-child(2) .tick { background: var(--green); }
.check-list li:nth-child(3) .tick { background: var(--yellow); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; }
  .hero h1 { font-size: 34px; }
  .hero-media { order: -1; aspect-ratio: 16/10; }
}

/* Section heading centered */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 34px; }
.section-head.left { text-align: left; margin: 0 0 40px; }

/* Testimonials -------------------------------------------------------------*/
.testimonials { background: var(--gray-50); padding-top: 56px; padding-bottom: 56px; }
.stars { color: var(--yellow); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.t-card h4 { font-size: 18px; margin-bottom: 10px; }
.t-card p { font-size: 14.5px; }
.t-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-400); font-weight: 600; margin-top: 18px; }
.t-card-badge { display: flex; flex-direction: column; justify-content: center; }
.t-badge-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.t-badge-row .stars { margin-bottom: 0; }
.t-score { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 17px; }
.t-feefo { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 16px; }
.t-read-all { font-weight: 700; font-size: 13.5px; color: var(--navy); display: inline-block; margin-top: 10px; }
@media (max-width: 940px) { .t-grid { grid-template-columns: 1fr; } }

/* How it works ------------------------------------------------------------*/
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: left;
  position: relative;
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-card h4 { font-size: 19px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 940px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }

/* Tier 1 panels (Solar page) -----------------------------------------------*/
.tier1-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tier1-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: left;
  background: var(--white);
}
.tier1-card .feature-icon { margin-bottom: 18px; }
.tier1-card h4 { font-size: 19px; margin-bottom: 10px; }
.tier1-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 940px) { .tier1-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .tier1-grid { grid-template-columns: 1fr; } }

/* Why go solar / accordion -------------------------------------------------*/
.why-solar {
  position: relative;
  color: var(--white);
  background: var(--navy);
}
.why-solar .section-head { text-align: left; max-width: none; margin: 0 0 36px; }
.why-solar .section-head h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: stretch; }
.why-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.why-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 940px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { order: -1; aspect-ratio: 16/10; }
}
@media (max-width: 620px) { .why-cols { grid-template-columns: 1fr; } }
.accordion { display: grid; gap: 16px; }
.acc-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  backdrop-filter: blur(6px);
}
.acc-item[open] { background: var(--white); border-color: var(--white); }
.acc-item[open] summary { color: var(--navy); }
.acc-item[open] .acc-body { color: var(--gray-600); }
.acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .2s ease;
}
.acc-item[open] summary .arrow { transform: rotate(180deg); }
.acc-body { padding-top: 14px; font-size: 15px; }

/* Light-background accordion variant (Battery Storage benefits) -----------*/
.accordion.light .acc-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  backdrop-filter: none;
}
.accordion.light .acc-item[open] { background: var(--gray-50); border-color: var(--gray-100); }
.accordion.light .acc-item summary { color: var(--navy); }
.accordion.light .acc-item[open] summary { color: var(--navy); }
.accordion.light .acc-item[open] .acc-body { color: var(--gray-600); }

/* Leading technology trust banner -------------------------------------------*/
.leading-tech { text-align: center; }
.leading-tech .section-head { max-width: 720px; margin: 0 auto; }
.leading-tech p { max-width: 720px; margin: 0 auto; }

/* AC or DC coupling section --------------------------------------------------*/
.ac-dc-intro {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: left;
}
.ac-dc-intro h2 { margin-bottom: 14px; }
.ac-dc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ac-dc-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 32px;
}
.ac-dc-card h4 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.ac-dc-card p { font-size: 14.5px; }
@media (max-width: 780px) { .ac-dc-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .ac-dc-intro { padding: 30px 26px; } }

/* Zappi quote capture widget (EV page) ---------------------------------------*/
.zappi-widget { background: var(--navy); position: relative; overflow: hidden; }
.zappi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 36px;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.zappi-card h3 { font-size: 22px; margin: 0; flex: 1 1 220px; min-width: 220px; }
.zappi-form { display: flex; gap: 10px; flex: 1 1 320px; flex-wrap: wrap; }
.zappi-form .field { flex: 1 1 200px; margin-bottom: 0; }
.zappi-form label { font-size: 12px; }
.zappi-note { text-align: center; color: rgba(255,255,255,.6); font-size: 13px; max-width: 500px; margin: 22px auto 0; position: relative; z-index: 1; }
@media (max-width: 620px) {
  .zappi-card { flex-direction: column; align-items: stretch; text-align: center; padding: 28px 24px; }
  .zappi-form { flex-direction: column; }
}

/* Services grid -------------------------------------------------------------*/
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card .bar { height: 8px; }
.bar-yellow { background: var(--yellow); }
.bar-green { background: var(--green); }
.bar-navy { background: var(--navy); }
.service-card .body { padding: 40px 30px; flex: 1; display: flex; flex-direction: column; align-items: center; }
.service-icon {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.service-card .tagline { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 19px; margin: 6px 0 24px; }
@media (max-width: 940px) { .service-grid { grid-template-columns: 1fr; } }

/* CTA banner ----------------------------------------------------------------*/
.cta-banner { background: var(--navy-soft); text-align: center; }
.cta-banner h2 { font-size: 38px; font-style: italic; }
.cta-banner p { font-size: 17px; color: var(--navy); opacity: .8; }
.cta-banner p strong { color: var(--green-dark); }

/* Feature split (product pages) ---------------------------------------------*/
.feature-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.feature-split.reverse .feature-media { order: 2; }
.feature-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.feature-media.product-frame {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.feature-media.product-frame img {
  width: auto;
  max-width: 46%;
  max-height: 280px;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
}
.feature-media.product-frame img:only-child { max-width: 80%; max-height: 320px; }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--navy-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.feature-list li { padding-left: 26px; position: relative; font-weight: 600; color: var(--navy); }
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green);
}
.note-box { background: var(--gray-50); border-left: 4px solid var(--yellow); padding: 14px 18px; border-radius: var(--radius-sm); font-size: 13.5px; color: var(--gray-600); margin-top: 18px; }
@media (max-width: 940px) {
  .feature-split, .feature-split.reverse { grid-template-columns: 1fr; }
  .feature-split.reverse .feature-media { order: 0; }
}

/* Comparison table ------------------------------------------------------------*/
.compare { background: var(--navy); color: var(--white); }
.compare .section-head h2 { color: var(--white); }
.compare-tabs { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 44px; font-size: 14px; color: rgba(255,255,255,.6); }
.compare-tabs span:first-child { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 6px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-card { background: var(--white); color: var(--text); border-radius: var(--radius-md); overflow: hidden; }
.compare-card .head { padding: 20px; text-align: center; font-family: var(--font-head); font-weight: 800; letter-spacing: .04em; color: var(--navy); }
.compare-card .head.yellow { background: var(--yellow); }
.compare-card .head.green { background: var(--green); }
.compare-card .body { padding: 28px; }
.compare-card p { font-size: 14px; }
@media (max-width: 780px) { .compare-grid { grid-template-columns: 1fr; } }

/* Contact / quote form ----------------------------------------------------*/
.quote-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: flex-start; }
.quote-info h2 { font-size: 32px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 26px; }
.info-row .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-row h4 { font-size: 15px; margin-bottom: 4px; }
.info-row p { margin: 0; font-size: 14.5px; }
.form-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 13.5px; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1px solid var(--gray-100);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.checkline { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray-600); grid-column: 1/-1; }
.checkline input { margin-top: 3px; }
.form-note { font-size: 12.5px; color: var(--gray-400); margin-top: 14px; }
@media (max-width: 940px) { .quote-wrap { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px; } }

/* Single-card contact form (Contact page) ------------------------------------*/
.quote-card-wrap { max-width: 760px; margin: 0 auto; }
.quote-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.quote-card-head h2 { font-size: 26px; margin-bottom: 8px; }
.quote-card-head p { margin: 0; max-width: 46ch; }
.quote-card-icon { font-size: 40px; flex-shrink: 0; }
.phone-group { display: flex; gap: 8px; }
.phone-group .code {
  width: 64px; flex-shrink: 0; text-align: center;
  border: 1px solid var(--gray-100); background: var(--white); border-radius: var(--radius-sm);
  padding: 13px 8px; font-family: var(--font-body); font-size: 14.5px;
}
.phone-group input { flex: 1; }

/* Footer --------------------------------------------------------------------*/
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: 70px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .logo { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 42ch; margin-top: 14px; font-size: 14px; }
.footer-contact { display: flex; gap: 44px; flex-wrap: wrap; }
.footer-contact .col h4 { color: var(--white); font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-contact .col p, .footer-contact .col a { color: rgba(255,255,255,.65); font-size: 14.5px; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-links { display: flex; gap: 70px; flex-wrap: wrap; padding: 40px 0; }
.footer-links h5 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; border-left: 3px solid var(--green); padding-left: 10px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.65); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 13px; color: rgba(255,255,255,.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 720px) { .footer-top, .footer-contact { flex-direction: column; gap: 26px; } .footer-links { gap: 30px; } }

/* Small page hero (non-home pages) -----------------------------------------*/
.page-hero {
  background: linear-gradient(180deg, rgba(16,33,79,.85), rgba(16,33,79,.72)), var(--navy);
  background-size: cover;
  color: var(--white);
  padding: 60px 0 70px;
}
.page-hero .eyebrow { color: var(--yellow); }
.page-hero h1 { color: var(--white); font-size: 40px; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 50ch; }
.crumb { font-size: 13px; opacity: .7; margin-bottom: 14px; }

/* Utility -------------------------------------------------------------------*/
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border-radius: var(--radius-pill);
  padding: 8px 18px; font-size: 13px; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Get Quote wizard ------------------------------------------------------------*/
.wizard-section { background: var(--gray-50); padding-top: 50px; padding-bottom: 70px; }
.wizard-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px 44px; max-width: 1160px; margin: 0 auto; }
.wizard-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.wizard-title h2 { font-size: 26px; margin-bottom: 6px; }
.wizard-title p { margin: 0; }
.wizard-tabs { display: flex; gap: 22px; }
.wizard-tabs button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  color: var(--gray-400); padding-bottom: 8px; border-bottom: 2px solid transparent;
}
.wizard-tabs button.active { color: var(--navy); border-color: var(--green); }
.wizard-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 30px; align-items: stretch; min-height: 300px; }
.wizard-panel { background: var(--gray-50); border-radius: var(--radius-md); padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.wizard-panel h3 { font-size: 19px; margin-bottom: 18px; }
.wizard-panel .field { margin-bottom: 0; }
.chip-group { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-pill);
  padding: 12px 20px; font-weight: 700; font-size: 14px; color: var(--gray-600);
  cursor: pointer; transition: border-color .15s ease, color .15s ease;
}
.chip .dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--gray-100); flex-shrink: 0; }
.chip.selected { color: var(--navy); border-color: var(--green); }
.chip.selected .dot { background: var(--green); border-color: var(--green); }
.wizard-media { border-radius: var(--radius-md); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wizard-media img { width: 100%; height: 100%; object-fit: cover; }
.wizard-media.single { grid-template-columns: 1fr; }
.wizard-find { display: flex; gap: 10px; margin-top: 18px; }
.wizard-find button { flex-shrink: 0; }
.wizard-progress { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.wizard-progress .label { font-weight: 700; font-size: 13.5px; color: var(--navy); flex-shrink: 0; }
.wizard-progress .bar { flex: 1; height: 6px; background: var(--gray-100); border-radius: var(--radius-pill); min-width: 120px; overflow: hidden; }
.wizard-progress .bar .fill { height: 100%; background: var(--green); border-radius: var(--radius-pill); transition: width .3s ease; }
.wizard-progress .count { font-size: 13px; color: var(--gray-400); flex-shrink: 0; }
.wizard-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 22px; }
.wizard-actions .btn-back { background: none; border: 1px solid var(--gray-100); color: var(--navy); }
.wizard-thanks { text-align: center; padding: 20px 0; }
.wizard-thanks .check { font-size: 44px; margin-bottom: 10px; }
.wizard-summary { background: var(--gray-50); border-radius: var(--radius-md); padding: 30px; max-width: 480px; margin: 28px auto 0; text-align: left; }
.wizard-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
.wizard-summary dt { font-weight: 700; color: var(--navy); font-size: 13.5px; }
.wizard-summary dd { margin: 0; font-size: 13.5px; color: var(--gray-600); }
.wizard-thanks-actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .wizard-grid { grid-template-columns: 1fr; }
  .wizard-media { order: -1; aspect-ratio: 16/9; }
  .wizard-card { padding: 28px 22px; }
}
