:root {
  --industrial-bg: #090a0f;
  --industrial-panel: #11141c;
  --industrial-card: #151923;
  --industrial-line: #252b38;
  --industrial-orange: #f05a24;
  --industrial-orange-dark: #d94514;
  --industrial-text: #f4f6f8;
  --industrial-muted: #9ca3af;
  --industrial-soft: #d9dee7;
  --industrial-white: #ffffff;
}

html {
  scroll-padding-top: 128px;
}

body {
  background: var(--industrial-bg);
  color: var(--industrial-text);
}

.wrap {
  max-width: 1280px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--industrial-bg);
}

.topbar {
  background: #06070a;
  border-bottom: 1px solid #181d27;
  color: var(--industrial-muted);
  font-size: 13px;
}

.topbar .wrap {
  min-height: 38px;
}

.topbar strong {
  color: var(--industrial-text);
}

.navbar {
  background: rgba(9, 10, 15, .96);
  border-bottom: 1px solid var(--industrial-line);
  backdrop-filter: blur(12px);
}

.navbar .wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: 190px 1fr 230px;
  gap: 28px;
  align-items: center;
}

.brand {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  justify-self: start;
}

.brand img {
  width: 138px;
  max-height: 62px;
  object-fit: contain;
}

.menu {
  justify-content: center;
  gap: 28px;
}

.menu > a,
.menu-item > a {
  height: 86px;
  display: inline-flex;
  align-items: center;
  color: var(--industrial-muted);
  font-size: 15px;
  font-weight: 700;
  border: 0;
}

.menu > a.active,
.menu > a:hover,
.menu-item > a.active,
.menu-item > a:hover {
  color: var(--industrial-text);
}

.menu > a.active::after,
.menu-item > a.active::after {
  background: var(--industrial-orange);
}

.has-dropdown {
  position: static;
}

.product-dropdown {
  top: 124px;
  left: 50%;
  right: auto;
  width: min(1120px, calc(100vw - 48px));
  transform: translate(-50%, 12px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  background: #10121a;
  border: 1px solid var(--industrial-line);
  border-bottom: 3px solid var(--industrial-orange);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 24px 55px rgba(0,0,0,.45);
}

.has-dropdown:hover .product-dropdown {
  transform: translate(-50%, 0);
}

.dropdown-product {
  color: var(--industrial-muted);
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  padding: 14px 16px;
}

.dropdown-product:hover {
  color: var(--industrial-text);
  background: rgba(240,90,36,.11);
  border-color: rgba(240,90,36,.36);
}

.nav-tools {
  justify-content: flex-end;
}

.language-toggle {
  min-width: 210px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  color: #b83a40;
  padding: 0 20px;
}

.language-menu {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.language-menu a {
  color: #333;
}

.btn,
.more-btn,
.channel-btn,
.quote-form button {
  border-radius: 6px;
}

.btn-primary,
.quote-form button,
.header-cta {
  background: var(--industrial-orange);
}

.btn-primary:hover,
.quote-form button:hover,
.header-cta:hover {
  background: var(--industrial-orange-dark);
}

.home-industrial {
  background: var(--industrial-bg);
  color: var(--industrial-text);
}

.industrial-hero {
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 35%, rgba(240,90,36,.25), transparent 34%),
    linear-gradient(90deg, #090a0f 0%, #10131c 56%, #07080d 100%);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--industrial-line);
}

.industrial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,10,15,.98), rgba(9,10,15,.76) 48%, rgba(9,10,15,.24));
  z-index: 1;
}

.industrial-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 86px 0;
}

.industrial-kicker,
.section-tag {
  color: var(--industrial-orange);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.industrial-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(46px, 6vw, 86px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: 0;
}

.industrial-hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--industrial-muted);
  font-size: 18px;
  line-height: 1.72;
}

.industrial-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.industrial-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.industrial-actions a:first-child {
  background: var(--industrial-orange);
}

.industrial-actions a:last-child {
  background: transparent;
  border: 1px solid var(--industrial-line);
}

.hero-product-stage {
  min-height: 620px;
  position: relative;
}

.hero-product-card {
  position: absolute;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(232,237,245,.96));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
  border-radius: 18px;
  padding: 18px;
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-product-card.waffle {
  width: 43%;
  height: 46%;
  left: 0;
  top: 5%;
}

.hero-product-card.fryer {
  width: 30%;
  height: 48%;
  left: 18%;
  bottom: 0;
  z-index: 2;
}

.hero-product-card.warmer {
  width: 42%;
  height: 34%;
  right: 0;
  top: 8%;
}

.hero-product-card.oven {
  width: 48%;
  height: 42%;
  right: 4%;
  bottom: 4%;
}

.industrial-stats {
  background: var(--industrial-panel);
  border-top: 1px solid var(--industrial-line);
  border-bottom: 1px solid var(--industrial-line);
  padding: 34px 0;
}

.industrial-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--industrial-line);
}

.industrial-stat {
  background: var(--industrial-panel);
  padding: 30px 24px;
  text-align: center;
}

.industrial-stat strong {
  display: block;
  color: var(--industrial-orange);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
}

.industrial-stat span {
  display: block;
  margin-top: 10px;
  color: var(--industrial-soft);
  font-weight: 800;
}

.section,
.hot-products,
.category-guide-section,
.news-section,
.factory-section,
.video-about,
.quote-section {
  background: var(--industrial-bg);
  color: var(--industrial-text);
}

.section.alt,
.capacity-section,
.why-section,
.category-guide-section {
  background: #0d1017;
}

.section-head h2,
.section-title,
.hot-head h2,
.subpage-hero h1 {
  color: var(--industrial-text);
}

.section-head p,
.section-desc,
.subpage-hero p {
  color: var(--industrial-muted);
}

.cat-grid,
.news-grid,
.category-guide-grid,
.why-grid,
.factory-grid {
  gap: 22px;
}

.category-card,
.news-card,
.category-guide-card,
.why-card,
.factory-card,
.hot-card {
  background: var(--industrial-card);
  border-color: var(--industrial-line);
  color: var(--industrial-text);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}

.product-tab {
  color: #b5c0cf;
  border-bottom-color: rgba(255,255,255,.24);
}

.product-tab:hover {
  color: var(--industrial-text);
}

.product-tab.active {
  color: #ff4f64;
}

.category-card p,
.news-card p,
.category-guide-card p,
.why-card p,
.factory-card p,
.hot-card p {
  color: var(--industrial-muted);
}

.category-guide-card figure,
.hot-card img,
.category-card figure {
  background: linear-gradient(180deg, #fff, #edf1f6);
}

.subpage-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(240,90,36,.28), transparent 30%),
    linear-gradient(135deg, #090a0f, #151923);
  border-bottom: 1px solid var(--industrial-line);
}

.site-footer {
  background: #06070a;
  border-top: 1px solid var(--industrial-line);
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--industrial-muted);
}

.site-footer h3 {
  color: var(--industrial-text);
}

.site-footer a:hover {
  color: var(--industrial-orange);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.social-links a:hover {
  background: var(--industrial-orange);
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--industrial-orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(240,90,36,.32);
}

@media (max-width: 1180px) {
  .navbar .wrap {
    grid-template-columns: 160px 1fr;
  }

  .nav-tools {
    grid-column: 1 / -1;
  }

  .industrial-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  header {
    position: static;
  }

  .navbar .wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px 0;
  }

  .menu {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
  }

  .menu > a,
  .menu-item > a {
    height: 44px;
    white-space: nowrap;
  }

  .product-dropdown {
    display: none;
  }

  .language-toggle {
    min-width: 180px;
  }

  .industrial-hero {
    min-height: auto;
  }

  .industrial-hero-grid {
    padding: 52px 0 66px;
  }

  .hero-product-stage {
    min-height: 440px;
  }

  .industrial-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
