/* =========================================================
   MHOT - BUILT FOR PROFESSIONALS
   Main Stylesheet
   ========================================================= */

/* CSS Variables - Brand Colors */
:root {
  --mhot-yellow: #F4B400;
  --mhot-yellow-dark: #D4A000;
  --mhot-yellow-light: #FFD54F;
  --mhot-black: #111111;
  --mhot-black-2: #1A1A1A;
  --mhot-black-3: #222222;
  --mhot-blue: #1565C0;
  --mhot-blue-light: #1E88E5;
  --mhot-gray: #555555;
  --mhot-gray-light: #888888;
  --mhot-gray-lighter: #CCCCCC;
  --mhot-dark-bg: #0A0A0A;
  --mhot-dark-section: #141414;
  --mhot-card-bg: #1E1E1E;
  --mhot-body-bg: #0D0D0D;
  --mhot-text: #F5F5F5;
  --mhot-text-muted: #999999;
  --mhot-border: #333333;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  
  --transition: all 0.3s ease;
  --shadow: 0 5px 25px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 20px rgba(244,180,0,0.15);
  --radius: 8px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--mhot-body-bg);
  color: var(--mhot-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--mhot-yellow); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--mhot-yellow-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; }

/* =========================================================
   UTILITY
   ========================================================= */
.text-yellow { color: var(--mhot-yellow) !important; }
.text-white { color: #fff !important; }
.text-muted-mhot { color: var(--mhot-text-muted) !important; }
.bg-black { background: var(--mhot-black) !important; }
.bg-dark-section { background: var(--mhot-dark-section) !important; }
.bg-card { background: var(--mhot-card-bg) !important; }

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  color: var(--mhot-text-muted);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--mhot-yellow);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-mhot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-mhot-yellow {
  background: var(--mhot-yellow);
  color: var(--mhot-black);
}
.btn-mhot-yellow:hover {
  background: var(--mhot-yellow-dark);
  color: var(--mhot-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-mhot-outline {
  background: transparent;
  color: var(--mhot-yellow);
  border: 2px solid var(--mhot-yellow);
}
.btn-mhot-outline:hover {
  background: var(--mhot-yellow);
  color: var(--mhot-black);
  transform: translateY(-2px);
}

.btn-mhot-white {
  background: #fff;
  color: var(--mhot-black);
}
.btn-mhot-white:hover {
  background: var(--mhot-yellow);
  color: var(--mhot-black);
  transform: translateY(-2px);
}

.btn-mhot-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-mhot-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.mhot-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,180,0,0.1);
  transition: var(--transition);
}

.mhot-header.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.mhot-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.mhot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mhot-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--mhot-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--mhot-black);
  font-family: var(--font-heading);
}

.mhot-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}

.mhot-logo .logo-text span { color: var(--mhot-yellow); }
.mhot-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--mhot-gray-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.mhot-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.mhot-nav a {
  color: var(--mhot-text);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}
.mhot-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mhot-yellow);
  transition: var(--transition);
}
.mhot-nav a:hover::after,
.mhot-nav a.active::after { width: 100%; }
.mhot-nav a:hover { color: var(--mhot-yellow); }
.mhot-nav a.active { color: var(--mhot-yellow); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-left: 20px;
}

.lang-btn {
  background: transparent;
  color: var(--mhot-text-muted);
  border: 1px solid var(--mhot-border);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.lang-btn.active {
  background: var(--mhot-yellow);
  color: var(--mhot-black);
  border-color: var(--mhot-yellow);
}
.lang-btn:hover:not(.active) {
  color: var(--mhot-yellow);
  border-color: var(--mhot-yellow);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  display: block;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,180,0,0.15);
  border: 1px solid rgba(244,180,0,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mhot-yellow);
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight { color: var(--mhot-yellow); }

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--mhot-gray-lighter);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mhot-yellow);
}
.hero-stat p {
  font-size: 0.85rem;
  color: var(--mhot-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   PRODUCT CATEGORY CARDS
   ========================================================= */
.cat-card {
  background: var(--mhot-card-bg);
  border: 1px solid var(--mhot-border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mhot-yellow);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.cat-card:hover {
  transform: translateY(-10px);
  border-color: var(--mhot-yellow);
  box-shadow: var(--shadow-glow);
}

.cat-card:hover::before { transform: scaleX(1); }

.cat-card .cat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(244,180,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--mhot-yellow);
  transition: var(--transition);
}

.cat-card:hover .cat-icon {
  background: var(--mhot-yellow);
  color: var(--mhot-black);
}

.cat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 0.85rem;
  color: var(--mhot-text-muted);
  line-height: 1.5;
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.feature-box {
  text-align: center;
  padding: 40px 30px;
  transition: var(--transition);
}

.feature-box:hover { transform: translateY(-5px); }

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(244,180,0,0.15) 0%, rgba(244,180,0,0.05) 100%);
  border: 1px solid rgba(244,180,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--mhot-yellow);
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background: var(--mhot-yellow);
  color: var(--mhot-black);
  box-shadow: var(--shadow-glow);
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--mhot-text-muted);
  line-height: 1.6;
}

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section {
  background: var(--mhot-black);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--mhot-yellow);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--mhot-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--mhot-black) 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,180,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--mhot-text-muted);
  max-width: 600px;
  margin: 0 auto 35px;
}

/* =========================================================
   INNER PAGE HEADER
   ========================================================= */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--mhot-black) 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(244,180,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: var(--mhot-gray);
  font-size: 1rem;
}

/* =========================================================
   LEGAL PAGES (PRIVACY / TERMS)
   ========================================================= */
.legal-content {
  background: #f8f8f8;
}
.legal-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.legal-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--mhot-black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mhot-yellow);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-card ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.3rem;
  list-style-type: disc;
}
.legal-contact {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.legal-contact li { color: #555; line-height: 2; }
@media (max-width: 768px) { .legal-card { padding: 1.5rem; } }

/* =========================================================
   FOOTER
   ========================================================= */
.mhot-footer {
  background: var(--mhot-black);
  border-top: 1px solid var(--mhot-border);
  padding: 80px 0 30px;
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: var(--mhot-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--mhot-black);
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

.footer-desc {
  color: var(--mhot-text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--mhot-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--mhot-yellow);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  color: var(--mhot-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--mhot-yellow);
  margin-top: 4px;
  min-width: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--mhot-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mhot-text-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--mhot-yellow);
  border-color: var(--mhot-yellow);
  color: var(--mhot-black);
}

.footer-bottom {
  border-top: 1px solid var(--mhot-border);
  padding-top: 25px;
  margin-top: 60px;
  text-align: center;
}

.footer-bottom p {
  color: var(--mhot-text-muted);
  font-size: 0.85rem;
}

/* =========================================================
   PAGE HEADER
   ========================================================= */
.page-header {
  position: relative;
  padding: 180px 0 80px;
  background: var(--mhot-black);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--mhot-text-muted);
  font-size: 1.1rem;
}

.page-header .breadcrumb {
  justify-content: center;
  background: none;
  margin-bottom: 15px;
}

.page-header .breadcrumb a { color: var(--mhot-text-muted); }
.page-header .breadcrumb .active { color: var(--mhot-yellow); }

/* =========================================================
   PRODUCT CARD (Grid)
   ========================================================= */
.product-card {
  background: var(--mhot-card-bg);
  border: 1px solid var(--mhot-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--mhot-yellow);
  box-shadow: var(--shadow-glow);
}

.product-card .product-img {
  height: 260px;
  background: var(--mhot-black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img img { transform: scale(1.05); }

.product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--mhot-yellow);
  color: var(--mhot-black);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
}

.product-card .product-info {
  padding: 22px;
}

.product-card .product-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-card .product-info .product-model {
  font-size: 0.8rem;
  color: var(--mhot-yellow);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card .product-info .product-desc {
  font-size: 0.85rem;
  color: var(--mhot-text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
}

.product-card .product-actions {
  display: flex;
  gap: 10px;
}

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.product-gallery {
  background: var(--mhot-card-bg);
  border: 1px solid var(--mhot-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-gallery .main-image {
  height: 450px;
  background: var(--mhot-black-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 12px 20px;
  border: 1px solid var(--mhot-border);
  font-size: 0.9rem;
}

.specs-table th {
  background: var(--mhot-black-2);
  color: var(--mhot-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  width: 40%;
}

.specs-table td { color: var(--mhot-text); }

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   FORMS
   ========================================================= */
.mhot-form {
  background: var(--mhot-card-bg);
  border: 1px solid var(--mhot-border);
  border-radius: var(--radius);
  padding: 40px;
}

.mhot-form .form-control,
.mhot-form .form-select {
  background: var(--mhot-black-2);
  border: 1px solid var(--mhot-border);
  color: var(--mhot-text);
  padding: 14px 18px;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: var(--transition);
}

.mhot-form .form-control:focus,
.mhot-form .form-select:focus {
  border-color: var(--mhot-yellow);
  box-shadow: 0 0 0 3px rgba(244,180,0,0.15);
  background: var(--mhot-black);
  color: var(--mhot-text);
}

.mhot-form .form-control::placeholder { color: #666; }

.mhot-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--mhot-text);
}

/* =========================================================
   CATALOG / DOWNLOAD
   ========================================================= */
.catalog-card {
  background: var(--mhot-card-bg);
  border: 1px solid var(--mhot-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 20px;
}

.catalog-card:hover {
  border-color: var(--mhot-yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.catalog-card .pdf-icon {
  width: 60px;
  height: 60px;
  background: rgba(244,180,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mhot-yellow);
  flex-shrink: 0;
}

.catalog-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.catalog-card .catalog-info {
  font-size: 0.8rem;
  color: var(--mhot-text-muted);
}

.catalog-card .btn { margin-left: auto; }

/* =========================================================
   CONTACT INFO
   ========================================================= */
.contact-info-card {
  background: var(--mhot-card-bg);
  border: 1px solid var(--mhot-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

.contact-info-card:hover { border-color: var(--mhot-yellow); }

.contact-info-card .ci-icon {
  width: 50px;
  height: 50px;
  background: rgba(244,180,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--mhot-yellow);
  margin-bottom: 15px;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--mhot-text-muted);
  line-height: 1.5;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-mission {
  background: var(--mhot-dark-section);
  border-left: 4px solid var(--mhot-yellow);
  padding: 40px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 50px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mhot-border);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--mhot-yellow);
  border-radius: 50%;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item .year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--mhot-yellow);
  margin-bottom: 5px;
}

/* =========================================================
   DEALER PAGE
   ========================================================= */
.dealer-benefit {
  text-align: center;
  padding: 30px 20px;
}

.dealer-benefit .db-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(244,180,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--mhot-yellow);
}

.dealer-benefit h4 { font-size: 1rem; margin-bottom: 8px; }

/* =========================================================
   404 PAGE
   ========================================================= */
.fourzero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.fourzero-number {
  font-size: 12rem;
  font-weight: 900;
  color: var(--mhot-yellow);
  line-height: 1;
  font-family: var(--font-heading);
  text-shadow: 0 0 40px rgba(244,180,0,0.2);
}

/* =========================================================
   LOADING / TOAST
   ========================================================= */
.mhot-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  padding: 16px 24px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  transform: translateX(120%);
  transition: var(--transition);
  max-width: 400px;
}
.mhot-toast.show { transform: translateX(0); }
.mhot-toast.success { background: #2E7D32; }
.mhot-toast.error { background: #C62828; }
.mhot-toast.info { background: var(--mhot-blue); }

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .hero-title { font-size: 3.5rem; }
}

@media (max-width: 991px) {
  .mhot-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--mhot-border);
  }
  .mhot-nav.active { display: flex; }
  .mobile-toggle { display: flex; }
  .lang-switcher { margin-left: auto; }
  .hero-title { font-size: 2.8rem; }
  .hero-stats { gap: 25px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 2rem; }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2rem; }
  .page-header h1 { font-size: 2.2rem; }
  .fourzero-number { font-size: 8rem; }
}

@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.7rem; padding: 6px 15px; }
  .section-title { font-size: 1.7rem; }
  .stat-number { font-size: 2.2rem; }
  .cta-title { font-size: 1.6rem; }
  .page-header { padding: 150px 0 50px; }
  .page-header h1 { font-size: 1.8rem; }
  .product-gallery .main-image { height: 300px; }
  .catalog-card { flex-direction: column; text-align: center; }
  .catalog-card .btn { margin: 0; }
  .mhot-form { padding: 25px; }
  .fourzero-number { font-size: 6rem; }
}

/* =========================================================
   Lazy Load / AOS Overrides
   ========================================================= */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* =========================================================
   SWIPER CUSTOM
   ========================================================= */
.swiper-pagination-bullet {
  background: var(--mhot-gray);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--mhot-yellow);
  width: 30px;
  border-radius: 4px;
}
