/* ── HERO ── */
.hero {
  min-height: calc(100vh - 68px);
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center; padding: 80px 8vw;
  position: relative; overflow: hidden;
}
/* Blue glow left */
.hero::before {
  content: '';
  position: absolute; left: -10%; top: 10%; width: 55%; height: 80%;
  background: radial-gradient(ellipse, rgba(0,87,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Tyre tread lines right */
.hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0px, transparent 14px,
      rgba(0,87,255,0.07) 14px, rgba(0,87,255,0.07) 16px
    ),
    repeating-linear-gradient(
      -55deg,
      transparent 8px, transparent 22px,
      rgba(244,123,0,0.04) 22px, rgba(244,123,0,0.04) 24px
    );
  pointer-events: none;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  position: relative;
}
.hero-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 0 rgba(244,123,0,0.5); } 50%{ box-shadow:0 0 0 8px rgba(244,123,0,0); } }
.hero-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400; line-height: 0.9; letter-spacing: 2px;
  color: var(--white); margin-bottom: 28px;
  position: relative;
}
.hero h1 em       { color: var(--orange);      font-style: normal; }
.hero h1 .blue-em { color: var(--blue-light);  font-style: normal; }

.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45); max-width: 500px; margin-bottom: 44px;
  position: relative;
}

/* Tyre ring SVG decoration */
.hero-ring {
  position: absolute; right: 6vw; top: 50%; transform: translateY(-50%);
  width: clamp(220px, 28vw, 380px); opacity: 0.12; pointer-events: none;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue); display: flex;
}
.stat-item {
  flex: 1; padding: 26px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 46px;
  font-weight: 400; color: var(--white); line-height: 1;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px;
}

/* ── PRODUCT TYPES PREVIEW ── */
.product-types {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  margin-bottom: 3px;
}
.type-card {
  background: var(--off-black);
  padding: 44px 5vw;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 260px; position: relative; overflow: hidden;
  cursor: pointer; transition: background var(--t);
}
.type-card:hover { background: var(--dark); }
.type-card .tc-bg {
  position: absolute; right: -10%; top: -10%; width: 70%; opacity: 0.06;
  pointer-events: none;
}
.type-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.type-card h3 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; color: var(--white); line-height: 1;
  letter-spacing: 1px; margin-bottom: 14px;
}
.type-card p { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 340px; line-height: 1.7; margin-bottom: 22px; }
.type-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--blue-light);
  text-decoration: none; transition: gap var(--t);
}
.type-link:hover { gap: 14px; }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px; background: #E0E4EF; border-radius: var(--radius); overflow: hidden;
}
.feature-card {
  background: var(--white); padding: 36px 28px;
  transition: background var(--t);
}
.feature-card:hover { background: #F8F9FF; }
.feature-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0,87,255,0.25);
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--white); }
.feature-card h3 {
  font-family: var(--font-body); font-size: 17px; font-weight: 600;
  color: var(--black); margin-bottom: 10px;
}
.feature-card p { font-size: 14px; line-height: 1.7; color: var(--mid-gray); }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--off-black) 0%, #0D0D22 100%);
  padding: var(--section-pad);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; right: -5%; top: -20%; width: 50%; height: 140%;
  background: radial-gradient(ellipse, rgba(0,87,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .product-types { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-ring { display: none; }
}
