:root {
  --sp-black: #1a1a1a;
  --sp-ink: #222;
  --sp-muted: #5c5c5c;
  --sp-line: #e6e6e6;
  --sp-bg: #ffffff;
  --sp-bg-soft: #f5f5f5;
  --sp-yellow: #ffcd00;
  --sp-yellow-hover: #f0c000;
  --sp-dark: #0f0f0f;
  --header-h: 72px;
  --promo-h: 40px;
  --font-sans: "Open Sans", "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--sp-ink);
  background: var(--sp-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; background: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.container.narrow {
  width: min(820px, calc(100% - 40px));
}

/* Promo */
.promo-bar {
  background: var(--sp-black);
  color: #fff;
  text-align: center;
  font-size: 13px;
  min-height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}
.promo-bar p { margin: 0; }
.promo-bar a {
  color: var(--sp-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--sp-line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.header-inner {
  height: var(--header-h);
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-mark-lg {
  width: 160px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--sp-black);
}
.logo-full {
  width: auto;
  height: 72px;
  object-fit: contain;
  display: block;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  flex: 1;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-black);
}
.nav-link:hover { color: #000; }
.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .7;
}
.nav-item { position: relative; }
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--sp-line);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .18s ease;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}
.mega a:hover { background: var(--sp-bg-soft); }
.mega a.is-current { color: #0066cc; font-weight: 600; }
.mega-wide { min-width: 260px; }
.mega-group { padding: 4px 0 8px; border-bottom: 1px solid var(--sp-line); margin-bottom: 4px; }
.mega-parent {
  font-weight: 700 !important;
  position: relative;
  padding-left: 32px !important;
}
.mega-parent::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--sp-muted);
  border-radius: 50%;
  transform: translateY(-50%);
}
.mega-child {
  padding-left: 36px !important;
  color: var(--sp-muted);
  position: relative;
}
.mega-child::before {
  content: "—";
  position: absolute;
  left: 18px;
  color: var(--sp-line);
  font-weight: 400;
}
.mega-child:hover,
.mega-child.is-current { color: #0066cc; }
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone {
  display: none;
  font-weight: 700;
  font-size: 14px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
}
.nav-mobile {
  border-top: 1px solid var(--sp-line);
  padding: 12px 20px 20px;
  display: none;
  gap: 4px;
  background: #fff;
}
.nav-mobile.is-open {
  display: grid;
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--sp-line);
}
.nav-mobile .btn { margin-top: 12px; border: 0; text-align: center; }

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sp-black);
  transition: transform .2s ease, opacity .2s ease;
}

@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .phone { display: inline; }
  .menu-toggle { display: none; }
  .nav-mobile,
  .nav-mobile.is-open { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow {
  background: var(--sp-yellow);
  color: var(--sp-black);
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}
.btn-yellow:hover { background: var(--sp-yellow-hover); }
.btn-blue {
  background: #0071b9;
  color: #fff;
  border-radius: 10px;
  box-shadow: none;
}
.btn-blue:hover { background: #005f9b; color: #fff; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 42%, rgba(0,0,0,.15) 100%),
    linear-gradient(0deg, rgba(0,0,0,.35), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 72px;
  animation: heroIn .9s ease both;
}
.hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
.hero-sub {
  margin: 0 0 20px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  opacity: .95;
}
.hero-bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 600;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sp-yellow);
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.15);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section { padding: 88px 0; }
.section-title {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--sp-black);
}
.section-title.center { text-align: center; }

.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid.three { grid-template-columns: 1fr; }
.card-grid.four { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .card-grid.four { grid-template-columns: repeat(4, 1fr); }
}

.info-card {
  text-align: center;
  padding: 8px 8px 0;
}
.info-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.info-card p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 15px;
}
.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sp-yellow);
  color: var(--sp-black);
  display: grid;
  place-items: center;
}
.icon-circle svg { width: 36px; height: 36px; }

/* Premium split */
.premium { padding: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
.split-media {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.split-copy {
  background: var(--sp-bg-soft);
  padding: 56px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.split-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.split-copy p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 16px;
  max-width: 42ch;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr 1fr; }
  .split-copy { padding: 72px 64px; }
}

/* Quote */
.quote { background: #111; color: #fff; }
.quote-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .quote-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 56px; }
}
.quote-intro h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.quote-intro .lead {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}
.quote-intro .muted {
  margin: 0 0 28px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.expert-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 20px 22px;
  background: rgba(255,255,255,.04);
}
.expert-card h3 { margin: 0 0 6px; font-size: 18px; }
.expert-card p { margin: 0 0 10px; color: rgba(255,255,255,.7); }
.phone-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sp-yellow);
}

.quote-form {
  background: #fff;
  color: var(--sp-ink);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
@media (min-width: 600px) {
  .quote-form { padding: 32px 28px; }
}
.quote-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input:not([type]) {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form input:focus {
  border-color: var(--sp-black);
  box-shadow: 0 0 0 3px rgba(255,205,0,.35);
}
.form-row.two {
  display: grid;
  gap: 0 14px;
}
@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.own-home {
  border: 0;
  margin: 4px 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.own-home legend {
  width: 100%;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}
.radio {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  font-weight: 500 !important;
}
.legal {
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--sp-muted);
}
.form-msg {
  margin: 12px 0 0;
  text-align: center;
  font-weight: 600;
  color: #0a7a3e;
}

/* Battery */
.battery { background: var(--sp-bg-soft); }
.battery-head {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}
.battery-visual {
  min-height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
@media (min-width: 900px) {
  .battery-head {
    grid-template-columns: 1fr 1.1fr;
    align-items: end;
  }
  .battery-visual { min-height: 280px; }
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.feature-card p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 14px;
}

/* Why */
.why-card {
  padding: 8px 4px;
}
.why-num {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--sp-black);
  background: var(--sp-yellow);
  padding: 4px 10px;
  border-radius: 999px;
}
.why-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.why-card p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 14px;
}

/* FAQ */
.faq { background: #fafafa; }
.accordion details {
  background: #fff;
  border: 1px solid var(--sp-line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 500;
  color: var(--sp-muted);
}
.accordion details[open] summary::after { content: "–"; }
.acc-body {
  padding: 0 20px 20px;
  color: var(--sp-muted);
  font-size: 15px;
}
.acc-body p { margin: 0 0 12px; }
.acc-body ol { margin: 0; padding-left: 18px; }
.acc-body li { margin-bottom: 10px; }
.faq-cta {
  margin-top: 36px;
  text-align: center;
}
.faq-cta p {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 18px;
  color: var(--sp-black);
}

/* Footer */
.site-footer {
  background: var(--sp-dark);
  color: rgba(255,255,255,.82);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-tag { margin: 12px 0 0; color: rgba(255,255,255,.55); }
.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.site-footer a:hover { color: var(--sp-yellow); }
.site-footer .footer-email {
  margin-top: 2px;
  word-break: break-all;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}
.site-footer .footer-email:hover { color: var(--sp-yellow); }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-full { filter: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0 28px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Inner pages: History / Licenses */
.page-hero {
  background:
    linear-gradient(135deg, rgba(26,26,26,.88), rgba(15,15,15,.72)),
    radial-gradient(ellipse at 20% 20%, rgba(255,205,0,.25), transparent 55%),
    #1a1a1a;
  color: #fff;
  padding: 72px 0 64px;
}
.page-hero-compact { padding: 56px 0 48px; }
.page-hero-inner .eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-yellow);
}
.page-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.page-hero .lead {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}
.page-section { padding: 64px 0 40px; }
.section-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sp-muted);
}
.text-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: #0066cc;
}
.text-link:hover { text-decoration: underline; }

/* History page — image + text rows like us.sunpower.com/company/history */
.history-hero {
  position: relative;
  min-height: min(68vh, 620px);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 64px;
}
.history-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.72) 100%);
}
.history-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.history-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.history-hero .lead {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  max-width: 560px;
}
.history-row {
  padding: 64px 0;
  background: #fff;
}
.history-row-alt { background: #fff; }
.history-row-cream { background: #faf8f4; }
.history-row-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .history-row-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .history-row-reverse .history-media { order: 2; }
  .history-row-reverse .history-copy { order: 1; }
}
.history-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sp-bg-soft);
}
.history-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-copy .section-label {
  color: #0071b9;
}
.history-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--sp-black);
}
.history-copy p,
.history-copy li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sp-muted);
}
.history-copy p { margin: 0 0 14px; }
.history-copy ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.history-copy li { margin-bottom: 10px; }
.history-copy strong { color: var(--sp-ink); }
.history-copy .btn { margin-top: 12px; }

.cta-band {
  background: var(--sp-bg-soft);
  padding: 56px 0;
  margin-top: 0;
}
.cta-band-inner {
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--sp-black);
}
.license-list { display: grid; gap: 0; }
.license-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--sp-line);
}
.license-item:last-child { border-bottom: 0; }
.license-item h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sp-black);
}
.license-entity {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--sp-ink);
}
.license-item p {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--sp-muted);
  line-height: 1.55;
}

/* Licenses page — match us.sunpower.com/licenses */
.licenses-hero {
  position: relative;
  min-height: min(52vh, 480px);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 72px 0 56px;
}
.licenses-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(314deg, rgba(0, 0, 0, 0) 17%, rgb(0, 0, 0) 59%);
}
.licenses-hero-inner {
  position: relative;
  z-index: 1;
}
.licenses-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.licenses-page {
  padding: 72px 0 96px;
  background: #fff;
}
.licenses-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
@media (min-width: 900px) {
  .licenses-inner { width: min(1280px, calc(100% - 80px)); }
}
@media (min-width: 1200px) {
  .licenses-inner { width: min(1280px, calc(100% - 200px)); }
}
.licenses-intro {
  width: min(100%, 760px);
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  column-gap: 24px;
  align-items: stretch;
  background: none;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.licenses-rule {
  display: block;
  width: 4px;
  background: #f08b23;
  border-radius: 2px;
}
.licenses-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #404040;
  max-width: none;
}
@media (min-width: 900px) {
  .licenses-intro { margin-bottom: 88px; }
}
.license-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 56px;
}
@media (min-width: 768px) {
  .license-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .license-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px 80px;
  }
}
.license-card {
  padding: 0 0 28px;
  border-bottom: 1px solid #dfe3e8;
  min-width: 0;
}
.license-state {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #404040;
}
.license-entry { margin-top: 18px; }
.license-entry:first-of-type { margin-top: 0; }
.license-company {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 700;
  color: #000;
}
.license-location,
.license-line {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 400;
  color: #404040;
}
.license-line:last-child { margin-bottom: 0; }
.cta-band-dark {
  background: #1a1a1a;
  padding: 72px 0;
}
.cta-band-dark h2 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav-link.is-active { color: #000; }
