@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #0d0f10;
  --surface: #141618;
  --surface2: #1c1f22;
  --border: #2a2d31;
  --accent: #c8f035;
  --text: #e8eaed;
  --text-muted: #7a8290;
  --text-dim: #4a5060;
  --nav-h: 88px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

/* ─── NAVBAR — white bar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  padding: 0 48px;
  z-index: 100;
  gap: 32px;
}
.navbar__logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  transition: opacity .2s;
}
.navbar__logo:hover { opacity: .78; }
.navbar__logo img { height: 66px; width: auto; display: block; }

.navbar__links {
  display: flex; align-items: center;
  gap: 2px; list-style: none; margin-left: auto;
}
.navbar__links a {
  color: #3a3a3a; text-decoration: none;
  font-size: 14px; font-weight: 600;
  letter-spacing: .03em;
  padding: 8px 16px; border-radius: var(--radius);
  transition: color .18s, background .18s; white-space: nowrap;
}
.navbar__links a:hover { color: #111; background: #f0f0f0; }
.navbar__links a.active { color: #2c7a00; background: rgba(100,200,0,.12); }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  margin-left: 16px; border-left: 1px solid #ddd; padding-left: 16px;
}
.lang-switch a {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--radius);
  color: #888; text-decoration: none;
  transition: color .18s, background .18s;
}
.lang-switch a:hover { color: #111; background: #f0f0f0; }
.lang-switch a.current { color: #2c7a00; background: rgba(100,200,0,.14); font-weight: 700; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 48px 100px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://static.wixstatic.com/media/fe1fe0dd4a294642b8f2b775efe3bf06.jpg/v1/fill/w_1920,h_1080,al_c,q_85/fe1fe0dd4a294642b8f2b775efe3bf06.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.22) saturate(.5);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(200,240,53,.06) 0%,transparent 55%),
              linear-gradient(to bottom,transparent 50%,var(--bg) 100%);
}
.hero__inner { position: relative; max-width: 820px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); background: rgba(200,240,53,.1);
  border: 1px solid rgba(200,240,53,.22);
  padding: 6px 14px; border-radius: 2px; margin-bottom: 28px;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px,9.5vw,124px);
  line-height: .93; letter-spacing: .02em;
  color: var(--text); margin-bottom: 28px;
}
.hero__title span { color: var(--accent); }
.hero__desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 560px; margin-bottom: 44px; line-height: 1.72;
}
.hero__stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--accent); line-height: 1;
}
.hero__stat-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  transition: all .2s; cursor: pointer; border: none;
}
.btn--primary { background: var(--accent); color: #0d0f10; }
.btn--primary:hover { background: #d4f545; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--text-muted); background: var(--surface2); }

/* ─── SECTIONS ─── */
.section { padding: 96px 48px; max-width: 1200px; margin: 0 auto; }
.section__label {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px,5vw,58px); letter-spacing: .04em;
  line-height: 1; color: var(--text); margin-bottom: 16px;
}
.section__sub { font-size: 16px; color: var(--text-muted); max-width: 580px; margin-bottom: 56px; }

/* ─── CATALOG ─── */
.catalog { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 2px; }
.catalog-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--surface2);
  cursor: pointer; text-decoration: none; display: block;
}
.catalog-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.6) saturate(.65);
}
.catalog-card:hover img { transform: scale(1.06); filter: brightness(.85) saturate(1); }
.catalog-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px 22px;
  background: linear-gradient(transparent,rgba(0,0,0,.84));
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px; letter-spacing: .06em;
  color: var(--text); transition: color .2s;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.catalog-card:hover .catalog-card__label { color: var(--accent); }
.catalog-card__arrow {
  width: 28px; height: 28px; border: 1px solid currentColor;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 10px; opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.catalog-card:hover .catalog-card__arrow { opacity: 1; transform: translateX(0); }

/* ─── FEATURES ─── */
.features {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap: 1px; background: var(--border); margin-top: 52px;
}
.feature-block {
  background: var(--bg); padding: 38px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.feature-block__icon {
  width: 44px; height: 44px; background: rgba(200,240,53,.09);
  border: 1px solid rgba(200,240,53,.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 20px;
}
.feature-block__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .06em; color: var(--text);
}
.feature-block__text { font-size: 14px; color: var(--text-muted); line-height: 1.72; }

/* ─── INFO STRIP (числа/факты) ─── */
.info-strip {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 48px;
}
.info-strip__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 40px;
}
.info-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.info-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── IMAGE+TEXT ROW ─── */
.split-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 100%; overflow: hidden;
}
@media(max-width:800px){ .split-row { grid-template-columns: 1fr; } }
.split-row__img { aspect-ratio: 4/3; overflow: hidden; }
.split-row__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(.8); display: block; }
.split-row__text {
  padding: 64px 56px; background: var(--surface);
  display: flex; flex-direction: column; justify-content: center;
}
.split-row__text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: .05em; color: var(--text); margin-bottom: 16px;
}
.split-row__text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.split-row__text ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.split-row__text ul li {
  padding-left: 18px; position: relative;
  font-size: 14px; color: var(--text-muted);
}
.split-row__text ul li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); top: 2px; font-size: 11px; }

/* ─── PAGE HERO ─── */
.page-hero { padding: calc(var(--nav-h) + 80px) 48px 72px; max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px,7vw,92px); letter-spacing: .03em;
  line-height: .93; color: var(--text); margin-bottom: 20px;
}
.page-hero__sub { font-size: 18px; color: var(--text-muted); max-width: 540px; }

/* ─── CONTENT GRID ─── */
.content-grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: start;
  padding: 72px 48px; max-width: 1200px; margin: 0 auto;
}
@media(max-width:900px){ .content-grid { grid-template-columns: 1fr; } }
.content-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: .06em;
  color: var(--accent); margin: 40px 0 12px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.content-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.content-body ul li { padding-left: 20px; position: relative; color: var(--text-muted); font-size: 15px; }
.content-body ul li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); font-size: 12px; top: 3px; }

/* ─── SPECS TABLE ─── */
.specs-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 11px 14px; font-size: 14px; }
.specs-table td:first-child { color: var(--text-muted); width: 50%; }
.specs-table td:last-child { color: var(--text); font-weight: 500; }
.specs-table tr:nth-child(odd) td { background: rgba(255,255,255,.02); }

/* ─── SIDEBAR ─── */
.sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
.sidebar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px; letter-spacing: .06em; color: var(--text); margin-bottom: 16px;
}

/* ─── FORMS ─── */
.form { display: flex; flex-direction: column; gap: 10px; }
.form input, .form textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 12px 15px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  border-radius: var(--radius); outline: none;
  transition: border-color .2s; width: 100%; resize: vertical;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); }
.form textarea { min-height: 110px; }
.form input::placeholder, .form textarea::placeholder { color: var(--text-dim); }

/* ─── CONTACT PAGE ─── */
.contact-page {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: calc(100vh - var(--nav-h));
}
@media(max-width:800px){ .contact-page { grid-template-columns: 1fr; } }
.contact-page__info {
  padding: calc(var(--nav-h) + 80px) 60px 80px;
  background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-page__form {
  padding: calc(var(--nav-h) + 80px) 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info-item { display: flex; flex-direction: column; gap: 6px; margin-bottom: 30px; }
.contact-info-item__label {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.contact-info-item__value { font-size: 16px; color: var(--text); }
.contact-info-item__value a { color: var(--text); text-decoration: none; transition: color .2s; }
.contact-info-item__value a:hover { color: var(--accent); }

/* ─── ABOUT ─── */
.about-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 48px; max-width: 1200px; margin: 0 auto;
}
@media(max-width:800px){ .about-block { grid-template-columns: 1fr; } }
.about-block img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); filter: brightness(.78) saturate(.8); }
.stat-row { display: flex; gap: 44px; margin-top: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: .02em; color: var(--accent); line-height: 1; }
.stat__label { font-size: 13px; color: var(--text-muted); }

/* ─── PRODUCTION ─── */
.prod-intro { background: var(--surface); padding: 56px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prod-intro__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media(max-width:800px){ .prod-intro__inner { grid-template-columns: 1fr; } }
.prod-intro p { color: var(--text-muted); font-size: 15px; line-height: 1.75; }
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 11px; border: 1px solid var(--border); border-radius: 2px; color: var(--text-muted); }

/* ─── PRODUCT HEADER ─── */
.product-header { padding: calc(var(--nav-h) + 56px) 48px 0; max-width: 1200px; margin: 0 auto; }
.product-header__breadcrumb {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: var(--text-dim); letter-spacing: .06em; margin-bottom: 20px;
  display: flex; gap: 8px; align-items: center;
}
.product-header__breadcrumb a { color: var(--text-muted); text-decoration: none; }
.product-header__breadcrumb a:hover { color: var(--text); }
.product-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px,6vw,76px); letter-spacing: .03em;
  color: var(--text); line-height: .93; margin-bottom: 20px;
}

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 36px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer .footer-copy { font-size: 13px; color: var(--text-dim); font-family: 'DM Mono', monospace; }
footer .footer-links { display: flex; gap: 22px; list-style: none; }
footer .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
footer .footer-links a:hover { color: var(--text); }

/* ─── UTILS ─── */
.divider { height: 1px; background: var(--border); margin: 0 48px; }
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--accent); color: #0d0f10;
  padding: 13px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1); z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── BURGER BUTTON (hidden on desktop) ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background .15s;
}
.burger:hover { background: #f0f0f0; }
.burger span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 2px solid #e2e2e2;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 99;
  flex-direction: column;
  padding: 16px 0 24px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: background .15s, color .15s;
  letter-spacing: .02em;
}
.mobile-menu a:hover { background: #f5f5f5; }
.mobile-menu a.active { color: #2c7a00; }
.mobile-menu__divider {
  height: 1px;
  background: #ebebeb;
  margin: 12px 24px;
}
.mobile-menu__lang {
  display: flex;
  gap: 8px;
  padding: 8px 24px 0;
}
.mobile-menu__lang a {
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
}
.mobile-menu__lang a.current {
  background: rgba(100,200,0,.12);
  border-color: rgba(100,200,0,.4);
  color: #2c7a00;
}

@media(max-width:700px){
  /* Hide desktop nav items */
  .navbar__links { display: none; }
  .lang-switch { display: none; }

  /* Show burger */
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  /* Navbar layout */
  .navbar { padding: 0 20px; }

  /* Content padding */
  .hero, .section, .page-hero { padding-left: 20px; padding-right: 20px; }
  .divider { margin: 0 20px; }
  footer { padding: 28px 20px; }
  .contact-page__info, .contact-page__form { padding-left: 22px; padding-right: 22px; }
  .content-grid, .about-block { padding-left: 20px; padding-right: 20px; }
  .prod-intro { padding-left: 20px; padding-right: 20px; }
  .info-strip { padding-left: 20px; padding-right: 20px; }
  .split-row__text { padding: 40px 24px; }
}
