@font-face {
  font-family: "TT Firs Neue";
  src: url("./Шрифты/TT Firs Neue/TTFirsNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("./Шрифты/TT Firs Neue/TTFirsNeue-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("./Шрифты/TT Firs Neue/TTFirsNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f3ede8;
  --bg-deep: #e6ddd4;
  --text: #111213;
  --muted: #5e5953;
  --line: rgba(255, 255, 255, 0.42);
  --glass: rgba(255, 255, 255, 0.34);
  --glass-strong: rgba(255, 255, 255, 0.52);
  --shadow: 0 24px 80px rgba(34, 20, 12, 0.12);
  --accent: #841618;
  --accent-dark: #5f0f12;
  --mint: #8af0d8;
  --mint-soft: rgba(138, 240, 216, 0.26);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "TT Firs Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(132, 22, 24, 0.12), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(138, 240, 216, 0.28), transparent 24%),
    linear-gradient(180deg, #f6f2ee 0%, #ece3db 100%);
}

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

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

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

.page-shell {
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.ambient-one {
  top: 80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(132, 22, 24, 0.12);
}

.ambient-two {
  top: 440px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(138, 240, 216, 0.26);
}

.ambient-three {
  bottom: 120px;
  left: 16%;
  width: 360px;
  height: 220px;
  background: rgba(255, 255, 255, 0.32);
}

.glass-panel,
.glass-chip,
.button,
.field input,
.field select,
.field textarea {
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.glass-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 34%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.18), transparent 36%);
  pointer-events: none;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 38px 0;
}

.topbar {
  width: var(--container);
  margin: 18px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 16px;
  z-index: 20;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent) 0%, #2c090d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.brand-logo-wrap {
  width: 156px;
  height: 70px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.62);
  transform-origin: center;
  filter: contrast(1.22) saturate(1.12) brightness(0.96);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.65);
  transition: 0.25s ease;
}

.topnav a:hover::after {
  opacity: 0.6;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent,
.button-dark {
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(95, 15, 18, 0.2);
}

.button-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #b32025 100%);
}

.button-dark {
  background: linear-gradient(135deg, #1e1e1e 0%, var(--accent) 100%);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(132, 22, 24, 0.12);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 38px;
  padding-top: 42px;
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-copy h1,
.section-heading h2,
.request-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(3.1rem, 6vw, 6.15rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  color: var(--accent);
}

.lead,
.section-heading p,
.story-card p,
.fleet-copy p,
.request-copy p,
.pricing-footnote,
.form-note,
.field span,
.request-points span,
.metric span,
.floating-note span,
.fleet-copy span {
  color: var(--muted);
}

.lead {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.metric {
  padding: 20px;
  min-height: 132px;
}

.metric strong,
.story-card h3,
.fleet-copy h3,
.term-card h3,
.floating-note strong,
.request-points strong,
.pricing-row strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
}

.metric strong {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-visual {
  min-width: 0;
}

.visual-card {
  padding: 20px;
}

.visual-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.status-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 0.86;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(132, 22, 24, 0.1), rgba(255, 255, 255, 0.12));
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-glow {
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 22%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(138, 240, 216, 0.54), transparent 72%);
  filter: blur(32px);
}

.floating-note {
  position: absolute;
  max-width: 250px;
  padding: 16px 18px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.82) 0%, rgba(245, 238, 232, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 18px 38px rgba(34, 20, 12, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.floating-note-main {
  bottom: 30px;
  left: -28px;
}

.floating-note-side {
  top: 120px;
  right: -18px;
}

.floating-note strong {
  color: #202224;
}

.floating-note span {
  color: rgba(32, 34, 36, 0.72);
}

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

.section-heading h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
}

.section-heading p {
  margin-top: 18px;
  font-size: 1.06rem;
  line-height: 1.55;
}

.story-grid,
.fleet-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.story-card,
.term-card {
  padding: 24px;
}

.story-card h3,
.term-card h3 {
  margin: 0 0 12px;
}

.story-card p {
  line-height: 1.55;
}

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

.fleet-card {
  overflow: hidden;
}

.fleet-image {
  aspect-ratio: 0.9;
  overflow: hidden;
}

.fleet-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.03);
}

.fleet-copy {
  padding: 20px 22px 24px;
}

.fleet-copy h3 {
  margin: 0 0 12px;
}

.fleet-copy p,
.fleet-copy span {
  line-height: 1.5;
}

.fleet-copy span {
  display: block;
  margin-top: 14px;
  font-size: 0.92rem;
}

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

.ownership-card {
  padding: 24px;
  overflow: hidden;
}

.ownership-card-accent {
  background:
    radial-gradient(circle at 88% 12%, rgba(138, 240, 216, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.ownership-card-top {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.ownership-card-top strong {
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.ownership-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 1rem;
}

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

.ownership-steps div,
.ownership-list {
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
}

.ownership-steps div {
  padding: 18px 16px;
}

.ownership-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #ab2025 100%);
  color: #ffffff;
  font-weight: 700;
}

.ownership-steps p {
  color: #4f4a45;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ownership-list {
  margin: 22px 0 0;
  padding: 20px 20px 20px 22px;
  list-style: none;
}

.ownership-list li {
  position: relative;
  padding-left: 18px;
  color: #4f4a45;
  line-height: 1.55;
}

.ownership-list li + li {
  margin-top: 10px;
}

.ownership-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--mint) 100%);
  box-shadow: 0 0 14px rgba(138, 240, 216, 0.32);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
  gap: 18px;
  margin-top: 28px;
}

.pricing-panel {
  padding: 24px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 18, 19, 0.08);
}

.pricing-row span {
  font-size: 1rem;
}

.pricing-row strong {
  font-size: 1.35rem;
  text-align: right;
}

.accent-row strong {
  color: var(--accent);
}

.pricing-footnote {
  margin: 18px 0 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

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

.terms-grid .term-card:last-child {
  grid-column: 1 / -1;
}

.term-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.term-card li + li {
  margin-top: 10px;
}

.term-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--mint) 100%);
  box-shadow: 0 0 14px rgba(138, 240, 216, 0.45);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 22px;
  padding: 28px;
}

.request-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 0.98;
}

.request-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.request-points div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.request-points strong {
  margin-bottom: 8px;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  align-content: start;
}

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

.field span,
.field legend {
  font-size: 1.08rem;
  font-weight: 600;
  color: #5a534d;
}

.field legend {
  padding: 0;
  margin: 0 0 8px;
}

.field-messenger {
  margin: 0;
  padding: 0;
  border: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(132, 22, 24, 0.12);
  background: rgba(255, 255, 255, 0.44);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(132, 22, 24, 0.3);
  box-shadow: 0 0 0 4px rgba(132, 22, 24, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.field-large,
.field-messenger,
.checkbox,
.submit-button,
.form-note,
.form-feedback {
  grid-column: 1 / -1;
}

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

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-pill {
  position: relative;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(132, 22, 24, 0.14);
  background: rgba(255, 255, 255, 0.46);
  color: #403933;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.choice-pill span:hover {
  transform: translateY(-1px);
}

.choice-pill input:checked + span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #aa2125 100%);
  border-color: rgba(95, 15, 18, 0.5);
  box-shadow: 0 14px 28px rgba(95, 15, 18, 0.18);
}

.choice-pill input:focus-visible + span {
  box-shadow:
    0 0 0 4px rgba(132, 22, 24, 0.12),
    0 14px 28px rgba(95, 15, 18, 0.08);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  margin-top: 2px;
}

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

.submit-button {
  margin-top: 4px;
  width: 100%;
}

.form-note,
.form-feedback {
  margin: 0;
  font-size: 0.92rem;
}

.form-feedback {
  min-height: 1.4em;
  color: var(--accent);
  font-weight: 600;
}

.form-feedback.is-success {
  color: #17664e;
}

.footer {
  padding-top: 4px;
  padding-bottom: 24px;
}

.footer-shell {
  padding: 20px 22px 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(138, 240, 216, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(43, 20, 22, 0.9) 0%, rgba(26, 14, 15, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f7f1eb;
}

.footer-shell::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.05), transparent 36%);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 300px;
  min-height: 86px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.footer-logo {
  width: 152px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.62);
  transform-origin: left center;
  filter: brightness(1.06) contrast(1.08) saturate(1.04);
}

.footer-logo-wide {
  width: 300px;
  height: 86px;
  object-position: left center;
  transform: none;
  filter: brightness(1.08) contrast(1.02) saturate(1.02);
}

.footer-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 241, 235, 0.76);
  font-size: 0.97rem;
  line-height: 1.45;
}

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

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px 16px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-column a,
.footer-note {
  color: rgba(247, 241, 235, 0.76);
  line-height: 1.42;
}

.footer-column a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-note {
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .terms-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .story-grid,
  .fleet-grid,
  .ownership-grid,
  .footer-grid,
  .terms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .ownership-steps {
    grid-template-columns: 1fr;
  }

  .choice-pills {
    gap: 8px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 20px, 100%);
    --radius-xl: 26px;
    --radius-lg: 22px;
    --radius-md: 18px;
  }

  .topbar {
    padding: 14px;
    gap: 16px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo-wrap {
    width: 130px;
    height: 60px;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
    font-size: 0.92rem;
  }

  .topbar-cta {
    width: 100%;
  }

  .section {
    padding: 24px 0;
  }

  .hero {
    gap: 24px;
    padding-top: 26px;
  }

  .hero-copy h1,
  .section-heading h2,
  .request-copy h2 {
    font-size: clamp(2rem, 8.6vw, 2.85rem);
  }

  .lead,
  .section-heading p,
  .request-copy p {
    font-size: 1rem;
  }

  .story-grid,
  .fleet-grid,
  .ownership-grid,
  .footer-grid,
  .terms-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .choice-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .visual-card,
  .request-layout,
  .footer-shell {
    padding: 16px;
  }

  .footer-logo-link {
    min-width: 220px;
    min-height: 68px;
  }

  .footer-logo {
    width: 132px;
    height: 58px;
  }

  .footer-logo-wide {
    width: 220px;
    height: 68px;
  }

  .hero-image-wrap {
    aspect-ratio: 0.78;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .terms-grid .term-card:last-child {
    grid-column: auto;
  }

  .pricing-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }
}
