:root {
  --bg: #f5efe4;
  --bg-strong: #151515;
  --surface: rgba(255, 249, 239, 0.74);
  --surface-strong: rgba(20, 20, 20, 0.9);
  --line: rgba(24, 20, 12, 0.12);
  --text: #16130f;
  --muted: #6d6253;
  --accent: #ffb000;
  --accent-strong: #ff7a00;
  --signal: #c63d1f;
  --white: #fffaf1;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 20px 60px rgba(48, 34, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.26), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(198, 61, 31, 0.12), transparent 26%),
    linear-gradient(180deg, #fcf7ef 0%, #f4eddf 100%);
}

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

.page-shell {
  min-height: 100vh;
  padding-top: 82px;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(252, 247, 239, 0.8);
  border-bottom: 1px solid rgba(24, 20, 12, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand__eyebrow,
.section-heading__eyebrow,
.action-strip__eyebrow,
.call-dialog__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
}

.brand__name {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.mini-phone {
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #17120e;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.28);
}

.button--accent {
  color: var(--white);
  background: linear-gradient(135deg, #cf4522 0%, #98230c 100%);
  box-shadow: 0 16px 34px rgba(152, 35, 12, 0.28);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(24, 20, 12, 0.12);
}

.button--xl {
  min-height: 64px;
  padding: 0 30px;
  font-size: 1.05rem;
}

.hero {
  padding: 40px 0 22px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__visual,
.coverage__grid,
.action-strip__inner {
  border-radius: var(--radius-lg);
}

.hero__content {
  padding: 36px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.9), rgba(255, 246, 232, 0.84));
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 20, 12, 0.08);
}

.hero h1,
.section-heading h2,
.action-strip h2,
.call-dialog h2 {
  margin: 10px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.hero__lead,
.coverage__text,
.fleet-card p,
.hero__note,
.call-dialog__text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.phone-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 20, 12, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.phone-card strong {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.05;
}

.phone-card__label,
.fleet-card__year,
.phone-card__meta {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-card--main {
  background: linear-gradient(160deg, #1b1a18 0%, #3e2c1a 100%);
  color: var(--white);
}

.phone-card--reserve {
  background: linear-gradient(160deg, rgba(255, 176, 0, 0.18), rgba(255, 122, 0, 0.16));
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 24px;
}

.hero__note {
  max-width: 360px;
  margin: 0;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero__badges li,
.coverage__list div,
.fleet-card {
  border: 1px solid rgba(24, 20, 12, 0.08);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.hero__badges li {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.hero__visual {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(44, 30, 13, 0.9)),
    linear-gradient(135deg, rgba(255, 176, 0, 0.16), transparent);
  box-shadow: var(--shadow);
}

.visual-card {
  min-height: 148px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  position: relative;
}

.visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(13, 12, 11, 0.8)),
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 35%);
}

.visual-card span,
.visual-card strong {
  position: relative;
  z-index: 1;
}

.visual-card span {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card strong {
  margin-top: 8px;
  font-size: 1.5rem;
}

.visual-card--sunrise {
  background: linear-gradient(135deg, #cb4f23, #ff9f1a);
}

.visual-card--sunrise img {
  object-position: center 55%;
}

.visual-card--steel {
  background: linear-gradient(135deg, #5f6f82, #2d3845);
}

.visual-card--steel img {
  object-position: center 60%;
}

.visual-card--signal {
  background: linear-gradient(135deg, #8c2b17, #36130d);
}

.visual-card--signal img {
  object-position: center 54%;
}

.calc-section,
.fleet,
.coverage,
.action-strip {
  padding: 28px 0;
}

.calc-section {
  position: relative;
}

.calc-section::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: min(540px, calc(100% - 56px));
  background:
    radial-gradient(circle at top left, rgba(255, 177, 0, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 248, 235, 0.94), rgba(243, 233, 214, 0.92));
  border-top: 1px solid rgba(24, 20, 12, 0.05);
  border-bottom: 1px solid rgba(24, 20, 12, 0.05);
}

.calc-section .container {
  position: relative;
  z-index: 1;
}

.calc-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: 26px;
  align-items: start;
}

.calc-section__intro,
.calc-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 20, 12, 0.08);
  box-shadow: var(--shadow);
}

.calc-section__intro {
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(255, 176, 0, 0.18), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(248, 240, 226, 0.96));
}

.calc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.calc-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 30, 24, 0.08);
  border: 1px solid rgba(24, 20, 12, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calc-section__lead,
.price-result__note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.calc-highlights {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.calc-highlight {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 20, 12, 0.08);
}

.calc-highlight strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.calc-highlight span,
.extras__header span {
  color: var(--muted);
  line-height: 1.55;
}

.calc-note {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(34, 30, 24, 0.94);
  color: rgba(255, 255, 255, 0.84);
}

.calc-note p {
  margin: 0;
  line-height: 1.55;
}

.calc-note strong {
  color: var(--white);
}

.calc-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(247, 238, 221, 0.98));
  border: 1px solid rgba(203, 69, 25, 0.16);
  box-shadow:
    0 28px 60px rgba(48, 35, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.calc-card__head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.calc-card__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calc-card__head h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.price-form {
  display: grid;
  gap: 22px;
}

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

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

.field__label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field select,
.field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(24, 20, 12, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.field select:focus,
.field input:focus {
  outline: 0;
  border-color: rgba(203, 69, 25, 0.42);
  box-shadow: 0 0 0 4px rgba(203, 69, 25, 0.1);
}

.extras {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 20, 12, 0.08);
}

.extras__header {
  display: grid;
  gap: 8px;
}

.extras__header .field__label {
  margin: 0;
}

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

.extra-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(24, 20, 12, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  line-height: 1.4;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.extra-option:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 69, 25, 0.24);
  box-shadow: 0 18px 30px rgba(48, 35, 18, 0.08);
}

.extra-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.extra-option__check {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(34, 30, 24, 0.08), rgba(34, 30, 24, 0.02));
  border: 1px solid rgba(24, 20, 12, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.extra-option__check::before {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(24, 20, 12, 0.55);
}

.extra-option__text {
  display: grid;
  gap: 6px;
}

.extra-option__text strong {
  font-size: 0.96rem;
}

.extra-option__text small {
  color: var(--muted);
  font-size: 0.9rem;
}

.extra-option.is-active,
.extra-option:has(input:checked) {
  border-color: rgba(203, 69, 25, 0.34);
  background: linear-gradient(145deg, rgba(255, 177, 0, 0.16), rgba(255, 124, 52, 0.12));
  box-shadow: 0 18px 36px rgba(203, 69, 25, 0.12);
}

.extra-option.is-active .extra-option__check,
.extra-option:has(input:checked) .extra-option__check {
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  border-color: transparent;
}

.extra-option.is-active .extra-option__check::before,
.extra-option:has(input:checked) .extra-option__check::before {
  content: "✓";
  color: var(--white);
}

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

.field--inline input {
  max-width: none;
}

.price-result {
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(27, 26, 24, 0.96), rgba(62, 44, 26, 0.96));
  color: var(--white);
  border: 1px solid rgba(255, 177, 0, 0.18);
}

.price-result__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-result__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.price-result__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.price-result__total {
  margin-top: 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.price-breakdown li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-breakdown strong {
  white-space: nowrap;
}

.price-result__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading h2,
.action-strip h2,
.call-dialog h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.fleet-intro,
.fleet-disclaimer {
  max-width: 860px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.fleet-intro {
  margin: 14px 0 0;
}

.fleet-disclaimer {
  margin: 18px 0 0;
}

.fleet-card {
  overflow: hidden;
  border-radius: 24px;
}

.fleet-card__photo {
  min-height: 240px;
  display: block;
  position: relative;
  background: #e6e2d9;
}

.fleet-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 25%, rgba(8, 7, 6, 0.1));
  pointer-events: none;
}

.fleet-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.fleet-card__photo--gazelle {
  background-color: #6e5340;
}

.fleet-card__photo--gazelle img {
  object-position: center 62%;
}

.fleet-card__photo--gazelle-white {
  background-color: #d8d9d8;
}

.fleet-card__photo--gazelle-white img {
  object-position: center 58%;
}

.fleet-card__photo--valdai {
  background-color: #b88828;
}

.fleet-card__photo--valdai img {
  object-position: center 55%;
}

.fleet-card__photo--kamaz {
  background-color: #cc8f00;
}

.fleet-card__photo--kamaz img {
  object-position: center 56%;
}

.fleet-card__photo--isuzu {
  background-color: #54514d;
}

.fleet-card__photo--isuzu img {
  object-position: center 52%;
}

.fleet-card__photo--mercedes {
  background-color: #4f4f53;
}

.fleet-card__photo--mercedes img {
  object-position: center 58%;
}

.fleet-card__body {
  padding: 22px;
}

.fleet-card h3 {
  margin: 10px 0 12px;
  font-size: 1.3rem;
}

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

.fleet-specs li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  line-height: 1.55;
}

.fleet-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.coverage__grid,
.action-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 32px;
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(24, 20, 12, 0.08);
  box-shadow: var(--shadow);
}

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

.coverage__list div {
  padding: 18px;
  border-radius: 20px;
  font-weight: 700;
}

.action-strip__inner {
  background:
    linear-gradient(120deg, rgba(255, 176, 0, 0.14), transparent 36%),
    rgba(255, 250, 241, 0.78);
  align-items: center;
}

.action-strip__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding: 20px 0 120px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(24, 20, 12, 0.1);
}

.footer__title {
  margin: 0;
  font-weight: 800;
}

.footer__copy {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer__credit {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer__credit a {
  color: var(--signal);
  font-weight: 800;
}

.footer__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer__phones a {
  font-weight: 800;
}

.floating-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9;
  display: none;
}

.floating-call .button {
  width: 100%;
}

.call-dialog {
  width: min(520px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.call-dialog::backdrop {
  background: rgba(13, 11, 9, 0.56);
}

.call-dialog__content {
  padding: 28px;
  background: linear-gradient(180deg, #fffaf1, #f6eddc);
}

.call-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .calc-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding-top: 74px;
  }

  .hero__grid,
  .calc-shell,
  .coverage__grid,
  .action-strip__inner,
  .footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar__inner {
    min-height: 74px;
    padding: 12px 0;
  }

  .topbar__actions {
    flex-shrink: 0;
  }

  .brand__name {
    font-size: 1.75rem;
  }

  .hero__phones,
  .coverage__list,
  .hero__badges {
    grid-template-columns: 1fr;
  }

  .action-strip__buttons,
  .footer__phones {
    justify-content: flex-start;
  }

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

  .price-form__grid,
  .extras__grid,
  .extras__numbers {
    grid-template-columns: 1fr;
  }

}

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

  .page-shell {
    padding-top: 74px;
  }

  .mini-phone {
    display: none;
  }

  .brand__eyebrow {
    display: none;
  }

  .brand__name {
    font-size: 1.5rem;
  }

  .topbar__inner {
    min-height: 68px;
    gap: 12px;
  }

  .topbar__actions .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__content,
  .hero__visual,
  .calc-section__intro,
  .calc-card,
  .coverage__grid,
  .action-strip__inner,
  .call-dialog__content {
    padding: 22px;
  }

  .calc-note,
  .extras,
  .price-result {
    padding: 18px;
  }

  .calc-badges {
    gap: 8px;
  }

  .calc-badges span {
    width: 100%;
  }

  .price-result__head {
    display: grid;
    gap: 6px;
  }

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

  .price-breakdown li {
    grid-template-columns: 1fr;
    display: grid;
  }

  .floating-call {
    display: block;
  }

  .footer {
    padding-bottom: 96px;
  }
}
