:root {
  --ink: #17211c;
  --forest: #153f32;
  --pine: #1f624d;
  --mint: #dcece4;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --clay: #d86f45;
  --gold: #d2a84b;
  --line: rgba(23, 33, 28, 0.14);
  --muted: #5c675f;
  --shadow: 0 24px 70px rgba(30, 48, 39, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--clay);
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
h1, h2 { overflow-wrap: anywhere; }
h1 { max-width: 780px; font-size: clamp(3rem, 7vw, 6.8rem); letter-spacing: -0.055em; }
h2 { max-width: 760px; font-size: clamp(2.25rem, 4.5vw, 4.4rem); letter-spacing: -0.04em; }
h3 { font-size: 1.45rem; }
p { margin: 0; }
.lead { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.section { padding: 108px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}
.section-head .lead { max-width: 430px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover { color: var(--pine); }
.lang-link { padding-left: 20px; border-left: 1px solid var(--line); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--forest);
  border-radius: 10px;
  color: white;
  background: var(--forest);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--pine); }
.button.secondary { color: var(--forest); background: transparent; }
.button.secondary:hover { background: var(--mint); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 66px;
  background:
    radial-gradient(circle at 83% 18%, rgba(210, 168, 75, .18), transparent 24%),
    linear-gradient(135deg, var(--paper), var(--white) 62%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; }
.hero h1 em { color: var(--pine); font-style: normal; }
.hero-copy .lead { margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 40px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 8px; color: var(--pine); }

.ops-visual {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  color: white;
  background: var(--forest);
  box-shadow: var(--shadow);
}
.ops-top { display: flex; justify-content: space-between; align-items: center; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.live-dot::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #86d6ae; box-shadow: 0 0 0 5px rgba(134,214,174,.13); }
.ops-code { color: rgba(255,255,255,.58); font-family: monospace; font-size: .78rem; }
.route-map { position: relative; height: 270px; margin: 30px 0 20px; }
.route-line {
  position: absolute;
  inset: 35px 42px;
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: 46% 54% 38% 62%;
  transform: rotate(-8deg);
}
.route-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  color: var(--forest);
  background: var(--paper);
  font-size: 1.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.route-node.one { top: 14px; left: 5px; }
.route-node.two { top: 98px; left: 42%; background: #f2cfae; }
.route-node.three { right: 2px; bottom: 4px; background: #cde6d8; }
.route-label { position: absolute; color: rgba(255,255,255,.75); font-size: .76rem; font-weight: 800; }
.label-one { top: 88px; left: 0; }
.label-two { top: 174px; left: 39%; }
.label-three { right: 0; bottom: 78px; }
.ops-status { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.status-card { padding: 15px; border-radius: 12px; background: rgba(255,255,255,.08); }
.status-card small { display: block; color: rgba(255,255,255,.55); }
.status-card strong { font-family: Georgia, serif; font-size: 1.15rem; }

.audience-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.audience-list { display: grid; grid-template-columns: repeat(6, 1fr); }
.audience-list span { padding: 22px 12px; border-right: 1px solid var(--line); text-align: center; color: var(--muted); font-size: .8rem; font-weight: 800; }
.audience-list span:first-child { border-left: 1px solid var(--line); }

.services { background: var(--white); }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-num { color: var(--clay); font-family: Georgia, serif; font-size: 1.2rem; }
.service-row p { color: var(--muted); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.service-tags span { padding: 5px 9px; border-radius: 6px; color: var(--forest); background: var(--mint); font-size: .74rem; font-weight: 800; }

.process { color: white; background: var(--forest); }
.process .eyebrow, .process .lead { color: #c9ded4; }
.process .eyebrow::before { background: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.steps::before { content: ""; position: absolute; top: 24px; left: 7%; right: 7%; border-top: 1px dashed rgba(255,255,255,.3); }
.step { position: relative; padding-right: 22px; }
.step-num {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: var(--forest);
  font-weight: 850;
}
.step h3 { margin-bottom: 8px; font-size: 1.08rem; font-family: Inter, sans-serif; font-weight: 800; }
.step p { color: rgba(255,255,255,.62); font-size: .86rem; }

.partnerships { background: var(--paper); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card { min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.partner-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 50px; border-radius: 12px; color: white; background: var(--pine); font-weight: 900; }
.partner-card h3 { margin-bottom: 14px; font-size: 1.7rem; }
.partner-card p { color: var(--muted); }
.partner-card ul { padding: 0; margin: 20px 0 0; list-style: none; }
.partner-card li { margin-top: 7px; font-size: .9rem; font-weight: 700; }
.partner-card li::before { content: "—"; margin-right: 8px; color: var(--clay); }

.advantages-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.advantage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; }
.advantage { padding-top: 18px; border-top: 2px solid var(--forest); }
.advantage h3 { margin-bottom: 10px; font-family: Inter, sans-serif; font-size: 1rem; font-weight: 850; }
.advantage p { color: var(--muted); font-size: .92rem; }

.cargo-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.cargo-side { padding: 46px; }
.cargo-side.good { background: var(--mint); }
.cargo-side.limit { color: white; background: var(--ink); }
.cargo-side h3 { margin-bottom: 22px; font-size: 2rem; }
.cargo-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; padding: 0; margin: 0; list-style: none; }
.cargo-list li::before { content: "✓"; margin-right: 8px; color: var(--pine); font-weight: 900; }
.limit .cargo-list { grid-template-columns: 1fr; }
.limit .cargo-list li::before { content: "×"; color: #f0a17d; }

.contact { padding-bottom: 120px; }
.contact-box { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.contact-copy { padding: 50px; color: white; background: var(--forest); }
.contact-copy h2 { margin-bottom: 24px; font-size: clamp(2.3rem, 4vw, 4rem); }
.contact-copy p { color: rgba(255,255,255,.7); }
.contact-meta { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-meta strong { display: block; margin-bottom: 4px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 50px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 108px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .82rem; }
.form-status { grid-column: 1 / -1; min-height: 24px; color: var(--pine); font-weight: 800; }

.site-footer { padding: 50px 0; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.footer-copy { max-width: 470px; color: var(--muted); font-size: .88rem; }
.footer-bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal {
  transition: opacity .6s ease, transform .6s ease;
}
.motion-ready .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid, .advantages-grid, .contact-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .ops-visual { min-height: 470px; }
  .audience-list { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: auto; }
  .partner-icon { margin-bottom: 28px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 42px 20px; }
  .steps::before { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head .lead { margin-top: 18px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }
  .nav-links.open { display: grid; }
  .lang-link { padding: 12px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .ops-status { grid-template-columns: 1fr; }
  .ops-visual { min-height: 560px; }
  .audience-list { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 42px 1fr; gap: 16px; }
  .service-row > p { grid-column: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cargo-panel { grid-template-columns: 1fr; }
  .cargo-side { padding: 34px 26px; }
  .cargo-list { grid-template-columns: 1fr; }
  .advantage-list { grid-template-columns: 1fr; }
  .contact-copy, .contact-form { padding: 34px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
