@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f3f1ea;
  --color-surface: #fffdf8;
  --color-surface-2: #e8ece4;
  --color-text: #17221f;
  --color-text-muted: #65706b;
  --color-primary: #173f36;
  --color-primary-2: #20564a;
  --color-accent: #c99743;
  --color-accent-soft: #ead8b6;
  --color-line: #d7d9d1;
  --color-dark: #0f2923;
  --color-danger: #8b3f35;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --text-display: clamp(3.1rem, 8vw, 6.6rem);
  --text-h1: clamp(2.5rem, 5vw, 4rem);
  --text-h2: clamp(2rem, 4vw, 3.1rem);
  --text-h3: 1.45rem;
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(23, 63, 54, .12);
  --shadow-soft: 0 14px 40px rgba(23, 63, 54, .07);
  --max: 1240px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65
}

body.no-scroll {
  overflow: hidden
}

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

button,
input,
select,
textarea {
  font: inherit
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

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

.section {
  padding: var(--space-8) 0
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--color-primary)
}

.section-kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--color-accent)
}

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

h1,
h2,
h3 {
  font-family: 'Newsreader', serif;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.03em
}

h2 {
  font-size: var(--text-h2);
  margin-bottom: var(--space-4)
}

h3 {
  font-size: var(--text-h3)
}

p {
  color: var(--color-text-muted)
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent)
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease
}

.btn-primary {
  background: var(--color-primary);
  color: #fff
}

.btn-primary:hover {
  background: var(--color-primary-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23, 63, 54, .18)
}

.btn-outline {
  border-color: rgba(23, 63, 54, .3);
  background: transparent;
  color: var(--color-primary)
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(23, 63, 54, .06)
}

.btn-light {
  background: #fff;
  color: var(--color-primary)
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16)
}

.header-notice {
  background: #112f28;
  color: #dfe9e5;
  text-align: center;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 7px 12px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 241, 234, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 63, 54, .09)
}

.header-row {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -.02em
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-primary)
}

.brand span {
  font-size: 1.05rem
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .9rem;
  font-weight: 600
}

.nav a {
  position: relative
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: .25s
}

.nav a:hover::after {
  width: 100%
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid var(--color-primary);
  border-radius: 999px
}

.nav-cta::after {
  display: none
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.55rem;
  color: var(--color-primary);
  padding: 8px
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  padding: 84px 0 74px
}

.hero::after {
  content: '';
  position: absolute;
  right: -190px;
  top: -220px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(23, 63, 54, .09);
  box-shadow: 0 0 0 55px rgba(23, 63, 54, .025), 0 0 0 110px rgba(23, 63, 54, .018)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.13fr .87fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero h1 {
  font-size: var(--text-display);
  max-width: 780px;
  margin: 15px 0 24px
}

.hero h1 em {
  font-style: normal;
  color: var(--color-primary)
}

.hero-lead {
  font-size: 1.17rem;
  max-width: 670px;
  color: #4d5b56
}

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

.hero-note {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .82rem;
  color: var(--color-text-muted);
  max-width: 630px
}

.hero-note i {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-top: 3px
}

.hero-media {
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--color-surface-2)
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 18, .04) 0%, rgba(7, 22, 18, .14) 42%, rgba(7, 22, 18, .62) 100%);
  pointer-events: none
}

.hero-media-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  background: rgba(11, 32, 27, .76);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 18px 20px;
  color: #fff
}

.hero-media-badge span {
  display: block;
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #d0ddd8;
  margin-bottom: 7px
}

.hero-media-badge strong {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.03em;
  margin-bottom: 8px
}

.hero-media-badge small {
  display: block;
  font-size: .84rem;
  line-height: 1.45;
  color: #d8e2de
}

.dial-card {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 520px
}

.dial-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  pointer-events: none
}

.dial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #aabbb6
}

.dial {
  width: min(360px, 90%);
  aspect-ratio: 1;
  margin: 36px auto 28px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(from 225deg, var(--color-accent) 0 38%, #355d52 38% 68%, #173f36 68% 100%);
  display: grid;
  place-items: center
}

.dial::before {
  content: '';
  position: absolute;
  inset: 22px;
  background: var(--color-dark);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12)
}

.dial::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 38%;
  bottom: 50%;
  left: calc(50% - 5px);
  transform-origin: 50% 100%;
  transform: rotate(36deg);
  background: linear-gradient(to top, var(--color-accent), #fff);
  border-radius: 8px
}

.dial-center {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 45px
}

.dial-center strong {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 3.6rem;
  line-height: 1
}

.dial-center span {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9eb0aa
}

.dial-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.mini-metric {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 15px
}

.mini-metric strong {
  display: block;
  font-size: 1.05rem
}

.mini-metric span {
  font-size: .72rem;
  color: #91a49f;
  text-transform: uppercase;
  letter-spacing: .08em
}

.budget-band {
  background: var(--color-primary);
  color: #fff
}

.budget-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: end
}

.budget-grid h2 {
  color: #fff
}

.budget-grid p {
  color: #c8d7d2
}

.bill-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.bill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .25s
}

.bill:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .11)
}

.bill i {
  font-size: 1.7rem;
  color: var(--color-accent)
}

.bill strong {
  font-size: 1.2rem
}

.bill span {
  font-size: .8rem;
  color: #aec3bd
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center
}

.image-frame {
  aspect-ratio: 4/3;
  background: var(--color-surface-2);
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 63, 54, .12);
  border-radius: inherit;
  pointer-events: none
}

.contract-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft)
}

.contract-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-line)
}

.contract-row:last-child {
  border-bottom: 0
}

.contract-row span {
  color: var(--color-text-muted);
  font-size: .88rem
}

.contract-row strong {
  color: var(--color-text-muted);
  text-align: right
}

.param-section {
  background: #e8e7df
}

.param-header {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 45px
}

.param-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px
}

.param-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: .25s
}

.param-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft)
}

.param-card.large {
  grid-row: span 2;
  min-height: 578px;
  background: var(--color-dark);
  color: #fff
}

.param-card.large p {
  color: #b9cbc5
}

.param-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  font-size: 1.45rem
}

.param-card.large .param-icon {
  background: rgba(255, 255, 255, .1);
  color: var(--color-accent)
}

.wave {
  height: 180px;
  margin-top: 30px;
  display: flex;
  align-items: end;
  gap: 5px
}

.wave span {
  flex: 1;
  background: var(--color-accent);
  border-radius: 999px 999px 4px 4px;
  opacity: .85
}

.wave span:nth-child(1) {
  height: 38%
}

.wave span:nth-child(2) {
  height: 56%
}

.wave span:nth-child(3) {
  height: 48%
}

.wave span:nth-child(4) {
  height: 72%
}

.wave span:nth-child(5) {
  height: 62%
}

.wave span:nth-child(6) {
  height: 86%
}

.wave span:nth-child(7) {
  height: 71%
}

.wave span:nth-child(8) {
  height: 96%
}

.wave span:nth-child(9) {
  height: 77%
}

.wave span:nth-child(10) {
  height: 58%
}

.wave span:nth-child(11) {
  height: 47%
}

.wave span:nth-child(12) {
  height: 65%
}

.consumption {
  background: var(--color-surface)
}

.consumption-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
  align-items: start
}

.profile-list {
  display: grid;
  gap: 12px;
  margin-top: 26px
}

.profile-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line)
}

.profile-item i {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-primary)
}

.profile-item strong {
  font-size: .96rem
}

.profile-item small {
  display: block;
  color: var(--color-text-muted)
}

.profile-item span {
  font-weight: 700;
  color: var(--color-primary)
}

.consumption-image {
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-2)
}

.compare-wrap {
  background: var(--color-dark);
  color: #fff;
  overflow: hidden
}

.compare-wrap h2 {
  color: #fff
}

.compare-wrap p {
  color: #b5c5c0
}

.comparison-box {
  margin-top: 40px;
  background: #f7f5ee;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 10px;
  overflow: hidden
}

.comparison-head,
.tariff-row {
  display: grid;
  grid-template-columns: 1.15fr .82fr .82fr .82fr;
  gap: 10px;
  align-items: center
}

.comparison-head {
  padding: 15px 18px;
  color: var(--color-text-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em
}

.tariff-row {
  padding: 20px 18px;
  border-radius: var(--radius);
  margin-bottom: 7px;
  background: #fff;
  border: 1px solid var(--color-line)
}

.tariff-row.featured {
  background: #e9f0ed;
  border-color: #adc0b9
}

.tariff-name strong {
  display: block
}

.tariff-name span {
  font-size: .78rem;
  color: var(--color-text-muted)
}

.tariff-price strong {
  display: block;
  font-size: 1.12rem
}

.tariff-price span {
  font-size: .75rem;
  color: var(--color-text-muted)
}

.comparison-disclaimer {
  font-size: .76rem;
  color: #8f9f99;
  margin-top: 18px;
  max-width: 980px
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
  counter-reset: step
}

.process-card {
  counter-increment: step;
  border-top: 1px solid var(--color-line);
  padding: 24px 10px 0 0;
  position: relative
}

.process-card::before {
  content: '0' counter(step);
  font-family: 'Newsreader', serif;
  font-size: 3rem;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 28px
}

.process-card p {
  font-size: .9rem
}

.service-pricing {
  background: var(--color-surface-2)
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  transition: .25s
}

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

.price-card.signature {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary)
}

.price-card.signature p,
.price-card.signature .price-tax {
  color: #c3d3ce
}

.price {
  font-family: 'Newsreader', serif;
  font-size: 3.3rem;
  line-height: 1;
  margin: 18px 0 4px
}

.price-tax {
  font-size: .78rem;
  color: var(--color-text-muted);
  min-height: 44px
}

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

.price-card li {
  display: flex;
  gap: 9px;
  font-size: .9rem
}

.price-card li i {
  margin-top: 4px;
  color: var(--color-accent)
}

.price-card .btn {
  margin-top: auto
}

.price-note {
  margin-top: 18px;
  font-size: .76rem;
  color: var(--color-text-muted)
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.trust-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface)
}

.trust-card i {
  font-size: 1.6rem;
  color: var(--color-accent)
}

.trust-card:nth-child(3) {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start
}

.faq {
  background: var(--color-surface)
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 65px;
  align-items: start
}

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

.faq-item {
  border-bottom: 1px solid var(--color-line)
}

.faq-btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  color: var(--color-text);
  font-weight: 700;
  cursor: pointer
}

.faq-btn i {
  transition: .2s;
  color: var(--color-primary);
  font-size: 1.2rem
}

.faq-item.active .faq-btn i {
  transform: rotate(45deg)
}

.faq-item.active .faq-panel {
  max-height: 180px
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq-panel p {
  padding: 0 34px 22px 0;
  margin: 0
}

.lead-section {
  background: var(--color-primary);
  color: #fff
}

.lead-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: start
}

.lead-section h2 {
  color: #fff
}

.lead-section p {
  color: #c4d4cf
}

.form-card {
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow)
}

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

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: .82rem;
  font-weight: 700;
  color: #33443f
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d6dcd9;
  background: #fbfcfa;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  color: var(--color-text);
  transition: .2s;
  min-height: 48px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(23, 63, 54, .09)
}

.field textarea {
  min-height: 110px;
  resize: vertical
}

.checkbox {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .77rem;
  color: var(--color-text-muted)
}

.checkbox input {
  margin-top: 3px;
  accent-color: var(--color-primary)
}

.form-card .btn {
  margin-top: 6px
}

.form-legal {
  font-size: .72rem;
  color: var(--color-text-muted);
  margin: 13px 0 0
}

.site-footer {
  background: #0b201b;
  color: #fff;
  padding: 64px 0 26px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .7fr .8fr;
  gap: 55px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand p {
  color: #a8bbb5;
  max-width: 460px;
  margin-top: 18px
}

.footer-brand .brand img {
  background: #fff
}

.footer-col h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .77rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #9bb0a9;
  margin-bottom: 17px
}

.footer-col a,
.footer-col span {
  display: block;
  color: #e1eae7;
  font-size: .88rem;
  margin: 9px 0
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: end;
  padding-top: 24px
}

.footer-disclaimer {
  font-size: .74rem;
  color: #849993;
  max-width: 870px;
  line-height: 1.6;
  margin: 0
}

.footer-copy {
  font-size: .75rem;
  color: #849993;
  white-space: nowrap
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none
}

.cookie-banner.visible {
  display: block
}

.cookie-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .2);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center
}

.cookie-inner p {
  font-size: .84rem;
  margin: 0
}

.cookie-inner p a {
  text-decoration: underline;
  color: var(--color-primary)
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 16px;
  font-size: .82rem
}

.cookie-settings {
  position: fixed;
  inset: 0;
  background: rgba(8, 25, 21, .62);
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px
}

.cookie-settings.open {
  display: grid
}

.cookie-modal {
  width: min(100%, 620px);
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow)
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line)
}

.cookie-option strong {
  display: block
}

.cookie-option span {
  font-size: .8rem;
  color: var(--color-text-muted)
}

.switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #ccd5d1;
  position: relative;
  flex: 0 0 auto
}

.switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: .2s
}

.switch.on {
  background: var(--color-primary)
}

.switch.on::after {
  left: 23px
}

.switch.locked {
  opacity: .6
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 22px
}

.legal-hero {
  padding: 72px 0 50px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line)
}

.legal-hero h1 {
  font-size: var(--text-h1);
  max-width: 900px;
  margin-bottom: 16px
}

.legal-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .83rem;
  color: var(--color-text-muted)
}

.legal-page {
  padding: 70px 0 100px
}

.legal-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  align-items: start
}

.legal-nav {
  position: sticky;
  top: 115px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface)
}

.legal-nav a {
  display: block;
  font-size: .82rem;
  color: var(--color-text-muted);
  padding: 7px 0
}

.legal-nav a:hover {
  color: var(--color-primary)
}

.legal-copy {
  max-width: 820px
}

.legal-copy section {
  margin-bottom: 48px;
  scroll-margin-top: 120px
}

.legal-copy h2 {
  font-size: 2rem
}

.legal-copy h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  margin-top: 28px;
  margin-bottom: 10px
}

.legal-copy p {
  color: #4f5d58
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 34px;
  margin: 24px 0
}

.contact-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line)
}

.contact-row:last-child {
  border-bottom: 0
}

.thanks-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 84px 0
}

.thanks-hero h1 {
  font-size: var(--text-h1);
  color: #fff;
  word-break: break-word;
}

.thanks-hero p {
  color: #c6d5d0;
  max-width: 780px;
  word-break: break-word;
}

.thanks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px
}

.next-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: 30px
}

.next-card .num {
  font-family: 'Newsreader', serif;
  font-size: 2.8rem;
  color: var(--color-accent)
}

.utility-box {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px
}

.utility-box p {
  color: #b8c9c3
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px
}

@media(max-width:1024px) {
  .nav {
    display: none
  }

  .mobile-toggle {
    display: block
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    border-bottom: 1px solid var(--color-line)
  }

  .hero-grid,
  .budget-grid,
  .split,
  .consumption-grid,
  .trust-grid,
  .faq-grid,
  .lead-grid,
  .footer-top,
  .legal-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    gap: 40px
  }

  .hero-media {
    min-height: 420px
  }

  .budget-grid {
    gap: 32px
  }

  .param-grid {
    grid-template-columns: 1fr 1fr
  }

  .param-card.large {
    grid-row: auto;
    grid-column: 1/-1;
    min-height: 430px
  }

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

  .price-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    gap: 30px
  }

  .legal-nav {
    position: relative;
    top: auto
  }

  .legal-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
  }

  .legal-nav a {
    padding: 3px 0
  }

  .footer-bottom {
    grid-template-columns: 1fr
  }

  .cookie-inner {
    grid-template-columns: 1fr
  }

  .comparison-box {
    overflow-x: auto
  }

  .comparison-head,
  .tariff-row {
    min-width: 760px
  }

  .param-header {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .section {
    padding: 70px 0
  }

  .hero {
    padding: 64px 0 60px
  }

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

  .bill-stack,
  .param-grid,
  .process-grid,
  .trust-cards,
  .form-grid,
  .thanks-grid {
    grid-template-columns: 1fr
  }

  .param-card.large {
    grid-column: auto
  }

  .bill {
    min-height: 155px
  }

  .hero-media {
    min-height: 340px
  }

  .hero-media-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 16px 15px
  }

  .hero-media-badge strong {
    font-size: 1.45rem
  }

  .profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-item>span {
    grid-column: 2
  }

  .trust-card:nth-child(3) {
    grid-column: auto;
    display: block
  }

  .field.full,
  .checkbox {
    grid-column: auto
  }

  .form-card {
    padding: 26px 20px
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    align-items: start
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .cookie-actions .btn:last-child {
    grid-column: 1/-1
  }

  .legal-page {
    padding-top: 50px
  }
}

@media(max-width:375px) {
  .hero h1 {
    font-size: 2.8rem
  }

  .header-row {
    height: 70px
  }

  .brand span {
    font-size: .95rem
  }

  .hero-media-badge strong {
    font-size: 1.28rem
  }
}

/* Section alignment refinements */
.bill strong {
  display: block;
  margin-bottom: 8px
}

.bill span {
  display: block;
  line-height: 1.45
}

.contract-split {
  align-items: stretch
}

.contract-split .contract-image {
  aspect-ratio: auto;
  min-height: 100%;
  height: 100%
}

.contract-split .contract-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.contract-copy {
  height: 100%;
  display: flex;
  flex-direction: column
}

.contract-copy .contract-panel {
  margin-top: auto
}

.profile-item {
  grid-template-columns: 18px 1fr auto;
  column-gap: 16px
}

.profile-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px var(--color-accent-soft);
  display: block;
  justify-self: center
}

.trust-grid {
  align-items: stretch
}

.trust-story {
  height: 100%;
  display: flex;
  flex-direction: column
}

.trust-story .image-frame {
  aspect-ratio: auto;
  flex: 1;
  min-height: 300px;
  margin-top: 24px
}

.trust-story .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.trust-cards {
  height: 100%;
  grid-template-rows: 1fr 1fr
}

.trust-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}

.trust-card:nth-child(3) {
  height: 100%
}

.lead-grid {
  align-items: stretch
}

.lead-copy {
  height: 100%;
  display: flex;
  flex-direction: column
}

.lead-copy #mini-calc {
  margin-top: auto
}

.form-card {
  height: 100%;
  display: flex;
  align-items: stretch
}

.form-card .form-grid {
  width: 100%;
  align-content: start
}

@media(max-width:1024px) {
  .contract-split .contract-image {
    min-height: none;
    height: auto;
    aspect-ratio: 4/3
  }

  .trust-story .image-frame {
    aspect-ratio: 4/3;
    flex: none;
    min-height: 0
  }

  .trust-cards {
    height: auto;
    grid-template-rows: auto
  }

  .lead-copy #mini-calc {
    margin-top: 28px
  }

  .form-card {
    height: auto
  }
}

@media(max-width:768px) {
  .profile-item {
    grid-template-columns: 18px 1fr
  }

  .profile-item>span:last-child {
    grid-column: 2
  }

  .profile-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center
  }
}