/* ============================================================
   evchargerbarrie.ca site stylesheet
   Shared components only: design tokens, fonts, base type,
   buttons, navigation (with dropdown), hero (with reviews badge),
   footer, and the mobile CTA bar.
   Extracted from the Kinetic Electric Services design system so
   this site matches its sister sites exactly.
   Page-specific section styles live in a scoped style block in
   each page, so no page loads CSS it does not use.
   ============================================================ */

/* ---- Tokens, base, fonts, buttons, navigation, hero ---- */
:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #007BFF;
    --primaryLight: #278ffd;
    --secondary: #FFF;
    --secondaryLight: #FFF;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1.15rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---           Fonts            -->
<--- -------------------------- -*/

/* Apply Montserrat to all headers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Apply Jura to body text */
body, p, a, span, li, textarea {
  font-family: 'Jura', sans-serif;
}

/* Regular */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jura';
  src: url('../fonts/Jura-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jura';
  src: url('../fonts/Jura-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*-- -------------------------- -->
<---          Buttons           -->
<--- -------------------------- -*/

/* Button CTA */
.cs-button-solid {
  font-size: 1rem;
  /* 46px - 56px */
  line-height: clamp(2.875rem, 5.5vw, 3.5rem);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0 0;
  color: #fff;
  min-width: 9.375rem;
  padding: 0 1.5rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
  display: inline-block;
  position: relative;
  z-index: 1;
  /* prevents padding from adding to the width */
  box-sizing: border-box;
}
.cs-button-solid:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: #000;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.25rem;
  transition: width 0.3s;
}
.cs-button-solid:hover:before {
  width: 100%;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

body,
html {
    /* reset margin and padding so there's no gap between the nav and the screen edges */
    margin: 0;
    padding: 0;
}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }
    body.scroll #cs-navigation:before {
        height: 100%;
    }
    #cs-navigation {
        width: 100%;
        padding: 1.25rem 1rem;
        box-sizing: border-box;
        background: rgba(26, 26, 26, 0.08);
        -webkit-backdrop-filter: blur(27px);
        backdrop-filter: blur(27px);
        position: fixed;
        z-index: 10000;
        transition: background-color 0.3s;
    }
    #cs-navigation:before {
        content: "";
        width: 100%;
        height: 0%;
        background: #1a1a1a;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transition: height 0.3s;
    }
    #cs-navigation:after {
        content: "";
        width: 100%;
        height: 0vh;
        background: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: absolute;
        display: block;
        top: 0%;
        right: 0;
        z-index: -1100;
        opacity: 0;
        transition:
            height 0.5s,
            opacity 0.5s;
    }
    #cs-navigation.cs-active {
        background-color: #1a1a1a;
    }
    #cs-navigation.cs-active:after {
        height: 150vh;
        opacity: 1;
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: 0.15s;
    }
    #cs-navigation.cs-active .cs-li {
        transform: translateY(0);
        opacity: 1;
    }
    #cs-navigation .cs-container {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    #cs-navigation .cs-logo {
        width: auto;
        /* 56px - 80px */
        height: clamp(3.5rem, 5vw, 5rem);
        margin: 0 auto 0 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #cs-navigation .cs-toggle {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 0 0 auto;
        background-color: var(--primary);
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.6s;
        position: relative;
        z-index: 10;
    }
    #cs-navigation .cs-toggle.cs-active {
        transform: rotate(180deg);
    }
    #cs-navigation .cs-active .cs-line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2 {
        top: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    }
    #cs-navigation .cs-active .cs-line3 {
        bottom: 100%;
        opacity: 0;
    }
    #cs-navigation .cs-box {
        /* 24px - 28px */
        width: clamp(1.5rem, 2vw, 1.75rem);
        height: 1rem;
        position: relative;
    }
    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: #fafbfc;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #cs-navigation .cs-line1 {
        top: 0;
        transform-origin: center;
        transition:
            transform 0.5s,
            top 0.3s,
            left 0.3s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line2 {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition:
            top 0.3s,
            left 0.3s,
            transform 0.5s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line3 {
        bottom: 0;
        transition:
            bottom 0.3s,
            opacity 0.3s;
    }
    /* FIX 1: Changed overflow from hidden to auto so mobile dropdown can expand */
    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: auto;
        padding-bottom: 2.4em;
        opacity: 0;
        background-color: #fff;
        box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
        overflow: auto;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        transform: scaleY(0);
        transform-origin: top;
        transition:
            transform 0.4s,
            opacity 0.3s;
    }
    #cs-navigation .cs-ul {
        margin: 0;
        padding: 3rem 0 0 0;
        width: 100%;
        height: auto;
        max-height: 65vh;
        overflow: scroll;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    #cs-navigation .cs-li {
        width: 100%;
        text-align: center;
        list-style: none;
        margin-right: 0;
        transform: translateY(-4.375rem);
        opacity: 0;
        transition:
            transform 0.6s,
            opacity 0.9s;
    }
    #cs-navigation .cs-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #cs-navigation .cs-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #cs-navigation .cs-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #cs-navigation .cs-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #cs-navigation .cs-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #cs-navigation .cs-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #cs-navigation .cs-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #cs-navigation .cs-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #cs-navigation .cs-li:nth-of-type(10) {
        transition-delay: 0.5s;
    }
    #cs-navigation .cs-li:nth-of-type(11) {
        transition-delay: 0.55s;
    }
    #cs-navigation .cs-li:nth-of-type(12) {
        transition-delay: 0.6s;
    }
    #cs-navigation .cs-li:nth-of-type(13) {
        transition-delay: 0.65s;
    }
    #cs-navigation .cs-li-link {
        /* 16px - 24px */
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        text-decoration: none;
        margin: 0;
        color: var(--headerColor);
        display: inline-block;
        position: relative;
    }
    #cs-navigation .cs-li-link.cs-active {
        color: var(--primary);
    }
    #cs-navigation .cs-li-link:hover {
        color: var(--primary);
    }
    #cs-navigation .cs-button-solid {
        display: none;
    }

    /* ---- Mobile Dropdown ---- */
    #cs-navigation .cs-dropdown {
        position: relative;
        color: var(--headerColor);
    }
    #cs-navigation .cs-dropdown > .cs-li-link {
        position: relative;
        padding-right: 1.25rem;
        display: block;
        width: 100%;
    }
    /* Caret indicator */
    #cs-navigation .cs-dropdown > .cs-li-link::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border: none;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    position: relative;
    display: inline-block;
    right: auto;
    top: -0.25rem;
    margin-left: 0.25rem;
    transform: translateY(-0.1rem) rotate(45deg);
    transition: transform 0.3s;
   }
   #cs-navigation .cs-dropdown.cs-active > .cs-li-link::after {
    transform: translateY(0.1rem) rotate(-135deg);
    }
    #cs-navigation .cs-drop-ul {
        width: 100%;
        height: 0;
        margin: 0;
        padding: 0;
        background-color: var(--primary);
        opacity: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        overflow: hidden;
        list-style: none;
        transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
        height: auto;
        margin: 0.75rem 0 0 0;
        padding: 0.75rem 0;
        opacity: 1;
        visibility: visible;
    }
    #cs-navigation .cs-drop-li {
        list-style: none;
        width: 100%;
        text-align: center;
    }
    #cs-navigation .cs-drop-link {
        /* 14px - 20px */
        font-size: clamp(0.875rem, 2vw, 1.25rem);
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        display: inline-block;
        padding: 0.25rem 0;
        transition: opacity 0.3s;
    }
    #cs-navigation .cs-drop-link:hover {
        opacity: 0.7;
    }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    body.scroll #cs-navigation:before {
        height: 100%;
    }
    #cs-navigation {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        background: rgba(26, 26, 26, 0.08);
        -webkit-backdrop-filter: blur(27px);
        backdrop-filter: blur(27px);
        position: fixed;
        z-index: 10000;
    }
    #cs-navigation:before {
        content: "";
        width: 100%;
        height: 0%;
        background: #1a1a1a;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transition: height 0.3s;
    }
    #cs-navigation .cs-container {
        width: 100%;
        height: 6.3125rem;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
        position: relative;
    }
    #cs-navigation .cs-toggle {
        display: none;
    }
    #cs-navigation .cs-logo {
        width: auto;
        height: 3.75rem;
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* FIX 2: Added height, display flex, align-items, NO overflow property
       so dropdown can render outside the wrapper */
    #cs-navigation .cs-ul-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #cs-navigation .cs-ul {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.7rem;
    }
    /* FIX 3: Changed to height: 100% with flex centering instead of padding,
       gives dropdown top: 100% a proper reference point */
    #cs-navigation .cs-li {
        list-style: none;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        flex: none;
    }
    #cs-navigation .cs-li-link {
        font-size: 0.85rem;
        line-height: 1.5em;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 0;
        padding: 0 1rem;
        color: var(--bodyTextColorWhite);
        display: block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #cs-navigation .cs-li-link:before {
        content: "";
        width: 100%;
        height: 2.5rem;
        background: var(--primary);
        opacity: 0;
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, -50%) scale(1.2);
        transition:
            opacity 0.3s,
            transform 0.3s;
    }
    #cs-navigation .cs-li-link:hover:before {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    #cs-navigation .cs-li-link.cs-active:before {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    #cs-navigation .cs-button-solid {
        font-size: 0.9rem;
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 2rem;
        background-color: transparent;
        border: 1px solid var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }
    #cs-navigation .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--primary);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #cs-navigation .cs-button-solid:hover:before {
        width: 100%;
    }

    /* ---- Desktop Dropdown ---- */
    #cs-navigation .cs-dropdown {
        position: relative;
    }
    #cs-navigation .cs-dropdown > .cs-li-link {
        position: relative;
        padding-right: 1.5rem;
    }
    /* Caret indicator */
    #cs-navigation .cs-dropdown > .cs-li-link::after {
        content: "";
        width: 0.4rem;
        height: 0.4rem;
        border: none;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        position: absolute;
        right: 0.6rem;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s;
    }
    #cs-navigation .cs-dropdown:hover > .cs-li-link::after {
        transform: translateY(-25%) rotate(-135deg);
    }
   
    /* Dropdown panel */
    #cs-navigation .cs-drop-ul {
        min-width: 12.5rem;
        margin: 0;
        padding: 0;
        background-color: #fff;
        box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
        opacity: 0;
        border-bottom: 5px solid var(--primary);
        visibility: hidden;
        position: absolute;
        top: 100%;
        z-index: 100;
        overflow: hidden;
        transform: scaleY(0);
        transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
        transform-origin: top;
        list-style: none;
    }
    #cs-navigation .cs-dropdown:hover > .cs-drop-ul {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }
    #cs-navigation .cs-drop-li {
        font-size: 1rem;
        text-decoration: none;
        list-style: none;
        width: 100%;
        height: auto;
        opacity: 0;
        display: block;
        transform: translateY(-0.625rem);
        transition: opacity 0.6s, transform 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-li {
        opacity: 1;
        transform: translateY(0);
    }
    #cs-navigation .cs-drop-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-transform: capitalize;
        text-decoration: none;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
        color: var(--headerColor);
        display: block;
        transition: color 0.3s, background-color 0.3s;
    }
    #cs-navigation .cs-drop-link:hover {
        color: var(--bodyTextColorWhite);
        background-color: var(--primary);
    }
}



/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* this! */
#hero-330 i.fas.fa-phone-alt {
    font-size: 1em !important;
    color: #fff;
}

#hero-330 .fa-phone-alt {
    font-size: 1em !important;
    color: #fff;
}

/* Mobile: max-width 600px */
@media (max-width: 600px) {
  #hero-330 {
    padding: 4rem 1rem; /* Reduce padding for mobile */
  }
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-330 {
      /* Centers button */
      text-align: center;
      /* changes on tablet */
      padding: clamp(9rem, 25.95vw, 17.5rem) 1rem;
      /* 150px - 160px */
      padding-bottom: clamp(9.375rem, 12.5vw, 10rem);
      position: relative;
      z-index: 1;
      /* prevents overflow from the lines extending past the screen width */
      overflow: hidden;
  }
  #hero-330 .cs-background {
      /* Background Image */
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
  }
  #hero-330 .cs-background:before {
      /* White Color Overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0.75;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 1;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
  }
  .accenthover {
    color: #fff; 
    transition: color 2s; 
  }
  .accenthover:hover {
    color: var(--primary);
  }
  #hero-330 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes image act like a background-image */
      object-fit: cover;
      /* places the top of the image at the top of the parent */
      object-position: top;
  }
  #hero-330 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      position: relative;
  }
  #hero-330 .cs-flex-group {
      /* 456px - 626px */
      max-width: clamp(28.5rem, 62vw, 40.125rem);
      margin: auto;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-wrap: wrap;
      box-sizing: border-box;
  }
  #hero-330 .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 900;
      line-height: 1.2em;
      text-align: center;
      width: 100%;
      margin: 0 auto 1rem;
      color: #FFF;
      position: relative;
  }
  #hero-330 .cs-accent span{
      color: var(--primaryLight);
  }

  #hero-330 .cs-accent span {
  font-family: 'Montserrat', sans-serif !important;
  color: var(--primaryLight);
}

  #hero-330 .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 1.95vw, 1.25rem);
      line-height: 1.5em;
      text-align: center;
      width: 100%;
      max-width: 27.625rem;
      /* 32px - 40px */
      margin: 0 auto clamp(2rem, 4vw, 2.5rem);
      /* 24px - 40px */
      margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
      color: #FFF;
  }
  #hero-330 .cs-button-group {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
  }
  #hero-330 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      width: 11.25rem;
      text-decoration: none;
      font-weight: 700;
      border-radius: 0.5rem;
      /* clips corners of the before element */
      overflow: hidden;
      margin: 0;
      color: #fff;
      padding: 0;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
  }
  #hero-330 .cs-button-solid:before {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 0%;
      background: #FFF;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
  }
  #hero-330 .cs-button-solid:hover {
      color: var(--primary);
  } 
  #hero-330 .cs-button-solid:hover:before {
      width: 100%;      
  }
  #hero-330 .cs-button-transparent {
      font-size: 1.1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      width: 15rem;
      /* 46px - 56px */
      height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      margin: 0;
      color: var(--primaryLight);
      padding: 0;
      background-color: transparent;
      box-sizing: border-box;
      display: inline-flex;
      justify-content: flex-start;
      align-items: center;
      position: relative;
      z-index: 1;
  }
  #hero-330 .cs-button-transparent:before {
      /* white hover box */
      content: "";
      /* 46px - 56px */
      width: clamp(2.875rem, 5.5vw, 3.5rem);
      background: #fff;
      border-radius: 1.75rem;
      opacity: 1;
      position: absolute;
      display: block;
      top: 0px;
      bottom: 0px;
      left: 0px;
      z-index: -1;
      transition:
          width 0.3s,
          box-shadow 0.3s;
  }
  #hero-330 .cs-button-transparent:hover:before {
      width: 100%;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #hero-330 .cs-picture {
      /* 46px - 56px */
      width: clamp(2.875rem, 5.5vw, 3.5rem);
      height: clamp(2.875rem, 5.5vw, 3.5rem);
      margin-right: 0.5rem;
      background-color: var(--primaryLight);
      border-radius: 50%;
      border: 6px solid #fff;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  #hero-330 .cs-image {
      width: 0.75rem;
      height: auto;
  }
  #hero-330 .cs-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#hero-330 .cs-reviews-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
}

#hero-330 .cs-google-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

#hero-330 .cs-badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

#hero-330 .cs-badge-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

#hero-330 .cs-badge-text {
    color: #fff;
    font-family: 'Jura', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
}
                                                                                                                  

/* ---- Footer ---- */
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-840 {
    padding: var(--sectionPadding);
    /* 30px - 50px */
    padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
    background-color: #1a1a1a;
  }
  #cs-footer-840 .cs-container {
    width: 100%;
    /* reset on tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 2rem;
  }
  #cs-footer-840 .cs-logo-group {
    /* takes up all the space, lets the other ul's wrap below it */
    width: 100%;
    position: relative;
  }
  #cs-footer-840 .cs-logo {
    width: 13.125rem;
    height: auto;
    margin: 0 0 1.5rem 0;
    display: block;
  }
  #cs-footer-840 .cs-text {
    color: var(--bodyTextColorWhite);
    opacity: .8;
    margin: 0 0 2rem;
  }
  #cs-footer-840 .cs-logo-img {
    width: 100%;
    height: auto;
  }
  #cs-footer-840 .cs-social {
    display: inline-flex;
    justify-content: flex-start;
    gap: 0.75em;
  }
  #cs-footer-840 .cs-social-link {
    width: 2rem;
    height: 2rem;
    background-color: #484848;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, background-color 0.3s;
  }
  #cs-footer-840 .cs-social-link:hover {
    background-color: var(--primaryLight);
    transform: translateY(-0.1875rem);
  }
  #cs-footer-840 .cs-social-link:hover .cs-social-img {
    filter: grayscale(1) brightness(1000%);
  }
  #cs-footer-840 .cs-social-img {
    height: 0.75rem;
    width: auto;
    display: block;
  }
  #cs-footer-840 .cs-header {
    font-size: 1.25rem;
    line-height: 1.5em;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: var(--primary);
    display: block;
    position: relative;
  }
  #cs-footer-840 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #cs-footer-840 .cs-ul-1 {
    width: 100%;
    max-width: 21.875rem;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 2rem;
  }
  #cs-footer-840 .cs-ul-1 .cs-li {
    width: 44%;
  }
  #cs-footer-840 .cs-li {
    list-style: none;
  }
  #cs-footer-840 .cs-link {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    text-align: left;
    color: #bababa;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  #cs-footer-840 .cs-link:hover {
    color: var(--primaryLight);
  }
  #cs-footer-840 .cs-icon {
    width: 1.25rem;
    height: auto;
    margin-right: 0.125rem;
    display: block;
  }
  #cs-footer-840 .cs-bottom {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    /* 48px - 64px */
    margin: clamp(3rem, 7vw, 4rem) auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #484848;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  a.swdfooterlink {
    color: #bababa;
    text-decoration: none;
    padding: 0 10px;
  }
  a.swdfooterlink:hover {
    color: #ef3341;
    transition: 0.3s;
  }
  #cs-footer-840 .cs-credit,
  #cs-footer-840 .cs-bottom-link,
  #cs-footer-840 .cs-credit-link {
    /* 14px - 16px */
    font-size: clamp(0.975rem, 1.7vw, 1.2rem);
    line-height: 1.5em;
    text-decoration: none;
    width: auto;
    margin: 0;
    color: #bababa;
    display: inline-block;
    position: relative;
    transition: color 0.3s;
    padding: 10px 10px;
  }
  #cs-footer-840 .cs-credit {
    width: 100%;
  }
  #cs-footer-840 .cs-credit-link {
    /* 14px - 16px */
    font-size: clamp(0.975rem, 1.7vw, 1.2rem);
    line-height: 1.5em;
    text-decoration: none;
    width: auto;
    margin: 0;
    color: #bababa;
    display: inline-block;
    position: relative;
  }
  #cs-footer-840 .cs-credit-link:hover {
    color: var(--primary);
  }
  #cs-footer-840 .cs-bottom-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-footer-840 .cs-bottom-link {
    display: flex;
    align-items: center;
  }
  #cs-footer-840 .cs-bottom-link:hover {
    color: var(--primary);
  }
  #cs-footer-840 .cs-bottom-link:last-of-type:before {
    /* separator */
    content: "";
    width: 1px;
    height: 0.875rem;
    margin: 0 0.75rem;
    background: currentColor;
    opacity: 1;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-840 .cs-container {
    max-width: 80rem;
    /* 48px - 64px */
    row-gap: clamp(3rem, 7vw, 4rem);
  }
  #cs-footer-840 .cs-bottom {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  #cs-footer-840 .cs-credit {
    text-align: left;
  }
  #cs-footer-840 .cs-bottom-links {
    justify-content: flex-end;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-840 .cs-container {
    /* pushes all flex children to the top */
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  #cs-footer-840 .cs-logo-group {
    width: 30%;
    max-width: 25rem;
    /* pushes everything to the right of it as far as possible in a flexbox */
    margin-right: auto;
  }
  #cs-footer-840 .cs-text {
    width: 100%;
  }
  #cs-footer-840 .cs-social {
    flex-direction: row;
    position: relative;
    top: auto;
    right: auto;
  }
}
                                
                   

/* ---- Mobile CTA Bar ---- */
/*-- -------------------------- -->
<---       Mobile CTA Bar       -->
<--- -------------------------- -*/

#mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 63.9375rem) {
    #mobile-cta-bar {
        display: flex;
    }
    body {
        padding-bottom: 3.5rem;
    }
}

.mobile-cta-btn {
    flex: 1;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: opacity 0.2s;
}

.mobile-cta-btn:active {
    opacity: 0.85;
}

.mobile-cta-call {
    background-color: var(--primary);
    color: #fff;
}

.mobile-cta-text {
    background-color: #1a1a1a;
    color: #fff;
}

.mobile-cta-btn i {
    font-size: 1rem;
}


/* ============================================================
   HOMEPAGE (index.html) section styles
   Scoped to this page's section IDs. Shared components above.
   ============================================================ */
    /* Shared rhythm for new sections, using global tokens. */
    #intro-ev,
    #how-it-works,
    #why-level2,
    #pricing-teaser,
    #panel-upgrade,
    #chargers,
    #trust,
    #service-area,
    #faq,
    #contact {
        padding: var(--sectionPadding);
    }

    #intro-ev .cs-container,
    #how-it-works .cs-container,
    #why-level2 .cs-container,
    #pricing-teaser .cs-container,
    #panel-upgrade .cs-container,
    #chargers .cs-container,
    #trust .cs-container,
    #service-area .cs-container,
    #faq .cs-container,
    #contact .cs-container {
        max-width: 80rem;
        margin: auto;
        width: 100%;
    }

    #intro-ev .cs-content,
    #how-it-works .cs-content,
    #why-level2 .cs-content,
    #pricing-teaser .cs-content,
    #chargers .cs-content,
    #trust .cs-content,
    #service-area .cs-content,
    #faq .cs-content {
        text-align: center;
        max-width: 46rem;
        margin: 0 auto 3rem;
    }

    #intro-ev .cs-content .cs-title,
    #how-it-works .cs-content .cs-title,
    #why-level2 .cs-content .cs-title,
    #pricing-teaser .cs-content .cs-title,
    #chargers .cs-content .cs-title,
    #trust .cs-content .cs-title,
    #service-area .cs-content .cs-title,
    #faq .cs-content .cs-title {
        max-width: 100%;
    }

    #intro-ev .cs-content .cs-text,
    #how-it-works .cs-content .cs-text,
    #why-level2 .cs-content .cs-text,
    #pricing-teaser .cs-content .cs-text,
    #chargers .cs-content .cs-text,
    #trust .cs-content .cs-text,
    #service-area .cs-content .cs-text,
    #faq .cs-content .cs-text {
        margin: 0 auto;
    }

    /* Alternating backgrounds */
    #intro-ev { background: #fff; }
    #how-it-works { background: #f7f9fc; }
    #why-level2 { background: #fff; }
    #pricing-teaser { background: #f7f9fc; }
    #panel-upgrade { background: #fff; }
    #chargers { background: #f7f9fc; }
    #trust { background: #fff; }
    #service-area { background: #f7f9fc; }
    #faq { background: #fff; }
    #contact { background: #1a1a1a; }

    /* ---------- How It Works ---------- */
    #how-it-works .ev-steps {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    #how-it-works .ev-step {
        background: #fff;
        border: 1px solid #e6eaf0;
        border-radius: 0.75rem;
        padding: 1.75rem;
        position: relative;
    }
    #how-it-works .ev-step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    #how-it-works .ev-step-title {
        font-size: 1.2rem;
        color: var(--headerColor);
        margin: 0 0 0.5rem;
    }
    #how-it-works .ev-step-text {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--bodyTextColor);
        margin: 0;
    }

    /* ---------- Why Level 2 / Trust grids ---------- */
    #why-level2 .ev-benefits,
    #trust .ev-trust-grid {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    #why-level2 .ev-benefit,
    #trust .ev-trust-item {
        background: #f7f9fc;
        border: 1px solid #e6eaf0;
        border-radius: 0.75rem;
        padding: 1.75rem;
    }
    #trust .ev-trust-item { background: #f7f9fc; }
    #why-level2 .ev-benefit i,
    #trust .ev-trust-item i {
        font-size: 1.6rem;
        color: var(--primary);
        margin-bottom: 0.9rem;
    }
    #why-level2 .ev-benefit-title,
    #trust .ev-trust-title {
        font-size: 1.15rem;
        color: var(--headerColor);
        margin: 0 0 0.5rem;
    }
    #why-level2 .ev-benefit-text,
    #trust .ev-trust-text {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--bodyTextColor);
        margin: 0;
    }

    /* ---------- Pricing teaser ---------- */
    #pricing-teaser .ev-price-card {
        background: #fff;
        border: 1px solid #e6eaf0;
        border-radius: 0.9rem;
        padding: 2.25rem;
        max-width: 46rem;
        margin: 0 auto;
        box-shadow: 0 18px 40px rgba(26, 26, 26, 0.06);
    }
    #pricing-teaser .ev-price-lines {
        list-style: none;
        margin: 0 0 1.5rem;
        padding: 0;
    }
    #pricing-teaser .ev-price-line {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid #eef1f5;
    }
    #pricing-teaser .ev-price-line:last-child { border-bottom: none; }
    #pricing-teaser .ev-price-label {
        color: var(--bodyTextColor);
        font-size: 1rem;
    }
    #pricing-teaser .ev-price-value {
        color: var(--headerColor);
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        white-space: nowrap;
    }
    #pricing-teaser .ev-price-variable .ev-price-value { color: var(--primary); }
    #pricing-teaser .ev-price-note {
        font-size: 0.98rem;
        line-height: 1.55;
        color: var(--bodyTextColor);
        margin: 0 0 1.75rem;
    }

    /* ---------- Panel upgrade split ---------- */
    #panel-upgrade .ev-split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: center;
    }
    #panel-upgrade .ev-split-text .cs-title { max-width: 100%; }
    #panel-upgrade .ev-split-text-2 { margin-top: 1rem; }
    #panel-upgrade .ev-split-text .cs-button-solid { margin-top: 1.75rem; }
    #panel-upgrade .ev-panel-cards {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 1rem;
    }
    #panel-upgrade .ev-panel-card {
        background: #f7f9fc;
        border: 1px solid #e6eaf0;
        border-radius: 0.75rem;
        padding: 1.4rem 1.5rem;
    }
    #panel-upgrade .ev-panel-tag {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #fff;
        background: #2e9e5b;
        border-radius: 1rem;
        padding: 0.25rem 0.7rem;
        margin-bottom: 0.75rem;
    }
    #panel-upgrade .ev-panel-tag-maybe { background: #d9952a; }
    #panel-upgrade .ev-panel-tag-upgrade { background: #c0453b; }
    #panel-upgrade .ev-panel-title {
        font-size: 1.1rem;
        color: var(--headerColor);
        margin: 0 0 0.4rem;
    }
    #panel-upgrade .ev-panel-text {
        font-size: 0.98rem;
        line-height: 1.5;
        color: var(--bodyTextColor);
        margin: 0;
    }

    /* ---------- Chargers ---------- */
    #chargers .ev-charger-choice {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 52rem;
        margin: 0 auto 2.5rem;
    }
    #chargers .ev-choice-card {
        background: #fff;
        border: 1px solid #e6eaf0;
        border-radius: 0.75rem;
        padding: 1.75rem;
    }
    #chargers .ev-choice-recommend { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
    #chargers .ev-choice-badge {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #fff;
        background: var(--primary);
        border-radius: 1rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 0.85rem;
    }
    #chargers .ev-choice-badge-alt { background: #4e4b66; }
    #chargers .ev-choice-title {
        font-size: 1.25rem;
        color: var(--headerColor);
        margin: 0 0 0.5rem;
    }
    #chargers .ev-choice-text {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--bodyTextColor);
        margin: 0;
    }
    #chargers .ev-brands {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    #chargers .ev-brand {
        background: #fff;
        border: 1px solid #e6eaf0;
        border-radius: 0.7rem;
        padding: 1.4rem 1.5rem;
    }
    #chargers .ev-brand-title {
        font-size: 1.05rem;
        color: var(--headerColor);
        margin: 0 0 0.35rem;
    }
    #chargers .ev-brand-text {
        font-size: 0.95rem;
        line-height: 1.45;
        color: var(--bodyTextColor);
        margin: 0;
    }

    /* ---------- Service area ---------- */
    #service-area .ev-area-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 52rem;
        margin: 0 auto;
    }
    #service-area .ev-area {
        background: #fff;
        border: 1px solid #e6eaf0;
        border-radius: 0.5rem;
        padding: 0.85rem 1rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: var(--headerColor);
        text-align: center;
        font-size: 0.95rem;
    }

    /* ---------- FAQ ---------- */
    #faq .ev-faq-list {
        max-width: 48rem;
        margin: 0 auto;
        display: grid;
        gap: 0.85rem;
    }
    #faq .ev-faq-item {
        border: 1px solid #e6eaf0;
        border-radius: 0.65rem;
        background: #f7f9fc;
        overflow: hidden;
    }
    #faq .ev-faq-q {
        cursor: pointer;
        list-style: none;
        padding: 1.15rem 1.4rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1.05rem;
        color: var(--headerColor);
        position: relative;
        padding-right: 3rem;
    }
    #faq .ev-faq-q::-webkit-details-marker { display: none; }
    #faq .ev-faq-q::after {
        content: "+";
        position: absolute;
        right: 1.4rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--primary);
        line-height: 1;
    }
    #faq .ev-faq-item[open] .ev-faq-q::after { content: "\2212"; }
    #faq .ev-faq-a {
        padding: 0 1.4rem 1.3rem;
    }
    #faq .ev-faq-a p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.55;
        color: var(--bodyTextColor);
    }

    /* ---------- Contact form ---------- */
    #contact .cs-content .cs-topper { color: var(--primaryLight); }
    #contact .cs-content .cs-title { color: #fff; }
    #contact .cs-content .cs-text { color: rgba(255, 255, 255, 0.72); }
    #contact .ev-form {
        max-width: 46rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
    }
    #contact .ev-form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    #contact .ev-form-group {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }
    #contact .ev-form-group label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.7);
    }
    #contact .ev-form-group input,
    #contact .ev-form-group select,
    #contact .ev-form-group textarea {
        font-family: 'Jura', sans-serif;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 0.45rem;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        outline: none;
        transition: border-color 0.2s ease, background 0.2s ease;
    }
    #contact .ev-form-group input::placeholder,
    #contact .ev-form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }
    #contact .ev-form-group input:focus,
    #contact .ev-form-group select:focus,
    #contact .ev-form-group textarea:focus {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.1);
    }
    #contact .ev-form-group select option { color: #1a1a1a; }
    #contact .ev-form-group textarea { resize: vertical; min-height: 4.5rem; }
    #contact .cs-submit {
        margin-top: 0.4rem;
        border: none;
        cursor: pointer;
        align-self: flex-start;
    }
    #contact .cs-submit:disabled { opacity: 0.6; cursor: default; }
    #contact .cs-form-msg {
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.85);
        min-height: 1.2em;
    }
    #contact .cs-form-msg.cs-success { color: #6ee7a0; }
    #contact .cs-form-msg.cs-error { color: #ff9a8f; }
    #contact .ev-form-or {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }
    #contact .ev-form-or a {
        color: var(--primaryLight);
        font-weight: 600;
        text-decoration: none;
    }
    #contact .ev-form-or a:hover { text-decoration: underline; }
    #contact .ev-honeypot { display: none; }

    /* ---------- Tablet and up ---------- */
    @media only screen and (min-width: 48rem) {
        #how-it-works .ev-steps { grid-template-columns: repeat(2, 1fr); }
        #why-level2 .ev-benefits { grid-template-columns: repeat(2, 1fr); }
        #trust .ev-trust-grid { grid-template-columns: repeat(2, 1fr); }
        #chargers .ev-charger-choice { grid-template-columns: repeat(2, 1fr); }
        #chargers .ev-brands { grid-template-columns: repeat(2, 1fr); }
        #service-area .ev-area-list { grid-template-columns: repeat(4, 1fr); }
        #contact .ev-form-row { grid-template-columns: repeat(2, 1fr); }
        #panel-upgrade .ev-split { grid-template-columns: 1fr 1fr; }
    }

    /* ---------- Desktop ---------- */
    @media only screen and (min-width: 64rem) {
        #how-it-works .ev-steps { grid-template-columns: repeat(4, 1fr); }
        #why-level2 .ev-benefits { grid-template-columns: repeat(4, 1fr); }
        #trust .ev-trust-grid { grid-template-columns: repeat(4, 1fr); }
        #chargers .ev-brands { grid-template-columns: repeat(5, 1fr); }
    }


/* ============================================================
   SHARED: interior page hero (.cs-int-hero)
   Lightweight banner for interior pages (pricing, about, etc.).
   Reuse on any page that is not the homepage.
   ============================================================ */
.cs-int-hero {
    padding: clamp(4rem, 9vw, 7rem) 1rem clamp(3rem, 6vw, 4.5rem);
    background: #1a1a1a;
}
.cs-int-hero .cs-container {
    max-width: 80rem;
    margin: auto;
    width: 100%;
    text-align: center;
}
.cs-int-hero .cs-topper { color: var(--primaryLight); }
.cs-int-hero .cs-title {
    color: #fff;
    max-width: 46rem;
    margin: 0 auto 1rem;
}
.cs-int-hero .cs-text {
    color: rgba(255, 255, 255, 0.72);
    margin: 0 auto 2rem;
}

/* ============================================================
   PRICING PAGE (pricing.html) section styles
   Scoped to this page's section IDs. The #faq and #contact
   sections reuse the shared components already defined above.
   ============================================================ */
#pricing-snippet,
#pricing-included,
#pricing-table,
#pricing-drivers,
#pricing-panel,
#pricing-rebate {
    padding: var(--sectionPadding);
}
#pricing-snippet .cs-container,
#pricing-included .cs-container,
#pricing-table .cs-container,
#pricing-drivers .cs-container,
#pricing-panel .cs-container,
#pricing-rebate .cs-container {
    max-width: 80rem;
    margin: auto;
    width: 100%;
}
#pricing-snippet .cs-content,
#pricing-included .cs-content,
#pricing-table .cs-content,
#pricing-drivers .cs-content,
#pricing-panel .cs-content {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 3rem;
}
#pricing-snippet .cs-content .cs-title,
#pricing-included .cs-content .cs-title,
#pricing-table .cs-content .cs-title,
#pricing-drivers .cs-content .cs-title,
#pricing-panel .cs-content .cs-title { max-width: 100%; }
#pricing-snippet .cs-content .cs-text,
#pricing-included .cs-content .cs-text,
#pricing-table .cs-content .cs-text,
#pricing-drivers .cs-content .cs-text,
#pricing-panel .cs-content .cs-text { margin: 0 auto; }

/* Alternating backgrounds */
#pricing-snippet { background: #fff; }
#pricing-included { background: #f7f9fc; }
#pricing-table { background: #fff; }
#pricing-drivers { background: #f7f9fc; }
#pricing-panel { background: #fff; }
#pricing-rebate { background: #f7f9fc; }

/* Snippet: keep the lead answer tight and readable */
#pricing-snippet .cs-content { margin-bottom: 0; }

/* What is included */
#pricing-included .pricing-included-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
#pricing-included .pricing-included-item {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 0.75rem;
    padding: 1.75rem;
}
#pricing-included .pricing-included-item i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.9rem;
}
#pricing-included .pricing-included-title {
    font-size: 1.12rem;
    color: var(--headerColor);
    margin: 0 0 0.45rem;
}
#pricing-included .pricing-included-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0;
}

/* The price card */
#pricing-table .pricing-card {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 0.9rem;
    padding: 2.25rem;
    max-width: 46rem;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(26, 26, 26, 0.06);
}
#pricing-table .pricing-lines {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}
#pricing-table .pricing-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eef1f5;
}
#pricing-table .pricing-line:last-child { border-bottom: none; }
#pricing-table .pricing-label {
    color: var(--headerColor);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
}
#pricing-table .pricing-label small {
    display: block;
    font-family: 'Jura', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--bodyTextColor);
    margin-top: 0.25rem;
}
#pricing-table .pricing-value {
    color: var(--headerColor);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    white-space: nowrap;
}
#pricing-table .pricing-line-add .pricing-value { color: var(--primary); }
#pricing-table .pricing-note {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--bodyTextColor);
    margin: 0 0 1.75rem;
}

/* What moves the price */
#pricing-drivers .pricing-driver-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
#pricing-drivers .pricing-driver {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 0.7rem;
    padding: 1.5rem;
}
#pricing-drivers .pricing-driver-title {
    font-size: 1.08rem;
    color: var(--headerColor);
    margin: 0 0 0.4rem;
}
#pricing-drivers .pricing-driver-text {
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0;
}

/* Panel upgrade vs load management */
#pricing-panel .pricing-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 52rem;
    margin: 0 auto 1.75rem;
}
#pricing-panel .pricing-compare-card {
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 0.75rem;
    padding: 1.75rem;
}
#pricing-panel .pricing-compare-title {
    font-size: 1.2rem;
    color: var(--headerColor);
    margin: 0 0 0.6rem;
}
#pricing-panel .pricing-compare-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0 0 1rem;
}
#pricing-panel .pricing-compare-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #fff;
    background: #4e4b66;
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
}
#pricing-panel .pricing-compare-tag-good { background: #2e9e5b; }
#pricing-panel .pricing-panel-note {
    text-align: center;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--bodyTextColor);
    max-width: 46rem;
    margin: 0 auto;
}

/* Rebate honesty callout */
#pricing-rebate .pricing-rebate-box {
    max-width: 52rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-left: 4px solid var(--primary);
    border-radius: 0.6rem;
    padding: 1.75rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
#pricing-rebate .pricing-rebate-box i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}
#pricing-rebate .pricing-rebate-title {
    font-size: 1.2rem;
    color: var(--headerColor);
    margin: 0 0 0.5rem;
}
#pricing-rebate .pricing-rebate-text {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--bodyTextColor);
    margin: 0;
}

/* Pricing page, tablet and up */
@media only screen and (min-width: 48rem) {
    #pricing-included .pricing-included-list { grid-template-columns: repeat(2, 1fr); }
    #pricing-drivers .pricing-driver-list { grid-template-columns: repeat(2, 1fr); }
    #pricing-panel .pricing-compare { grid-template-columns: repeat(2, 1fr); }
}

/* Pricing page, desktop */
@media only screen and (min-width: 64rem) {
    #pricing-included .pricing-included-list { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================================
   INSTALL & ESA PROCESS PAGE (ev-charger-installation-process.html)
   Scoped to this page's section IDs. The hero (.cs-int-hero),
   #faq and #contact reuse shared components defined above.
   ============================================================ */
#process-snippet,
#process-steps,
#process-certificate,
#process-licensed {
    padding: var(--sectionPadding);
}
#process-snippet .cs-container,
#process-steps .cs-container,
#process-certificate .cs-container,
#process-licensed .cs-container {
    max-width: 80rem;
    margin: auto;
    width: 100%;
}
#process-snippet .cs-content,
#process-steps .cs-content,
#process-certificate .cs-content,
#process-licensed .cs-content {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 3rem;
}
#process-snippet .cs-content .cs-title,
#process-steps .cs-content .cs-title,
#process-certificate .cs-content .cs-title,
#process-licensed .cs-content .cs-title { max-width: 100%; }
#process-snippet .cs-content .cs-text,
#process-steps .cs-content .cs-text,
#process-certificate .cs-content .cs-text,
#process-licensed .cs-content .cs-text { margin: 0 auto; }

/* Alternating backgrounds */
#process-snippet { background: #fff; }
#process-steps { background: #f7f9fc; }
#process-certificate { background: #fff; }
#process-licensed { background: #f7f9fc; }

#process-snippet .cs-content { margin-bottom: 0; }

/* Step timeline */
#process-steps .process-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 46rem;
}
#process-steps .process-step {
    position: relative;
    padding-left: 3.75rem;
    padding-bottom: 2.25rem;
}
#process-steps .process-step:last-child { padding-bottom: 0; }
/* connector line */
#process-steps .process-step::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 2.6rem;
    bottom: 0;
    width: 2px;
    background: #d9e1ec;
}
#process-steps .process-step:last-child::before { display: none; }
/* number marker */
#process-steps .process-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}
#process-steps .process-step-title {
    font-size: 1.2rem;
    color: var(--headerColor);
    margin: 0.2rem 0 0.5rem;
}
#process-steps .process-step-text {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--bodyTextColor);
    margin: 0;
}

/* Certificate of Acceptance points */
#process-certificate .process-coa-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 46rem;
    margin: 0 auto;
}
#process-certificate .process-coa-item {
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 0.75rem;
    padding: 1.75rem;
}
#process-certificate .process-coa-item i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.9rem;
}
#process-certificate .process-coa-title {
    font-size: 1.15rem;
    color: var(--headerColor);
    margin: 0 0 0.5rem;
}
#process-certificate .process-coa-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0;
}

/* Why a licensed contractor */
#process-licensed .process-licensed-list {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
#process-licensed .process-licensed-item {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 0.75rem;
    padding: 1.75rem;
}
#process-licensed .process-licensed-title {
    font-size: 1.12rem;
    color: var(--headerColor);
    margin: 0 0 0.5rem;
}
#process-licensed .process-licensed-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0;
}
#process-licensed .process-cta { text-align: center; }

/* Process page, tablet and up */
@media only screen and (min-width: 48rem) {
    #process-certificate .process-coa-list { grid-template-columns: repeat(2, 1fr); }
    #process-licensed .process-licensed-list { grid-template-columns: repeat(3, 1fr); }
}


/* Homepage how-it-works -> full process page internal link */
#how-it-works .ev-steps-cta { text-align: center; margin-top: 2.5rem; }
