:root {
  --black: #111315;
  --white: #ffffff;
  --yellow: #ffd83d;
  --yellow-hover: #ffe56e;
  --blue: #5fc6ee;
  --header-height: 105px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Header */

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 15, 0.35);
}

.header-container {
  width: min(1180px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 45px;
}

/* Yellow instructions link */

.energy-link {
  width: 260px;
  min-height: 68px;
  padding: 12px 20px;
  border: 2px solid #ff9f1a;
  border-radius: 5px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  color: #101820;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.energy-link span {
  display: block;
}

.energy-link:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

/* Navigation */

.main-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-navigation a {
  position: relative;
  padding: 42px 0 37px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-navigation a:hover {
  color: var(--blue);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  transform: scaleX(1);
}

.main-navigation a.active {
  color: var(--blue);
}

/* Mobile menu button */

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  margin: 5px auto;
  display: block;
  background: var(--white);
}

/* Hero */

.hero {
  position: relative;
  min-height: 760px;
  padding: 170px 20px 80px;
  display: grid;
  place-items: center;
  background:
    url("../images/hero-generator.jpg")
    center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.hero-label {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 15px 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.hero-content > p:not(.hero-label) {
  font-size: 1.2rem;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button {
  min-height: 50px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
}

.button-outline {
  border-color: var(--white);
  color: var(--white);
}

main section:not(.hero) {
  min-height: 500px;
  padding: 100px 20px;
}

main section:not(.hero) h2 {
  text-align: center;
}

footer {
  padding: 35px 20px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

/* Responsive layout */

@media (max-width: 1000px) {
  .header-container {
    min-height: 90px;
  }

  .energy-link {
    width: 220px;
    font-size: 0.72rem;
  }

  .menu-button {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 90px;
    right: 0;
    left: 0;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 15, 15, 0.98);
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-navigation a::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .header-container {
    width: min(100% - 24px, 1180px);
    gap: 15px;
  }

  .energy-link {
    width: 180px;
    min-height: 60px;
    padding: 8px 10px;
    font-size: 0.63rem;
  }

  .hero {
    min-height: 700px;
    padding-top: 150px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.support-header {
  padding: 25px 20px;
  background: var(--black);
  color: var(--white);
}

.support-container {
  width: min(900px, 100%);
  margin: 0 auto;
}

.support-header a {
  color: var(--yellow);
  font-weight: 700;
}

.support-page {
  min-height: 100vh;
  padding: 80px 20px;
  background: #f4f4f4;
}

.support-page h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.support-label {
  color: #aa7800;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-card {
  min-height: auto;
  margin-top: 25px;
  padding: 30px;
  border-left: 5px solid var(--yellow);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Generator models page */


.models-body {
  background: #f4f4f4;
}

.models-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.inner-header {
  background: #121212;
  color: var(--white);
}

.inner-header-container {
  width: min(1180px, calc(100% - 40px));
  min-height: 85px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.inner-brand {
  max-width: 220px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.inner-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.inner-navigation a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.inner-navigation a:hover,
.inner-navigation a.active {
  color: var(--yellow);
}

.models-hero {
  min-height: 500px;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.52)
    ),
    url("../images/generator-installation-2.jpg")
    center / cover no-repeat;
  color: var(--white);
}

.models-hero .models-container {
  margin: 0 auto;
}

.models-label {
  margin-bottom: 12px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.models-hero h1 {
  max-width: 800px;
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
}

.models-hero p:not(.models-label) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #e3e3e3;
  font-size: 1.1rem;
}

.models-section {
  padding: 100px 0;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.model-card {
  position: relative;
  padding: 28px;
  border: 1px solid #e4e7e9;
  border-radius: 22px;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 82%,
      #fafafa 100%
    );
  box-shadow:
    0 20px 45px rgba(0,0,0,.08);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

/* Yellow accent line */

.model-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 6px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      #ff9f1c
    );
}

/* Hover lift */

.model-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,216,61,.75);
  box-shadow:
    0 32px 70px rgba(0,0,0,.14);
}

/* Product image */

.model-image {
  width: 100%;
  display: block;
  margin: 0;
  border-radius: 16px;
  box-shadow:
    0 14px 32px rgba(0,0,0,.08);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.model-card:hover .model-image {
  transform: scale(1.02);
  box-shadow:
    0 20px 42px rgba(0,0,0,.12);
}

.model-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid #dddddd;
}

.model-heading p {
  margin: 0;
  color: #9a6b00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-heading h2 {
  margin: 6px 0;
  font-size: 2.7rem;
}

.model-heading span {
  color: #666666;
  font-weight: 700;
}

.model-details {
  margin: 25px 0;
}

.model-details > div {
  padding: 13px 0;
  border-bottom: 1px solid #eeeeee;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}

.model-details dt {
  color: #666666;
  font-size: 0.85rem;
  font-weight: 700;
}

.model-details dd {
  margin: 0;
  font-weight: 700;
}

.model-link {
  position: relative;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #151719;
  color: #ffffff;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.model-link:hover {
  background: var(--yellow);
  color: #151719;
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(255,216,61,.28);
}

.models-notice {
  margin-top: 35px;
  padding: 45px;
  border-radius: 10px;
  background: #181818;
  color: var(--white);
}

.models-notice h2 {
  margin-top: 0;
  font-size: 2rem;
}

.models-notice p {
  max-width: 760px;
  color: #cccccc;
}

@media (max-width: 850px) {
  .inner-header-container {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .inner-navigation {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .models-container {
    width: min(100% - 24px, 1180px);
  }

  .models-hero {
    min-height: 440px;
    padding: 80px 12px;
  }

  .model-card,
  .models-notice {
    padding: 25px 20px;
  }

  .model-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* ========================================
   WHY CHOOSE US
======================================== */

.section-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.why-choose {
  padding: 110px 0;
  background: #f5f6f7;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-label {
  margin: 0 0 12px;
  color: #c47e00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 20px;
  color: #151719;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: #62676d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  position: relative;
  min-height: 305px;
  padding: 34px 28px;
  border: 1px solid #e0e3e6;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.benefit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: #ffd84a;
  content: "";
}

.benefit-card:hover {
  border-color: #ffd84a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.11);
  transform: translateY(-8px);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff4c4;
  color: #151719;
  font-size: 1.65rem;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 13px;
  color: #151719;
  font-size: 1.2rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: #686d73;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .section-container {
    width: min(100% - 24px, 1180px);
  }

  .why-choose {
    padding: 80px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-icon {
    margin-bottom: 35px;
  }
}

/* =====================================
   COMPLETE GENERATOR SOLUTIONS
===================================== */

.services-section{
    padding:120px 0;
    background:#ffffff;
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(3,minmax(0,1fr));

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:18px;

    border:1px solid #ececec;

    box-shadow:
    0 18px 40px rgba(0,0,0,.06);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#FFD84A;

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFF4C8;

    font-size:34px;

    margin-bottom:30px;

}

.service-card h3{

    margin-bottom:15px;

    font-size:1.35rem;

}

.service-card p{

    color:#6b6b6b;

    line-height:1.8;

}

@media(max-width:950px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.services-grid{

grid-template-columns:1fr;

}

}

/* =====================================
   HOW IT WORKS
===================================== */

.process-section {
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 216, 74, 0.14),
      transparent 32%
    ),
    #151719;
  color: #ffffff;
}

.process-heading h2 {
  color: #ffffff;
}

.process-heading > p:last-child {
  color: #b9bec4;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 65px;
}

.process-grid::before {
  position: absolute;
  top: 50px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd84a 12%,
    #ffd84a 88%,
    transparent
  );
  content: "";
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 335px;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: #202327;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.process-card:hover {
  border-color: rgba(255, 216, 74, 0.8);
  background: #292d32;
  transform: translateY(-9px);
}

.process-number {
  display: block;
  margin-bottom: 18px;
  color: #ffd84a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  border: 5px solid #151719;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffd84a;
  color: #151719;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(255, 216, 74, 0.45);
}

.process-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.35;
}

.process-card p {
  margin: 0;
  color: #adb3ba;
  font-size: 0.94rem;
  line-height: 1.7;
}

.process-cta {
  margin-top: 38px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 216, 74, 0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.process-cta h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.35rem;
}

.process-cta p {
  margin: 0;
  color: #adb3ba;
}

.process-cta .button {
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .process-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }
}

@media (max-width: 650px) {
  .process-section {
    padding: 85px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:last-child {
    width: 100%;
    min-height: auto;
    grid-column: auto;
  }

  .process-icon {
    margin-bottom: 32px;
  }

  .process-cta {
    padding: 28px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .process-cta .button {
    width: 100%;
  }
}

/* =====================================
   FEATURED INSTALLATIONS
===================================== */

.projects-section {
  padding: 120px 0;
  background: #f4f5f6;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 320px;
  gap: 20px;
  margin-top: 60px;
}

.project-card {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #17191c;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.project-card-large {
  grid-row: span 2;
}

.project-card:last-child {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 400ms ease,
    filter 400ms ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.08) 65%
  );
  content: "";
}

.project-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 28px 26px;
  color: #ffffff;
  transform: translateY(34px);
  transition: transform 280ms ease;
}

.project-card:hover img {
  filter: brightness(0.78);
  transform: scale(1.06);
}

.project-card:hover figcaption {
  transform: translateY(0);
}

.project-category {
  display: block;
  margin-bottom: 8px;
  color: #ffd84a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.project-card p {
  margin: 0;
  color: #d1d5d9;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 280ms ease;
}

.project-card:hover p {
  opacity: 1;
}

.projects-action {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1000px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-large,
  .project-card:last-child {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 650px) {
  .projects-section {
    padding: 85px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .project-card figcaption {
    transform: none;
  }

  .project-card p {
    opacity: 1;
  }
}

/* =====================================
   HERO WARRANTY PROMOTION
===================================== */

.hero-promo {
  width: min(760px, 100%);
  margin: 38px auto 0;
  padding: 24px 30px;
  border: 1px solid rgba(255, 216, 74, 0.65);
  border-radius: 16px;
  background: rgba(15, 17, 19, 0.78);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(10px);
}

.promo-label {
  display: block;
  margin-bottom: 8px;
  color: #ffd84a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-promo p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-promo strong {
  color: #ffd84a;
}

/* Promo CTA Button */

.promo-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:22px;

    padding:15px 34px;

    background:#ffd84a;

    color:#111;

    font-weight:800;

    font-size:.9rem;

    letter-spacing:.08em;

    text-transform:uppercase;

    border-radius:999px;

    text-decoration:none;

    transition:.3s;

    box-shadow:0 12px 30px rgba(255,216,74,.35);

}

.promo-button:hover{

    background:#ffffff;

    color:#111;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(255,216,74,.45);

}

@media (max-width: 600px) {
  .hero-promo {
    margin-top: 28px;
    padding: 21px 18px;
  }
}

@keyframes promoPulse {

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.04);
    }

    100%{
        transform:scale(1);
    }

}

.promo-button{

    animation:promoPulse 2.8s infinite;

}

/* =====================================
   GOOGLE REVIEWS
===================================== */

.reviews-section {
  padding: 120px 0;
  background: #ffffff;
}

.reviews-header {
  margin-bottom: 55px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.reviews-heading {
  max-width: 720px;
}

.reviews-heading h2 {
  margin: 0 0 18px;
  color: #151719;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.12;
}

.reviews-heading > p:last-child {
  margin: 0;
  color: #656b72;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* Google rating summary */

.google-rating-card {
  min-width: 280px;
  padding: 24px 28px;
  border: 1px solid #e6e8ea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f7f8f9;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

.google-score {
  color: #151719;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
}

.google-stars,
.review-stars,
.footer-google-stars {
  color: #fbbc04;
  letter-spacing: 0.05em;
}

.google-rating-info strong {
  margin-top: 4px;
  color: #151719;
}

.google-rating-info span {
  margin-top: 2px;
  color: #71777d;
  font-size: 0.82rem;
}


/* Review cards */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.review-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  border: 1px solid #e6e8ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border-radius: 18px 18px 0 0;
  background: #ffd84a;
  content: "";
}

.review-card:hover {
  border-color: #ffd84a;
  box-shadow: 0 27px 55px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #151719;
  color: #ffd84a;
  font-size: 1rem;
  font-weight: 800;
}

.review-author h3 {
  margin: 0 0 3px;
  color: #151719;
  font-size: 1rem;
}

.review-author span {
  color: #777d83;
  font-size: 0.78rem;
}

.review-stars {
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-card blockquote {
  margin: 35px 0 0;
  color: #555c63;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.85;
}


/* End of Reviews */

.reviews-ending{
    margin-top:60px;
    text-align:center;
}

.reviews-ending p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:1.08rem;
    line-height:1.8;
}

.reviews-ending strong{
    color:#c47e00;
}


/* Tablet */

@media (max-width: 950px) {

  .reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

}


/* Mobile */

@media (max-width: 650px) {

  .reviews-section {
    padding: 85px 0;
  }

  .review-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .review-top {
    grid-template-columns: auto 1fr;
  }

  .review-stars {
    grid-column: 2;
  }
}

/* =====================================
   Reviews Ending
===================================== */

.reviews-ending{
    position:relative;
    max-width:850px;
    margin:80px auto 0;
    padding:60px 50px;

    background:#17191c;
    border-radius:22px;
    overflow:hidden;

    text-align:center;

    border:1px solid rgba(255,216,74,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.reviews-ending::before{

    content:"";

    position:absolute;

    top:0;
    left:20%;
    right:20%;

    height:4px;

    background:linear-gradient(
        to right,
        transparent,
        var(--yellow),
        transparent
    );

}

.reviews-ending-stars{

    font-size:30px;

    color:var(--yellow);

    letter-spacing:8px;

    margin-bottom:18px;

}

.reviews-ending h3{

    color:#fff;

    font-size:2rem;

    margin-bottom:20px;

}

.reviews-ending p{

    max-width:680px;

    margin:auto;

    color:#d0d0d0;

    font-size:1.1rem;

    line-height:1.9;

}

.reviews-ending strong{

    color:var(--yellow);

}

/* =====================================
   CONTACT SECTION
===================================== */

.contact-section {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at bottom left,
      rgba(255, 216, 74, 0.12),
      transparent 30%
    ),
    #151719;
  color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  max-width: 600px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.08;
  text-align: left;
}

.contact-intro {
  max-width: 600px;
  margin: 0 0 40px;
  color: #b9bec4;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-detail {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-detail:hover {
  border-color: rgba(255, 216, 74, 0.55);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  background: var(--yellow);
  color: #151719;
  font-size: 1.25rem;
}

.contact-detail > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-label {
  color: #8f969d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.contact-detail a:hover {
  color: var(--yellow);
}

.contact-callout {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 10px;
  color: #aeb4ba;
}

.contact-callout a {
  color: var(--yellow);
  font-weight: 800;
}


/* Form card */

.contact-form-card {
  padding: 42px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading > span {
  color: #c47e00;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin: 8px 0 10px;
  color: #151719;
  font-size: 2rem;
}

.contact-form-heading p {
  margin: 0;
  color: #6b7177;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: #292c30;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dfe2e5;
  border-radius: 11px;
  padding: 14px 15px;
  background: #f8f9fa;
  color: #151719;
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.form-group input,
.form-group select {
  min-height: 52px;
}

.form-group textarea {
  min-height: 145px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 216, 61, 0.18);
}

.contact-submit {
  width: 100%;
  margin-top: 5px;
  border: 0;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

.form-note {
  margin: 0;
  color: #747a80;
  font-size: 0.8rem;
  text-align: center;
}

.form-note a {
  color: #9a6b00;
  font-weight: 800;
}


/* Tablet */

@media (max-width: 950px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}


/* Mobile */

@media (max-width: 600px) {
  .contact-section {
    padding: 85px 0;
  }

  .contact-form-card {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-callout {
    flex-direction: column;
  }
}

/* =====================================
   KOHLER ENERGY MANAGEMENT PAGE
===================================== */

.energy-page {
  background: #ffffff;
}


/* Container */

.energy-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}


/* Hero */

.energy-hero {
  position: relative;
  padding: 150px 20px 120px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 216, 61, 0.18),
      transparent 32%
    ),
    #151719;
  color: #ffffff;
  text-align: center;
}

.energy-hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 216, 61, 0.16);
  border-radius: 50%;
  content: "";
}

.energy-eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.energy-hero h1 {
  max-width: 850px;
  margin: 0 auto 24px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.02;
}

.energy-hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: #c8cdd2;
  font-size: 1.1rem;
  line-height: 1.8;
}


/* Download buttons */

.energy-download-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.energy-store-button {
  min-width: 195px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  color: #151719;
  text-align: left;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.energy-store-button:hover {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.energy-store-button small {
  display: block;
  font-size: 0.68rem;
}

.energy-store-button strong {
  display: block;
  font-size: 1.05rem;
}

.store-icon {
  font-size: 1.7rem;
}


/* Introduction */

.energy-intro {
  padding: 120px 20px;
  background: #ffffff;
}

.energy-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.energy-intro-heading h2 {
  margin: 0;
  color: #151719;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.08;
}

.energy-intro-copy p {
  margin: 0 0 25px;
  color: #5f666d;
  font-size: 1.05rem;
  line-height: 1.9;
}


/* Features */

.energy-features {
  padding: 120px 20px;
  background: #f4f5f6;
}

.energy-feature-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.energy-feature-card {
  min-height: 300px;
  padding: 36px 30px;
  border: 1px solid #e3e6e8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.energy-feature-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.energy-feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 35px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff3bd;
  font-size: 1.6rem;
}

.energy-feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.energy-feature-card p {
  margin: 0;
  color: #687078;
  line-height: 1.75;
}


/* Setup assistance */

.energy-help {
  padding: 100px 20px;
  background: #ffffff;
}

.energy-help-card {
  padding: 50px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background:
    radial-gradient(
      circle at right,
      rgba(255, 216, 61, 0.14),
      transparent 35%
    ),
    #151719;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

.energy-help-card > div:first-child {
  max-width: 680px;
}

.energy-help-card h2 {
  margin: 8px 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: left;
}

.energy-help-card p:not(.section-label) {
  margin: 0;
  color: #b9bec4;
  line-height: 1.8;
}

.energy-help-actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.energy-email-link {
  color: #ffffff;
  font-size: 0.85rem;
}

.energy-email-link:hover {
  color: var(--yellow);
}


/* Tablet */

@media (max-width: 950px) {

  .energy-intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .energy-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .energy-help-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .energy-help-actions {
    align-items: flex-start;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .energy-container {
    width: min(100% - 24px, 1180px);
  }

  .energy-hero {
    padding: 115px 12px 85px;
  }

  .energy-intro,
  .energy-features {
    padding: 85px 12px;
  }

  .energy-feature-grid {
    grid-template-columns: 1fr;
  }

  .energy-help {
    padding: 70px 12px;
  }

  .energy-help-card {
    padding: 38px 24px;
  }

  .energy-help-actions,
  .energy-help-actions .button {
    width: 100%;
  }

  .energy-email-link {
    overflow-wrap: anywhere;
  }

}

/* =====================================
   CONTROLLER PIN HELP
===================================== */

.pin-help-section {
  padding: 120px 20px;
  background: #eef5f8;
}

.pin-help-card {
  padding: 60px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.pin-help-card h2 {
  max-width: 950px;
  margin: 0 0 26px;
  color: #151719;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  text-align: left;
}

.pin-help-card h2 span {
  display: block;
  margin-top: 8px;
  color: #687078;
  font-size: 0.55em;
  font-weight: 500;
}

.pin-help-intro {
  max-width: 950px;
}

.pin-help-intro > p {
  color: #5e6c74;
  font-size: 1.05rem;
  line-height: 1.85;
}

.pin-warning {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 5px solid var(--yellow);
  border-radius: 10px;
  background: #fff8d8;
  color: #34383c;
  line-height: 1.7;
}

.pin-models {
  margin: 35px 0;
  padding: 22px 24px;
  border: 1px solid #e2e6e9;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafb;
}

.pin-models span {
  color: #7a8289;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pin-models strong {
  color: #151719;
}

.pin-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pin-step {
  padding: 26px;
  border: 1px solid #e2e6e9;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pin-step:hover {
  border-color: var(--yellow);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.pin-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #151719;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.pin-step h3 {
  margin: 3px 0 10px;
  color: #151719;
  font-size: 1.05rem;
}

.pin-step p {
  margin: 0;
  color: #646c73;
  line-height: 1.7;
}

.pin-step-important {
  border-color: rgba(255, 216, 61, 0.7);
  background: #fffdf3;
}

@media (max-width: 850px) {
  .pin-help-card {
    padding: 42px 30px;
  }

  .pin-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pin-help-section {
    padding: 85px 12px;
  }

  .pin-help-card {
    padding: 32px 20px;
  }

  .pin-step {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   PREVIOUS ONCUE PLUS USERS
===================================== */

.oncue-section {
  padding: 120px 20px;
  background: #ffffff;
}

.oncue-card {
  padding: 60px;
  border-radius: 24px;
  background: #151719;
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.15);
}

.oncue-card > h2 {
  max-width: 900px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.12;
  text-align: left;
}

.oncue-intro {
  max-width: 820px;
  margin: 0 0 45px;
  color: #b8bec5;
  font-size: 1.05rem;
  line-height: 1.8;
}

.oncue-steps {
  display: grid;
  gap: 18px;
}

.oncue-step {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  background: #202327;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.oncue-step:hover {
  border-color: rgba(255, 216, 61, 0.6);
  background: #282c31;
  transform: translateX(6px);
}

.oncue-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #151719;
  font-size: 0.78rem;
  font-weight: 800;
}

.oncue-step h3 {
  margin: 2px 0 10px;
  color: #ffffff;
  font-size: 1.15rem;
}

.oncue-step p {
  margin: 0 0 12px;
  color: #b9bec4;
  line-height: 1.75;
}

.oncue-step p:last-child {
  margin-bottom: 0;
}

.oncue-options {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.oncue-option {
  padding: 18px;
  border: 1px solid rgba(255, 216, 61, 0.22);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: rgba(255, 216, 61, 0.06);
}

.oncue-option strong {
  color: var(--yellow);
}

.oncue-option span {
  color: #c3c8cd;
  line-height: 1.6;
}

.oncue-support {
  margin-top: 35px;
  padding: 32px;
  border: 1px solid rgba(255, 216, 61, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background:
    radial-gradient(
      circle at right,
      rgba(255, 216, 61, 0.12),
      transparent 35%
    ),
    #1c1f22;
}

.oncue-support h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.oncue-support p {
  max-width: 700px;
  margin: 0;
  color: #afb5bb;
  line-height: 1.7;
}

.oncue-support .button {
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .oncue-card {
    padding: 42px 30px;
  }

  .oncue-options {
    grid-template-columns: 1fr;
  }

  .oncue-support {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .oncue-section {
    padding: 85px 12px;
  }

  .oncue-card {
    padding: 32px 20px;
  }

  .oncue-step {
    grid-template-columns: 1fr;
  }

  .oncue-support .button {
    width: 100%;
  }
}

/* =====================================
   GENERATOR CONNECTION TROUBLESHOOTING
===================================== */

.connection-help-section {
  padding: 120px 20px;
  background: #eef5f8;
}

.connection-help-header {
  max-width: 900px;
  margin-bottom: 55px;
}

.connection-help-header h2 {
  margin: 0 0 22px;
  color: #151719;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.12;
  text-align: left;
}

.connection-help-header > p:last-child {
  max-width: 800px;
  margin: 0;
  color: #5f6b73;
  font-size: 1.05rem;
  line-height: 1.8;
}


/* Troubleshooting options */

.connection-options {
  display: grid;
  gap: 22px;
}

.connection-option {
  padding: 35px;
  border: 1px solid #dde3e7;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.connection-option:hover {
  border-color: var(--yellow);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.connection-option-highlight {
  border-color: rgba(255, 216, 61, 0.7);
}

.connection-option-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #151719;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
}

.connection-option-label {
  margin: 0 0 7px;
  color: #c47e00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.connection-option h3 {
  margin: 0 0 14px;
  color: #151719;
  font-size: 1.35rem;
}

.connection-option p:not(.connection-option-label) {
  max-width: 850px;
  margin: 0 0 14px;
  color: #626d75;
  line-height: 1.75;
}


/* Firmware PDF button */

.firmware-document-button {
  margin-top: 12px;
  padding: 15px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #151719;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.firmware-document-button:hover {
  background: var(--yellow-hover);
  box-shadow: 0 14px 30px rgba(255, 216, 61, 0.3);
  transform: translateY(-3px);
}


/* Controller reboot steps */

.controller-reboot-steps {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  counter-reset: reboot-step;
  list-style: none;
}

.controller-reboot-steps li {
  position: relative;
  padding: 14px 18px 14px 54px;
  border-radius: 10px;
  background: #f6f8f9;
  color: #59636b;
  line-height: 1.65;
  counter-increment: reboot-step;
}

.controller-reboot-steps li::before {
  position: absolute;
  top: 13px;
  left: 16px;
  color: #c47e00;
  font-weight: 800;
  content: counter(reboot-step, decimal-leading-zero);
}


/* Bottom support CTA */

.connection-support {
  margin-top: 35px;
  padding: 32px 35px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: #151719;
  color: #ffffff;
}

.connection-support span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connection-support h3 {
  margin: 7px 0 0;
  color: #ffffff;
}

.connection-support-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.connection-support-actions > a:last-child {
  color: #c4c9ce;
  font-size: 0.82rem;
}

.connection-support-actions > a:last-child:hover {
  color: var(--yellow);
}


/* Tablet / mobile */

@media (max-width: 750px) {

  .connection-option {
    grid-template-columns: 1fr;
  }

  .connection-support {
    flex-direction: column;
    align-items: flex-start;
  }

  .connection-support-actions {
    width: 100%;
    align-items: flex-start;
  }

  .connection-support-actions .button {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .connection-help-section {
    padding: 85px 12px;
  }

  .connection-option {
    padding: 26px 22px;
  }

}

/* =====================================
   KOHLER OFFICIAL SUPPORT
===================================== */

.kohler-support-section {
    padding: 100px 24px;
    background: #f5f6f7;
}

.kohler-support-section .energy-container {
    max-width: 1100px;
    margin: 0 auto;
}

.kohler-support-content {
    text-align: center;
}

.kohler-support-content .section-label {
    margin-bottom: 12px;
    color: #b56b00;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kohler-support-content h2 {
    margin: 0 0 15px;
    color: #151719;
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    line-height: 1.1;
}

.kohler-support-heading {
    max-width: 680px;
    margin: 0 auto 45px;
    color: #60666c;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* Main support card */

.kohler-support-card {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 50px;

    display: flex;
    align-items: center;
    gap: 35px;

    background: #151719;
    border-radius: 22px;

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);

    overflow: hidden;
}


/* Yellow accent across top */

.kohler-support-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #ffd34e;
}


/* Phone icon */

.kohler-support-icon {
    width: 85px;
    height: 85px;

    display: grid;
    place-items: center;
    flex-shrink: 0;

    background: #ffd34e;
    border-radius: 20px;

    color: #151719;
    font-size: 2rem;

    box-shadow: 0 10px 25px rgba(255, 211, 78, 0.2);
}


/* Information */

.kohler-support-details {
    text-align: left;
}

.kohler-support-details > span {
    display: block;

    margin-bottom: 8px;

    color: #ffd34e;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kohler-support-phone {
    display: inline-block;

    margin-bottom: 17px;

    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;

    text-decoration: none;

    transition: 0.2s ease;
}

.kohler-support-phone:hover {
    color: #ffd34e;
    transform: translateY(-2px);
}

.kohler-support-details p {
    margin: 5px 0;

    color: #c5c8cb;
    line-height: 1.6;
}


/* Email */

.kohler-support-email {
    display: inline-block;

    margin-top: 16px;

    color: #ffd34e;
    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.kohler-support-email:hover {
    color: #ffffff;
}


/* Mobile */

@media (max-width: 650px) {

    .kohler-support-section {
        padding: 70px 16px;
    }

    .kohler-support-card {
        padding: 38px 25px;

        flex-direction: column;

        text-align: center;
    }

    .kohler-support-details {
        text-align: center;
    }

    .kohler-support-icon {
        width: 70px;
        height: 70px;
    }

    .kohler-support-phone {
        font-size: 2rem;
    }
}