/* ===================================================
   HYUNDAI CRETA HERO - CENTER STAGE LAYOUT
   =================================================== */

:root {
  --hyundai-blue: #002C6C;
  --hyundai-light-blue: #007FA8;
  --hyundai-accent: #00AAD2;
  --bg-stage: #080D14;
  --surface-card: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
}

.creta-stage-hero {
  position: relative;
  background-color: var(--bg-stage);
  color: var(--text-primary);
  padding: 60px 24px 50px;
  overflow: hidden;
  box-sizing: border-box;
}

.creta-stage-hero * {
  box-sizing: border-box;
}

.creta-stage-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Header & Typography */
.creta-header-group {
  text-align: center;
  max-width: 720px;
  margin-bottom: 20px;
}

.creta-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  background: rgba(0, 127, 168, 0.12);
  border: 1px solid rgba(0, 170, 210, 0.3);
  color: var(--hyundai-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.creta-main-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.creta-main-title span {
  color: var(--hyundai-accent);
}

.creta-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Visual Stage Area */
.creta-stage-visual {
  position: relative;
  width: 100%;
  max-width: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 10px;
}

.creta-car-render {
  width: 100%;
  height: auto;
  max-width: 740px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.85));
}

/* Background Spotlight & Ground Glow */
.creta-spotlight-top {
  position: absolute;
  top: -100px;
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse at center, rgba(0, 127, 168, 0.35) 0%, rgba(8, 13, 20, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.creta-ground-glow {
  position: absolute;
  bottom: 0px;
  width: 90%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0, 170, 210, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 2;
  filter: blur(12px);
}

/* Bottom Spec Bar & Actions */
.creta-stage-bottom {
  width: 100%;
  max-width: 960px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.creta-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.creta-spec-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
}

.creta-spec-val {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.creta-spec-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Action Controls */
.creta-actions-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.creta-btn-main {
  background: var(--hyundai-light-blue);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 127, 168, 0.35);
}

.creta-btn-main:hover {
  background: #0095c4;
  transform: translateY(-2px);
}

.creta-btn-ghost {
  background: transparent;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.creta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .creta-stage-hero {
    padding: 40px 16px 36px;
  }

  .creta-specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .creta-spec-card {
    padding: 12px 16px;
  }

  .creta-actions-row {
    flex-direction: column;
    align-items: center;
  }

  .creta-btn-main,
  .creta-btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}