:root {
  --bg: #f3ece2;
  --surface: #fffaf3;
  --surface-2: #f8efe1;
  --ink: #162338;
  --ink-muted: #3f4b5f;
  --brand: #cba574;
  --brand-deep: #8b6a3e;
  --accent: #1f3f66;
  --line: #d8c8b1;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 18px 50px rgba(25, 35, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 63, 102, 0.08), transparent 42%),
    radial-gradient(circle at 0% 35%, rgba(203, 165, 116, 0.18), transparent 40%),
    var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.25vw + 0.98rem, 1.11rem);
}

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

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

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-shell {
  overflow-x: clip;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 0.82rem 0;
  background: transparent;
  box-shadow: none;
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  transform: translateZ(0);
}

.header.scrolled {
  padding: 0.38rem 0;
  background: rgba(18, 30, 49, 0.94);
  box-shadow: 0 10px 22px rgba(8, 16, 30, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  min-height: 120px;
  transition: min-height 0.28s ease;
}

.header.scrolled .header-inner {
  min-height: 72px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  width: auto;
  height: 126px;
  max-width: none;
  transition: height 0.28s ease;
}

.header.scrolled .logo {
  height: 72px;
}

.logo-mobile {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: #f7ead8;
}

.nav a {
  opacity: 0.95;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(247, 234, 216, 0.45);
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
}

.nav-messengers {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  margin-left: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(247, 234, 216, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 28px;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f7ead8;
  opacity: 0.86;
}

.lang-link.is-active {
  background: rgba(243, 223, 193, 0.22);
  color: #fff6e8;
  opacity: 1;
}

.messenger-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 234, 216, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #f7ead8;
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav .messenger-link {
  padding: 0;
}

.messenger-link svg {
  width: 17px;
  height: 17px;
}

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

.messenger-link.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.messenger-link.tg:hover {
  background: #229ed9;
  border-color: #229ed9;
  color: #fff;
}

.messenger-link.vb:hover {
  background: #7360f2;
  border-color: #7360f2;
  color: #fff;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 32, 51, 0.4);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: 0.2s ease;
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 5.8rem 0 5rem;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(7, 17, 31, 0.9) 8%, rgba(7, 17, 31, 0.76) 34%, rgba(7, 17, 31, 0.48) 58%, rgba(7, 17, 31, 0.24) 100%),
    radial-gradient(circle at 18% 55%, rgba(6, 15, 29, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  color: #fdf7ef;
  max-width: 760px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  font-size: clamp(0.93rem, 0.35vw + 0.88rem, 1.02rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 700;
}

.hero .eyebrow {
  color: #e6c593;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.4rem, 4.9vw, 4.55rem);
}

h2 {
  font-size: clamp(2.05rem, 3.9vw, 3.5rem);
}

h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.1vw, 1.35rem);
}

.hero-text {
  max-width: 65ch;
  font-size: clamp(1.14rem, 1.85vw, 1.4rem);
  color: rgba(255, 248, 236, 0.98);
  margin: 1rem 0 0;
  line-height: 1.48;
  font-weight: 500;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(145deg, var(--brand) 0%, #d8b387 100%);
  color: #1d2a3f;
  box-shadow: 0 8px 20px rgba(203, 165, 116, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(203, 165, 116, 0.5);
}

.btn-secondary {
  color: #f9f3ea;
  border: 1px solid rgba(249, 243, 234, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(3.4rem, 7vw, 6.6rem) 0;
}

.metrics {
  position: relative;
  z-index: 3;
  margin-top: clamp(-7rem, -9vw, -5rem);
  padding: 0 0 2.8rem;
}

.metrics-grid {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 239, 226, 0.94));
  border: 1px solid #d7c3a7;
  border-radius: 30px;
  padding: 1.2rem;
  box-shadow:
    0 20px 46px rgba(12, 26, 45, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metrics-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 48%);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(203, 165, 116, 0), #d9b483 46%, rgba(203, 165, 116, 0));
}

.metrics-grid article {
  position: relative;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #ffffff, #faf2e7);
  border-radius: 18px;
  padding: 1.05rem 1rem 1.1rem;
  border: 1px solid #e5d5c1;
  box-shadow: 0 8px 18px rgba(16, 30, 48, 0.06);
}

.metrics-grid article::before {
  content: "";
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d5ad79, #e2c193);
  opacity: 0.95;
  justify-self: center;
}

.metrics-grid h2 {
  margin-top: auto;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  color: var(--accent);
  margin-bottom: 0;
  line-height: 1.02;
  letter-spacing: 0.006em;
  font-weight: 700;
  max-width: 100%;
  text-shadow:
    0 0 10px rgba(41, 92, 143, 0.2),
    0 0 24px rgba(41, 92, 143, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.55);
  transition: text-shadow 0.25s ease, color 0.25s ease;
}

.metrics-grid article:hover h2 {
  color: #224d7d;
  text-shadow:
    0 0 14px rgba(41, 92, 143, 0.3),
    0 0 34px rgba(41, 92, 143, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.65);
}

.metrics-grid p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.48;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 25ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  align-items: center;
}

.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.split-text p {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 1.07rem;
}

.quote-card {
  margin-top: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.quote-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.quote-card blockquote {
  margin: 0;
  color: #294362;
  font-weight: 700;
  font-size: 1.05rem;
}

.services .container,
.partners .container {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 2.2vw, 2rem);
  box-shadow: var(--shadow);
}

.services-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.services-grid article {
  border-radius: var(--radius-md);
  border: 1px solid #ead8c1;
  background: linear-gradient(180deg, #fff, #faf1e5);
  padding: 1.15rem;
}

.services-grid p,
.partners-text {
  margin: 0.65rem 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.partners-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: stretch;
}

.partners-photo {
  min-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #ead8c1;
  background: #fff;
  box-shadow: var(--shadow);
}

.partners-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.partners-content {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.partners-seal-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1rem 0 0.35rem;
  width: 100%;
  text-align: center;
}

.partners-seal-top .partners-seal-mark {
  width: 168px;
  max-width: 168px;
  min-width: 168px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  flex: 0 0 168px;
  margin: 0 auto;
  display: block;
}

.partners-list-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% -24%, rgba(32, 69, 109, 0.13), transparent 42%),
    linear-gradient(175deg, #fff 0%, #f7ede0 100%);
  border: 1px solid #e5d0b3;
  border-radius: 18px;
  padding: 1.15rem 1.1rem 1rem;
  box-shadow: 0 12px 26px rgba(22, 35, 56, 0.08);
}

.partners-list-block::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #cba574, #dfbc8c 42%, rgba(223, 188, 140, 0));
}

.partners-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7f5f34;
}

.partners-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.partners-columns {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  padding: 0.9rem 0.95rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #ead7bf;
  border-radius: 14px;
}

.partners-list,
.partners-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-list li {
  padding: 0.2rem 0;
  font-weight: 700;
  color: #202f45;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
}

.partners-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.partners-tags li {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #dfc49f;
  background: linear-gradient(180deg, #fffaf1, #f5e9d7);
  color: #2b4668;
  font-weight: 700;
  font-size: 0.94rem;
}

.partners-logos {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.partner-logo-card {
  margin: 0;
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f3 100%);
  border: 1px solid #dfcfb8;
  border-radius: 14px;
  padding: 0.45rem;
  box-shadow: 0 6px 16px rgba(23, 36, 56, 0.06);
}

.partner-logo-card img {
  width: auto;
  max-width: 94%;
  max-height: 132px;
  height: auto;
  object-fit: contain;
}

.section-image {
  margin-top: 1.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section-image img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}

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

.check-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.check-list li::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe3be, #c99a61 60%, #a67d4a);
  position: absolute;
  left: 0;
  top: 0.37rem;
}

.tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tags span {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #e1ceb4;
  background: #fff8ee;
  color: #37506f;
  font-size: 0.98rem;
  font-weight: 600;
}

.fleet {
  padding-top: 1.8rem;
}

.fleet-grid {
  background: linear-gradient(145deg, #1f3556 0%, #294b75 52%, #253f62 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #eef6ff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fleet-content {
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.fleet-content .eyebrow {
  color: #dfba84;
}

.fleet-content p {
  margin-top: 1rem;
  color: rgba(238, 246, 255, 0.9);
  font-size: 1.08rem;
}

.fleet-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.number-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: sec;
  display: grid;
  gap: 0.8rem;
}

.number-list li {
  counter-increment: sec;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.number-list li::before {
  content: "0" counter(sec);
  font-weight: 800;
  color: #c19159;
  font-size: 1rem;
  line-height: 1.5;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.contacts {
  padding-top: clamp(2.2rem, 4vw, 4rem);
}

.contacts-intro {
  max-width: 680px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  width: min(100%, 560px);
  justify-self: end;
}

.contact-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-card li {
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.contact-messengers {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.55rem;
  vertical-align: middle;
}

.contact-card .messenger-link {
  width: 30px;
  height: 30px;
  border-color: #ddc8a9;
  background: #fff7ea;
  color: #2e4768;
}

.contact-card .messenger-link svg {
  width: 15px;
  height: 15px;
}

.contact-card span {
  font-weight: 700;
  color: var(--ink);
}

.request-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.request-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #24344d;
}

.request-input {
  width: 100%;
  border: 1px solid #d9c6ac;
  border-radius: 11px;
  background: #fffdfa;
  color: #1e2c40;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.35;
  padding: 0.62rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-input:focus {
  outline: none;
  border-color: #c39a67;
  box-shadow: 0 0 0 3px rgba(195, 154, 103, 0.2);
}

.request-input:invalid:focus {
  border-color: #b45757;
  box-shadow: 0 0 0 3px rgba(180, 87, 87, 0.18);
}

.request-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.request-textarea {
  resize: vertical;
  min-height: 110px;
}

.request-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.94rem;
  color: #2f425c;
}

.request-status.is-success {
  color: #2a6b43;
}

.request-status.is-error {
  color: #8c3f3f;
}

.request-form .btn-primary.wide {
  min-height: 56px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: #d0aa77;
  color: #1d2a3f;
  box-shadow: none;
  font-size: 1.16rem;
  font-weight: 800;
}

.request-form .btn-primary.wide:hover {
  background: #c89f68;
  box-shadow: none;
}

.btn.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.wide {
  width: 100%;
  margin-top: 1rem;
}

.footer {
  margin-top: 1rem;
  padding: 1rem 0;
  background: #14243c;
  color: rgba(248, 241, 230, 0.9);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.footer img {
  width: 100px;
}

.footer p {
  margin: 0;
  text-align: right;
  justify-self: end;
  font-size: 0.88rem;
}

.footer-copy {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
}

.footer-dev {
  font-size: 0.86rem;
  opacity: 0.92;
}

.footer-dev a {
  color: #f4d7af;
  border-bottom: 1px solid rgba(244, 215, 175, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-dev a:hover {
  color: #fff6e8;
  border-color: rgba(255, 246, 232, 0.8);
}

.footer-policy a {
  color: #f3ddbf;
  border-bottom: 1px solid rgba(243, 221, 191, 0.42);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-policy a:hover {
  color: #fff6e8;
  border-color: rgba(255, 246, 232, 0.8);
}

.legal-page {
  padding: 10.5rem 0 4.2rem;
}

.legal-view .header {
  padding: 0.38rem 0;
  background: rgba(18, 30, 49, 0.94);
  box-shadow: 0 10px 22px rgba(8, 16, 30, 0.22);
}

.legal-view .header-inner {
  min-height: 72px;
}

.legal-view .logo {
  height: 72px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.8vw, 2.1rem);
}

.legal-meta {
  margin: 0.85rem 0 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.legal-section {
  margin-top: 1.25rem;
}

.legal-section h3 {
  margin: 0;
  font-size: 1.14rem;
  color: #20314a;
}

.legal-section p {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.legal-list {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  display: grid;
  gap: 0.42rem;
}

.legal-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #dfcfb8;
  background: #fff8ee;
  color: #274061;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 36px;
  --reveal-scale: 0.985;
  --reveal-delay: 0s;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(8px);
  transition:
    opacity 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.86s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-from-left {
  --reveal-x: -56px;
  --reveal-y: 0px;
}

.reveal-from-right {
  --reveal-x: 56px;
  --reveal-y: 0px;
}

.reveal-from-up {
  --reveal-x: 0px;
  --reveal-y: -44px;
}

.reveal-from-bottom {
  --reveal-x: 0px;
  --reveal-y: 44px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 1rem;
    font-size: 0.98rem;
  }

  .metrics {
    margin-top: -5rem;
    padding-bottom: 2.2rem;
  }

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

  .metrics-grid article {
    min-height: 164px;
  }

  .split,
  .reverse,
  .fleet-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

  .partners-layout {
    grid-template-columns: 1fr;
  }

  .partners-photo {
    min-height: 0;
  }

  .partners-photo img {
    min-height: 460px;
  }

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

  .partners-seal-top {
    justify-content: center;
    padding-bottom: 0.1rem;
  }

  .partners-seal-top .partners-seal-mark {
    width: 132px;
    max-width: 132px;
    min-width: 132px;
  }

  .fleet-content {
    order: 2;
  }

  .contact-card {
    justify-self: start;
  }

  .fleet-grid img {
    order: 1;
  }
}

@media (max-width: 840px) {
  .reveal-from-left {
    --reveal-x: -30px;
  }

  .reveal-from-right {
    --reveal-x: 30px;
  }

  .reveal-from-up {
    --reveal-y: -28px;
  }

  .reveal-from-bottom {
    --reveal-y: 28px;
  }

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

  .header {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .logo {
    height: 62px;
  }

  .header.scrolled .header-inner {
    min-height: 60px;
  }

  .header.scrolled .logo {
    height: 50px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    top: 92px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    background: rgba(18, 31, 51, 0.98);
    border-radius: var(--radius-lg);
    padding: 0.9rem;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
    border: 1px solid rgba(246, 233, 215, 0.24);
  }

  .header.scrolled .nav {
    top: 72px;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.48rem;
  }

  .nav-messengers {
    justify-content: center;
    margin-top: 0.3rem;
  }

  .lang-switch {
    justify-content: center;
    margin-top: 0.2rem;
    margin-left: 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.4rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 5.6rem;
  }

  .legal-view .header-inner {
    min-height: 60px;
  }

  .legal-view .logo {
    height: 50px;
  }

  .legal-view .nav {
    top: 72px;
  }

  .legal-page {
    padding-top: 7.8rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8.6vw, 2.25rem);
  }

  .container {
    width: min(1160px, calc(100% - 1.4rem));
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .btn {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .metrics {
    margin-top: -3.2rem;
    padding-bottom: 1.8rem;
  }

  .metrics-grid article {
    min-height: auto;
    padding: 0.95rem;
  }

  .quote-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .partner-logo-card {
    min-height: 122px;
  }

  .partner-logo-card img {
    max-height: 108px;
  }

  .contact-messengers {
    display: flex;
    margin: 0.45rem 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer p {
    text-align: left;
    justify-self: start;
  }

  .footer-copy {
    justify-items: start;
  }
}
