:root {
  --bg: #07090d;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-soft: rgba(255, 255, 255, 0.06);
  --glass: rgba(18, 22, 30, 0.45);
  --glass-strong: rgba(12, 15, 22, 0.62);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-soft: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f7f5f1;
  --muted: rgba(243, 241, 236, 0.62);
  --accent: #d4b483;
  --accent-bright: #e8d0a8;
  --accent-2: #8eb8b0;
  --ok: #6bbf8e;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1240px;
  --header-h: 84px;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --glow: 0 0 0 1px rgba(212, 180, 131, 0.18), 0 18px 50px rgba(0, 0, 0, 0.35);
  --blur: blur(22px) saturate(140%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(212, 180, 131, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(142, 184, 176, 0.08), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(212, 180, 131, 0.05), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fixed photo stays visible while scrolling */
.site-bg {
  position: fixed;
  inset: -120px 0;
  z-index: -2;
  pointer-events: none;
  background:
    url("../assets/bg-carrier.jpg")
      78% 42% / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.06);
  will-change: transform;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 9, 13, 0.82) 0%, rgba(7, 9, 13, 0.48) 42%, rgba(7, 9, 13, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.38) 0%, rgba(7, 9, 13, 0.78) 100%);
}

body:has(.site-bg) {
  background: transparent;
}

body:has(.site-bg) .site-header {
  background: rgba(7, 9, 13, 0.42);
}

body:has(.site-bg) .site-footer {
  background: rgba(7, 9, 13, 0.55);
}

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

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

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

.container {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Glass utility */
.glass {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: rgba(7, 9, 13, 0.55);
  border-bottom: 1px solid var(--glass-border-soft);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  width: 54px;
  height: 70px;
  background-image: linear-gradient(
    110deg,
    #8a6a3a 0%,
    #c9a86a 18%,
    #fff3d0 32%,
    #e8d0a8 45%,
    #a8864a 58%,
    #fff1c4 72%,
    #d4b483 85%,
    #8a6a3a 100%
  );
  background-size: 220% 100%;
  animation: logoGoldShine 3.6s linear infinite;
  -webkit-mask-image: url("../assets/logo-mark.png");
  mask-image: url("../assets/logo-mark.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter:
    drop-shadow(0 1px 0 rgba(255, 244, 214, 0.45))
    drop-shadow(1px 1px 0 rgba(120, 90, 40, 0.4))
    drop-shadow(2px 3px 0 rgba(55, 40, 18, 0.35))
    drop-shadow(0 0 12px rgba(212, 180, 131, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-words {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 0.95;
  min-width: 0;
}

.logo-line {
  font-family: "Orbitron", var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  background-image: linear-gradient(
    110deg,
    #8a6a3a 0%,
    #c9a86a 18%,
    #fff3d0 32%,
    #e8d0a8 45%,
    #a8864a 58%,
    #fff1c4 72%,
    #d4b483 85%,
    #8a6a3a 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: logoGoldShine 3.6s linear infinite;
  filter:
    drop-shadow(0 1px 0 rgba(255, 244, 214, 0.55))
    drop-shadow(1px 1px 0 rgba(120, 90, 40, 0.45))
    drop-shadow(2px 3px 0 rgba(55, 40, 18, 0.4))
    drop-shadow(0 0 12px rgba(212, 180, 131, 0.28));
}

.logo-line:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

@keyframes logoGoldShine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}

.logo:hover .logo-mark {
  transform: translateY(-1px) scale(1.03);
  animation-duration: 2.2s;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 230, 0.65))
    drop-shadow(1px 1px 0 rgba(120, 90, 40, 0.5))
    drop-shadow(2px 3px 0 rgba(55, 40, 18, 0.4))
    drop-shadow(0 0 16px rgba(232, 208, 168, 0.45));
}

.logo:hover .logo-line {
  animation-duration: 2.2s;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 230, 0.7))
    drop-shadow(1px 1px 0 rgba(120, 90, 40, 0.5))
    drop-shadow(2px 3px 0 rgba(55, 40, 18, 0.45))
    drop-shadow(0 0 16px rgba(232, 208, 168, 0.4));
}

.footer-brand .logo-mark {
  width: 60px;
  height: 78px;
}

.footer-brand .logo-line {
  font-size: 1rem;
}

.footer-brand .logo-line:last-child {
  font-size: 0.78rem;
}

@media (prefers-reduced-motion: reduce) {
  .logo-mark,
  .logo-line {
    animation: none;
    background-position: 40% 50%;
  }
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.12rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-soft);
  backdrop-filter: blur(12px);
  justify-self: center;
  width: max-content;
  max-width: 100%;
}

.nav a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.site-header .btn {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
  font-weight: 650;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, #e8d0a8 0%, #d4b483 48%, #c4a06e 100%);
  color: #1a140c;
  box-shadow: 0 10px 30px rgba(212, 180, 131, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(212, 180, 131, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-teal {
  background: rgba(142, 184, 176, 0.18);
  border: 1px solid rgba(142, 184, 176, 0.35);
  color: #d7ebe7;
  backdrop-filter: blur(12px);
}

.btn-teal:hover {
  background: rgba(142, 184, 176, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("../assets/bg-carrier.jpg")
      78% 38% / cover no-repeat;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 9, 13, 0.8) 0%, rgba(7, 9, 13, 0.4) 45%, rgba(7, 9, 13, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.28) 0%, rgba(7, 9, 13, 0.9) 92%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 13, 0.95));
  pointer-events: none;
}

.hero-content {
  padding: 2.2rem 0 2.6rem;
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 1.15rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border-soft);
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6bbf8e;
  box-shadow: 0 0 0 4px rgba(107, 191, 142, 0.18);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #f0dfc0, #d4b483 55%, #b89768);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 1.25rem 0 0;
  color: rgba(243, 241, 236, 0.72);
  font-size: 1.06rem;
  max-width: 52ch;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.route-card {
  margin-top: 2.1rem;
  border-radius: 24px;
  background: rgba(12, 16, 22, 0.58);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.route-path {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem 1.55rem 1.3rem;
  flex-wrap: wrap;
}

.route-stop {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.route-flag {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.28);
}

.route-flag svg {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.route-stop-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.route-stop-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.route-stop-text span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.route-arrow {
  color: var(--ok);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
  transform: translateY(-1px);
}

.route-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.route-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem 1.45rem 1.4rem;
  min-width: 0;
}

.route-feature + .route-feature {
  border-left: 1px solid var(--line);
}

.route-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #f3f1ec;
  opacity: 0.92;
  margin-top: 0.05rem;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}

.route-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  padding-top: 0;
}

.route-feature-text strong {
  color: var(--ok);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.route-feature-text span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

/* Sections */
section {
  padding: 5.5rem 0;
  position: relative;
}

body:has(.site-bg) main > section:not(.hero) {
  background: rgba(7, 9, 13, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

body:has(.site-bg) main > section:not(.hero):nth-of-type(even) {
  background: rgba(7, 9, 13, 0.55);
}

body:has(.site-bg) .page-hero + section {
  background: rgba(7, 9, 13, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-head {
  max-width: 620px;
  margin-bottom: 2.4rem;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}

.section-head h2,
.page-hero h1,
.block-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-head p,
.page-hero p {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-item,
.feature-item,
.market-item,
.advantage-item,
.review-card,
.info-panel {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--glass-border);
  padding: 1.45rem;
  border-radius: var(--radius);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 50px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.service-item:hover,
.feature-item:hover,
.market-item:hover,
.review-card:hover {
  border-color: rgba(212, 180, 131, 0.38);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--glow);
}

.service-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.service-item h3,
.feature-item h3,
.market-item h3,
.advantage-item h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.14rem;
  letter-spacing: -0.025em;
}

.service-item p,
.feature-item p,
.market-item p,
.advantage-item p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.market-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.95rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(142, 184, 176, 0.08);
}

.advantage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 180, 131, 0.12);
  border: 1px solid rgba(212, 180, 131, 0.28);
  color: var(--accent-bright);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(212, 180, 131, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
}

/* Reviews */
.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--glass-border-soft);
  color: var(--muted);
  font-size: 0.88rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-block: 1px solid var(--glass-border-soft);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 180, 131, 0.14), transparent 45%),
    radial-gradient(ellipse at 80% 50%, rgba(142, 184, 176, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}

.cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

/* Page internals */
.page-hero {
  padding: 3.8rem 0 2.2rem;
  border-bottom: 1px solid var(--glass-border-soft);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 180, 131, 0.1), transparent 38%),
    rgba(7, 9, 13, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.prose {
  max-width: 70ch;
}

.prose p {
  color: var(--muted);
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  margin: 2rem 0 0.7rem;
}

.requisites {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding: 1.35rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.requisites div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.requisites .label {
  color: var(--muted);
}

/* Contract page */
.contract-section {
  padding: 3.8rem 0 4.5rem;
}

.contract-title {
  margin: 0.35rem 0 0.85rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contract-lead {
  margin: 0 0 1.6rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.contract-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.contract-stage {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.contract-stage.is-active {
  color: var(--text);
  border-color: rgba(212, 180, 131, 0.35);
  background: rgba(212, 180, 131, 0.12);
}

.contract-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.contract-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contract-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.contract-point:hover {
  border-color: rgba(212, 180, 131, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.contract-point span:last-child {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}

.contract-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contract-copy-status {
  margin: 0.75rem 0 0;
  color: var(--ok);
  font-size: 0.9rem;
}

.contract-card {
  padding: 1.45rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 50px rgba(0, 0, 0, 0.18);
}

.contract-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.contract-card-note {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contract-meta {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contract-meta div {
  display: grid;
  gap: 0.25rem;
}

.contract-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contract-meta dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Footer */
.site-footer {
  padding: 3.2rem 0 2rem;
  border-top: 1px solid var(--glass-border-soft);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p,
.footer-col a,
.footer-col p,
.footer-bottom {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.45rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4, 6, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  width: min(100%, 460px);
  background: rgba(16, 20, 28, 0.78);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  animation: rise 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.modal-head h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  border-radius: 10px;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(212, 180, 131, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(212, 180, 131, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-success {
  display: none;
  padding: 0.9rem;
  border: 1px solid rgba(107, 191, 142, 0.35);
  background: rgba(107, 191, 142, 0.1);
  color: #b7e0c8;
  border-radius: 12px;
}

.form-success.is-visible {
  display: block;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.color-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 2px;
  opacity: 0.55;
}

.color-bar span:nth-child(1) {
  background: #d4b483;
}
.color-bar span:nth-child(2) {
  background: #c9b8a0;
}
.color-bar span:nth-child(3) {
  background: #8eb8b0;
}
.color-bar span:nth-child(4) {
  background: #a8b4c8;
}
.color-bar span:nth-child(5) {
  background: #e8e4dc;
}
.color-bar span:nth-child(6) {
  background: #2a2e36;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  padding: 1.4rem;
  z-index: 40;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.08rem;
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid var(--glass-border-soft);
  color: rgba(247, 245, 241, 0.85);
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }
}

@media (max-width: 980px) {
  .header-actions .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .grid-3,
  .grid-5,
  .footer-grid,
  .hero-chips {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .logo-mark {
    width: 40px;
    height: 52px;
  }

  .logo-line {
    font-size: 0.72rem;
  }

  .logo-line:last-child {
    font-size: 0.58rem;
  }

  .grid-3,
  .grid-2,
  .grid-5,
  .footer-grid,
  .requisites div,
  .contract-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-bg,
  .hero-media {
    background-position: 82% 35%;
  }

  .hero-content {
    padding: 1.6rem 0 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
