/* HOME PAGE */
.hero {
  position: relative;
  padding: 50px 40px 70px;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  overflow: hidden;
}

.hero-left { position: relative; z-index: 2; }

.hero-left h1 {
  font-size: 64px;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-left p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-right img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

.hero-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a4f57;
}

.hero-dots span.active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}

.feature {
  background: var(--bg-panel);
  padding: 34px 30px;
  border: 1px solid var(--border);
  margin-left: -1px;
  margin-top: -1px;
}

.feature .ficon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.5;
}

.home-about {
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-about-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.home-about-media img {
  width: 100%;
  display: block;
  filter: brightness(0.75);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.home-about-content .eyebrow { margin-bottom: 12px; }

.home-about-content h2 {
  font-size: 36px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.home-about-content p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.stats { display: flex; gap: 44px; flex-wrap: wrap; }

.stat { display: flex; align-items: center; gap: 12px; }

.stat .sicon {
  width: 38px;
  height: 38px;
  color: var(--red);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat .snum { font-size: 22px; font-weight: 900; line-height: 1; }

.stat .slabel {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .home-about { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 44px; }
}
