:root {
  color-scheme: light;
  --bg: #f5f6f1;
  --bg-strong: #e9eee7;
  --mist: #edf3ef;
  --paper: #fffefa;
  --paper-soft: #fbfbf6;
  --ink: #10201c;
  --ink-2: #1d332e;
  --muted: #5f6f6a;
  --muted-strong: #41514d;
  --line: #d8ded6;
  --green: #0f6f59;
  --green-dark: #0b4238;
  --slate: #24485a;
  --slate-dark: #17323f;
  --gold: #c28a2c;
  --gold-deep: #8f6016;
  --gold-soft: #f1dfbb;
  --white: #ffffff;
  --danger: #a33a2d;
  --shadow-soft: 0 18px 52px rgba(16, 32, 28, 0.11);
  --shadow-deep: 0 28px 84px rgba(16, 32, 28, 0.18);
  --shadow-crisp: 0 1px 0 rgba(255, 255, 255, 0.72) inset, 0 18px 44px rgba(16, 32, 28, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  hyphens: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(36, 72, 90, 0.13), transparent 30%),
    linear-gradient(118deg, rgba(15, 111, 89, 0.1) 0%, transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, var(--mist) 42%, var(--bg-strong) 100%);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(15, 111, 89, 0.16);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 32, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 28, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

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

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

button,
a,
input,
select,
textarea,
summary {
  touch-action: manipulation;
}

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

p {
  color: var(--muted);
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--ink);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.16;
}

section[id],
main[id],
#top {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  transform: translateY(-140%);
  transition-property: transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

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

.topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 36px;
  padding: 8px 18px;
  background: var(--ink);
  color: #f8fbf6;
  font-size: 13px;
  font-weight: 800;
}

.topline span,
.topline a {
  opacity: 0.92;
}

.topline a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 24px);
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 32, 28, 0.09);
  background: rgba(245, 246, 241, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-dark), var(--slate));
  color: #f6d994;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 34px rgba(16, 32, 28, 0.2);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand strong {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.35vw, 22px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav a,
.header-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  transition-property: color, background-color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(16, 32, 28, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.78);
  padding: 4px;
}

.language-btn {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  transition-property: background-color, color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.language-btn:hover,
.language-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.header-phone {
  justify-content: center;
  background: linear-gradient(135deg, var(--ink), var(--green-dark));
  color: var(--white);
  padding: 0 16px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(16, 32, 28, 0.16);
}

.header-phone:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

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

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: min(860px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: #06101a;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 62px);
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 12, 19, 0.36) 0%, rgba(4, 12, 19, 0.54) 45%, rgba(4, 12, 19, 0.82) 100%),
    linear-gradient(115deg, rgba(3, 34, 48, 0.86) 0%, rgba(10, 74, 63, 0.58) 46%, rgba(194, 138, 44, 0.12) 100%),
    url("./assets/alpine-chalet.jpg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 254, 250, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  opacity: 0.72;
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  display: grid;
  max-width: min(1080px, 100%);
  justify-items: center;
}

.problem > *,
.calculator > *,
.split-feature > *,
.region > *,
.hostdirect > *,
.contact > *,
.feature-copy,
.feature-list {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248, 251, 246, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.hero .eyebrow,
.hero h1 {
  color: #fff8eb;
}

.hero .eyebrow {
  color: #f1ca79;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.hero h1 {
  max-width: min(1080px, 100%);
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 0.98;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.42);
}

.hero-partner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
}

.hero-partner span,
.hero-partner a {
  display: inline-flex;
  max-width: 100%;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(16, 32, 28, 0.11);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.1);
  color: #fff8eb;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: normal;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.hero-partner a:first-child {
  border-color: rgba(194, 138, 44, 0.36);
  background: linear-gradient(135deg, rgba(241, 223, 187, 0.96), rgba(194, 138, 44, 0.78));
  color: #1c1305;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 12px;
}

.hero-actions {
  margin: 26px 0 18px;
}

.hero-actions .btn {
  min-width: min(250px, 100%);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-align: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.38) inset;
  transition-property: transform, background-color, color, border-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

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

.btn:active {
  transform: scale(0.96);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, #17a475, var(--green-dark));
  color: #fff8eb;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 18px 44px rgba(5, 98, 67, 0.42);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1db984, var(--green-dark));
}

.btn-secondary {
  background: linear-gradient(135deg, #d39b38, var(--gold));
  color: #1c1305;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.32) inset, 0 16px 36px rgba(194, 138, 44, 0.2);
}

.btn-secondary:hover {
  background: #d29a39;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 254, 250, 0.12);
  color: #fff8eb;
}

.btn-ghost:hover {
  border-color: rgba(15, 111, 89, 0.34);
  background: var(--white);
}

.btn-ghost.dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8eb;
}

.full {
  width: 100%;
}

.trust-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(16, 32, 28, 0.08);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.13);
  color: rgba(248, 251, 246, 0.86);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: var(--shadow-crisp);
}

.hero-panel {
  position: relative;
  display: contents;
  gap: 0;
}

.hero-panel-note {
  display: none;
}

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

.hero-panel-note span {
  margin-bottom: 3px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-note strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.hero-image {
  display: none;
}

.image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--green-dark);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(16, 32, 28, 0.16);
}

.handover-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(16, 32, 28, 0.82);
  color: #fff8eb;
  padding: 18px;
  backdrop-filter: blur(14px);
}

.handover-panel strong {
  font-size: 18px;
}

.handover-panel span {
  color: #dfe8e2;
  font-weight: 750;
}

.handover-panel a {
  width: max-content;
  color: #f1ca79;
  font-weight: 900;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(780px, 100%);
  margin: 24px auto 0;
}

.hero-metrics div {
  min-width: 0;
  border: 1px solid rgba(16, 32, 28, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.96);
  padding: 15px;
  box-shadow: var(--shadow-crisp);
  backdrop-filter: blur(10px);
}

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

.hero-metrics strong {
  color: var(--slate-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.8vw, 33px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.problem,
.region,
.hostdirect,
.contact,
.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.problem {
  align-items: end;
  border-top: 1px solid rgba(16, 32, 28, 0.1);
  border-bottom: 1px solid rgba(16, 32, 28, 0.1);
}

.problem p {
  margin-bottom: 0;
  font-size: clamp(17px, 1.8vw, 20px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 17px;
}

.calculator-section {
  position: relative;
  margin-top: -18px;
  padding-top: 24px;
}

.calculator-section::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 58%;
  border-radius: var(--radius);
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 32, 28, 0.06), transparent),
    linear-gradient(135deg, rgba(255, 254, 250, 0.66), rgba(241, 223, 187, 0.22));
}

.calculator-section .section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 22px;
}

.calculator-section .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.calculator-section .section-heading h2 {
  margin-bottom: 0;
}

.calculator-section .section-heading p {
  max-width: 560px;
  justify-self: end;
}

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

.service-grid article {
  min-width: 0;
  min-height: 260px;
  border: 1px solid rgba(16, 32, 28, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.88);
  padding: 24px;
  box-shadow: var(--shadow-crisp);
  transition-property: transform, box-shadow, border-color;
  transition-duration: 170ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.service-grid article:hover {
  border-color: rgba(15, 111, 89, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.service-grid p {
  margin-bottom: 0;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  border: 1px solid rgba(16, 32, 28, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.95), rgba(229, 238, 232, 0.9) 48%, rgba(255, 247, 231, 0.82)),
    var(--paper);
  padding: clamp(16px, 2vw, 22px);
  box-shadow: var(--shadow-deep);
}

.calc-form,
.lead-form {
  display: grid;
  gap: 14px;
}

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

.calc-intro {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 32, 28, 0.07);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 231, 0.72)),
    var(--white);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78) inset, 0 10px 28px rgba(16, 32, 28, 0.06);
}

.calc-intro span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8a444, var(--gold));
  color: #221704;
  font-weight: 950;
}

.calc-intro strong,
.calc-intro small {
  display: block;
}

.calc-intro small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 750;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.mode-toggle {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mode-toggle legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.mode-toggle label {
  position: relative;
  min-width: 0;
}

.mode-toggle input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  opacity: 0;
  cursor: pointer;
}

.mode-toggle span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 32, 28, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-strong);
  padding: 10px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition-property: background-color, border-color, color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.mode-toggle input:checked + span {
  border-color: rgba(15, 111, 89, 0.4);
  background: linear-gradient(135deg, var(--green-dark), var(--slate-dark));
  color: #fff8eb;
  box-shadow: 0 12px 24px rgba(16, 32, 28, 0.14);
}

.mode-toggle input:focus-visible + span {
  outline: 3px solid rgba(194, 138, 44, 0.48);
  outline-offset: 2px;
}

label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 32, 28, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  box-shadow: 0 1px 0 rgba(16, 32, 28, 0.04) inset, 0 8px 18px rgba(16, 32, 28, 0.035);
  outline-offset: 2px;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

textarea {
  min-height: 134px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 111, 89, 0.28);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 111, 89, 0.48);
  box-shadow: 0 0 0 3px rgba(15, 111, 89, 0.1);
}

:focus-visible {
  outline: 3px solid rgba(194, 138, 44, 0.52);
  outline-offset: 3px;
}

.check-row {
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
}

.check-row input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--green);
}

.check-row span {
  color: var(--ink);
  font-weight: 800;
}

.calc-result {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  align-content: start;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(36, 72, 90, 0.94), rgba(11, 66, 56, 0.97) 44%, rgba(16, 32, 28, 0.99)),
    var(--ink);
  color: #fff8eb;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 18px 50px rgba(16, 32, 28, 0.24);
}

.calc-result::before {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.calc-result h3 {
  color: #fff8eb;
  margin-bottom: 10px;
}

.calc-result .eyebrow {
  color: #f1ca79;
}

.calc-summary {
  margin-top: -4px;
  color: #dfe8e2;
  font-weight: 800;
}

.calc-result dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.calc-result dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
}

.calc-result dt {
  color: #d4ded8;
  font-weight: 800;
}

.calc-result dd {
  margin: 0;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.calc-result .total {
  border-bottom: 0;
  color: #fff8eb;
  font-size: clamp(20px, 2.2vw, 25px);
}

.small-note {
  color: #d4ded8;
  font-size: 14px;
}

.calc-result .btn {
  margin-top: 6px;
}

.feature-copy {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(16, 32, 28, 0.96), rgba(15, 111, 89, 0.92)),
    var(--ink);
  color: #fff8eb;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-deep);
}

.feature-copy h2 {
  color: #fff8eb;
}

.feature-copy p:not(.eyebrow) {
  color: #dfe8e2;
}

.feature-copy .eyebrow {
  color: #f1ca79;
}

.feature-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.feature-list div {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16, 32, 28, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.88);
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow-crisp);
}

.feature-list span[aria-hidden="true"] {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-list [data-i18n] {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: normal;
}

.region {
  align-items: center;
}

.region p {
  margin-bottom: 0;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.location-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(16, 32, 28, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.84);
  padding: 10px 15px;
  font-weight: 900;
  transition-property: background-color, border-color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.location-list a:hover {
  border-color: rgba(15, 111, 89, 0.28);
  background: var(--white);
  transform: translateY(-1px);
}

.hostdirect {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(132deg, rgba(36, 72, 90, 0.95), rgba(11, 66, 56, 0.97)),
    var(--green-dark);
  color: #fff8eb;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-deep);
}

.hostdirect h2 {
  color: #fff8eb;
}

.hostdirect p {
  color: #dfe8e2;
}

.hostdirect .eyebrow {
  color: #f1ca79;
}

.hostdirect-copy,
.partner-box {
  position: relative;
  z-index: 1;
}

.hostdirect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.partner-box {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.94);
  color: var(--ink);
  padding: 22px;
  box-shadow: 0 18px 54px rgba(16, 32, 28, 0.2);
}

.partner-box strong {
  font-size: 19px;
}

.partner-box span {
  border-left: 3px solid var(--gold);
  color: #53645e;
  padding-left: 11px;
  font-weight: 850;
}

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

.faq-grid details {
  min-width: 0;
  border: 1px solid rgba(16, 32, 28, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.82);
  padding: 20px;
  box-shadow: 0 12px 32px rgba(16, 32, 28, 0.07);
}

.faq-grid summary {
  min-height: 40px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.faq-grid p {
  margin: 12px 0 0;
}

.contact {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  font-weight: 900;
}

.contact-details a {
  width: max-content;
  color: var(--green-dark);
}

.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form {
  border: 1px solid rgba(16, 32, 28, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.95), rgba(255, 247, 231, 0.52)),
    rgba(255, 254, 250, 0.9);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-crisp);
}

.form-status {
  min-height: 25px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(16, 32, 28, 0.1);
  padding: 36px clamp(18px, 4vw, 56px) 92px;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  font-weight: 850;
}

.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-cta {
  position: fixed;
  right: calc(12px + env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: calc(12px + env(safe-area-inset-left));
  z-index: 60;
  display: none;
  box-sizing: border-box;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(16, 32, 28, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.96);
  padding: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 16px 54px rgba(16, 32, 28, 0.22);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: grid;
  min-height: 46px;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--ink), var(--green-dark));
  color: var(--white);
  padding: 0 4px;
  font-size: 14px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-cta a:nth-child(2) {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.mobile-cta a:nth-child(3) {
  background: linear-gradient(135deg, #d8a444, var(--gold));
  color: #1c1305;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 8px;
    font-size: 13px;
  }

  .header-phone {
    padding: 0 12px;
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .topline,
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .hero,
  .problem,
  .calculator,
  .calculator-section .section-heading,
  .split-feature,
  .region,
  .hostdirect,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .hero h1,
  .hero-lede {
    max-width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding: 38px 18px 34px;
  }

  .hero::before {
    inset: 0;
  }

  .calculator-section {
    margin-top: 0;
    padding-top: 34px;
  }

  .calculator-section::before {
    right: 0;
    left: 0;
  }

  .calculator-section .section-heading p {
    justify-self: start;
  }

  .calc-result {
    position: static;
  }

  .hero-image {
    min-height: 340px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin: 18px 0 0;
  }

  .contact-copy {
    position: static;
  }

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

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    width: 100%;
    max-width: 100%;
    padding: 52px 14px;
  }

  .site-header {
    gap: 8px;
    padding: 11px 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .language-switcher {
    flex: 0 0 auto;
    padding: 3px;
  }

  .language-btn {
    min-width: 32px;
  }

  h1 {
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1;
  }

  .hero,
  .hero-copy,
  .hero-panel,
  .hero-partner,
  .hero-lede,
  .trust-strip,
  .hero-actions,
  .hero-metrics,
  .hero-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-lede {
    font-size: 16px;
    max-width: 34ch;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero-partner {
    display: grid;
    max-width: 100%;
    justify-content: center;
    justify-items: center;
    gap: 6px;
  }

  .hero-partner span,
  .hero-partner a {
    min-height: 34px;
    width: max-content;
    padding: 7px 10px;
    font-size: 11px;
  }

  .trust-strip {
    display: none;
  }

  .trust-strip span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero-image {
    min-height: 310px;
    background-position: center 44%;
  }

  .image-badge {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    white-space: normal;
  }

  .hero-panel-note {
    width: calc(100% - 24px);
    margin: 0 12px -26px;
    padding: 13px 14px;
  }

  .handover-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .service-grid,
  .calc-form,
  .mode-toggle {
    grid-template-columns: 1fr;
  }

  .calculator,
  .hostdirect,
  .lead-form {
    padding: 16px;
  }

  .calculator {
    gap: 14px;
  }

  .calc-intro small {
    grid-column: 1 / -1;
  }

  .calc-result {
    padding: 20px;
  }

  .calc-result dl div {
    display: grid;
    gap: 3px;
  }

  .calc-result dd {
    text-align: left;
  }

  .footer {
    display: grid;
    padding-bottom: 98px;
  }

  .mobile-cta {
    right: calc(8px + env(safe-area-inset-right));
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: calc(8px + env(safe-area-inset-left));
    gap: 5px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
  }

  .mobile-cta a {
    min-height: 42px;
    padding: 0 2px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.05;
    white-space: normal;
  }

  .mobile-cta a:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 36px;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 8px;
  }

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

  .brand small {
    display: none;
  }

  .language-btn {
    min-width: 30px;
  }
}

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