/* =========================================
   VEGAS HERO — home.css
   Homepage-specific styles
   ========================================= */

.home-main {
  padding: 0;
  max-width: none;
}

/* ── HERO SECTION ────────────────────────── */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(10, 10, 15, 0.75) 40%,
    rgba(10, 10, 15, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 4rem 2rem 4rem 5vw;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-highlight {
  color: var(--color-accent);
}

.hero-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(232, 232, 240, 0.88);
  margin-bottom: 2rem;
  max-width: 560px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--color-accent);
  color: #0a0a0f;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.btn-hero:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(74, 222, 128, 0.4);
  color: #0a0a0f;
}

/* ── SECTION WRAPPER ─────────────────────── */
.section-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-wrap + .section-wrap {
  border-top: 1px solid var(--color-border);
}

/* ── SUMMARY TABLE ───────────────────────── */
.summary-table td:first-child {
  white-space: nowrap;
  font-weight: 500;
  color: var(--color-text);
  width: 240px;
}

/* ── IMAGE + TEXT GRID ───────────────────── */
.image-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-text-grid--reverse {
  direction: rtl;
}

.image-text-grid--reverse > * {
  direction: ltr;
}

.image-text-grid__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--color-border);
}

.image-text-grid__content h2 {
  margin-top: 0;
}

/* ── STEPS LIST ──────────────────────────── */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.steps-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #0a0a0f;
  font-family: var(--font-nav);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.steps-list li strong {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.steps-list li p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.steps-list li > div {
  flex: 1;
}

/* ── CTA BLOCK ───────────────────────────── */
.cta-block {
  text-align: center;
  margin-top: 2rem;
}

.cta-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ── OUTLINE BUTTON ──────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  color: var(--color-accent);
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #0a0a0f;
}

/* ── TABLE RESPONSIVE ────────────────────── */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

/* ── CONCLUSION ──────────────────────────── */
.conclusion-section {
  background: var(--color-surface);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  text-align: center;
  margin-bottom: 2rem;
}

.conclusion-section h2 {
  margin-top: 0;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero-section {
    min-height: 420px;
  }

  .hero-content {
    padding: 3rem 1.5rem;
    max-width: 100%;
  }

  .hero-overlay {
    background: rgba(10, 10, 15, 0.8);
  }

  .image-text-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .image-text-grid--reverse {
    direction: ltr;
  }

  .image-text-grid__img img {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .section-wrap {
    padding: 2rem 1rem;
  }

  .hero-section {
    min-height: 380px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .steps-list li {
    flex-direction: column;
    gap: 0.5rem;
  }

  .steps-list li::before {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.9rem;
  }
}
