/* ============================================================
   HERO STATIC — Build An AI Website / X3Web
   Left text, right product image, background photo + navy overlay
   ============================================================ */

/* ── Hero section shell ──────────────────────────────────── */
.hero-static-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  padding: 100px 0 100px;
  display: flex;
  align-items: center;
  /* Background image */
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663287353954/RQz4DRrnLx7qemJkHJVsG7/hero-bg_718f976a.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark navy overlay on top of the image */
.hero-static-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 58, 0.82);
  z-index: 0;
}

/* All direct children sit above the overlay */
.hero-static-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ── Left — text content ─────────────────────────────────── */
.hero-static-content {
  color: #ffffff;
}

/* Kicker pill */
.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}

/* Main headline */
.hero-static-content .hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  text-align: left;
}

/* Description */
.hero-static-content .hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 24px;
  max-width: 100%;
  text-align: left;
}

/* Benefit bullets */
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-benefits li {
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-benefits li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8600a;
  flex-shrink: 0;
}

/* Price row */
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero-meta-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}

/* CTA button */
.hero-actions {
  display: flex;
  justify-content: flex-start;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8600a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(232,96,10,.35);
}

.hero-cta:hover {
  background: #c94f06;
  transform: translateY(-2px);
}

/* ── Right — product image ───────────────────────────────── */
.hero-static-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-book-link {
  display: block;
  transition: transform .3s ease;
}

.hero-book-link:hover {
  transform: translateY(-8px);
}

.hero-book-img {
  width: 100%;
  max-width: 520px;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-static-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-static-content .hero-title,
  .hero-static-content .hero-desc { text-align: center; }
  .hero-benefits { align-items: center; }
  .hero-meta { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-static-media { order: -1; }
  .hero-book-img { max-width: 300px; }
}

@media (max-width: 480px) {
  .hero-static-section { padding: 72px 0; min-height: auto; }
  .hero-static-shell { padding: 0 20px; }
  .hero-book-img { max-width: 240px; }
}
