/* ── PRODUCT HERO ── */
.product-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: var(--navy);
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(193,18,31,0.1) 0%, transparent 50%);
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
}

.product-hero-text { color: var(--white); }

/* ── STATS ROW ── */
.product-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: var(--gold); }

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* ── JUMP ILLUSTRATION ── */
.product-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jump-illustration {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.jump-caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

/* ── WHAT'S INCLUDED ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.included-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}

.included-card:hover {
  box-shadow: 0 8px 30px rgba(13,27,42,0.08);
  transform: translateY(-3px);
}

.included-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.included-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.included-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.included-spec {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
}

/* ── BUILD GRID ── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.build-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s;
}

.build-card:hover { border-color: rgba(212,168,67,0.4); }

.build-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.build-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.build-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.compare-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  width: 22%;
}

.compare-table th.our-col {
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
}

.compare-table th.our-col span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
  margin-top: 0.2rem;
}

.compare-table td.our-col {
  background: #fff5f5;
  font-weight: 600;
  color: var(--red);
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.compare-table tr:last-child td.our-col { border-bottom: 2px solid var(--red); }

.compare-table tr:hover td { background: #fafafa; }
.compare-table tr:hover td.our-col { background: #fff0f0; }

/* ── AUDIENCE GRID ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}

.audience-card:hover {
  box-shadow: 0 8px 30px rgba(13,27,42,0.08);
  transform: translateY(-3px);
}

.audience-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .build-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .product-hero-visual { order: -1; }
  .included-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .included-grid { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .product-stats { gap: 1.2rem; }
  .stat-num { font-size: 2.2rem; }
}
