:root {
  --bg: #111111;
  --surface: #241428;
  --surface-2: #faf5f1;
  --card: #ffffff;
  --text: #0a0a0b;
  --text-light: rgba(255, 255, 255, 0.82);
  --muted: #6d5f5b;
  --line: #ecdcd3;
  --brand: #ff551f;
  --brand-dark: #e44a18;
  --brand-secondary: #7c3a80;
  --brand-secondary-dark: #612c64;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(44, 20, 40, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header--small { position: static; }
.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
}
.nav a:hover { color: var(--brand); }
.burger {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  color: #fff;
  border: 0;
}
.hero {
  background:
    radial-gradient(circle at top right, rgba(255, 85, 31, 0.22), transparent 28%),
    linear-gradient(135deg, #101010 0%, #241428 48%, #7c3a80 100%);
  color: #fff;
  padding: 82px 0 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 128, 0.10);
  color: var(--brand-secondary);
  border: 1px solid rgba(124, 58, 128, 0.18);
  font-size: 0.86rem;
  font-weight: 600;
}
.hero .eyebrow {
  background: rgba(255,255,255,0.08);
  color: #ffd3c2;
  border-color: rgba(255,255,255,0.12);
}
.hero h1,
.section h2,
.doc h1 {
  margin: 0;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 4.2rem); max-width: 12ch; }
.hero__text {
  margin: 20px 0 0;
  max-width: 64ch;
  color: var(--text-light);
  font-size: 1.07rem;
  line-height: 1.7;
}
.hero__actions,
.contact-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 85, 31, 0.28);
}
.btn--primary:hover { background: var(--brand-dark); }
.btn--ghost {
  background: rgba(124, 58, 128, 0.06);
  color: var(--brand-secondary);
  border: 1px solid rgba(124, 58, 128, 0.18);
}
.btn--ghost:hover { background: rgba(124, 58, 128, 0.12); }
.hero .btn--ghost,
.footer .btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}
.hero .btn--ghost:hover,
.footer .btn--ghost:hover {
  background: rgba(255, 85, 31, 0.16);
  border-color: rgba(255, 85, 31, 0.32);
}
.hero__facts {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero__facts li::before {
  content: "•";
  color: #ff9d7a;
  margin-right: 10px;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(124, 58, 128, 0.18));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.metric + .metric {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.metric__value {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
}
.metric__label {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.74);
}
.section { padding: 76px 0; }
.section--muted { background: linear-gradient(180deg, #fff8f3 0%, #f8f0fb 100%); }
.section-head { margin-bottom: 26px; }
.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 16ch;
}
.cards {
  display: grid;
  gap: 18px;
}
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  color: #242424;
}
.card p,
.card li,
.doc p,
.doc li {
  color: #4d4644;
  line-height: 1.7;
}
.product-card { min-height: 190px; }
.requisites-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.note {
  margin: 18px 0 0;
  color: var(--muted);
}
.contact-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(124, 58, 128, 0.08), rgba(255, 85, 31, 0.10));
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.footer {
  padding: 28px 0 40px;
  background: linear-gradient(135deg, #101010 0%, #241428 100%);
  color: #fff;
}
.footer__inner {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__inner p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
}
.footer__links {
  display: grid;
  gap: 10px;
}
.footer__links a { color: rgba(255,255,255,0.86); }
.footer__links a:hover { color: #ffb095; }
.doc-page {
  background: #faf5f1;
  padding: 32px 0 64px;
}
.doc {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: var(--shadow);
}
.doc h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.doc h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.doc ul {
  padding-left: 20px;
}
@media (max-width: 900px) {
  .hero__grid,
  .cards--3,
  .cards--4,
  .requisites-grid,
  .contact-box,
  .footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero h1,
  .section h2 { max-width: none; }
}
@media (max-width: 760px) {
  .burger { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: #171218;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .nav.nav--static {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .nav.is-open { display: flex; }
  .section,
  .hero { padding-top: 56px; padding-bottom: 56px; }
  .hero__facts { font-size: 0.96rem; }
  .doc { padding: 22px; }
}
