@font-face {
  font-family: "Lora";
  src: url("/assets/lora-cyrillic-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("/assets/lora-cyrillic-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #181714;
  --muted: #6e6a60;
  --paper: #f7f5e8;
  --card: #fffef7;
  --line: #ded9c6;
  --orange: #ec6a37;
  --orange-dark: #c84e20;
  --green: #2f6e55;
  --night: #171817;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lora", Georgia, serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 217, 198, .85);
  background: rgba(247, 245, 232, .9);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--orange);
  font-family: system-ui, sans-serif;
  font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(236, 106, 55, .24);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); }
.button.secondary { color: var(--ink); background: transparent; border: 1px solid var(--line); box-shadow: none; }
.button.small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 700;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
h1 {
  max-width: 700px;
  margin: 22px 0 22px;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-copy > p { max-width: 600px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 16px; color: #8d887c; font-size: 12px; }
.phone-wrap { position: relative; min-height: 570px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.orbit.one { width: 510px; height: 510px; }
.orbit.two { width: 390px; height: 390px; border-style: dashed; }
.phone {
  position: relative;
  z-index: 2;
  width: 292px;
  padding: 10px;
  border: 8px solid var(--night);
  border-radius: 46px;
  background: var(--night);
  box-shadow: 0 38px 90px rgba(32, 29, 21, .25);
  transform: rotate(3deg);
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 92px;
  height: 23px;
  border-radius: 999px;
  background: var(--night);
  transform: translateX(-50%);
}
.phone img { width: 100%; aspect-ratio: 3/5.7; object-fit: cover; border-radius: 31px; }
.float-card {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(222,217,198,.8);
  border-radius: 18px;
  background: rgba(255,254,247,.92);
  box-shadow: 0 16px 40px rgba(32,29,21,.12);
  font-size: 13px;
}
.float-card strong { display: block; margin-bottom: 3px; }
.float-card.a { left: 0; top: 110px; transform: rotate(-5deg); }
.float-card.b { right: 0; bottom: 105px; transform: rotate(4deg); }
.section { padding: 96px 0; }
.section.dark { color: white; background: var(--night); }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading h2 { margin: 0 0 14px; font-size: clamp(35px, 4vw, 56px); line-height: 1.05; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.dark .section-heading p { color: #aaa99f; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.feature-num { color: var(--orange); font-size: 13px; font-weight: 700; }
.feature h3 { margin: 55px 0 10px; font-size: 23px; line-height: 1.2; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }
.situations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.situation { overflow: hidden; min-height: 280px; border-radius: 24px; background: #282926; }
.situation img { width: 100%; height: 185px; object-fit: cover; }
.situation div { padding: 18px; }
.situation strong { display: block; font-size: 18px; }
.situation span { color: #aaa99f; font-size: 13px; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 54px;
  border-radius: 36px;
  color: white;
  background: var(--green);
}
.cta-box h2 { max-width: 650px; margin: 0; font-size: clamp(34px, 4vw, 55px); line-height: 1.05; letter-spacing: -.04em; }
.cta-box .button { color: var(--ink); background: #fff; box-shadow: none; white-space: nowrap; }
.site-footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.copyright { color: #8d887c; font-size: 12px; }
.legal { width: min(800px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 100px; }
.legal h1 { margin-bottom: 10px; font-size: clamp(38px, 6vw, 64px); }
.legal .meta { margin-bottom: 48px; color: var(--muted); font-size: 13px; }
.legal h2 { margin: 38px 0 12px; font-size: 21px; }
.legal p, .legal li { color: #5e5a51; font-size: 15px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--orange-dark); }
.notice { margin: 28px 0; padding: 22px; border: 1px solid #bad0c3; border-radius: 18px; background: #edf5ef; }

@media (max-width: 900px) {
  .nav-links > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 35px; padding-top: 56px; }
  .phone-wrap { min-height: 530px; }
  .grid { grid-template-columns: 1fr; }
  .situations { grid-template-columns: repeat(2, 1fr); }
  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav { min-height: 64px; }
  .brand { font-size: 18px; }
  .nav-links { gap: 8px; }
  .button.small { padding: 0 13px; }
  .hero { min-height: auto; padding: 46px 0 70px; }
  h1 { font-size: 48px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .phone-wrap { min-height: 475px; }
  .phone { width: 235px; }
  .orbit.one { width: 360px; height: 360px; }
  .orbit.two { width: 290px; height: 290px; }
  .float-card { max-width: 150px; padding: 10px 12px; font-size: 11px; }
  .float-card.a { top: 85px; }
  .float-card.b { bottom: 70px; }
  .section { padding: 72px 0; }
  .situations { grid-template-columns: 1fr; }
  .situation { min-height: 0; }
  .cta-box { padding: 32px 24px; border-radius: 28px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}
