:root {
  --navy: #17324d;
  --navy-deep: #0c2033;
  --navy-soft: #254864;
  --sun: #e1a400;
  --sun-bright: #ffc329;
  --green: #447d24;
  --green-soft: #dcebd3;
  --mist: #e8f0f5;
  --mist-2: #f4f7f9;
  --white: #fff;
  --ink: #14212c;
  --muted: #60707e;
  --line: #dbe4e9;
  --danger: #a84535;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 20px 60px rgba(23, 50, 77, 0.12);
  --container: 1200px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

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

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(23, 50, 77, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
  height: var(--header-height);
}

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

.brand-mark {
  width: 39px;
  color: currentColor;
}

.brand-name {
  color: currentColor;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-name span {
  color: var(--sun-bright);
}

.site-header.is-scrolled .brand-name span {
  color: var(--sun);
}

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

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--sun-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.25;
}

.header-phone span {
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.header-phone strong {
  margin-top: 3px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  color: currentColor;
  background: transparent;
}

.menu-toggle > span:not(.visually-hidden) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.96) 0%, rgba(7, 23, 38, 0.9) 32%, rgba(8, 25, 40, 0.78) 50%, rgba(8, 25, 40, 0.24) 70%, rgba(8, 25, 40, 0.05) 100%),
    linear-gradient(0deg, rgba(5, 18, 31, 0.52), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: var(--header-height);
}

.hero-content > * {
  max-width: 580px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--sun);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 6.5vw, 92px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button:focus-visible,
.text-button:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 195, 41, 0.55);
  outline-offset: 3px;
}

.button-sun {
  color: #1f2a31;
  background: var(--sun-bright);
  box-shadow: 0 12px 30px rgba(225, 164, 0, 0.26);
}

.button-sun:hover {
  background: #ffd057;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(12, 32, 51, 0.22);
  backdrop-filter: blur(6px);
}

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

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.hero-facts strong {
  color: var(--sun-bright);
  font-size: 15px;
}

.hero-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 36px;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 29, 45, 0.62);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dd34e;
  box-shadow: 0 0 0 6px rgba(125, 211, 78, 0.16);
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 20px 24px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #d7e3c9;
  color: var(--green);
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 14px;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.two-column {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: end;
}

.problem-section {
  padding-bottom: 92px;
}

.large-copy {
  padding-bottom: 6px;
}

.large-copy p {
  margin: 0;
  font-size: 20px;
}

.large-copy .muted {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.intro-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.intro-cta > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.comparison-section {
  color: var(--white);
  background: var(--navy-deep);
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.comparison {
  position: relative;
  aspect-ratio: 16 / 8.6;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.comparison > picture,
.comparison > picture > img {
  width: 100%;
  height: 100%;
}

.comparison > picture {
  display: block;
}

.comparison > picture > img {
  display: block;
  object-fit: cover;
}

.comparison-dark {
  position: absolute;
  inset: 0 50% 0 0;
  background: rgba(4, 13, 23, 0.33);
  pointer-events: none;
}

.comparison-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  place-items: center;
  font-size: 20px;
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-label {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  max-width: 265px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(6, 22, 36, 0.65);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.comparison-label strong {
  font-size: 14px;
}

.comparison-label span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.comparison-label-left {
  left: 28px;
}

.comparison-label-right {
  right: 28px;
}

.family-story-section {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 195, 41, 0.14), transparent 30%),
    #f5f1e8;
}

.family-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  margin-bottom: 72px;
}

.family-story-heading h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 5.5vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.family-story-heading h2 span {
  color: #9b7000;
}

.family-story-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

.family-story-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(390px, 1.18fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.family-story-visual {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  height: min(72vh, 700px);
  min-height: 570px;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(23, 50, 77, 0.2);
}

.family-story-visual::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, rgba(5, 18, 31, 0.56));
  pointer-events: none;
}

.family-story-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.55s ease, transform 0.8s ease;
}

.family-story-photo.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.family-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.family-story-counter {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255, 255, 255, 0.64);
}

.family-story-counter strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.family-story-counter span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.family-story-copy {
  min-width: 0;
}

.family-story-steps {
  min-width: 0;
}

.family-story-step {
  display: flex;
  min-height: 62vh;
  padding: 44px 0 44px 42px;
  border-left: 3px solid rgba(23, 50, 77, 0.12);
  opacity: 0.42;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.family-story-step.is-active {
  border-color: var(--sun);
  opacity: 1;
}

.family-story-mobile-image {
  display: none;
}

.family-story-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--navy);
  background: rgba(225, 164, 0, 0.16);
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.family-story-kicker {
  margin: 0 0 12px;
  color: #8b6500;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.family-story-step h3 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.family-story-step-body > p:last-child {
  max-width: 530px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.family-story-mobile-controls {
  display: none;
}

.family-story-cta {
  display: grid;
  gap: 24px;
  margin: 24px 0 80px;
  padding: 30px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(23, 50, 77, 0.16);
}

.family-story-cta strong,
.family-story-cta span {
  display: block;
}

.family-story-cta strong {
  font-size: 19px;
}

.family-story-cta span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
}

.family-story-cta .button {
  width: fit-content;
}

.solutions-section {
  background: var(--mist-2);
}

.centered {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.centered > p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

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

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.solution-card-featured {
  border-color: rgba(225, 164, 0, 0.55);
  box-shadow: 0 18px 44px rgba(225, 164, 0, 0.12);
}

.featured-label {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 6px 12px;
  color: #2a2f31;
  background: var(--sun-bright);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solution-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solution-index {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.solution-tag {
  padding: 5px 9px;
  color: var(--navy-soft);
  background: var(--mist);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.solution-card h3 {
  margin: 30px 0 12px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.solution-card > p {
  min-height: 96px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-card dl {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.solution-card dl > div {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.solution-card dt {
  color: var(--muted);
}

.solution-card dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.solution-price {
  margin-top: 24px;
}

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

.solution-price span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-price strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.text-link {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.footnote {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.selection-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(77, 142, 40, 0.2), transparent 28%),
    radial-gradient(circle at 20% 100%, rgba(225, 164, 0, 0.13), transparent 32%),
    var(--navy);
}

.selection-heading {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 80px;
  align-items: end;
}

.selection-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.selector-shell {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(2, 13, 24, 0.24);
  overflow: hidden;
}

.selector-progress {
  height: 5px;
  background: #e8edf0;
}

.selector-progress-bar {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--sun), var(--sun-bright));
  transition: width 0.3s ease;
}

.selector-panel {
  min-height: 485px;
  padding: 48px 52px 34px;
}

.selector-panel[hidden] {
  display: none;
}

.step-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.selector-panel h3 {
  margin: 25px 0 30px;
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.step-hint {
  max-width: 760px;
  margin: -16px 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.option-grid {
  display: grid;
  gap: 13px;
}

.option-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.visual-option {
  position: relative;
  display: flex;
  min-height: 215px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.visual-option:hover {
  border-color: #adc5d4;
  transform: translateY(-2px);
}

.visual-option:has(input:checked) {
  border-color: var(--sun);
  background: #fffaf0;
  box-shadow: inset 0 0 0 1px var(--sun);
}

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

.visual-option::after,
.appliance::after {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 23px;
  height: 23px;
  content: "";
  border: 1px solid #cbd7de;
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.visual-option:has(input:checked)::after,
.appliance:has(input:checked)::after {
  content: "✓";
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.option-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  color: var(--navy);
  background: var(--mist);
  border-radius: 17px;
  place-items: center;
  font-size: 32px;
}

.visual-option strong {
  margin-top: 24px;
  font-size: 16px;
}

.visual-option small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.visual-option.compact {
  min-height: 140px;
  justify-content: flex-end;
}

.visual-option.compact strong {
  margin-top: 0;
}

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

.appliance {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.appliance:has(input:checked) {
  border-color: var(--sun);
  background: #fffaf0;
}

.appliance > span {
  grid-row: 1 / span 2;
  color: var(--navy);
  font-size: 24px;
}

.appliance strong {
  padding-right: 20px;
  font-size: 13px;
}

.appliance small {
  color: var(--muted);
  font-size: 10px;
}

.other-load {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.other-load-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.55fr);
  gap: 12px;
  max-width: 760px;
  margin-top: 20px;
}

.other-load input,
.lead-fields input {
  width: 100%;
  height: 51px;
  margin-top: 7px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
}

.phase-question {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--mist-2);
  border-radius: 14px;
  font-size: 13px;
}

.phase-question > span {
  margin-right: auto;
  font-weight: 800;
}

.phase-question label {
  cursor: pointer;
}

.phase-question input {
  accent-color: var(--green);
}

.selector-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 52px 28px;
  border-top: 1px solid var(--line);
}

.selector-actions[hidden] {
  display: none;
}

.text-button {
  padding: 10px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.text-button:disabled,
.button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.selector-result {
  min-height: auto;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.result-head {
  outline: none;
}

.result-head h3 {
  max-width: 860px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 44px;
}

.result-lead {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.result-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.result-kpi {
  min-height: 150px;
  padding: 24px 26px;
  color: var(--white);
  background: var(--navy);
  border-radius: 19px;
}

.result-kpi-runtime {
  color: var(--navy);
  background: #fff7df;
  border: 1px solid #f2dfaa;
}

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

.result-kpi > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-kpi-runtime > span {
  color: #7b5a16;
}

.result-kpi > strong {
  margin-top: 10px;
  color: var(--sun-bright);
  font-size: clamp(31px, 4.2vw, 47px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.result-kpi-runtime > strong {
  color: var(--navy);
}

.result-kpi > small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.result-kpi-runtime > small {
  color: #7b5a16;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 38px;
  align-items: start;
  margin-top: 34px;
}

.result-section-title {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 13px;
}

.result-specs > div {
  padding: 15px;
  background: var(--mist-2);
  border-radius: 13px;
}

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

.result-specs span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-specs strong {
  margin-top: 4px;
  font-size: 14px;
}

.result-loads {
  margin-top: 22px;
}

.result-loads > span,
.result-reason > span,
.result-alternative > span,
.result-next > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-load-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.result-load-chips span {
  padding: 8px 11px;
  color: var(--navy);
  background: #edf4f7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.result-warning {
  margin-top: 20px;
  padding: 14px 16px;
  color: #714d0b;
  background: #fff7df;
  border-left: 3px solid var(--sun);
  border-radius: 10px;
  font-size: 12px;
}

.result-warning summary {
  font-weight: 850;
  cursor: pointer;
}

.result-warning p {
  margin: 9px 0 0;
}

.result-side {
  display: grid;
  gap: 12px;
}

.result-reason,
.result-alternative,
.result-next {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.result-reason {
  background: var(--mist-2);
}

.result-reason p,
.result-alternative p,
.result-next p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.result-alternative {
  border-color: #d7e6cd;
  background: #f4f9f1;
}

.result-alternative > strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 19px;
}

.result-alternative-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  align-items: baseline;
  margin-top: 13px;
}

.result-alternative-metrics b {
  color: var(--green);
  font-size: 17px;
}

.result-alternative-metrics em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.result-next {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.result-next > span,
.result-next p {
  color: rgba(255, 255, 255, 0.68);
}

.result-next .button {
  margin-top: 16px;
}

.result-next .text-button {
  width: 100%;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.lead-form[hidden] {
  display: none;
}

.lead-form h3 {
  margin: 14px 0;
  font-size: 30px;
}

.lead-form p {
  color: var(--muted);
  font-size: 13px;
}

.lead-fields {
  display: grid;
  gap: 13px;
}

.lead-fields label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.lead-fields .consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent a {
  color: var(--navy);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 20px;
  margin: 0 !important;
  color: var(--green) !important;
  font-weight: 700;
}

.selector-disclaimer {
  margin: 16px 20px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  text-align: center;
}

.process-section {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-list li {
  position: relative;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 1px solid var(--line);
}

.process-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--green);
  border: 1px solid #cfe0c5;
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.process-list h3 {
  margin: 30px 0 10px;
  font-size: 17px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.equipment-section {
  background: var(--mist);
}

.split-heading.dark-text > p {
  color: var(--muted);
}

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

.equipment-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 325px;
  border: 1px solid rgba(23, 50, 77, 0.11);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.tech-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 30%),
    var(--navy);
  place-items: center;
  overflow: hidden;
}

.tech-visual::before,
.tech-visual::after {
  position: absolute;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.tech-visual::after {
  width: 235px;
  height: 235px;
}

.inverter-visual > span {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 155px;
  border: 4px solid #dfe7e8;
  border-radius: 11px;
  background: linear-gradient(145deg, #f6f8f8, #b8c4c8);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.35);
}

.inverter-visual > span::before {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 48px;
  height: 25px;
  content: "";
  background: #1b303d;
  border-radius: 4px;
  transform: translateX(-50%);
}

.inverter-visual > i {
  position: absolute;
  z-index: 3;
  bottom: 66px;
  width: 7px;
  height: 7px;
  background: #78d64b;
  border-radius: 50%;
  box-shadow: 0 0 12px #78d64b;
}

.battery-visual > span {
  position: relative;
  z-index: 2;
  width: 148px;
  height: 118px;
  border: 4px solid #273a45;
  background: linear-gradient(160deg, #3f555f, #162631);
  border-radius: 12px;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.35);
}

.battery-visual > span::before {
  position: absolute;
  top: 20px;
  right: 17px;
  left: 17px;
  height: 14px;
  content: "";
  background: repeating-linear-gradient(90deg, #77c94b 0 23px, transparent 23px 28px);
}

.battery-visual > i,
.battery-visual > b {
  position: absolute;
  z-index: 3;
  top: calc(50% + 4px);
  width: 9px;
  height: 9px;
  background: #77c94b;
  border-radius: 50%;
}

.battery-visual > i { left: calc(50% - 45px); }
.battery-visual > b { left: calc(50% - 26px); opacity: 0.55; }

.panel-visual > span {
  position: relative;
  z-index: 2;
  width: 155px;
  height: 120px;
  border: 5px solid #cad8de;
  background:
    linear-gradient(90deg, transparent 32%, rgba(255,255,255,.55) 33% 34%, transparent 35% 65%, rgba(255,255,255,.55) 66% 67%, transparent 68%),
    linear-gradient(0deg, transparent 47%, rgba(255,255,255,.55) 48% 51%, transparent 52%),
    linear-gradient(145deg, #245783, #0c2e4b);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.35);
  transform: perspective(300px) rotateX(8deg) rotateY(-10deg);
}

.shield-visual > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 120px;
  height: 135px;
  color: var(--sun-bright);
  border: 5px solid #d7e0e4;
  background: linear-gradient(145deg, #31526a, #102536);
  clip-path: polygon(50% 0, 100% 20%, 91% 78%, 50% 100%, 9% 78%, 0 20%);
  place-items: center;
  font-size: 46px;
  font-weight: 900;
}

.equipment-content {
  display: flex;
  padding: 30px;
  flex-direction: column;
}

.card-kicker {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equipment-content h3 {
  margin: 15px 0 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.equipment-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.equipment-content ul {
  display: flex;
  gap: 6px;
  margin: auto 0 0;
  padding: 20px 0 0;
  flex-wrap: wrap;
  list-style: none;
}

.equipment-content li {
  padding: 5px 9px;
  color: var(--navy-soft);
  background: var(--mist);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.subsidy-teaser {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(77, 142, 40, 0.26), transparent 40%),
    var(--navy-deep);
}

.subsidy-inner {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 90px;
  align-items: end;
}

.subsidy-inner h2 {
  font-size: clamp(38px, 4.3vw, 59px);
}

.subsidy-inner > div > p:not(.eyebrow) {
  max-width: 790px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.news-date {
  margin-bottom: 14px;
  color: var(--sun-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subsidy-side small {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.52);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.faq-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-layout > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  width: 28px;
  height: 28px;
  content: "+";
  color: var(--green);
  border: 1px solid #cfe0c5;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -7px 0 25px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(225, 164, 0, 0.18), transparent 25%),
    var(--navy);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 100px;
  align-items: center;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.final-actions .button {
  margin-bottom: 22px;
}

.contact-link span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.contact-link strong {
  font-size: 16px;
}

.site-footer {
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #081a2a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 70px;
}

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

.brand-footer {
  color: var(--white);
}

.footer-grid p,
.footer-grid a {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-decoration: none;
}

.footer-grid > div:first-child p {
  max-width: 330px;
  margin-top: 18px;
}

.footer-grid a:hover {
  color: var(--sun-bright);
}

.footer-title {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-legal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
}

.footer-legal-links a {
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 3px;
}

.footer-bottom-legal > span:last-child {
  max-width: 190px;
  text-align: right;
}

@media (max-width: 1100px) {
  :root { --header-height: 72px; }
  .header-inner { gap: 20px; }
  .site-nav { gap: 17px; }
  .header-phone span { display: none; }
  .hero { min-height: 760px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card > p { min-height: auto; }
  .option-grid-four { grid-template-columns: repeat(2, 1fr); }
  .visual-option { min-height: 170px; }
  .appliance-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); row-gap: 45px; }
  .process-list li:nth-child(3) { border-right: 1px solid var(--line); }
  .process-list li:last-child { border-right: 0; }
  .equipment-card { grid-template-columns: 0.72fr 1.28fr; }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; order: 3; }
  .header-phone { display: none; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    max-height: 0;
    padding: 0 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 26px 40px rgba(23, 50, 77, 0.14);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .site-nav.is-open { max-height: 420px; padding: 18px 20px 25px; }
  .site-nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 790px; }
  .hero-media img { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,18,31,.96), rgba(5,18,31,.78) 55%, rgba(5,18,31,.25)); }
  .hero-content > * { max-width: 590px; }
  .hero-status { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 1px solid var(--line); }
  .two-column,
  .split-heading,
  .selection-heading,
  .subsidy-inner,
  .faq-layout,
  .final-cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .faq-layout > div:first-child { position: static; }
  .comparison { aspect-ratio: 4 / 3; }
  .comparison-label span { display: none; }
  .family-story-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .family-story-heading h2 { max-width: 720px; font-size: 52px; }
  .family-story-heading > p { max-width: 620px; }
  .family-story-layout { display: block; }
  .family-story-visual { display: none; }
  .family-story-steps {
    display: flex;
    gap: 14px;
    padding: 4px 2px 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .family-story-steps::-webkit-scrollbar { display: none; }
  .family-story-step,
  .family-story-step.is-active {
    display: block;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(23, 50, 77, 0.1);
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(23, 50, 77, 0.1);
    opacity: 1;
    flex: 0 0 min(82vw, 390px);
    overflow: hidden;
    scroll-snap-align: start;
  }
  .family-story-mobile-image { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
  .family-story-step-body { padding: 25px 24px 27px; }
  .family-story-number { width: 38px; height: 38px; margin-bottom: 20px; }
  .family-story-step h3 { font-size: 31px; }
  .family-story-step-body > p:last-child { margin-top: 16px; font-size: 15px; }
  .family-story-mobile-controls {
    display: flex;
    min-height: 38px;
    margin-top: 2px;
    align-items: center;
    justify-content: space-between;
  }
  .family-story-mobile-controls > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
  .family-story-mobile-controls > div { display: flex; align-items: center; }
  .family-story-mobile-controls button { display: grid; width: 32px; height: 32px; padding: 0; border: 0; background: transparent; cursor: pointer; place-items: center; }
  .family-story-mobile-controls button::before { width: 8px; height: 8px; content: ""; background: rgba(23, 50, 77, 0.23); border-radius: 999px; transition: width 0.2s ease, background 0.2s ease; }
  .family-story-mobile-controls button.is-active::before { width: 24px; background: var(--sun); }
  .family-story-cta { margin: 18px 0 0; }
  .selector-panel { padding: 38px 28px 26px; }
  .selector-actions { padding: 18px 28px 24px; }
  .appliance-grid { grid-template-columns: repeat(2, 1fr); }
  .result-layout,
  .lead-form { grid-template-columns: 1fr; gap: 30px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2n) { border-right: 1px solid var(--line); }
  .process-list li:nth-child(3) { border-right: 0; }
  .equipment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 580px) {
  :root { --radius-lg: 24px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .brand-name { font-size: 22px; }
  .brand-mark { width: 34px; }
  .hero { min-height: 790px; }
  .hero h1 { font-size: 51px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .hero-facts li { padding: 0 0 0 15px; border-left: 2px solid rgba(255,255,255,.2); }
  .hero-facts li:first-child { padding-left: 15px; border-left: 2px solid var(--sun-bright); }
  .hero-facts span { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 86px; border-right: 1px solid var(--line); }
  h2 { font-size: 38px; }
  .large-copy p { font-size: 17px; }
  .intro-cta .button { width: 100%; }
  .intro-cta > span { width: 100%; text-align: center; }
  .comparison { aspect-ratio: 3 / 4; }
  .comparison > picture > img { object-position: center; }
  .comparison-label { bottom: 16px; padding: 9px 11px; }
  .comparison-label-left { left: 12px; }
  .comparison-label-right { right: 12px; }
  .comparison-label strong { font-size: 11px; }
  .family-story-heading h2 { font-size: 42px; }
  .family-story-heading > p { font-size: 16px; }
  .family-story-step,
  .family-story-step.is-active { flex-basis: 84vw; }
  .family-story-step h3 { font-size: 28px; }
  .family-story-cta { padding: 24px; }
  .family-story-cta .button { width: 100%; }
  .solution-grid { grid-template-columns: 1fr; }
  .selector-panel { min-height: auto; padding: 30px 18px 24px; }
  .selector-panel h3 { font-size: 27px; }
  .option-grid-four { grid-template-columns: 1fr; }
  .visual-option { min-height: 115px; padding: 18px; }
  .visual-option:not(.compact) { display: grid; grid-template-columns: 60px 1fr; grid-template-rows: auto auto; align-items: center; }
  .visual-option:not(.compact) .option-icon { grid-row: 1 / span 2; margin: 0; }
  .visual-option:not(.compact) strong { margin: 0; }
  .visual-option.compact { min-height: 105px; }
  .appliance-grid { grid-template-columns: 1fr; }
  .appliance { min-height: 84px; }
  .phase-question { flex-wrap: wrap; gap: 12px 16px; }
  .phase-question > span { width: 100%; }
  .selector-actions { padding: 16px 18px 20px; }
  .result-head h3 { font-size: 34px; }
  .result-kpis,
  .other-load-grid { grid-template-columns: 1fr; }
  .result-kpi { min-height: 135px; padding: 21px; }
  .result-specs { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; row-gap: 0; }
  .process-list li { display: grid; grid-template-columns: 50px 1fr; padding: 22px 0; border: 0; border-top: 1px solid var(--line); }
  .process-list li:nth-child(2n),
  .process-list li:nth-child(3) { border-right: 0; }
  .process-list li:last-child { border-bottom: 1px solid var(--line); }
  .process-list h3 { margin: 0 0 8px; }
  .equipment-card { grid-template-columns: 1fr; }
  .tech-visual { min-height: 220px; }
  .subsidy-inner h2 { font-size: 38px; }
  .faq-list summary { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .footer-bottom-legal { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .footer-legal-links { justify-content: flex-start; }
  .footer-bottom-legal > span:last-child { max-width: none; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .family-story-steps { scroll-snap-type: none; }
  .family-story-photo { transform: none; }
}

/* База знаний */
.knowledge-section {
  background: #f5f7f4;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.knowledge-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(23, 50, 77, 0.06);
}

.knowledge-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.knowledge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.knowledge-card:hover .knowledge-image img {
  transform: scale(1.025);
}

.knowledge-content {
  padding: 25px;
}

.knowledge-content > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-content h2,
.knowledge-content h3 {
  margin: 13px 0 12px;
  font-size: 23px;
  line-height: 1.17;
}

.knowledge-content h2 a,
.knowledge-content h3 a {
  color: var(--navy);
  text-decoration: none;
}

.knowledge-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.knowledge-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Статьи и страница статуса компенсации */
.article-page {
  background: var(--white);
}

.article-header {
  position: fixed;
}

.article-hero {
  padding: 170px 0 94px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 32%, rgba(225, 164, 0, 0.18), transparent 24%),
    radial-gradient(circle at 20% 100%, rgba(77, 142, 40, 0.2), transparent 30%),
    var(--navy-deep);
}

.article-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.article-hero-inner > * {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

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

.article-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 84px);
  font-weight: 770;
  letter-spacing: -0.063em;
  line-height: 0.99;
}

.article-deck {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.guide-hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 60px;
  align-items: center;
}

.guide-hero-inner h1 {
  font-size: clamp(44px, 5vw, 72px);
}

.guide-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.guide-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-hero-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 32, 51, 0.72);
  border-radius: 7px;
  font-size: 9px;
  backdrop-filter: blur(6px);
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.answer-box {
  margin: 38px 0 0;
  padding: 25px 28px;
  background: #edf5e8;
  border-left: 4px solid var(--green);
  border-radius: 14px;
}

.answer-box strong {
  display: block;
  margin-bottom: 7px;
  color: #315b1d;
  font-size: 17px;
}

.answer-box p {
  margin: 0;
  color: #40642c;
  font-size: 14px;
}

.article-content h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.22;
}

.article-content a:not(.button) {
  color: var(--navy);
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.article-steps li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 62px;
  background: var(--mist-2);
  border-radius: 14px;
  counter-increment: guide-step;
}

.article-steps li::before {
  position: absolute;
  top: 16px;
  left: 17px;
  display: grid;
  width: 31px;
  height: 31px;
  content: counter(guide-step);
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.article-table-wrap {
  overflow-x: auto;
  margin-top: 26px;
}

.article-table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 16px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 12px;
}

.article-table th {
  color: var(--navy);
  background: var(--mist-2);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.article-related a {
  padding: 20px;
  color: var(--navy);
  background: var(--mist-2);
  border-radius: 14px;
  text-decoration: none;
}

.article-related span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.articles-hero {
  padding-bottom: 76px;
}

.articles-hero .article-hero-inner {
  grid-template-columns: 1fr;
}

.articles-hero h1 {
  max-width: 980px;
}

.articles-index {
  padding: 76px 0 110px;
}

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

.articles-index .knowledge-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.articles-index .knowledge-card-large .knowledge-image {
  height: 100%;
  aspect-ratio: auto;
}

.articles-index .knowledge-card-large .knowledge-content {
  display: flex;
  padding: 42px;
  flex-direction: column;
  justify-content: center;
}

.articles-index .knowledge-card-large h2 {
  margin: 15px 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.08;
}

.articles-index .knowledge-card-large h2 a {
  color: inherit;
  text-decoration: none;
}

.status-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.status-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 11px;
  color: #ffeab2;
  background: rgba(225, 164, 0, 0.16);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill i {
  width: 7px;
  height: 7px;
  background: var(--sun-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 195, 41, 0.12);
}

.status-card > strong {
  display: block;
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.2;
}

.status-card p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 90px;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: 118px;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  display: flex;
  height: max-content;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  flex-direction: column;
}

.article-toc > span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-toc a {
  padding: 7px 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.article-content {
  min-width: 0;
}

.article-content > section {
  padding-top: 80px;
}

.article-content h2 {
  margin-bottom: 28px;
  font-size: clamp(35px, 4.2vw, 50px);
}

.article-content p,
.article-content li {
  color: #445765;
}

.article-intro {
  margin: 0;
  color: var(--ink) !important;
  font-size: 23px;
  line-height: 1.55;
}

.article-alert {
  margin-top: 40px;
  padding: 26px 28px;
  background: #fff7df;
  border-left: 4px solid var(--sun);
  border-radius: 14px;
}

.article-alert strong {
  color: #63430d;
}

.article-alert p {
  margin: 8px 0 0;
  color: #714f17;
  font-size: 14px;
}

.facts-table {
  border-top: 1px solid var(--line);
}

.facts-table > div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 25px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.facts-table span {
  color: var(--muted);
  font-size: 12px;
}

.facts-table strong {
  color: var(--ink);
  font-size: 14px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  content: "—";
  color: var(--danger);
  background: #fae9e6;
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.myth-grid article {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.myth-grid span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 850;
}

.myth-grid p {
  margin: 9px 0 0;
  font-size: 11px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.document-grid > div {
  display: flex;
  gap: 14px;
  padding: 19px;
  background: var(--mist-2);
  border-radius: 14px;
}

.document-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--green);
  border: 1px solid #cee1c3;
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
  font-size: 9px;
  font-weight: 900;
}

.document-grid p {
  margin: 4px 0 0;
  font-size: 12px;
}

.article-note,
.source-note {
  margin-top: 28px;
  padding: 18px;
  color: var(--navy) !important;
  background: var(--mist);
  border-radius: 12px;
  font-size: 12px;
}

.notify-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: end;
  margin-top: 80px;
  padding: 38px !important;
  color: var(--white);
  background: var(--navy);
  border-radius: 24px;
}

.notify-box h2 {
  margin: 22px 0 12px;
  color: var(--white);
  font-size: 35px;
}

.notify-box p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.status-pill-light {
  color: #d9f2ca;
  background: rgba(77, 142, 40, 0.22);
}

.status-pill-light i {
  background: #7fd252;
  box-shadow: 0 0 0 5px rgba(127, 210, 82, 0.12);
}

.article-faq {
  margin-top: 24px;
}

.sources-section ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.sources-section li {
  padding-left: 6px;
  font-size: 13px;
}

.sources-section a {
  color: var(--navy);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-final-cta {
  padding: 86px 0;
}

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

.legal-header-inner .header-phone {
  justify-self: end;
}

.legal-document {
  padding: 150px 0 100px;
}

.legal-container {
  max-width: 850px;
}

.legal-breadcrumbs {
  margin-bottom: 48px;
  color: var(--muted);
}

.legal-document h1 {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 72px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.legal-lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-document section {
  padding-top: 54px;
}

.legal-document h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.legal-document p,
.legal-document li {
  color: #445765;
  font-size: 14px;
}

.legal-document a {
  color: var(--navy);
  font-weight: 700;
}

.legal-alert {
  margin-top: 62px;
}

.legal-status {
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid #ead38e;
  color: #5d4a17;
  background: #fff8df;
  border-radius: 16px;
}

.legal-status strong {
  display: block;
  margin-bottom: 7px;
  color: #4d3b0d;
  font-size: 15px;
}

.legal-status p {
  margin: 0;
  color: inherit;
}

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

.legal-facts > div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--mist-2);
  border-radius: 14px;
}

.legal-facts strong,
.legal-facts span {
  display: block;
}

.legal-facts strong {
  color: var(--navy);
  font-size: 13px;
}

.legal-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.legal-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.legal-card {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  color: var(--ink) !important;
  background: var(--white);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(23, 50, 77, 0.06);
}

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

.legal-card strong {
  color: var(--navy);
  font-size: 16px;
}

.legal-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.legal-document h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 19px;
}

.legal-document .legal-small {
  color: var(--muted);
  font-size: 12px;
}

.legal-footer {
  padding-top: 20px;
}

.legal-footer .footer-bottom {
  margin-top: 0;
}

@media (max-width: 860px) {
  .knowledge-grid { grid-template-columns: 1fr 1fr; }
  .knowledge-card-large { grid-column: span 2; }
  .article-hero-inner { grid-template-columns: 1fr; gap: 45px; }
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .article-toc { display: none; }
  .notify-box { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 580px) {
  .knowledge-grid,
  .articles-index .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-card-large,
  .articles-index .knowledge-card-large { grid-column: auto; display: block; }
  .articles-index .knowledge-card-large .knowledge-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .articles-index .knowledge-card-large .knowledge-content { padding: 25px; }
  .articles-index .knowledge-card-large h2 { font-size: 28px; }
  .article-hero { padding: 130px 0 68px; }
  .article-hero h1 { font-size: 45px; }
  .article-deck { font-size: 16px; }
  .guide-hero-media { border-radius: 18px; }
  .article-layout { padding-top: 58px; padding-bottom: 80px; }
  .article-intro { font-size: 19px; }
  .article-related { grid-template-columns: 1fr; }
  .facts-table > div { grid-template-columns: 1fr; gap: 4px; }
  .myth-grid,
  .document-grid { grid-template-columns: 1fr; }
  .notify-box { margin-top: 65px; padding: 26px !important; }
  .legal-document { padding: 120px 0 75px; }
  .legal-document h1 { font-size: 42px; }
  .legal-header-inner .header-phone { display: none; }
  .legal-facts,
  .legal-nav-grid { grid-template-columns: 1fr; }
}
