:root {
  --green: #167345;
  --green-dark: #0d5f39;
  --green-soft: #ecf6f0;
  --yellow: #ffc400;
  --blue: #062b67;
  --text: #20272c;
  --muted: #5d666d;
  --line: #e8ecef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #f8faf9;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  background: var(--white);
  border-top: 4px solid var(--green);
  box-shadow: 0 8px 28px rgba(16, 39, 28, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.promo-bar {
  align-items: center;
  background: var(--green);
  color: var(--white);
  display: flex;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 8px 18px;
  text-align: center;
}

.promo-bar p {
  margin: 0;
}

.promo-bar a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-icon {
  color: var(--white);
  display: inline-flex;
  height: 22px;
  width: 22px;
}

.benefit-row {
  align-items: center;
  background: #f7f7f7;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 76px;
  padding: 0 clamp(26px, 8vw, 140px) 0 clamp(280px, 17vw, 360px);
  position: relative;
}

.benefit {
  align-items: center;
  color: #252b2f;
  display: flex;
  font-size: 16px;
  gap: 12px;
  justify-content: center;
  white-space: nowrap;
}

.benefit svg {
  color: var(--green);
  flex: 0 0 auto;
  height: 28px;
  width: 28px;
}

.main-nav {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(640px, 1fr) auto;
  margin: 0 auto;
  max-width: 1540px;
  min-height: 104px;
  padding: 14px 18px 14px clamp(230px, 13vw, 290px);
}

.top-logo-link {
  align-items: center;
  display: flex;
  height: 158px;
  justify-content: center;
  left: clamp(24px, 5vw, 92px);
  position: absolute;
  top: 8px;
  width: 220px;
  z-index: 3;
}

.top-logo-link img {
  display: block;
  height: 150px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  width: auto;
}

.primary-menu {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.3vw, 46px);
  justify-content: flex-start;
}

.primary-menu a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-menu a:hover {
  color: var(--green);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.phone-button,
.contact-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  white-space: nowrap;
}

.phone-button {
  border: 1.5px solid var(--green);
  color: var(--green);
  font-size: 24px;
}

.contact-button {
  background: var(--green);
  color: var(--white);
  font-size: 17px;
}

.phone-button svg,
.contact-button svg {
  height: 28px;
  width: 28px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.menu-toggle span:not(.screen-reader-text) {
  background: var(--green);
  border-radius: 2px;
  display: block;
  height: 3px;
  margin: 5px 0;
  width: 28px;
}

.screen-reader-text {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.hero-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 43, 103, 0.86), rgba(22, 115, 69, 0.72)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: grid;
  gap: clamp(40px, 7vw, 110px);
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 620px);
  justify-content: space-between;
  min-height: calc(100vh - 220px);
  padding: 76px max(72px, 10vw);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  margin: 0 0 24px;
}

.hero-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.55;
  margin: 0 0 34px;
}

.hero-button {
  background: var(--yellow);
  border-radius: 8px;
  color: #1d250e;
  display: inline-flex;
  font-weight: 900;
  padding: 16px 24px;
}
.quote-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 620px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: #333;
  display: grid;
  gap: 14px;
  padding: 46px 44px 56px;
  position: relative;
}

.quote-close {
  background: transparent;
  border: 0;
  color: #b9b9b9;
  cursor: pointer;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 12px;
}

.form-grid {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card label,
.sector-group legend {
  color: #333;
  font-size: 16px;
}

.quote-card label span[aria-hidden="true"],
.sector-group legend span {
  color: #e22b21;
}

.quote-card input[type="text"],
.quote-card input[type="email"],
.quote-card input[type="tel"] {
  border: 1px solid #d6d6d6;
  border-radius: 0;
  color: var(--text);
  font-size: 16px;
  height: 42px;
  margin-top: 8px;
  padding: 0 14px;
  width: 100%;
}

.quote-card input.is-invalid {
  background: #fff5f5;
  border-color: #d93025;
  box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.12);
}

.address-field {
  position: relative;
}

.address-suggestions {
  background: #fff;
  border: 1px solid #d6d6d6;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  left: 0;
  max-height: 210px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
}

.address-suggestion {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #ededed;
  color: var(--text);
  cursor: pointer;
  display: block;
  font: inherit;
  line-height: 1.35;
  padding: 10px 12px;
  text-align: left;
  width: 100%;
}

.address-suggestion:hover,
.address-suggestion:focus {
  background: #eef7eb;
  outline: 0;
}
.sector-group {
  border: 0;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.sector-group legend {
  flex: 0 0 100%;
  margin-bottom: 8px;
}

.sector-group label {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 5px;
}

.service-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  margin-top: 10px;
}

.service-options label {
  cursor: pointer;
}

.service-options input {
  position: absolute;
  opacity: 0;
}

.service-options span {
  align-items: center;
  border: 1px solid #d7d7d7;
  color: #777;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 8px;
  height: 82px;
  justify-content: center;
  text-align: center;
}

.service-options svg {
  color: #ffb400;
  height: 34px;
  width: 34px;
}

.service-options input:checked + span {
  border-color: var(--green);
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}

.form-prompt {
  background: #fff5f5;
  border-left: 4px solid #d93025;
  color: #9f1c13;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  padding: 10px 12px;
}
.required-note {
  color: #333 !important;
  font-size: 12px !important;
  margin: 0 !important;
}

.required-note span {
  color: #e22b21;
}

.terms-row {
  align-items: center;
  background: #eef7eb;
  border-radius: 5px;
  display: flex !important;
  font-size: 12px !important;
  gap: 10px !important;
  padding: 12px;
}

.terms-row a {
  color: #006ff0;
  text-decoration: underline;
}

.quote-submit {
  background: #ffb600;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  height: 40px;
  width: 100%;
}
@media (max-width: 780px) {
  .promo-bar {
    font-size: 14px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    padding: 92px 18px 14px;
  }

  .benefit {
    justify-content: flex-start;
    white-space: normal;
  }

  .top-logo-link {
    height: 82px;
    left: 18px;
    top: 8px;
    width: 140px;
  }

  .top-logo-link img {
    height: 80px;
  }

  .main-nav {
    min-height: 82px;
    padding: 12px 18px;
  }

  .phone-button {
    font-size: 18px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 560px;
    padding: 56px 22px;
  }

  .quote-card {
    border-radius: 14px;
    justify-self: stretch;
    padding: 34px 24px;
    width: 100%;
  }

  .form-grid,
  .service-options {
    grid-template-columns: 1fr;
  }
}












.terms-page {
  background: #fff;
  color: var(--text);
  min-height: 520px;
}

.terms-content {
  margin: 0 auto;
  max-width: 1160px;
  padding: 56px 32px 92px;
}

.terms-content h1 {
  color: var(--text);
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 26px;
}

.terms-content p,
.terms-content li {
  color: #111;
  font-size: 17px;
  line-height: 1.65;
}

.terms-content p {
  margin: 0 0 12px;
}

.terms-content ol {
  margin: 10px 0 0 24px;
  padding: 0;
}

.terms-content li {
  margin-bottom: 22px;
  padding-left: 4px;
}

.terms-content a {
  color: #006ff0;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

.site-footer {
  background: linear-gradient(135deg, #062b67 0%, #0d5f39 72%);
  color: #fff;
  position: relative;
}

.site-footer::before {
  background: var(--yellow);
  content: "";
  display: block;
  height: 5px;
  width: 100%;
}

.footer-main {
  display: grid;
  gap: 46px;
  grid-template-columns: 1.25fr .9fr 1.1fr 1.1fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 48px 32px 40px;
  text-align: left;
}

.footer-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.footer-column h2 {
  color: var(--yellow);
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 22px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column p {
  margin: 0 0 18px;
  max-width: 320px;
}

.footer-column a {
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-about img {
  height: 82px;
  margin-top: 8px;
  object-fit: contain;
  width: auto;
}

.footer-phone {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900;
}


.footer-bottom {
  background: rgba(4, 23, 37, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 18px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 0;
}

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

@media (max-width: 620px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 36px 22px 30px;
  }
}



.faq-section {
  background: #f8faf9;
  color: var(--text);
  padding: 86px max(24px, 8vw);
}

.faq-heading {
  margin: 0 auto 34px;
  max-width: 980px;
  text-align: center;
}

.faq-heading h2 {
  color: var(--blue);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 18px;
}

.faq-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 1060px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(6, 43, 103, 0.05);
  overflow: hidden;
}

.faq-item summary {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  gap: 18px;
  justify-content: space-between;
  list-style: none;
  padding: 20px 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  align-items: center;
  background: var(--green-soft);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.faq-item[open] summary {
  color: var(--green);
}

.faq-item[open] summary::after {
  background: var(--green);
  color: #fff;
  content: "-";
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 20px 24px 24px;
}

.faq-answer p {
  color: #4d5961;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .faq-section {
    padding: 58px 18px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 18px 16px;
  }

  .faq-answer {
    padding: 18px 16px 20px;
  }
}

.hp-field {
  height: 0 !important;
  left: -9999px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  width: 0 !important;
}
body.modal-open {
  overflow: hidden;
}

.contact-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 1000;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  background: rgba(0, 0, 0, 0.72);
  inset: 0;
  position: absolute;
}

.contact-modal-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(500px, 1.08fr);
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: 1040px;
  overflow: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100vw - 32px), 1040px);
  z-index: 1;
}

.contact-modal-close {
  background: transparent;
  border: 0;
  color: #aaa;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 2;
}

.contact-modal-media {
  background: #f6f6f6;
  padding: 30px 34px;
}

.contact-modal-media img {
  aspect-ratio: 1.15 / 1;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 22px;
}

.modal-badges span {
  background: #dff5e6;
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  padding: 10px 18px;
}

.contact-modal-media h2 {
  color: var(--green);
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 20px;
}

.contact-modal-media p {
  color: #5f5f5f;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.contact-modal-form {
  padding: 48px 44px 34px;
}

.modal-form-grid {
  gap: 12px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-modal-form label {
  color: #222;
  display: block;
  font-size: 16px;
}

.contact-modal-form input[type="text"],
.contact-modal-form input[type="email"],
.contact-modal-form input[type="tel"] {
  border: 1px solid #d6d6d6;
  border-radius: 0;
  font-size: 16px;
  height: 42px;
  margin-top: 8px;
  padding: 0 14px;
  width: 100%;
}

.modal-service-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.contact-modal-form .required-note {
  margin: 14px 0 !important;
}

.contact-modal-form .terms-row {
  background: #eef7eb;
  border-radius: 5px;
  display: flex;
  margin-bottom: 14px;
  padding: 12px;
}

.contact-modal-form .quote-submit {
  background: #ffb600;
  border-radius: 0;
  color: #fff;
  height: 40px;
  pointer-events: auto;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}
  z-index: 3;

.contact-modal-form .form-prompt {
  margin-bottom: 12px;
}

@media (max-width: 920px) {
  .contact-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
  }

  .contact-modal-media {
    padding: 24px;
  }

  .contact-modal-media img {
    aspect-ratio: 16 / 9;
  }

  .contact-modal-form {
    padding: 36px 24px 24px;
  }
}

@media (max-width: 640px) {
  .modal-form-grid,
  .modal-service-options {
    grid-template-columns: 1fr;
  }
}


.quote-submit:disabled {
  cursor: wait;
  opacity: 0.78;
}




.modal-form-heading {
  margin: 0 44px 22px 0;
}

.modal-form-heading h2 {
  color: var(--green);
  font-size: 28px;
  line-height: 1.18;
  margin: 0 0 8px;
}

.modal-form-heading p {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
.solar-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 44px;
  align-items: center;
  min-height: 560px;
  padding: 88px clamp(24px, 8vw, 150px);
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(2, 37, 84, 0.92) 0%, rgba(3, 79, 92, 0.82) 52%, rgba(12, 122, 73, 0.72) 100%),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.solar-page-copy {
  max-width: 760px;
}

.solar-page-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.solar-page-copy p:not(.eyebrow) {
  max-width: 690px;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.solar-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.solar-secondary-button {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.solar-hero-panel {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 470px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.solar-hero-panel span,
.solar-hero-panel strong,
.solar-hero-panel p {
  display: block;
}

.solar-hero-panel span {
  color: #ffbd12;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.solar-hero-panel strong {
  font-size: 30px;
  line-height: 1.12;
}

.solar-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.solar-hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.solar-hero-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.solar-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffbd12;
}

.solar-proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9e8e0;
  border-bottom: 1px solid #d9e8e0;
}

.solar-proof-band div {
  padding: 28px clamp(20px, 5vw, 70px);
  background: #f7fbf8;
}

.solar-proof-band strong {
  display: block;
  color: #087540;
  font-size: 18px;
  margin-bottom: 8px;
}

.solar-proof-band span {
  display: block;
  color: #3d4a45;
  line-height: 1.55;
}

.solar-intro-section,
.solar-method-section,
.solar-checklist-section,
.solar-quote-section,
.solar-process-section,
.solar-future-section,
.solar-cta-section {
  padding: 74px clamp(24px, 8vw, 150px);
}

.solar-intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  background: #ffffff;
}

.solar-section-heading {
  max-width: 720px;
}

.solar-section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.solar-section-heading h2,
.solar-checklist-copy h2,
.solar-future-section h2,
.solar-cta-section h2 {
  margin: 10px 0 0;
  color: #0a2d4f;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.solar-intro-copy p,
.solar-checklist-copy p,
.solar-future-section p,
.solar-cta-section p {
  color: #40504a;
  font-size: 18px;
  line-height: 1.7;
}

.solar-intro-copy p:first-child {
  margin-top: 0;
}

.solar-method-section {
  background: #f2f7f4;
}

.solar-feature-grid,
.solar-quote-grid,
.solar-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solar-feature-grid article,
.solar-quote-grid div,
.solar-process-list article {
  background: #ffffff;
  border: 1px solid #dde9e2;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(15, 53, 39, 0.06);
}

.solar-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff5d3;
  color: #0b7641;
  font-weight: 900;
  margin-bottom: 20px;
}

.solar-feature-grid h3,
.solar-quote-grid h3,
.solar-process-list h3,
.solar-checklist-card h3 {
  margin: 0 0 10px;
  color: #0b7542;
  font-size: 21px;
  line-height: 1.25;
}

.solar-feature-grid p,
.solar-quote-grid p,
.solar-process-list p,
.solar-checklist-card li {
  margin: 0;
  color: #465851;
  line-height: 1.58;
}

.solar-checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
  background: linear-gradient(135deg, #073354 0%, #0b7641 100%);
}

.solar-checklist-copy h2,
.solar-checklist-copy p {
  color: #ffffff;
}

.solar-checklist-copy .eyebrow,
.solar-page-copy .eyebrow,
.solar-future-section .eyebrow,
.solar-cta-section .eyebrow {
  color: #ffbd12;
}

.solar-checklist-card {
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.solar-checklist-card ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.solar-checklist-card li {
  position: relative;
  padding-left: 28px;
}

.solar-checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffbd12;
}

.solar-quote-section {
  background: #ffffff;
}

.solar-quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solar-quote-grid div {
  box-shadow: none;
  background: #fbfdfb;
}

.solar-process-section {
  background: #f4f8f6;
}

.solar-process-list article {
  position: relative;
  padding-top: 72px;
}

.solar-process-list strong {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #ffbd12;
  font-size: 32px;
  line-height: 1;
}

.solar-future-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background: #0a2d4f;
}

.solar-future-section h2,
.solar-future-section p {
  color: #ffffff;
}

.solar-cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-top: 1px solid #dde9e2;
}

.solar-cta-section div {
  max-width: 760px;
}

@media (max-width: 1180px) {
  .solar-page-hero,
  .solar-intro-section,
  .solar-checklist-section,
  .solar-future-section {
    grid-template-columns: 1fr;
  }

  .solar-hero-panel {
    align-self: auto;
  }

  .solar-feature-grid,
  .solar-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .solar-page-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .solar-proof-band,
  .solar-quote-grid {
    grid-template-columns: 1fr;
  }

  .solar-cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .solar-cta-section .hero-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .solar-page-copy h1 {
    font-size: 40px;
  }

  .solar-page-copy p:not(.eyebrow),
  .solar-intro-copy p,
  .solar-checklist-copy p,
  .solar-future-section p,
  .solar-cta-section p {
    font-size: 16px;
  }

  .solar-feature-grid,
  .solar-process-list {
    grid-template-columns: 1fr;
  }

  .solar-hero-actions {
    flex-direction: column;
  }

  .solar-secondary-button,
  .solar-hero-actions .hero-button {
    width: 100%;
    justify-content: center;
  }

  .solar-intro-section,
  .solar-method-section,
  .solar-checklist-section,
  .solar-quote-section,
  .solar-process-section,
  .solar-future-section,
  .solar-cta-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}
.battery-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  min-height: 590px;
  padding: 82px clamp(24px, 8vw, 150px);
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 189, 18, 0.2), transparent 28%),
    linear-gradient(110deg, rgba(6, 32, 61, 0.97) 0%, rgba(5, 82, 78, 0.9) 54%, rgba(10, 118, 65, 0.82) 100%);
}

.battery-page-copy {
  max-width: 780px;
}

.battery-page-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.battery-page-copy p:not(.eyebrow) {
  max-width: 690px;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.battery-hero-panel {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 470px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.battery-hero-panel span,
.battery-hero-panel strong,
.battery-hero-panel p {
  display: block;
}

.battery-hero-panel span {
  color: #ffbd12;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.battery-hero-panel strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
}

.battery-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.battery-hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.battery-hero-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.battery-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffbd12;
}

.battery-proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8e7df;
}

.battery-proof-band div {
  padding: 28px clamp(20px, 5vw, 70px);
  background: #f8fbf9;
}

.battery-proof-band strong {
  display: block;
  color: #0b7641;
  font-size: 18px;
  margin-bottom: 8px;
}

.battery-proof-band span {
  color: #3d4a45;
  line-height: 1.55;
}

.battery-intro-section,
.battery-fit-section,
.battery-checklist-section,
.battery-quote-section,
.battery-process-section,
.battery-cta-section {
  padding: 74px clamp(24px, 8vw, 150px);
}

.battery-intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  background: #ffffff;
}

.battery-fit-section,
.battery-process-section {
  background: #f2f7f4;
}

.battery-fit-grid,
.battery-quote-grid,
.battery-process-list {
  display: grid;
  gap: 18px;
}

.battery-fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.battery-quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.battery-process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.battery-fit-grid article,
.battery-quote-grid div,
.battery-process-list article {
  background: #ffffff;
  border: 1px solid #dde9e2;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(15, 53, 39, 0.06);
}

.battery-fit-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff5d3;
  color: #0b7641;
  font-weight: 900;
  margin-bottom: 20px;
}

.battery-fit-grid h3,
.battery-quote-grid h3,
.battery-process-list h3,
.battery-checklist-card h3 {
  margin: 0 0 10px;
  color: #0b7542;
  font-size: 21px;
  line-height: 1.25;
}

.battery-fit-grid p,
.battery-quote-grid p,
.battery-process-list p,
.battery-checklist-card li {
  margin: 0;
  color: #465851;
  line-height: 1.58;
}

.battery-checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
  background: linear-gradient(135deg, #0a2d4f 0%, #0a6648 100%);
}

.battery-checklist-copy h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.battery-checklist-copy p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}

.battery-checklist-copy .eyebrow,
.battery-page-copy .eyebrow,
.battery-cta-section .eyebrow {
  color: #ffbd12;
}

.battery-checklist-card {
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.battery-checklist-card ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.battery-checklist-card li {
  position: relative;
  padding-left: 28px;
}

.battery-checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffbd12;
}

.battery-quote-section {
  background: #ffffff;
}

.battery-quote-grid div {
  box-shadow: none;
  background: #fbfdfb;
}

.battery-process-list article {
  position: relative;
  padding-top: 72px;
}

.battery-process-list strong {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #ffbd12;
  font-size: 32px;
  line-height: 1;
}

.battery-cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-top: 1px solid #dde9e2;
}

.battery-cta-section div {
  max-width: 760px;
}

.battery-cta-section h2 {
  margin: 10px 0 0;
  color: #0a2d4f;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.battery-cta-section p {
  color: #40504a;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .battery-page-hero,
  .battery-intro-section,
  .battery-checklist-section {
    grid-template-columns: 1fr;
  }

  .battery-hero-panel {
    max-width: 560px;
  }

  .battery-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .battery-page-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .battery-proof-band,
  .battery-fit-grid,
  .battery-quote-grid {
    grid-template-columns: 1fr;
  }

  .battery-cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .battery-cta-section .hero-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .battery-page-copy h1 {
    font-size: 40px;
  }

  .battery-page-copy p:not(.eyebrow),
  .battery-checklist-copy p,
  .battery-cta-section p {
    font-size: 16px;
  }

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

  .battery-intro-section,
  .battery-fit-section,
  .battery-checklist-section,
  .battery-quote-section,
  .battery-process-section,
  .battery-cta-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 44px;
  align-items: center;
  padding: 78px clamp(24px, 8vw, 150px);
  background: #ffffff;
}

.about-content {
  max-width: 820px;
}

.about-content h2 {
  margin: 10px 0 22px;
  color: #0a2d4f;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-content p:not(.eyebrow) {
  color: #40504a;
  font-size: 18px;
  line-height: 1.7;
}

.about-card {
  padding: 34px;
  border: 1px solid #dde9e2;
  border-radius: 8px;
  background: #f7fbf8;
  box-shadow: 0 18px 45px rgba(15, 53, 39, 0.08);
}

.about-card h3 {
  margin: 0 0 18px;
  color: #0b7542;
  font-size: 24px;
  line-height: 1.2;
}

.about-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  position: relative;
  padding-left: 28px;
  color: #40504a;
  font-weight: 700;
  line-height: 1.45;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffbd12;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .about-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .about-content p:not(.eyebrow) {
    font-size: 16px;
  }
}
.about-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.64fr);
  gap: 46px;
  align-items: center;
  min-height: 560px;
  padding: 82px clamp(24px, 8vw, 150px);
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(2, 37, 84, 0.94) 0%, rgba(3, 79, 92, 0.84) 52%, rgba(12, 122, 73, 0.74) 100%),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.about-page-copy {
  max-width: 790px;
}

.about-page-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.about-page-copy p:not(.eyebrow) {
  max-width: 700px;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.about-hero-panel {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 470px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.about-hero-panel span,
.about-hero-panel strong,
.about-hero-panel p {
  display: block;
}

.about-hero-panel span {
  color: #ffbd12;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.about-hero-panel strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
}

.about-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.about-hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.about-hero-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.about-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffbd12;
}

.about-story-section,
.about-values-section,
.about-residential-section,
.about-cta-section {
  padding: 74px clamp(24px, 8vw, 150px);
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 44px;
  align-items: center;
  background: #ffffff;
}

.about-story-content h2,
.about-residential-section h2,
.about-cta-section h2 {
  margin: 10px 0 22px;
  color: #0a2d4f;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-story-content p:not(.eyebrow),
.about-residential-section p,
.about-cta-section p {
  color: #40504a;
  font-size: 18px;
  line-height: 1.7;
}

.about-story-card {
  padding: 34px;
  border: 1px solid #dde9e2;
  border-radius: 8px;
  background: #f7fbf8;
  box-shadow: 0 18px 45px rgba(15, 53, 39, 0.08);
}

.about-story-card h3 {
  margin: 0 0 18px;
  color: #0b7542;
  font-size: 24px;
  line-height: 1.2;
}

.about-story-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-story-card li {
  position: relative;
  padding-left: 28px;
  color: #40504a;
  font-weight: 700;
  line-height: 1.45;
}

.about-story-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffbd12;
}

.about-values-section {
  background: #f2f7f4;
}

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

.about-values-grid article {
  background: #ffffff;
  border: 1px solid #dde9e2;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(15, 53, 39, 0.06);
}

.about-values-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff5d3;
  color: #0b7641;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-values-grid h3 {
  margin: 0 0 10px;
  color: #0b7542;
  font-size: 21px;
  line-height: 1.25;
}

.about-values-grid p {
  margin: 0;
  color: #465851;
  line-height: 1.58;
}

.about-residential-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background: #0a2d4f;
}

.about-residential-section .eyebrow,
.about-page-copy .eyebrow,
.about-cta-section .eyebrow {
  color: #ffbd12;
}

.about-residential-section h2,
.about-residential-section p {
  color: #ffffff;
}

.about-cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-top: 1px solid #dde9e2;
}

.about-cta-section div {
  max-width: 760px;
}

@media (max-width: 1180px) {
  .about-page-hero,
  .about-story-section,
  .about-residential-section {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .about-page-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .about-cta-section .hero-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .about-page-copy h1 {
    font-size: 40px;
  }

  .about-page-copy p:not(.eyebrow),
  .about-story-content p:not(.eyebrow),
  .about-residential-section p,
  .about-cta-section p {
    font-size: 16px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-story-section,
  .about-values-section,
  .about-residential-section,
  .about-cta-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}
.brands-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.64fr);
  gap: 46px;
  align-items: center;
  min-height: 560px;
  padding: 82px clamp(24px, 8vw, 150px);
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(2, 37, 84, 0.94) 0%, rgba(3, 79, 92, 0.84) 52%, rgba(12, 122, 73, 0.74) 100%),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.brands-page-copy {
  max-width: 800px;
}

.brands-page-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.brands-page-copy p:not(.eyebrow) {
  max-width: 700px;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.brands-hero-panel {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 470px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.brands-hero-panel span,
.brands-hero-panel strong,
.brands-hero-panel p {
  display: block;
}

.brands-hero-panel span {
  color: #ffbd12;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.brands-hero-panel strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
}

.brands-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.brands-hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.brands-hero-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.brands-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffbd12;
}

.brands-intro-section,
.brand-category-section,
.brand-selection-section,
.brand-disclaimer-section,
.brands-cta-section {
  padding: 74px clamp(24px, 8vw, 150px);
}

.brands-intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  background: #ffffff;
}

.brand-category-section {
  background: #ffffff;
}

.brand-category-section.muted {
  background: #f2f7f4;
}

.brand-category-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.brand-category-heading h2,
.brand-selection-section h2,
.brands-cta-section h2,
.brand-disclaimer-section h2 {
  margin: 10px 0 16px;
  color: #0a2d4f;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-category-heading p:not(.eyebrow),
.brands-cta-section p,
.brand-disclaimer-section p {
  color: #40504a;
  font-size: 18px;
  line-height: 1.7;
}

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

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid #dde9e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 53, 39, 0.06);
}

.brand-category-section.muted .brand-card {
  background: #fbfdfb;
}

.brand-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.brand-card h3 {
  margin: 0;
  color: #0b7542;
  font-size: 23px;
  line-height: 1.16;
}

.brand-card-top span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff5d3;
  color: #0a5d38;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-card p {
  margin: 0;
  color: #465851;
  line-height: 1.58;
}

.brand-card strong {
  margin-top: 6px;
  color: #0a2d4f;
  font-size: 14px;
  text-transform: uppercase;
}

.brand-selection-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  background: linear-gradient(135deg, #073354 0%, #0b7641 100%);
}

.brand-selection-section h2,
.brand-selection-section .eyebrow {
  color: #ffffff;
}

.brand-selection-section .eyebrow {
  color: #ffbd12;
}

.brand-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.brand-check-grid span {
  position: relative;
  padding: 18px 18px 18px 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
}

.brand-check-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffbd12;
}

.brand-disclaimer-section {
  background: #fff8df;
  border-top: 1px solid #f4dd9d;
  border-bottom: 1px solid #f4dd9d;
}

.brand-disclaimer-section h2 {
  font-size: clamp(26px, 2.5vw, 36px);
}

.brand-disclaimer-section p {
  max-width: 1050px;
  margin: 0;
}

.brands-cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: #ffffff;
}

.brands-cta-section div {
  max-width: 780px;
}

.brands-page-copy .eyebrow,
.brands-cta-section .eyebrow {
  color: #ffbd12;
}

@media (max-width: 1180px) {
  .brands-page-hero,
  .brands-intro-section,
  .brand-selection-section {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .brands-page-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brand-check-grid {
    grid-template-columns: 1fr;
  }

  .brands-cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .brands-cta-section .hero-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .brands-page-copy h1 {
    font-size: 40px;
  }

  .brands-page-copy p:not(.eyebrow),
  .brand-category-heading p:not(.eyebrow),
  .brands-cta-section p,
  .brand-disclaimer-section p {
    font-size: 16px;
  }

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

  .brand-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brands-intro-section,
  .brand-category-section,
  .brand-selection-section,
  .brand-disclaimer-section,
  .brands-cta-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}
/* Shared responsive header fixes */
@media (max-width: 1180px) {
  .benefit-row {
    padding-left: clamp(190px, 24vw, 260px);
    padding-right: 24px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 18px 24px 20px;
  }

  .primary-menu {
    flex-wrap: wrap;
    gap: 14px 28px;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .primary-menu a {
    font-size: 17px;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .header-actions .phone-button {
    font-size: 20px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
  }

  .promo-bar {
    min-height: auto;
    padding: 8px 14px;
  }

  .promo-bar p {
    line-height: 1.35;
  }

  .benefit-row {
    gap: 12px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 92px 18px 16px;
  }

  .benefit {
    font-size: 14px;
    justify-content: flex-start;
    white-space: normal;
  }

  .benefit svg {
    height: 22px;
    width: 22px;
  }

  .top-logo-link {
    height: 82px;
    left: 18px;
    top: 8px;
    width: 140px;
  }

  .top-logo-link img {
    height: 80px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: auto;
    padding: 12px 18px 16px;
  }

  .menu-toggle {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
  }

  .header-actions {
    display: grid;
    gap: 8px;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .header-actions .phone-button,
  .header-actions .contact-button {
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    min-width: 0;
    padding: 9px 10px;
    width: 100%;
  }

  .header-actions .phone-button {
    font-size: 15px;
  }

  .header-actions .contact-button {
    font-size: 14px;
  }

  .header-actions .phone-button svg,
  .header-actions .contact-button svg {
    flex: 0 0 auto;
    height: 21px;
    width: 21px;
  }

  .primary-menu {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 39, 28, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    grid-row: 3;
    overflow: hidden;
    width: 100%;
  }

  .site-header.menu-open .primary-menu {
    display: flex;
  }

  .primary-menu a {
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    padding: 14px 16px;
    white-space: normal;
  }

  .primary-menu a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 380px) {
  .header-actions .phone-button,
  .header-actions .contact-button {
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .header-actions .phone-button svg,
  .header-actions .contact-button svg {
    height: 19px;
    width: 19px;
  }
}
@media (max-width: 920px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 22px;
  }

  .quote-card {
    border-radius: 14px;
    justify-self: stretch;
    max-width: 620px;
    padding: 34px 24px;
    width: 100%;
  }
}
/* Desktop header logo clearance */
@media (min-width: 921px) {
  .main-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-left: clamp(310px, 22vw, 360px);
    padding-right: 18px;
  }

  .primary-menu {
    gap: clamp(18px, 2vw, 36px);
    min-width: 0;
  }

  .phone-button,
  .contact-button {
    padding-left: 18px;
    padding-right: 18px;
  }

  .phone-button {
    font-size: clamp(20px, 1.7vw, 24px);
  }
}

@media (min-width: 921px) and (max-width: 1280px) {
  .benefit-row {
    padding-left: 300px;
    padding-right: 24px;
  }

  .benefit {
    font-size: 15px;
    white-space: normal;
  }

  .main-nav {
    gap: 22px;
    padding-left: 300px;
  }

  .primary-menu a {
    font-size: 17px;
  }

  .header-actions {
    gap: 8px;
  }

  .phone-button,
  .contact-button {
    min-height: 48px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .phone-button {
    font-size: 19px;
  }

  .contact-button {
    font-size: 16px;
  }
}
/* MacBook/laptop header and hero refinements */
@media (min-width: 921px) {
  .benefit-row {
    padding-left: clamp(320px, 24vw, 380px);
  }
}

@media (max-width: 1280px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .quote-card {
    justify-self: stretch;
    max-width: 680px;
    width: 100%;
  }
}

