/* Signature hero conversion upgrade — photo quote first */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(201,168,76,0.14), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.56) 100%);
}

.hero {
  align-items: center;
  min-height: 100vh;
  padding: 118px 24px 56px;
}

.hero-content {
  max-width: 980px;
  transform: none;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 auto 18px;
  max-width: 980px;
  text-wrap: balance;
}

.hero-title em {
  display: block;
  margin-top: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 34px rgba(201,168,76,0.22);
}

.hero-title span {
  display: inline;
}

.hero-subtitle {
  max-width: 800px;
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  font-weight: 450;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}

.hero-quote-card {
  width: min(920px, 100%);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.82s forwards;
}

.hero-quote-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid rgba(201,168,76,0.38);
  border-radius: 14px;
  background: rgba(10,10,10,0.58);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

.hero-quote-step span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.hero-quote-step strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.1;
}

.hero-quote-step small {
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  line-height: 1.25;
}

.hero-buttons--quote {
  gap: 14px;
  margin-top: 2px;
}

.btn--hero-primary,
.btn--hero-secondary {
  min-width: 280px;
  justify-content: center;
  min-height: 64px;
  border-radius: 12px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.btn--hero-primary {
  box-shadow: 0 12px 42px rgba(201,168,76,0.32), inset 0 1px 0 rgba(255,255,255,0.28);
  position: relative;
  overflow: hidden;
}

.btn--hero-primary::after {
  content: '';
  position: absolute;
  inset: -30% auto -30% -40%;
  width: 34%;
  transform: skewX(-18deg);
  background: rgba(255,255,255,0.32);
  animation: heroButtonShine 3.2s ease-in-out infinite;
}

@keyframes heroButtonShine {
  0%, 58% { left: -45%; }
  100% { left: 128%; }
}

.hero-urgency {
  margin-top: 15px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  font-family: Inter, sans-serif;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1.05s forwards;
}

.hero-mini-paths {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1.12s forwards;
}

.hero-mini-paths a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 999px;
  background: rgba(0,0,0,0.24);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mini-paths a:hover {
  background: var(--gold);
  color: #111;
}

@media (max-width: 900px) {
  .hero-content { transform: translateY(8px); }
  .hero-quote-card { grid-template-columns: 1fr; max-width: 520px; }
  .hero-quote-step { padding: 12px 14px; }
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; align-items: flex-start; padding: 74px 24px 24px; }
  .hero-logo { height: 50px; margin-bottom: 8px; }
  .hero-badge { font-size: 0.54rem; letter-spacing: 1.8px; padding: 6px 10px; margin-bottom: 12px; }
  .hero-title { font-size: clamp(2.45rem, 11vw, 3.4rem); line-height: 0.98; margin-bottom: 12px; }
  .hero-title span {
    display: inline;
  }
  .hero-title em {
    display: inline;
  }
  .hero-subtitle { font-size: 0.94rem; line-height: 1.42; margin-bottom: 14px; }
  .hero-quote-card { margin-bottom: 14px; gap: 8px; }
  .hero-quote-step { min-height: 58px; padding: 9px 12px; }
  .hero-quote-step span { width: 30px; height: 30px; }
  .hero-quote-step strong { font-size: 0.9rem; }
  .hero-quote-step small { font-size: 0.7rem; }
  .hero-quote-step:nth-child(3) { display: none; }
  .hero-buttons--quote { flex-direction: column; align-items: stretch; gap: 9px; }
  .btn--hero-primary,
  .btn--hero-secondary { width: 100%; min-width: 0; min-height: 52px; font-size: 0.82rem; padding: 13px 18px; }
  .hero-urgency { font-size: 0.72rem; line-height: 1.35; margin-top: 11px; }
  .hero-mini-paths { display: none; }
}
