:root {
  --orange: #ff6a00;
  --orange-dark: #d95000;
  --ink: #151719;
  --muted: #68707a;
  --line: #e9edf2;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --dark: #20252a;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(17, 24, 39, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(233,237,242,.7);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  font-weight: 900;
  letter-spacing: -0.08em;
  font-size: clamp(28px, 4vw, 43px);
  line-height: .82;
}
.brand::after {
  content: "";
  position: absolute;
  transform: translateY(8px);
  width: 132px;
  max-width: 22vw;
  height: 4px;
  background: var(--orange);
}
.brand-text { white-space: nowrap; }
.brand-mark {
  width: .58em;
  height: 1.04em;
  background: linear-gradient(135deg, var(--orange), #ff8f2b);
  transform: skew(-16deg);
  border-radius: 3px 6px 3px 3px;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-weight: 700;
  color: #373b40;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--orange); }
.call-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.call-btn, .btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff7f22);
  box-shadow: 0 12px 28px rgba(255, 106, 0, .28);
}
.btn.ghost {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn.outline {
  color: var(--orange);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--orange);
}
.call-btn:hover, .btn:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 92px 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .95), transparent 26%),
    linear-gradient(90deg, rgba(247,248,250,.98) 0%, rgba(247,248,250,.92) 42%, rgba(247,248,250,.15) 70%),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80") center right / cover;
}
.hero-bg {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, var(--soft), transparent);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  gap: 32px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-kicker::after {
  content: "";
  width: 54px;
  height: 4px;
  margin-left: 14px;
  background: var(--orange);
  border-radius: 999px;
}
.section-kicker.light { color: #fff; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  margin-top: 16px;
  color: var(--orange);
}
.lead {
  max-width: 560px;
  margin: 28px 0 32px;
  color: #30363d;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  min-height: 410px;
  display: grid;
  align-items: end;
  justify-items: end;
}
.glass-panel {
  width: min(360px, 100%);
  padding: 28px;
  color: #fff;
  background: rgba(21, 23, 25, .58);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.glass-panel span { color: rgba(255,255,255,.72); font-weight: 700; }
.glass-panel strong { display: block; font-size: 30px; line-height: 1.1; }

.stats-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 68px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.stat-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}
.stat-card:last-child { border-right: 0; }
.stat-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--ink);
}
.stat-icon svg, .product-card svg { width: 42px; height: 42px; }
.stat-card strong { display: block; font-weight: 900; }
.stat-card span:last-child { color: var(--muted); font-size: 13px; font-weight: 700; }

.section { padding: 92px 0; }
.two-col, .contact-grid, .catalog-grid, .dealer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.section-copy h2, .centered h2, .catalog-strip h2, .dealer-cta h2, .contact h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-copy p { max-width: 720px; color: #3d444c; font-weight: 600; }
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 900;
}
.factory-card {
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: var(--shadow);
}
.factory-sign {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 28px 34px;
  background: rgba(255,255,255,.88);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.08em;
}
.factory-sign i {
  width: 26px;
  height: 48px;
  background: var(--orange);
  transform: skew(-16deg);
  border-radius: 4px;
}

.products { padding-top: 40px; }
.centered { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.centered .section-kicker { justify-content: center; }
.centered .section-kicker::before {
  content: "";
  width: 54px;
  height: 4px;
  margin-right: 14px;
  background: var(--orange);
  border-radius: 999px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  min-height: 162px;
  display: grid;
  place-items: center;
  padding: 26px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(17,24,39,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,0,.45);
  box-shadow: 0 24px 54px rgba(17,24,39,.12);
}
.product-card span { color: var(--orange); }
.product-card h3 {
  margin: 18px 0 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.catalog-strip {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(32,37,42,.98), rgba(32,37,42,.86)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80") center / cover;
}
.catalog-strip p { color: rgba(255,255,255,.78); max-width: 580px; }
.catalog-list {
  display: grid;
  gap: 14px;
}
.catalog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.catalog-item span { font-weight: 900; }
.catalog-item small { color: rgba(255,255,255,.7); }

.dealer-cta {
  padding: 44px 0;
  background: #fff;
}
.dealer-grid {
  grid-template-columns: 1fr auto;
}
.dealer-cta p { margin: 0; color: var(--muted); font-weight: 700; }

.contact { background: #fff; }
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: #2f353b;
  font-weight: 800;
}
.contact-list a:hover { color: var(--orange); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #323840;
  font-weight: 800;
}
input, textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
input:focus, textarea:focus {
  outline: 3px solid rgba(255,106,0,.16);
  border-color: var(--orange);
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 54px 0 22px;
  color: #d7dce2;
  background: var(--dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 42px;
}
.footer-brand { color: #fff; }
.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.site-footer a, .site-footer span {
  display: block;
  margin: 8px 0;
  color: #c5cbd1;
}
.site-footer a:hover { color: #fff; }
.copyright {
  margin: 38px 0 0;
  text-align: center;
  color: #89919a;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal .75s ease forwards;
}
.delay-1 { animation-delay: .16s; }
.delay-2 { animation-delay: .28s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    grid-column: 1 / -1;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .call-btn { justify-self: end; }
  .hero-grid, .two-col, .contact-grid, .catalog-grid {
    grid-template-columns: 1fr;
  }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header {
    gap: 12px;
    padding: 14px;
  }
  .brand { font-size: 28px; }
  .brand::after { width: 92px; }
  .call-btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    padding: 64px 0 0;
  }
  .hero-card { min-height: 180px; justify-items: start; }
  .stats-wrap, .product-grid, .dealer-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-card:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
}
