:root {
  --ink: #081d3a;
  --ink-2: #12345b;
  --navy: #0a2347;
  --blue: #0878d1;
  --cyan: #18b8d8;
  --lime: #b9e827;
  --lime-dark: #91bd00;
  --white: #ffffff;
  --paper: #f4f7fa;
  --mist: #e7edf3;
  --line: #d4dee8;
  --muted: #627289;
  --shadow: 0 20px 54px rgba(8, 29, 58, 0.12);
  --radius: 6px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
select,
input[type="range"],
input[type="checkbox"] {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 4.2rem;
  line-height: 0.98;
  font-weight: 700;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 3px;
  padding: 14px 22px;
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #d0f74f;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
}

.button-large {
  min-height: 58px;
  padding: 18px 26px;
}

.button-full {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, top 220ms ease, right 220ms ease, left 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 34px rgba(8, 29, 58, 0.1);
  color: var(--ink);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  height: 52px;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 47px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand-copy strong,
.site-header.is-menu-open .brand-copy strong {
  color: var(--ink);
}

.site-header.is-scrolled .brand-copy small,
.site-header.is-menu-open .brand-copy small {
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a,
.header-mail {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-mail {
  opacity: 0.82;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: currentColor;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media {
  background-image: url("./assets/energy-switch-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 19, 39, 0.93) 0%, rgba(5, 22, 45, 0.72) 42%, rgba(5, 22, 45, 0.08) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 152px 102px;
}

.hero-copy {
  width: min(780px, 68%);
}

.hero h1 {
  margin-bottom: 28px;
  font-size: 6.35rem;
  font-weight: 700;
  line-height: 0.88;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-block: 8px 5px;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link-light {
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
  font-weight: 700;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-market-card {
  position: absolute;
  top: 51%;
  right: 0;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 24px 22px 20px;
  background: rgba(8, 29, 58, 0.42);
  box-shadow: 0 24px 60px rgba(2, 14, 30, 0.22);
  backdrop-filter: blur(14px);
  transform: translateY(-36%);
}

.market-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
}

.market-card-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(185, 232, 39, 0.12);
}

.hero-market-card > strong {
  display: block;
  color: var(--white);
  font-size: 4.6rem;
  line-height: 0.84;
}

.hero-market-card > p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.market-card-bars {
  display: flex;
  height: 36px;
  align-items: end;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 14px;
  padding-bottom: 6px;
}

.market-card-bars span {
  width: 100%;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.32);
}

.market-card-bars span:nth-child(1) { height: 42%; }
.market-card-bars span:nth-child(2) { height: 74%; background: var(--cyan); }
.market-card-bars span:nth-child(3) { height: 58%; }
.market-card-bars span:nth-child(4) { height: 90%; background: var(--lime); }
.market-card-bars span:nth-child(5) { height: 66%; }

.market-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.53rem;
  font-weight: 700;
}

.provider-band {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.provider-band-inner {
  display: grid;
  min-height: 112px;
  grid-template-columns: 245px 1fr;
  align-items: center;
  gap: 34px;
}

.provider-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding-right: 30px;
}

.status-dot {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime-dark);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(145, 189, 0, 0.35);
  border-radius: inherit;
  content: "";
}

.provider-intro strong,
.provider-intro span {
  display: block;
}

.provider-intro strong {
  font-size: 0.84rem;
}

.provider-intro span {
  color: var(--muted);
  font-size: 0.68rem;
}

.provider-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.provider-pill {
  display: grid;
  grid-template-columns: 7px 1fr;
  align-items: center;
  column-gap: 10px;
}

.provider-color {
  width: 7px;
  height: 44px;
  border-radius: 2px;
  background: var(--provider-color);
}

.provider-logo-wrap {
  display: flex;
  min-width: 0;
  height: 31px;
  align-items: center;
}

.provider-logo {
  width: auto;
  max-width: 112px;
  height: auto;
  max-height: 27px;
  object-fit: contain;
  object-position: left center;
}

.provider-logo-wrap strong {
  font-size: 0.78rem;
}

.editorial-intro {
  padding: 150px 0 158px;
  background: var(--white);
}

.editorial-intro h2 {
  max-width: 1130px;
  color: var(--ink);
  font-size: 5.75rem;
  font-weight: 600;
  line-height: 0.94;
}

.editorial-media {
  display: inline-block;
  width: 156px;
  height: 66px;
  border-radius: 6px;
  overflow: hidden;
  vertical-align: 0.08em;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.editorial-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid var(--line);
  margin-top: 68px;
  padding-bottom: 28px;
}

.editorial-footer p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.provider-pill strong {
  font-size: 0.78rem;
}

.provider-pill span {
  color: var(--muted);
  font-size: 0.59rem;
}

.comparison-section {
  padding: 118px 0 122px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.96rem;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.85fr);
  align-items: stretch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calculator-panel {
  padding: 42px 44px 46px;
  background: var(--white);
}

.panel-kicker,
.recommendation-topline {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 34px;
  padding: 4px;
  background: var(--paper);
}

.segment {
  min-height: 44px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.segment.is-active {
  background: var(--ink);
  color: var(--white);
}

.energy-segmented {
  margin-top: 10px;
}

.field-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field-label strong {
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.field-label small {
  color: var(--muted);
  font-size: 0.76rem;
}

#kwhRange {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  appearance: none;
  background: var(--mist);
  accent-color: var(--blue);
}

#kwhRange::-webkit-slider-thumb {
  width: 23px;
  height: 23px;
  border: 4px solid var(--white);
  border-radius: 50%;
  appearance: none;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 5px 12px rgba(8, 120, 209, 0.28);
}

#kwhRange::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 5px 12px rgba(8, 120, 209, 0.28);
}

.consumption-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 19px 0 32px;
}

.consumption-presets button,
.filter-pills button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.consumption-presets button.is-active,
.filter-pills button.is-active {
  border-color: var(--blue);
  background: #e9f5fc;
  color: #055a9c;
}

.toggle-list {
  border-block: 1px solid var(--line);
}

.toggle-row {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.toggle-row:last-child {
  border-bottom: 0;
}

.toggle-info strong,
.toggle-info span {
  display: block;
}

.toggle-info strong {
  font-size: 0.83rem;
}

.toggle-info span {
  color: var(--muted);
  font-size: 0.68rem;
}

.switch {
  position: relative;
  display: block;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.slider {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #b7c4d0;
  transition: background-color 180ms ease;
}

.slider::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked + .slider {
  background: var(--blue);
}

.switch input:checked + .slider::after {
  transform: translateX(20px);
}

.switch input:focus-visible + .slider {
  outline: 3px solid rgba(8, 120, 209, 0.25);
}

.provider-filter {
  margin-top: 28px;
}

.control-label {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-pills button {
  min-width: 62px;
  padding: 7px 11px;
}

.recommendation-panel {
  display: flex;
  flex-direction: column;
  padding: 42px 42px 38px;
  background: var(--navy);
  color: var(--white);
}

.recommendation-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.rec-header {
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 24px;
}

.rec-header h3 {
  margin-bottom: 9px;
  font-size: 1.85rem;
  line-height: 1.12;
}

.rec-header p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.rec-main-price {
  padding: 28px 0 24px;
}

.rec-main-price span,
.rec-main-price strong {
  display: block;
}

.rec-main-price span,
.rec-pricing span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
}

.rec-main-price strong {
  margin-top: 6px;
  color: var(--lime);
  font-size: 4.4rem;
  line-height: 1;
}

.rec-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
}

.rec-pricing div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 18px;
}

.rec-pricing span,
.rec-pricing strong {
  display: block;
}

.rec-pricing strong {
  margin-top: 3px;
  font-size: 1.15rem;
}

.rec-reason {
  flex: 1;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.estimate-note {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  line-height: 1.5;
}

.programs-section {
  padding: 116px 0;
  background: var(--white);
}

.filter-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.filter-row h2 {
  font-size: 3.8rem;
}

.sort-select {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-select label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.sort-select select {
  min-width: 185px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 34px 0 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

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

.program-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-top: 4px solid var(--provider-color);
  border-radius: var(--radius);
  padding: 25px 24px 21px;
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.program-card:hover {
  box-shadow: 0 16px 38px rgba(8, 29, 58, 0.1);
  transform: translateY(-4px);
}

.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.provider-name {
  color: var(--provider-color);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.program-rank {
  color: #9aa8b8;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.program-card h3 {
  min-height: 48px;
  margin-bottom: 22px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.price-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 10px;
  border-block: 1px solid var(--line);
  padding: 16px 0;
}

.price-row span,
.price-row strong {
  display: block;
}

.price-row span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.61rem;
}

.price-row strong {
  overflow-wrap: anywhere;
  font-size: 0.86rem;
}

.price-row div:first-child strong {
  color: var(--blue);
  font-size: 1.22rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 17px;
}

.tag {
  border-radius: 2px;
  padding: 5px 7px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
}

.program-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.55;
}

.market-analysis {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  margin-top: 86px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.analysis-chart {
  padding: 36px 38px 40px;
  background: var(--paper);
}

.analysis-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.analysis-title span {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.analysis-title small {
  color: var(--muted);
  font-size: 0.64rem;
}

.cost-chart {
  display: grid;
  gap: 15px;
}

.bar-line {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) minmax(180px, 1.6fr) 75px;
  align-items: center;
  gap: 14px;
}

.bar-name,
.bar-value {
  font-size: 0.64rem;
  font-weight: 700;
}

.bar-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-value {
  text-align: right;
}

.bar-track {
  height: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #dce5ed;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--provider-color);
}

.analysis-insights {
  padding: 36px 34px;
  background: var(--navy);
  color: var(--white);
}

.analysis-insights h3 {
  margin-bottom: 24px;
  font-size: 1.65rem;
  line-height: 1.08;
}

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

.analysis-insights li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 13px 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.69rem;
}

.analysis-insights li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.comparison-table-toggle {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.comparison-table-toggle summary {
  padding: 17px 20px;
  font-size: 0.76rem;
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.7rem;
}

th {
  background: var(--paper);
  color: var(--muted);
  font-weight: 800;
}

tbody tr {
  border-left: 3px solid var(--provider-color);
}

.process-section {
  display: grid;
  min-height: 770px;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}

.process-image {
  min-height: 620px;
  background-image: url("./assets/company-handshake.png");
  background-position: center;
  background-size: cover;
}

.process-content {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(42px, 7vw, 112px);
  color: var(--white);
}

.process-content h2 {
  max-width: 520px;
  margin-bottom: 24px;
}

.process-lead {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
}

.process-steps li > span {
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.process-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.process-content .button {
  align-self: flex-start;
}

.application-section {
  padding: 124px 0;
  background: var(--paper);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: start;
  gap: clamp(50px, 8vw, 118px);
}

.application-copy {
  padding-top: 30px;
}

.application-copy h2 {
  margin-bottom: 28px;
  font-size: 4.4rem;
}

.application-copy > p {
  color: var(--muted);
  font-size: 0.91rem;
}

.selected-plan-summary {
  border-left: 4px solid var(--lime-dark);
  margin-top: 34px;
  padding: 12px 0 12px 18px;
}

.selected-plan-summary span,
.selected-plan-summary strong {
  display: block;
}

.selected-plan-summary span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.65rem;
}

.selected-plan-summary strong {
  font-size: 0.85rem;
}

.application-contact {
  margin-top: 34px;
  font-size: 0.72rem;
}

.application-contact span,
.application-contact a {
  display: block;
}

.application-contact span {
  color: var(--muted);
}

.application-contact a {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.lead-form {
  border-radius: var(--radius);
  padding: 38px 40px 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.form-heading span {
  font-family: Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.form-heading small {
  color: var(--muted);
  font-size: 0.59rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
}

.form-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: none;
  padding: 0 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 120, 209, 0.1);
}

.form-span {
  grid-column: 1 / -1;
}

.form-checks {
  display: grid;
  gap: 9px;
  margin: 23px 0 17px;
}

.form-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
}

.form-checks input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.privacy-note {
  margin-bottom: 19px;
  color: #7c8a9b;
  font-size: 0.59rem;
}

.form-status {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
}

.faq-section {
  padding: 112px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
  gap: 90px;
}

.faq-layout h2 {
  font-size: 4rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 650px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  background: #06162d;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 0.9fr;
  gap: 56px;
  padding: 72px 0 58px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo > img {
  width: 52px;
  height: 48px;
  object-fit: contain;
}

.footer-logo > span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-logo small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-main a:hover:not(.button) {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
}

.is-hidden {
  display: none !important;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-mail {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    color: var(--ink);
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .mobile-nav {
    max-height: calc(100svh - 82px);
    border-top: 1px solid var(--line);
    padding: 16px 24px 24px;
    opacity: 1;
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    padding: 15px 4px;
    font-family: Arial, sans-serif;
    font-weight: 700;
  }

  .provider-band-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 24px;
  }

  .hero-market-card {
    right: 18px;
    width: 220px;
  }

  .editorial-intro h2 {
    font-size: 4.8rem;
  }

  .provider-intro {
    border-right: 0;
    padding-right: 0;
  }

  .calculator-layout,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-layout {
    gap: 48px;
  }

  .application-copy {
    max-width: 720px;
    padding-top: 0;
  }

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

  .process-content {
    padding-inline: 52px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (min-width: 821px) {
  .site-header:not(.is-scrolled):not(.is-menu-open) {
    top: 16px;
    right: 16px;
    left: 16px;
    border-radius: 8px 8px 0 0;
  }

  .hero {
    min-height: calc(100svh - 32px);
    margin: 16px 16px 0;
    border-radius: 8px;
  }

  .provider-band {
    margin-top: -68px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  h2 {
    font-size: 3.5rem;
  }

  .filter-row h2 {
    font-size: 3rem;
  }

  .application-copy h2 {
    font-size: 3.5rem;
  }

  .faq-layout h2 {
    font-size: 3.3rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background: rgba(5, 19, 39, 0.66);
  }

  .hero-inner {
    padding-block: 132px 70px;
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-market-card {
    display: none;
  }

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

  .section-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .editorial-intro {
    padding: 96px 0 104px;
  }

  .editorial-intro h2 {
    font-size: 4.1rem;
  }

  .editorial-media {
    width: 116px;
    height: 50px;
  }

  .editorial-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-top: 44px;
  }

  .comparison-section,
  .programs-section,
  .application-section,
  .faq-section {
    padding-block: 86px;
  }

  .market-analysis {
    grid-template-columns: 1fr;
  }

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

  .process-image {
    min-height: 420px;
    background-position: 68% center;
  }

  .process-content {
    max-width: none;
    padding: 72px 32px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    height: 48px;
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.4rem;
  }

  .mobile-nav {
    inset-block-start: 72px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    padding-block: 115px 54px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 4.05rem;
    line-height: 0.88;
  }

  .hero-lead {
    font-size: 0.91rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-proof {
    gap: 11px 17px;
    margin-top: 32px;
  }

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

  h2 {
    font-size: 2.75rem;
  }

  .filter-row > div {
    min-width: 0;
  }

  .filter-row h2 {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .application-copy h2 {
    font-size: 2.9rem;
  }

  .faq-layout h2 {
    font-size: 2.7rem;
  }

  .editorial-intro h2 {
    font-size: 3.25rem;
  }

  .editorial-media {
    width: 90px;
    height: 40px;
  }

  .calculator-panel,
  .recommendation-panel,
  .lead-form {
    padding: 28px 20px;
  }

  .consumption-presets {
    grid-template-columns: 1fr 1fr;
  }

  .field-label strong {
    font-size: 1.85rem;
  }

  .rec-main-price strong {
    font-size: 3.2rem;
  }

  .filter-row {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-select {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
  }

  .sort-select select {
    min-width: 0;
    width: 100%;
  }

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

  .program-card {
    min-height: 0;
  }

  .market-analysis {
    margin-top: 58px;
  }

  .analysis-chart,
  .analysis-insights {
    padding: 28px 20px;
  }

  .bar-line {
    grid-template-columns: 94px 1fr 62px;
    gap: 8px;
  }

  .process-image {
    min-height: 330px;
  }

  .process-content {
    padding: 60px 22px;
  }

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

  .form-span {
    grid-column: auto;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .faq-layout {
    gap: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-cta {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 16px;
  }
}

/* Client-requested content and application flow */
.header-inner {
  grid-template-columns: minmax(210px, 1fr) auto;
}

.brand-mark {
  width: 56px;
  height: 54px;
}

.brand-copy strong {
  font-size: 1.42rem;
}

.header-actions {
  gap: 10px;
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 9px 14px;
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.header-cta:hover,
.header-cta-primary {
  background: var(--ink);
  color: var(--white);
}

.header-cta-primary:hover {
  background: var(--purple);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-inline: 5px;
  font-size: 0.68rem;
  font-weight: 800;
}

.language-switch button {
  border: 0;
  padding: 4px 2px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.language-switch button.is-active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-section {
  padding: 128px 0;
  background: #fffdf8;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.company-heading {
  position: sticky;
  top: 120px;
}

.company-heading h2 {
  max-width: 620px;
  font-size: clamp(3.3rem, 5.5vw, 5rem);
}

.company-copy {
  padding-top: 52px;
}

.company-copy > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.company-highlight {
  border: 2px solid var(--ink);
  margin-top: 42px;
  padding: 30px;
  background: #dff4ed;
  box-shadow: 8px 8px 0 var(--ink);
}

.company-highlight strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.company-highlight p {
  margin: 0;
  color: var(--ink);
}

.supply-section {
  padding: 118px 0 126px;
  background: var(--paper);
}

.supply-heading {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
}

.supply-heading h2 {
  margin-bottom: 22px;
}

.supply-heading > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

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

.supply-card {
  position: relative;
  min-height: 470px;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(35, 36, 43, 0.18);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.supply-card:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(5px, 5px);
}

.supply-card::after {
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(transparent, rgba(10, 18, 31, 0.92));
  content: "";
}

.supply-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supply-card > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  color: var(--white);
}

.supply-card strong {
  max-width: 210px;
  font-size: 1.6rem;
  line-height: 1.05;
}

.supply-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.supply-card i {
  color: var(--yellow);
  font-style: normal;
}

.process-image {
  background-position: center;
  filter: none;
}

.application-shell {
  max-width: 1040px;
  margin-inline: auto;
}

.application-intro {
  max-width: 820px;
  margin-bottom: 52px;
}

.application-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
}

.application-intro > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(35, 36, 43, 0.72);
}

.lead-form-wide {
  width: 100%;
  padding: 50px;
}

.wizard-heading {
  align-items: center;
}

.wizard-progress {
  display: flex;
  align-items: center;
  gap: 7px;
}

.wizard-progress i {
  width: 30px;
  height: 5px;
  background: var(--mist);
  transition: background-color 180ms ease;
}

.wizard-progress i.is-active {
  background: var(--purple);
}

.wizard-status {
  min-height: 24px;
  margin: -8px 0 24px;
  color: #a23f32;
  font-size: 0.72rem;
  font-weight: 700;
}

.request-steps {
  display: grid;
  gap: 34px;
  margin-bottom: 42px;
}

.request-step {
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0 0 34px;
}

.request-step[hidden],
.wizard-panel[hidden] {
  display: none;
}

.request-step legend {
  margin-bottom: 16px;
  font-weight: 800;
}

.request-step legend span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

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

.choice-option {
  position: relative;
}

.choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-option span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 12px 16px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.choice-option input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.choice-option input:focus-visible + span {
  outline: 3px solid rgba(108, 59, 234, 0.28);
  outline-offset: 2px;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.wizard-actions-end {
  justify-content: flex-end;
}

.wizard-back {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 8px 2px;
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.wizard-panel {
  animation: wizard-panel-in 260ms ease both;
}

.wizard-final-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  padding-bottom: 18px;
}

.wizard-final-heading strong {
  font-size: 1.35rem;
}

.wizard-final-heading small {
  color: var(--muted);
  font-size: 0.65rem;
}

.wizard-submit-actions {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 26px;
}

@keyframes wizard-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.file-field input[type="file"] {
  min-height: 72px;
  padding: 16px;
  background: var(--paper);
}

.file-field small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.65rem;
}

.form-checks a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status.is-success {
  border: 1px solid #24705c;
  margin-top: 20px;
  padding: 18px;
  background: #dff4ed;
  color: #164f41;
  font-size: 0.8rem;
}

.contact-section {
  padding: 112px 0;
  background: #fffdf8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-heading h2 {
  max-width: 540px;
  margin-bottom: 36px;
  font-size: clamp(3.3rem, 5.6vw, 5rem);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 2px solid var(--ink);
  padding: 24px 0;
}

.contact-card > span {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card > a {
  margin-bottom: 6px;
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-card > p {
  margin: 16px 0 0;
  color: var(--muted);
}

.useful-phones p {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 16px 0;
}

.useful-phones p strong {
  font-size: 0.82rem;
}

.useful-phones p a {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-cookie-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.footer-cookie-button:hover {
  color: var(--yellow);
}

@media (max-width: 1100px) {
  .company-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .company-heading {
    position: static;
  }

  .company-copy {
    max-width: 800px;
    padding-top: 0;
  }

  .supply-card {
    min-height: 410px;
  }
}

@media (max-width: 900px) {
  .header-cta:first-of-type {
    display: none;
  }

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

  .supply-card {
    min-height: 380px;
  }
}

@media (max-width: 700px) {
  .brand-copy small,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 48px;
    height: 46px;
  }

  .company-section,
  .supply-section,
  .contact-section {
    padding-block: 82px;
  }

  .company-heading h2,
  .contact-heading h2 {
    font-size: 3rem;
  }

  .choice-grid-three,
  .choice-grid-four {
    grid-template-columns: 1fr;
  }

  .lead-form-wide {
    padding: 30px 20px;
  }

  .wizard-actions,
  .wizard-final-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .application-intro h2 {
    font-size: 3.25rem;
  }

  .useful-phones p {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ogo-inspired editorial direction */
:root {
  --ink: #23242b;
  --ink-2: #35363d;
  --navy: #29244f;
  --blue: #6c3bea;
  --cyan: #45b8a8;
  --lime: #ffdf3f;
  --lime-dark: #29244f;
  --paper: #f7f4ee;
  --mist: #eee9df;
  --line: rgba(35, 36, 43, 0.14);
  --muted: #68676f;
  --purple: #6c3bea;
  --coral: #ff705d;
  --mint: #45b8a8;
  --yellow: #ffdf3f;
  --shadow: 0 24px 80px rgba(53, 42, 91, 0.14);
  --radius: 20px;
  --shell: min(1240px, calc(100% - 64px));
}

body {
  overflow-x: hidden;
  background: var(--paper);
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.025em;
}

h2 {
  font-family: Arial, sans-serif;
  font-weight: 400;
  line-height: 0.96;
}

.eyebrow {
  color: var(--purple);
  letter-spacing: 0.11em;
}

.eyebrow::before {
  width: 38px;
}

.button {
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 800;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

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

.button-primary:hover {
  background: #ffe868;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.site-header,
.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
}

.brand-copy strong,
.site-header:not(.is-scrolled):not(.is-menu-open) .brand-copy strong {
  color: var(--ink);
}

.brand-copy small,
.site-header:not(.is-scrolled):not(.is-menu-open) .brand-copy small {
  color: var(--muted);
}

.desktop-nav a,
.header-mail {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.desktop-nav a::after {
  background: var(--purple);
}

.hero {
  min-height: 850px;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  display: none;
}

.hero-media {
  z-index: 1;
  background: linear-gradient(115deg, rgba(16, 24, 38, 0.22) 0 42%, transparent 42%);
  transform: none;
}

.hero-shade {
  z-index: 2;
  background: linear-gradient(90deg, rgba(10, 18, 31, 0.86) 0%, rgba(10, 18, 31, 0.7) 48%, rgba(10, 18, 31, 0.22) 100%);
}

.hero-inner {
  display: grid;
  z-index: 3;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 30px;
  padding-block: 150px 74px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: auto;
  max-width: 720px;
}

.hero .eyebrow-light {
  color: var(--ink);
}

.hero h1 {
  margin-bottom: 26px;
  font-family: Arial, sans-serif;
  font-size: clamp(5.1rem, 7.3vw, 7.5rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: -10px;
  bottom: -4px;
  left: -8px;
  z-index: -1;
  height: 30%;
  background: #0b489e;
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  padding-top: 32px;
}

.text-link-light {
  color: var(--white);
}

.hero-proof {
  color: rgba(255, 255, 255, 0.76);
}

.hero-proof span::before {
  background: var(--yellow);
  box-shadow: 0 0 0 1px var(--ink);
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 610px;
}

.hero-orbit {
  position: absolute;
  top: 54px;
  right: 22px;
  width: 520px;
  height: 520px;
  border: 86px solid var(--purple);
  border-radius: 48% 52% 55% 45%;
  transform: rotate(-16deg);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
}

.hero-orbit::before {
  top: -110px;
  right: 70px;
  width: 164px;
  height: 164px;
  border-radius: 46% 54% 41% 59%;
  background: var(--coral);
}

.hero-orbit::after {
  right: -72px;
  bottom: -30px;
  width: 190px;
  height: 120px;
  background: var(--yellow);
  clip-path: polygon(0 35%, 100% 0, 85% 100%, 16% 80%);
}

.hero-photo {
  position: absolute;
  top: 94px;
  right: 72px;
  width: 440px;
  height: 480px;
  border: 5px solid var(--ink);
  border-radius: 50% 50% 46% 54%;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--yellow);
  transform: rotate(4deg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.82) contrast(1.05);
  transform: rotate(-4deg) scale(1.12);
}

.art-shape {
  position: absolute;
  z-index: 3;
  display: block;
}

.art-shape-ring {
  top: 28px;
  left: 16px;
  width: 82px;
  height: 82px;
  border: 17px solid var(--yellow);
  border-radius: 50%;
}

.art-shape-dot {
  right: -12px;
  bottom: 82px;
  width: 66px;
  height: 66px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.art-label {
  position: absolute;
  top: 182px;
  right: -46px;
  z-index: 5;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.16em;
  transform: rotate(90deg);
}

.hero-market-card {
  top: auto;
  right: 18px;
  bottom: 38px;
  z-index: 7;
  width: 226px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  padding: 18px;
  background: rgba(18, 26, 42, 0.56);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  color: var(--white);
  backdrop-filter: blur(14px);
  transform: rotate(-2deg);
}

.market-card-status,
.hero-market-card > p,
.market-card-footer {
  color: rgba(255, 255, 255, 0.65);
}

.market-card-status {
  margin-bottom: 12px;
}

.market-card-status i,
.live-badge i {
  background: var(--coral);
  box-shadow: none;
}

.hero-market-card > strong {
  color: var(--yellow);
  font-size: 3.8rem;
}

.hero-market-card > p {
  margin: 8px 0 12px;
}

.market-card-bars {
  border-color: var(--line);
}

.market-card-bars span {
  background: rgba(35,36,43,0.2);
}

.market-card-bars span:nth-child(2) { background: var(--mint); }
.market-card-bars span:nth-child(4) { background: var(--yellow); }

.provider-band {
  border: 0;
  background: rgba(12, 139, 127, 0.74);
  color: var(--white);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 14px 40px rgba(5, 39, 47, 0.16);
  backdrop-filter: blur(7px) saturate(115%);
}

.provider-band-inner {
  min-height: 142px;
}

.provider-intro {
  border-color: rgba(255, 255, 255, 0.32);
}

.provider-intro strong {
  color: var(--white);
}

.status-dot {
  background: #9ff4e9;
}

.status-dot::after {
  border-color: rgba(255, 255, 255, 0.5);
}

.provider-logo-wrap {
  border-radius: 7px;
  padding: 4px 8px;
  background: rgb(255 255 255);
}

.provider-band .provider-pill {
  grid-template-columns: 7px minmax(0, 1fr);
  column-gap: 12px;
}

.provider-band .provider-color {
  height: 56px;
}

.provider-band .provider-logo-wrap {
  height: 58px;
  justify-content: center;
  padding: 7px 11px;
}

.provider-band .provider-logo {
  max-width: 150px;
  max-height: 43px;
  object-position: center;
}

.provider-band .provider-logo-wrap strong {
  font-size: 0.92rem;
  text-align: center;
}

.provider-logo-wrap strong {
  color: var(--ink);
}

.editorial-intro {
  position: relative;
  overflow: hidden;
  padding: 138px 0 145px;
  background: #fffdf8;
}

.editorial-intro::after {
  position: absolute;
  top: 62px;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 42px solid var(--coral);
  border-radius: 50%;
  content: "";
}

.editorial-intro h2 {
  max-width: 1080px;
  font-family: Arial, sans-serif;
  font-size: clamp(4.5rem, 7.6vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
}

.editorial-media {
  width: 180px;
  height: 72px;
  border: 3px solid var(--ink);
  border-radius: 36px;
  box-shadow: 7px 7px 0 var(--yellow);
  transform: rotate(-4deg);
}

.comparison-section {
  position: relative;
  overflow: hidden;
  background: #eee8ff;
}

.comparison-section::before {
  position: absolute;
  top: 40px;
  left: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.calculator-layout {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--ink);
}

.calculator-panel {
  padding: 48px;
  background: #fffdf8;
}

.segmented {
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: var(--white);
}

.segment {
  border-radius: 24px;
}

.segment.is-active {
  background: var(--purple);
}

.consumption-presets button,
.filter-pills button {
  border-color: rgba(35,36,43,0.24);
  border-radius: 18px;
}

.consumption-presets button.is-active,
.filter-pills button.is-active {
  border-color: var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

#kwhRange {
  accent-color: var(--purple);
}

#kwhRange::-webkit-slider-thumb {
  background: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 5px 12px rgba(108,59,234,0.3);
}

.switch input:checked + .slider {
  background: var(--purple);
}

.recommendation-panel {
  position: relative;
  overflow: hidden;
  background: var(--purple);
}

.recommendation-panel::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 38px solid rgba(255,223,63,0.23);
  border-radius: 50%;
  content: "";
}

.recommendation-panel > * {
  position: relative;
  z-index: 1;
}

.live-badge {
  color: var(--yellow);
}

.programs-section {
  background: #fffdf8;
}

.program-card {
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(35,36,43,0.16);
}

.program-card:nth-child(3n + 1) { border-top: 9px solid var(--mint); }
.program-card:nth-child(3n + 2) { border-top: 9px solid var(--yellow); }
.program-card:nth-child(3n + 3) { border-top: 9px solid var(--coral); }

.program-card:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.market-analysis {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--yellow);
  overflow: hidden;
}

.analysis-chart {
  background: #f4f1e9;
}

.analysis-insights {
  background: var(--mint);
  color: var(--ink);
}

.analysis-insights .eyebrow,
.analysis-insights h3,
.analysis-insights li {
  color: var(--ink);
}

.process-section {
  border-block: 2px solid var(--ink);
  background: #dff4ed;
}

.process-image {
  min-height: 720px;
  border-right: 2px solid var(--ink);
  background-position: 68% center;
  filter: saturate(0.9) contrast(1.02);
}

.process-content {
  position: relative;
  overflow: hidden;
  background: #dff4ed;
  color: var(--ink);
}

.process-content::after {
  position: absolute;
  top: -92px;
  right: -88px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(108, 59, 234, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.process-content > * {
  position: relative;
  z-index: 1;
}

.process-content .eyebrow,
.process-content .process-lead,
.process-steps p {
  color: rgba(35,36,43,0.72);
}

.process-steps li {
  border-color: rgba(35,36,43,0.22);
}

.process-steps li > span {
  color: var(--purple);
  -webkit-text-stroke: 0;
}

.application-section {
  background: #24c2b7;
}

.application-copy h2 {
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.selected-plan-summary {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.lead-form {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--purple);
}

.form-grid input,
.form-grid select {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fffdf8;
}

.faq-section {
  background: #dff4ed;
}

.faq-layout h2 {
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.faq-list details {
  border-color: rgba(35,36,43,0.22);
}

.faq-list summary {
  padding-block: 28px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.faq-list p {
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-list summary::after {
  color: var(--purple);
  font-size: 1.8rem;
}

.site-footer {
  background: var(--ink);
}

.footer-main {
  position: relative;
}

.footer-main::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  color: rgba(255,255,255,0.04);
  content: "UPCHOICE";
  font-family: Arial, sans-serif;
  font-size: 8vw;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

@media (min-width: 821px) {
  .site-header:not(.is-scrolled):not(.is-menu-open) {
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 850px;
    margin: 0;
    border-radius: 0;
  }

  .provider-band {
    margin-top: -142px;
  }

  .hero-market-card {
    bottom: 166px;
  }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .hero-orbit {
    right: -30px;
    width: 460px;
    height: 460px;
  }

  .hero-photo {
    right: 28px;
    width: 390px;
    height: 430px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 38px, 720px);
  }

  .hero {
    min-height: 980px;
  }

  .hero-inner {
    display: block;
    padding-block: 128px 42px;
  }

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

  .hero h1 {
    max-width: 620px;
    font-size: clamp(4.6rem, 13vw, 6.5rem);
  }

  .hero-lead {
    max-width: 500px;
  }

  .hero-art {
    position: absolute;
    right: -60px;
    bottom: 6px;
    width: 560px;
    min-height: 430px;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .hero-photo {
    top: 14px;
  }

  .hero-orbit {
    top: -22px;
  }

  .art-shape-ring {
    top: -40px;
  }

  .hero-market-card {
    display: block;
    right: auto;
    bottom: 35px;
    left: 24px;
    width: 190px;
    transform: rotate(2deg) scale(0.86);
    transform-origin: left bottom;
  }

  .provider-band-inner {
    padding-block: 30px;
  }

  .editorial-intro h2 {
    font-size: clamp(4rem, 11vw, 5.4rem);
  }

  .process-image {
    min-height: 440px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .hero {
    min-height: 900px;
  }

  .hero-inner {
    padding-block: 110px 32px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 5rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lead {
    font-size: 0.88rem;
  }

  .hero-proof {
    max-width: 260px;
  }

  .hero-art {
    right: -142px;
    bottom: 12px;
    transform: scale(0.62);
  }

  .hero-market-card {
    bottom: 28px;
    left: 6px;
    transform: rotate(2deg) scale(0.72);
  }

  .provider-logo-wrap {
    padding-inline: 5px;
  }

  .editorial-intro::after {
    display: none;
  }

  .editorial-intro h2 {
    font-size: 3.4rem;
  }

  .editorial-media {
    width: 98px;
    height: 44px;
  }

  .calculator-layout,
  .lead-form {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .calculator-panel,
  .recommendation-panel,
  .lead-form {
    padding: 30px 20px;
  }
}
