:root {
  --navy-950: #03131d;
  --navy-900: #061c2a;
  --navy-850: #082536;
  --navy-800: #0a2c40;
  --blue: #0ea5e9;
  --blue-light: #38bdf8;
  --cyan: #67e8f9;
  --solar: #f6b73c;
  --solar-light: #ffd978;
  --solar-deep: #e99a18;
  --green: #19c37d;

  --ink: #102536;
  --muted: #637586;
  --line: #dce7ed;
  --surface: #f5f9fb;
  --white: #ffffff;

  --shadow-sm: 0 10px 30px rgba(3, 19, 29, .08);
  --shadow-md: 0 20px 60px rgba(3, 19, 29, .13);
  --shadow-lg: 0 35px 100px rgba(3, 19, 29, .22);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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


/* ==================================================
   HEADER
================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(3, 19, 29, .83);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #071a24;
  font-size: 23px;
  background:
    radial-gradient(circle at 35% 30%, #fff3bd, transparent 35%),
    linear-gradient(135deg, var(--solar-light), var(--solar));
  box-shadow:
    0 8px 30px rgba(246, 183, 60, .25),
    inset 0 1px rgba(255, 255, 255, .55);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.brand small {
  margin-top: 3px;
  color: #91aab8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

.nav nav a {
  color: #c6d5dd;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.nav nav a:hover {
  color: white;
}

.nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(246, 183, 60, .45);
  border-radius: 999px;
  color: var(--solar-light);
  background: rgba(246, 183, 60, .08);
}


/* ==================================================
   TYPOGRAPHY / COMMON
================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--solar-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.eyebrow.dark {
  color: #1680a9;
}

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
}

h1 em,
h2 em {
  display: block;
  color: inherit;
  font-style: normal;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.results-heading h2,
.simulator-copy h2,
.financial-copy h2,
.conversion-copy h2 {
  margin: 15px 0 17px;
  color: var(--navy-900);
  font-size: clamp(32px, 4.5vw, 53px);
  line-height: 1.03;
}

.section-heading h2 em,
.results-heading h2 em,
.simulator-copy h2 em,
.financial-copy h2 em,
.conversion-copy h2 em {
  color: #1680a9;
}

.section-heading p,
.simulator-copy > p,
.financial-copy > p,
.conversion-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

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

.btn-primary {
  color: #071a24;
  background:
    linear-gradient(135deg, var(--solar-light), var(--solar));
  box-shadow: 0 14px 35px rgba(246, 183, 60, .22);
}

.btn-primary:hover {
  box-shadow: 0 18px 45px rgba(246, 183, 60, .32);
}

.btn-secondary {
  color: #dceaf0;
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .045);
}

.btn-block {
  width: 100%;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 38%, rgba(14, 165, 233, .15), transparent 24%),
    radial-gradient(circle at 70% 5%, rgba(246, 183, 60, .10), transparent 20%),
    linear-gradient(135deg, #03131d 0%, #061e2d 50%, #082a3b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(to bottom right, transparent 49%, white 50%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 400px;
  height: 400px;
  top: 100px;
  right: -150px;
  border: 1px solid rgba(56, 189, 248, .12);
  box-shadow:
    0 0 0 70px rgba(56, 189, 248, .025),
    0 0 0 140px rgba(56, 189, 248, .018);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  bottom: 70px;
  left: -100px;
  background: rgba(246, 183, 60, .04);
  box-shadow: 0 0 100px rgba(246, 183, 60, .1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 790px;
  padding-top: 130px;
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 75px;
}

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

.hero h1 {
  margin: 20px 0 25px;
  max-width: 720px;
  font-size: clamp(46px, 6vw, 77px);
  line-height: .97;
}

.hero h1 em {
  color: var(--solar-light);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: #b7cad4;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 42px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  margin-bottom: 3px;
  color: white;
  font-size: 22px;
}

.hero-trust span {
  color: #829dab;
  font-size: 11px;
  line-height: 1.35;
}


/* ==================================================
   SOLAR VISUAL
================================================== */

.hero-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.sun-orbit {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 5px;
  right: -15px;
  border: 1px solid rgba(246, 183, 60, .13);
  border-radius: 50%;
}

.sun-orbit::before,
.sun-orbit::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px solid rgba(246, 183, 60, .09);
  border-radius: inherit;
}

.sun-orbit::after {
  inset: 90px;
}

.sun {
  position: absolute;
  top: 32px;
  right: 63px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8d9, #ffd66b 45%, #f2a91c);
  box-shadow:
    0 0 25px rgba(246, 183, 60, .65),
    0 0 80px rgba(246, 183, 60, .25);
}

.solar-scene {
  position: relative;
  width: min(100%, 430px);
  padding: 45px 35px 30px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(2deg);
}

.solar-panel {
  aspect-ratio: 1.48;
  padding: 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  border: 6px solid #71838d;
  border-radius: 12px;
  background: #93a3ab;
  transform: perspective(600px) rotateX(10deg);
  box-shadow:
    0 28px 45px rgba(0, 0, 0, .28),
    0 0 45px rgba(14, 165, 233, .12);
}

.solar-panel span {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), transparent 35%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48%,
      rgba(255,255,255,.12) 49%,
      rgba(255,255,255,.12) 51%,
      transparent 52%
    ),
    linear-gradient(145deg, #11658d, #073e61 60%, #082d49);
}

.solar-panel span::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255,255,255,.13);
}

.solar-status {
  margin-top: 32px;
}

.solar-status span,
.solar-status strong,
.solar-status small {
  display: block;
}

.solar-status span {
  color: var(--solar-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.solar-status strong {
  margin: 5px 0 3px;
  font-size: 32px;
}

.solar-status small {
  color: #8fa8b5;
}


/* ==================================================
   HOW
================================================== */

.how-section {
  padding: 100px 0 125px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 285px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.step-card.featured {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(246,183,60,.16), transparent 38%),
    linear-gradient(145deg, var(--navy-900), #0a3145);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #dce8ed;
  font-size: 43px;
  font-weight: 900;
}

.featured .step-number {
  color: rgba(255,255,255,.08);
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 15px;
  color: #075b7c;
  font-size: 18px;
  font-weight: 900;
  background: #e6f7fc;
}

.featured .step-icon {
  color: #071a24;
  background: linear-gradient(135deg, var(--solar-light), var(--solar));
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.featured p {
  color: #a9c0cb;
}


/* ==================================================
   SIMULATOR
================================================== */

.simulator-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: white;
  background:
    radial-gradient(circle at 90% 50%, rgba(14,165,233,.13), transparent 30%),
    linear-gradient(135deg, #041722, #072738);
}

.simulator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.simulator-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .83fr;
  align-items: center;
  gap: 90px;
}

.simulator-copy h2 {
  color: white;
}

.simulator-copy h2 em {
  color: var(--solar-light);
}

.simulator-copy > p {
  color: #a8bec9;
}

.premise-grid {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.premise-grid div {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.premise-grid span,
.premise-grid strong {
  display: block;
}

.premise-grid span {
  min-height: 34px;
  color: #7f9aa8;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.premise-grid strong {
  margin-top: 6px;
  color: white;
  font-size: 17px;
}

.simulation-note {
  padding-left: 14px;
  border-left: 2px solid rgba(246,183,60,.55);
  color: #7692a0 !important;
  font-size: 12px !important;
}

.calculator-card {
  position: relative;
  padding: 37px;
  color: var(--ink);
  border-radius: 28px;
  background: white;
  box-shadow: 0 35px 100px rgba(0,0,0,.3);
}

.card-label {
  display: inline-block;
  margin-bottom: 20px;
  color: #1680a9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.calculator-card label {
  display: block;
  margin-bottom: 11px;
  color: #526a78;
  font-size: 13px;
  font-weight: 750;
}

.money-input {
  height: 76px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #d9e8ee;
  border-radius: 17px;
  background: #f7fafb;
  transition: border .2s;
}

.money-input:focus-within {
  border-color: var(--blue);
}

.money-input span {
  color: #6d8290;
  font-size: 19px;
  font-weight: 800;
}

.money-input input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy-900);
  background: transparent;
  font-size: 30px;
  font-weight: 850;
}

.bill-range {
  width: 100%;
  margin: 30px 0 5px;
  accent-color: var(--solar);
}

.range-labels {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  color: #8496a0;
  font-size: 10px;
}

.calculator-card small {
  display: block;
  margin-top: 17px;
  color: #82929c;
  font-size: 11px;
  text-align: center;
}


/* ==================================================
   RESULTS
================================================== */

.results-section {
  padding: 115px 0;
  background: var(--surface);
}

.results-heading {
  margin-bottom: 35px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.results-heading > div:first-child {
  max-width: 700px;
}

.result-highlight {
  min-width: 250px;
  padding: 20px 23px;
  border: 1px solid #d8e5eb;
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.result-highlight span,
.result-highlight strong,
.result-highlight small {
  display: block;
}

.result-highlight span {
  color: #78909d;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.result-highlight strong {
  margin: 5px 0 2px;
  color: var(--navy-900);
  font-size: 27px;
}

.result-highlight small {
  color: #9aa8af;
}

.result-dashboard {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-card {
  padding: 24px;
  border: 1px solid #dae6eb;
  border-radius: 19px;
  background: white;
}

.metric-card.accent {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(246,183,60,.18), transparent 45%),
    var(--navy-900);
}

.metric-card span,
.metric-card strong,
.metric-card small {
  display: block;
}

.metric-card span {
  min-height: 37px;
  color: #748a97;
  font-size: 11px;
  font-weight: 700;
}

.metric-card strong {
  margin: 9px 0 4px;
  color: var(--navy-900);
  font-size: clamp(20px, 2.1vw, 27px);
}

.metric-card small {
  color: #9aa9b0;
  font-size: 10px;
  line-height: 1.45;
}

.metric-card.accent span,
.metric-card.accent small {
  color: #91aab7;
}

.metric-card.accent strong {
  color: var(--solar-light);
}

.comparison-panel {
  margin-top: 25px;
  padding: 31px;
  border: 1px solid #dae7ec;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.comparison-heading {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
}

.comparison-heading h3 {
  margin: 7px 0 0;
  font-size: 25px;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6c808c;
  font-size: 11px;
}

.legend-grid,
.legend-solar {
  width: 9px;
  height: 9px;
  margin-left: 9px;
  border-radius: 50%;
}

.legend-grid {
  background: #1a799e;
}

.legend-solar {
  background: var(--solar);
}

.comparison-chart {
  position: relative;
  min-height: 285px;
  padding: 18px 5px 0;
  display: flex;
  align-items: end;
  gap: 12px;
  border-bottom: 1px solid #d9e5ea;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 59px,
      #edf2f4 60px
    );
}

.chart-group {
  min-width: 0;
  flex: 1;
  height: 245px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.chart-bar {
  width: min(31px, 42%);
  min-height: 4px;
  border-radius: 6px 6px 0 0;
  transition: height .45s ease;
}

.chart-bar.grid {
  background: linear-gradient(#2391bb, #12658a);
}

.chart-bar.solar {
  background: linear-gradient(var(--solar-light), var(--solar-deep));
}

.chart-year {
  position: absolute;
  bottom: -23px;
  color: #82939c;
  font-size: 9px;
  font-weight: 750;
}

.milestone-heading {
  margin: 65px 0 22px;
}

.milestone-heading h3 {
  margin: 8px 0 0;
  font-size: 27px;
}

.year-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.year-card {
  padding: 19px 15px;
  border: 1px solid #d9e5ea;
  border-radius: 16px;
  background: white;
}

.year-card.featured {
  border-color: rgba(246,183,60,.5);
  box-shadow: 0 10px 35px rgba(246,183,60,.11);
}

.year-card span,
.year-card strong,
.year-card small {
  display: block;
}

.year-card span {
  color: #79909b;
  font-size: 10px;
  font-weight: 850;
}

.year-card strong {
  margin: 7px 0 4px;
  color: var(--navy-900);
  font-size: 18px;
}

.year-card small {
  color: #9aa8ae;
  font-size: 9px;
}

.personal-result {
  margin-top: 25px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 35px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(14,165,233,.17), transparent 35%),
    linear-gradient(135deg, var(--navy-900), #0a3144);
}

.personal-result .eyebrow.dark {
  color: var(--solar-light);
}

.personal-result h3 {
  margin: 11px 0 9px;
  max-width: 680px;
  font-size: 27px;
}

.personal-result h3 strong {
  color: var(--solar-light);
}

.personal-result p {
  margin: 0;
  color: #9db4bf;
  font-size: 13px;
}

.personal-result-side {
  padding-left: 25px;
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(255,255,255,.1);
}

.personal-result-side span,
.personal-result-side strong {
  display: block;
}

.personal-result-side span {
  margin-top: 8px;
  color: #809ba8;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.personal-result-side strong {
  color: white;
  font-size: 20px;
}

.legal-note {
  max-width: 920px;
  margin: 24px auto 0;
  color: #84969f;
  font-size: 11px;
  line-height: 1.65;
}


/* ==================================================
   FINANCIAL SCENARIO
================================================== */

.financial-section {
  padding: 110px 0;
  color: white;
  background:
    radial-gradient(circle at 15% 50%, rgba(14,165,233,.11), transparent 28%),
    linear-gradient(135deg, #03141e, #072638);
}

.financial-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  align-items: center;
  gap: 90px;
}

.financial-copy h2 {
  color: white;
}

.financial-copy h2 em {
  color: var(--solar-light);
}

.financial-copy > p {
  color: #9eb4bf;
}

.warning-box {
  margin-top: 28px;
  padding: 17px 20px;
  border: 1px solid rgba(246,183,60,.17);
  border-radius: 15px;
  background: rgba(246,183,60,.05);
}

.warning-box strong {
  color: var(--solar-light);
  font-size: 12px;
}

.warning-box p {
  margin: 4px 0 0;
  color: #829ba7;
  font-size: 11px;
  line-height: 1.6;
}

.financial-card {
  padding: 37px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow-lg);
}

.financial-card > span,
.financial-card > strong,
.financial-card > small {
  display: block;
}

.financial-card > span {
  color: var(--solar-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.financial-card > strong {
  margin: 11px 0 5px;
  color: white;
  font-size: clamp(32px, 4vw, 47px);
}

.financial-card > small {
  color: #829ba8;
}

.financial-rate {
  margin-top: 29px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.09);
}

.financial-rate span {
  color: #7d98a5;
  font-size: 11px;
}

.financial-rate strong {
  color: var(--solar-light);
}


/* ==================================================
   POSSIBILITIES
================================================== */

.possibilities-section {
  padding: 115px 0;
}

.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.possibility-card {
  min-height: 205px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.possibility-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -30px;
  bottom: -35px;
  border-radius: 50%;
  background: rgba(14,165,233,.055);
}

.possibility-card.available {
  border-color: rgba(246,183,60,.4);
}

.possibility-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 14px;
  color: #0b6688;
  font-size: 23px;
  background: #e9f7fb;
}

.possibility-card.available .possibility-icon {
  color: #49320a;
  background: #fff1c8;
}

.possibility-card h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.possibility-card strong {
  color: #1680a9;
  font-size: 14px;
}

.possibility-card p {
  margin: 7px 0 0;
  color: #81929b;
  font-size: 10px;
}

.centered-note {
  text-align: center;
}


/* ==================================================
   CONVERSION / FORM
================================================== */

.conversion-section {
  padding: 115px 0;
  background: #edf4f7;
}

.conversion-card {
  padding: 58px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0 0, rgba(14,165,233,.1), transparent 30%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.conversion-copy {
  padding-top: 20px;
}

.conversion-copy h2 {
  color: white;
}

.conversion-copy h2 em {
  color: var(--solar-light);
}

.conversion-copy > p {
  color: #9eb5c0;
}

.conversion-benefits {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.conversion-benefits span {
  color: #c3d4dc;
  font-size: 13px;
}

.lead-form {
  padding: 34px;
  border-radius: 24px;
  background: white;
}

.form-title {
  margin-bottom: 25px;
}

.form-title span,
.form-title strong {
  display: block;
}

.form-title span {
  margin-bottom: 4px;
  color: #1680a9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.form-title strong {
  color: var(--navy-900);
  font-size: 20px;
}

.lead-form > label,
.form-row label {
  display: block;
  margin-bottom: 15px;
  color: #536a77;
  font-size: 11px;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  height: 49px;
  margin-top: 6px;
  padding: 0 14px;
  outline: 0;
  border: 1px solid #d9e4e9;
  border-radius: 11px;
  color: var(--ink);
  background: #f8fafb;
}

.lead-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.08);
}

.form-divider {
  margin: 27px 0 16px;
  padding-top: 20px;
  border-top: 1px solid #e4ecef;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
}

.cep-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 13px;
  align-items: end;
}

.cep-feedback {
  min-height: 49px;
  margin-bottom: 15px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px dashed #d7e3e8;
  border-radius: 11px;
  color: #81939d;
  background: #f8fafb;
  font-size: 10px;
}

.cep-feedback button {
  padding: 5px 8px;
  border: 0;
  border-radius: 7px;
  color: #0d759c;
  background: #e5f5fa;
  font-size: 9px;
  font-weight: 800;
}

.address-auto {
  margin: -3px 0 18px;
  padding: 15px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  border-radius: 13px;
  background: #edf7fa;
}

.address-auto[hidden] {
  display: none;
}

.address-auto span,
.address-auto strong {
  display: block;
}

.address-auto span {
  color: #75909d;
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.address-auto strong {
  margin-top: 2px;
  color: #174357;
  font-size: 11px;
}

.two-cols {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 12px;
}

.choice-group {
  margin: 4px 0 16px;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 8px;
  color: #536a77;
  font-size: 11px;
  font-weight: 800;
}

.choice-group label {
  display: inline-flex;
  margin: 0 5px 5px 0;
}

.choice-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-group span {
  padding: 9px 15px;
  display: inline-flex;
  border: 1px solid #d9e4e9;
  border-radius: 999px;
  color: #637984;
  background: #f8fafb;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.choice-group input:checked + span {
  color: #49320a;
  border-color: var(--solar);
  background: #fff1c8;
}

.consent {
  margin: 18px 0 !important;
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: #7d8e97 !important;
  font-size: 9px !important;
  line-height: 1.5;
}

.consent input {
  margin-top: 2px;
}

.honeypot {
  position: absolute !important;
  left: -99999px !important;
  opacity: 0 !important;
}

.form-message {
  min-height: 18px;
  margin: 13px 0 0;
  color: #627781;
  font-size: 11px;
  text-align: center;
}

.form-message.error {
  color: #b42318;
}

.form-message.success {
  color: #087a4c;
}


/* ==================================================
   FOOTER / FLOATING
================================================== */

.site-footer {
  padding: 45px 0;
  color: white;
  background: #021018;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.footer-grid p {
  max-width: 650px;
  margin: 0;
  color: #718a97;
  font-size: 10px;
  line-height: 1.65;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #071a24;
  background: linear-gradient(135deg, var(--solar-light), var(--solar));
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1000px) {
  .hero-grid,
  .simulator-grid,
  .financial-grid,
  .conversion-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 145px;
    gap: 25px;
  }

  .hero-visual {
    min-height: 430px;
  }

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

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

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

  .year-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .conversion-card {
    gap: 35px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    background: rgba(3,19,29,.94);
  }

  .nav {
    min-height: 67px;
  }

  .nav nav a:not(.nav-cta) {
    display: none;
  }

  .nav .nav-cta {
    padding: 9px 13px;
    font-size: 10px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    height: 45px;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust strong {
    font-size: 17px;
  }

  .hero-trust span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .sun-orbit {
    width: 270px;
    height: 270px;
    right: -50px;
  }

  .solar-scene {
    padding: 30px 22px 23px;
  }

  .solar-status strong {
    font-size: 26px;
  }

  .how-section,
  .results-section,
  .financial-section,
  .possibilities-section,
  .conversion-section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .results-heading h2,
  .simulator-copy h2,
  .financial-copy h2,
  .conversion-copy h2 {
    font-size: 36px;
  }

  .section-heading p,
  .simulator-copy > p,
  .financial-copy > p,
  .conversion-copy > p {
    font-size: 15px;
  }

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

  .premise-grid span {
    min-height: 0;
  }

  .calculator-card {
    padding: 25px 20px;
  }

  .results-heading {
    display: grid;
  }

  .result-highlight {
    min-width: 0;
  }

  .result-dashboard {
    grid-template-columns: 1fr;
  }

  .metric-card span {
    min-height: 0;
  }

  .comparison-panel {
    padding: 23px 15px 30px;
  }

  .comparison-heading {
    display: grid;
  }

  .chart-legend {
    flex-wrap: wrap;
  }

  .comparison-chart {
    gap: 5px;
    overflow: hidden;
  }

  .chart-group {
    gap: 2px;
  }

  .chart-year {
    font-size: 7px;
  }

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

  .personal-result {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .personal-result-side {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }

  .financial-card {
    padding: 27px 22px;
  }

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

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

  .conversion-card {
    width: min(calc(100% - 20px), var(--container));
    padding: 28px 16px;
    border-radius: 24px;
  }

  .lead-form {
    padding: 25px 17px;
  }

  .cep-row,
  .two-cols,
  .address-auto {
    grid-template-columns: 1fr;
  }

  .cep-feedback {
    margin-top: -10px;
  }

  .footer-grid {
    display: grid;
  }

  .floating-cta {
    right: 13px;
    bottom: 13px;
    padding: 11px 15px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
