:root {
  color-scheme: dark;
  --bg: #07090c;
  --bg-soft: #0c1015;
  --panel: rgba(15, 19, 25, 0.9);
  --panel-strong: #0d1117;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f8fa;
  --muted: #929da6;
  --ice: #69bfff;
  --ice-strong: #278fdc;
  --ice-dark: #0b2e4a;
  --heat: #f19a42;
  --heat-strong: #f47821;
  --silver: #d9e0e5;
  --success: #6ee7b7;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 4%, rgba(39, 143, 220, 0.13), transparent 30%),
    radial-gradient(circle at 7% 26%, rgba(244, 120, 33, 0.08), transparent 27%),
    linear-gradient(180deg, #07090c 0%, #0a0e13 62%, #050608 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
select,
input {
  font: inherit;
}

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

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}

.ambient-one {
  top: -260px;
  right: -100px;
  background: #1e8edc;
}

.ambient-two {
  top: 700px;
  left: -380px;
  background: var(--heat-strong);
}

.site-header {
  width: min(1320px, calc(100% - 48px));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: #050607;
  box-shadow:
    -4px 0 18px rgba(244, 120, 33, 0.12),
    4px 0 18px rgba(39, 143, 220, 0.14);
}

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

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
  letter-spacing: 0.13em;
}

.brand-copy strong {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #adb6bd 55%, #f4f6f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-copy small {
  color: #9aa6ae;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.private-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.private-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(110, 231, 183, 0.65);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dfe8ec;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--heat);
}

.phone-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-calculator {
  position: relative;
  padding: 86px 0 104px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin-bottom: 62px;
}

.hero-emblem {
  position: absolute;
  z-index: 0;
  top: 58px;
  right: 58px;
  width: 205px;
  display: grid;
  justify-items: center;
  gap: 13px;
  opacity: 0.9;
}

.hero-emblem::before {
  position: absolute;
  z-index: -1;
  inset: 18% -18%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(244, 120, 33, 0.2), rgba(39, 143, 220, 0.24));
  filter: blur(36px);
  content: "";
}

.hero-emblem img {
  width: 190px;
  height: 190px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.hero-emblem span {
  color: #707b83;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b2bec5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--heat-strong), var(--ice-strong));
}

h1 {
  margin: 0;
  font-size: clamp(45px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 660;
}

h1 em {
  color: transparent;
  background: linear-gradient(103deg, #f2a04e 4%, #eef2f4 48%, #65b9fa 96%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  font-weight: 370;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 27px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c4d0d6;
  font-size: 14px;
  font-weight: 600;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 120, 33, 0.11), rgba(39, 143, 220, 0.12));
  stroke: #9bcdf1;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calculator-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(350px, 0.83fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(10, 13, 17, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.calculator-shell::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--heat-strong), #d4d9dc 49%, var(--ice-strong));
  content: "";
}

.calculator-form {
  position: relative;
  z-index: 1;
  padding: 42px;
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 38px;
}

.step-kicker {
  color: var(--heat);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.form-heading h2 {
  margin: 5px 0 0;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.reset-button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.reset-button:hover {
  color: var(--text);
  border-color: var(--text);
}

.field-group {
  margin: 0 0 32px;
}

.field-group > label,
.field-label,
.field-group legend,
.field-row label {
  display: block;
  margin-bottom: 11px;
  color: #d4dfe3;
  font-size: 13px;
  font-weight: 700;
}

.client-type-group {
  padding: 0;
  border: 0;
}

.client-type-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.client-type-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.client-type-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.client-type-options label > span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.client-type-options strong,
.client-type-options small {
  display: block;
}

.client-type-options strong {
  color: #d8e2e6;
  font-size: 13px;
}

.client-type-options small {
  flex: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.client-type-options label:hover > span {
  border-color: rgba(139, 231, 246, 0.28);
}

.client-type-options input:checked + span {
  border-color: rgba(95, 176, 237, 0.52);
  background: linear-gradient(100deg, rgba(244, 120, 33, 0.045), rgba(39, 143, 220, 0.075));
  box-shadow: inset 0 0 24px rgba(39, 143, 220, 0.025);
}

.client-type-options input:checked + span small {
  color: var(--ice);
}

.vat-caveat {
  display: block;
  margin-top: 8px;
  color: #687983;
  font-size: 10px;
  line-height: 1.45;
}

.device-select {
  position: relative;
}

.device-select-button {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 48px 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.device-select-button:focus-visible,
.device-select-button[aria-expanded="true"] {
  border-color: rgba(139, 231, 246, 0.6);
  background: rgba(139, 231, 246, 0.04);
}

.device-select-button svg {
  flex: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ice);
  stroke-width: 1.8;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.device-select-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.device-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 360px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(139, 231, 246, 0.26);
  border-radius: var(--radius-md);
  background: #111820;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.58);
}

.device-select-menu[hidden] {
  display: none;
}

.device-option-group + .device-option-group {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid var(--line);
}

.device-option-group-label {
  padding: 7px 10px 5px;
  color: #7f929e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.device-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #f4f8fa;
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.device-option:hover,
.device-option:focus-visible {
  outline: none;
  background: rgba(105, 191, 255, 0.13);
}

.device-option[aria-selected="true"] {
  background: linear-gradient(100deg, rgba(244, 120, 33, 0.16), rgba(39, 143, 220, 0.2));
  color: #ffffff;
}

.device-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.device-meta strong {
  flex: none;
  padding: 4px 7px;
  border-radius: 99px;
  background: rgba(139, 231, 246, 0.08);
  color: var(--ice);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.split-fields {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
}

.stepper {
  height: 52px;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.stepper button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ice);
  font-size: 21px;
  cursor: pointer;
}

.stepper button:hover {
  background: rgba(139, 231, 246, 0.05);
}

.stepper output {
  text-align: center;
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
}

.quantity-group small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-row output {
  margin-bottom: 11px;
  color: var(--ice);
  font-size: 13px;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  height: 3px;
  margin: 14px 0 11px;
  appearance: none;
  border-radius: 99px;
  outline: none;
  background: linear-gradient(90deg, var(--ice-strong), rgba(255, 255, 255, 0.13));
}

input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 4px solid #0b161d;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 0 1px var(--ice), 0 0 16px rgba(139, 231, 246, 0.38);
  cursor: grab;
}

input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 4px solid #0b161d;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 0 1px var(--ice), 0 0 16px rgba(139, 231, 246, 0.38);
  cursor: grab;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #687983;
  font-size: 10px;
}

.additions {
  padding: 0;
  border: 0;
}

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

.addition-card {
  min-height: 78px;
  display: grid !important;
  grid-template-columns: 19px 1fr auto;
  align-items: center;
  gap: 11px;
  margin: 0 !important;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.addition-card:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 231, 246, 0.28);
}

.addition-card:has(input:checked) {
  border-color: rgba(139, 231, 246, 0.52);
  background: rgba(139, 231, 246, 0.055);
}

.addition-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-ui {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #4b5d67;
  border-radius: 5px;
  color: #071016;
}

.check-ui svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  opacity: 0;
}

.addition-card input:checked + .check-ui {
  border-color: var(--ice);
  background: var(--ice);
}

.addition-card input:checked + .check-ui svg {
  opacity: 1;
}

.addition-copy {
  min-width: 0;
}

.addition-copy strong,
.addition-copy small {
  display: block;
}

.addition-copy strong {
  color: #dce6ea;
  font-size: 13px;
  line-height: 1.25;
}

.addition-copy small {
  margin-top: 4px;
  color: #73858f;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.addition-price {
  color: #9fb0b9;
  font-size: 10px;
  white-space: nowrap;
}

.estimate-panel {
  position: relative;
  padding: 42px 38px;
  border-left: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 0 0, rgba(244, 120, 33, 0.075), transparent 30%),
    radial-gradient(circle at 100% 18%, rgba(39, 143, 220, 0.1), transparent 34%),
    rgba(7, 10, 14, 0.88);
}

.estimate-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #748792;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  letter-spacing: 0;
  text-transform: lowercase;
}

.live-dot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(110, 231, 183, 0.65);
}

.estimate-price {
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--line);
}

.estimate-price span,
.estimate-price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.estimate-price strong {
  display: block;
  margin: 9px 0 7px;
  color: transparent;
  background: linear-gradient(100deg, #f2f5f6 10%, #bcc5ca 45%, #6abaf6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(28px, 3.3vw, 39px);
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.breakdown {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.breakdown > div {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #93a4ad;
  font-size: 12px;
}

.breakdown span small {
  color: #61737d;
}

.breakdown strong {
  flex: none;
  color: #c9d5da;
  font-size: 12px;
}

.breakdown .breakdown-total {
  min-height: 42px;
  margin-top: 5px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  color: #d7e1e5;
  font-weight: 700;
}

.breakdown .breakdown-total strong {
  color: #7cc6fa;
  font-size: 13px;
}

.estimate-note {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 21px 0;
  padding: 13px;
  border: 1px solid rgba(139, 231, 246, 0.12);
  border-radius: 11px;
  background: rgba(139, 231, 246, 0.04);
}

.estimate-note svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--ice);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.estimate-note p {
  margin: 0;
  color: #91a4ad;
  font-size: 11px;
  line-height: 1.55;
}

.primary-action,
.secondary-action {
  width: 100%;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-action {
  background: linear-gradient(110deg, #f09038 0%, #d9dee1 48%, #4ba4e6 100%);
  color: #07090b;
  box-shadow:
    -7px 10px 28px rgba(244, 120, 33, 0.1),
    7px 10px 28px rgba(39, 143, 220, 0.13);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow:
    -8px 15px 36px rgba(244, 120, 33, 0.16),
    8px 15px 36px rgba(39, 143, 220, 0.19);
}

.primary-action svg,
.secondary-action svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secondary-action {
  margin-top: 9px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #aebcc3;
}

.secondary-action:hover {
  border-color: rgba(139, 231, 246, 0.35);
  color: var(--text);
}

.included-section {
  padding: 96px 0 110px;
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 600px;
  margin-bottom: 44px;
}

.section-intro h2 {
  margin: 0 0 13px;
  font-size: clamp(31px, 4vw, 48px);
  letter-spacing: -0.045em;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.included-grid article {
  min-height: 230px;
  padding: 31px;
  border-right: 1px solid var(--line);
}

.included-grid article:first-child {
  padding-left: 0;
}

.included-grid article:last-child {
  border-right: 0;
}

.included-number {
  color: var(--silver);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.included-grid article:first-child .included-number {
  color: var(--heat);
}

.included-grid article:last-child .included-number {
  color: var(--ice);
}

.included-grid h3 {
  margin: 42px 0 13px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.included-grid p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

footer {
  width: min(1320px, calc(100% - 48px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #74858e;
  font-size: 12px;
}

footer p {
  text-align: center;
}

footer > a {
  justify-self: end;
  transition: color 0.2s ease;
}

footer > a:hover {
  color: var(--ice);
}

.brand-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.brand-footer .brand-copy strong {
  font-size: 15px;
}

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

.toast {
  position: fixed;
  z-index: 20;
  bottom: 28px;
  left: 50%;
  padding: 12px 17px;
  border: 1px solid rgba(139, 231, 246, 0.28);
  border-radius: 99px;
  background: #11212a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: #dff9fd;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1040px) {
  .hero-copy {
    max-width: calc(100% - 180px);
  }

  .hero-emblem {
    top: 70px;
    right: 8px;
    width: 155px;
  }

  .hero-emblem img {
    width: 142px;
    height: 142px;
  }

  .hero-emblem span {
    font-size: 8px;
  }

  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .estimate-price strong {
    font-size: 37px;
  }
}

@media (max-width: 720px) {
  .site-header,
  main,
  footer {
    width: min(100% - 30px, 1320px);
  }

  .site-header {
    height: 79px;
  }

  .private-badge {
    display: none;
  }

  .phone-link span {
    display: none;
  }

  .phone-link {
    width: 38px;
    height: 38px;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
  }

  .hero-calculator {
    padding: 57px 0 77px;
  }

  .hero-emblem {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
  }

  .hero-emblem::before {
    inset: 0 auto 0 0;
    width: 100px;
  }

  .hero-emblem img {
    width: 82px;
    height: 82px;
  }

  .hero-emblem span {
    max-width: 140px;
    font-size: 8px;
    line-height: 1.6;
    white-space: normal;
  }

  .hero-copy {
    max-width: none;
    margin-bottom: 42px;
  }

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

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-points {
    gap: 12px 18px;
  }

  .calculator-shell {
    border-radius: 20px;
  }

  .calculator-form,
  .estimate-panel {
    padding: 28px 21px;
  }

  .form-heading {
    margin-bottom: 30px;
  }

  .split-fields,
  .addition-grid,
  .client-type-options {
    grid-template-columns: 1fr;
  }

  .split-fields {
    gap: 0;
  }

  .device-meta {
    align-items: flex-start;
  }

  .addition-card {
    min-height: 70px;
  }

  .estimate-price strong {
    font-size: 31px;
  }

  .included-section {
    padding: 76px 0 80px;
  }

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

  .included-grid article,
  .included-grid article:first-child {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .included-grid article:last-child {
    border-bottom: 0;
  }

  .included-grid h3 {
    margin-top: 24px;
  }

  footer {
    min-height: 150px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    padding: 27px 0;
  }

  footer p {
    margin: 8px 0;
  }

  footer > a {
    justify-self: center;
  }
}

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