:root {
  --ink: #10262b;
  --muted: #5b6c70;
  --teal: #0b6b64;
  --teal-dark: #0c282c;
  --mint: #dcefeb;
  --mint-soft: #eef6f4;
  --orange: #f47a39;
  --orange-soft: #fff1e8;
  --sand: #f7f2ec;
  --line: #dce5e3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(16, 38, 43, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 227, 0.8);
  backdrop-filter: blur(16px);
}

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

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

.logo {
  width: 138px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(16, 38, 43, 0.06);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav.nav-open .nav-toggle-bars {
  background: transparent;
}

.nav.nav-open .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav.nav-open .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 800;
  color: #243b40;
}

.nav-links a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links .active,
.nav-trigger:hover,
.nav-trigger.active,
.nav-dropdown:focus-within .nav-trigger {
  background: var(--mint);
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  justify-content: space-between;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(16, 38, 43, 0.06);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: var(--muted);
}

.language-switch .active {
  color: var(--white);
  background: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 24px rgba(11, 107, 100, 0.18);
  cursor: pointer;
}

.button.orange {
  background: var(--orange);
  box-shadow: 0 14px 24px rgba(244, 122, 57, 0.22);
}

.button.light {
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-soft) 100%);
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

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

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 strong {
  color: var(--teal);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 20px;
}

.lead-panel {
  width: min(100%, 560px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.quote-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fbfa;
  font: inherit;
  font-weight: 800;
}

.quote-form button {
  grid-column: 1 / -1;
}

.trust-line {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.form-section {
  padding: 58px 0;
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.form-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 950;
}

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

.form-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.form-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.form-points li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 950;
}

.form-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: 390px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(145deg, #e8f4f2, #fff6ee);
  box-shadow: var(--shadow);
}

.hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 18 / 14;
  object-fit: cover;
}

.thermal-card {
  position: relative;
  height: 100%;
  min-height: 334px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(90deg, #9fc6df 0 37%, #f47a39 37% 58%, #ffe3cf 58% 100%);
}

.thermal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 27%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 26% 58%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px),
    linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.24) 43% 44%, transparent 45% 53%, rgba(255, 255, 255, 0.24) 54% 55%, transparent 56%);
}

.temp {
  position: absolute;
  top: 24px;
  font-weight: 950;
}

.temp small {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.temp.cold {
  left: 28px;
  color: var(--white);
}

.temp.warm {
  right: 28px;
  color: var(--teal);
}

.loss-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 170px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.radiator {
  position: absolute;
  right: 36px;
  bottom: 78px;
  width: 62px;
  height: 78px;
  border: 4px solid rgba(16, 38, 43, 0.16);
  border-radius: 8px;
}

.radiator::before,
.radiator::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 5px;
  background: rgba(16, 38, 43, 0.16);
}

.radiator::before {
  left: 18px;
}

.radiator::after {
  right: 18px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-height: 72px;
  align-items: center;
  color: #294449;
  font-size: 14px;
  font-weight: 900;
}

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

.proof-items span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--mint);
  box-shadow: inset 0 0 0 5px #eef8f6;
}

.section {
  padding: 84px 0;
}

.page-hero {
  padding: 48px 0 68px;
  background: var(--mint-soft);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.page-hero-main {
  min-width: 0;
}

.page-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 18 / 14;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--teal);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 68px);
}

.page-hero .hero-copy {
  max-width: 780px;
}

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

.summary-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.summary-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.summary-item span {
  color: var(--muted);
  font-size: 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-body {
  max-width: 760px;
  min-width: 0;
}

.article-body h2 {
  margin: 52px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 28px 0 8px;
  font-size: 22px;
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
}

.article-body strong {
  color: var(--ink);
}

.sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.side-card,
.note-box,
.decision-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.side-card {
  padding: 24px;
  box-shadow: var(--shadow);
}

.side-card h2,
.side-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.side-card p {
  color: var(--muted);
}

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

.toc-list a {
  color: var(--muted);
  font-weight: 800;
}

.toc-list a:hover {
  color: var(--teal);
}

.note-box {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--orange);
  background: #fffaf5;
}

.note-box p {
  margin: 0;
}

.price-table {
  width: 100%;
  margin: 24px 0 10px;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.price-table th {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.small-print {
  color: var(--muted);
  font-size: 14px;
}

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

.decision-box {
  padding: 20px;
}

.decision-box h3 {
  margin-top: 0;
  font-size: 18px;
}

.check-panel {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.check-panel h2,
.check-panel p {
  color: var(--white);
}

.check-panel .check-list {
  color: rgba(255, 255, 255, 0.82);
}

.check-panel .check-list li::before {
  color: var(--orange);
}

.section.tinted {
  background: var(--sand);
}

.section-head {
  max-width: 650px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 950;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.reason-card,
.region-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  display: flex;
  min-height: 250px;
  padding: 26px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 26px rgba(16, 38, 43, 0.05);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--mint-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 950;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.1;
}

.service-card p {
  color: var(--muted);
}

.price {
  color: var(--teal);
  font-weight: 950;
}

.text-link {
  color: var(--orange);
  font-weight: 950;
}

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

.reason-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px;
}

.reason-card .mark,
.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--orange-soft);
  font-weight: 950;
}

.reason-card h3,
.region-card h3,
.step-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.reason-card p,
.region-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.region-card {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint-soft);
  font-size: 12px;
  font-weight: 950;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
}

.check-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 950;
}

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

.step-card {
  padding: 24px;
}

.step-number {
  margin-bottom: 18px;
  color: var(--white);
  background: var(--teal);
}

.cta-band {
  padding: 72px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 24%, rgba(244, 122, 57, 0.7), transparent 16%),
    linear-gradient(135deg, #0b6b64, #0c282c);
}

.cta-box h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.cta-box p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq .section-head {
  margin-inline: auto;
  text-align: center;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 950;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--teal);
  font-weight: 950;
}

.faq-item[open] summary::after {
  content: "x";
}

.faq-item p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 62px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--teal-dark);
}

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

.footer-logo {
  width: 86px;
  margin-bottom: 20px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 920px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    min-height: 64px;
    padding: 14px 0;
  }

  .nav > a[aria-label] {
    grid-column: 1;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav-actions {
    grid-column: 4;
    justify-self: end;
    margin-left: 0;
    gap: 8px;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-trigger {
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    border-radius: 6px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 4px 12px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 2px solid var(--mint);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 0 10px;
  }

  .hero-grid,
  .page-hero-grid,
  .form-grid,
  .content-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .proof-items,
  .summary-grid,
  .services-grid,
  .regions-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

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

  .nav-actions {
    grid-column: 2;
  }

  .nav-toggle {
    grid-column: 3;
  }

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

  .language-switch {
    height: 36px;
  }

  .language-switch a {
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .quote-form,
  .proof-items,
  .summary-grid,
  .services-grid,
  .reasons-grid,
  .regions-grid,
  .steps-grid,
  .decision-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-body h2,
  .article-body h3,
  .article-body p,
  .note-box,
  .decision-box {
    overflow-wrap: break-word;
  }

  .price-table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .price-table th,
  .price-table td {
    padding: 12px;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 300px;
    padding: 18px;
  }

  .thermal-card {
    min-height: 270px;
  }

  .section {
    padding: 58px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
