﻿/* ═══════════════════════════════════════════
   HEROES PREMIUM — Urbanova Realty Solutions
   10 variantes con animaciones únicas
   ═══════════════════════════════════════════ */

/* ── Keyframes base ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(1.15); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(70px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-70px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideUpBig {
  from { opacity: 0; transform: translateY(120px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes clipReveal {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes blurIn {
  from { opacity: 0; filter: blur(12px); }
  to { opacity: 1; filter: blur(0); }
}
@keyframes scaleBounce {
  0% { opacity: 0; transform: scale(0.7); }
  60% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-8deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}
@keyframes swingIn {
  0% { opacity: 0; transform: rotateX(40deg) translateY(60px); }
  60% { transform: rotateX(-5deg) translateY(-5px); }
  100% { opacity: 1; transform: rotateX(0) translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,155,60,0.3); }
  50% { box-shadow: 0 0 30px 8px rgba(200,155,60,0.15); }
}
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Base ── */
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Staatliches', var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}
.page-hero h1 {
  font-family: 'Staatliches', var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--white);
}
.page-hero .hero-desc {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.3);
  min-width: 140px;
  pointer-events: none;
}
.floating-card .fc-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gold-light, rgba(200,155,60,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 6px;
}
.floating-card .fc-icon svg { width: 16px; height: 16px; }
.floating-card .fc-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.floating-card .fc-sub {
  font-size: 0.68rem;
  color: var(--muted, #6b7280);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   VARIANTE 1 — Cascade lateral
   Texto slideInLeft, imagen slideInRight,
   tarjetas cascada diagonal
   ═══════════════════════════════════════════ */
.hero-variant-1 .hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}
.hero-variant-1 .hero-bg { background: linear-gradient(135deg, #0a1f2e 0%, #0d2a3d 50%, #12334a 100%); }
.hero-variant-1 .hero-visual {
  position: relative;
  height: 500px;
  width: 100%;
}
.hero-variant-1 .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  filter: brightness(0.85) saturate(0.9);
  animation: slideInRight 1s ease-out forwards;
}
.hero-variant-1 h1 { animation: slideInLeft 0.8s ease-out 0.1s both; }
.hero-variant-1 .hero-eyebrow { animation: fadeDown 0.5s ease-out 0s both; }
.hero-variant-1 .hero-desc { animation: slideInLeft 0.8s ease-out 0.3s both; }
.hero-variant-1 .hero-actions { animation: fadeUp 0.8s ease-out 0.5s both; }
.hero-variant-1 .card-1 {
  top: -10px; left: -20px;
  animation: scaleBounce 0.8s ease-out 0.4s both, floatY 5s ease-in-out 1.5s infinite;
}
.hero-variant-1 .card-2 {
  bottom: 40px; right: -15px;
  animation: scaleBounce 0.8s ease-out 0.7s both, floatY 6s ease-in-out 2s infinite;
}
.hero-variant-1 .card-3 {
  top: 50%; left: -30px;
  animation: scaleBounce 0.8s ease-out 1s both, floatY 4s ease-in-out 2.5s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 2 — Cinematic vertical
   BG zoom lento, texto slideUpBig,
   cards desde abajo
   ═══════════════════════════════════════════ */
.hero-variant-2 { min-height: 85vh; }
.hero-variant-2 .hero-bg img {
  filter: brightness(0.4) contrast(1.1) saturate(0.8);
}
.hero-variant-2 .hero-overlay {
  background: linear-gradient(160deg, rgba(10,31,46,0.3) 0%, rgba(10,31,46,0.75) 50%, rgba(10,31,46,0.9) 100%);
}
.hero-variant-2 .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}
.hero-variant-2 h1 { max-width: 800px; animation: slideUpBig 0.9s ease-out 0.2s both; }
.hero-variant-2 .hero-desc { max-width: 600px; animation: slideUpBig 0.9s ease-out 0.4s both; }
.hero-variant-2 .hero-eyebrow { animation: fadeDown 0.5s ease-out 0s both; }
.hero-variant-2 .hero-actions { justify-content: center; animation: fadeUp 0.8s ease-out 0.6s both; }
.hero-variant-2 .card-1 {
  bottom: 60px; left: 8%;
  animation: swingIn 0.9s ease-out 0.5s both, floatY 5s ease-in-out 2s infinite;
}
.hero-variant-2 .card-2 {
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  animation: swingIn 0.9s ease-out 0.8s both, floatY 6s ease-in-out 2.5s infinite;
}
.hero-variant-2 .card-3 {
  bottom: 60px; right: 8%;
  animation: swingIn 0.9s ease-out 1.1s both, floatY 5.5s ease-in-out 3s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 3 — Split diagonal
   Texto blurIn, imagen rotateIn,
   cards floatX
   ═══════════════════════════════════════════ */
.hero-variant-3 .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 80vh;
}
.hero-variant-3 .hero-bg { background: linear-gradient(135deg, #0c2638 0%, #163d55 100%); }
.hero-variant-3 .hero-visual {
  position: relative;
  height: 480px;
}
.hero-variant-3 .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 20px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  filter: brightness(0.8) saturate(0.85);
  object-position: center 30%;
  animation: rotateIn 1.1s ease-out forwards;
}
.hero-variant-3 .floating-card { background: rgba(255,255,255,0.95); }
.hero-variant-3 h1 { animation: blurIn 0.9s ease-out 0.15s both; }
.hero-variant-3 .hero-eyebrow { animation: slideInLeft 0.6s ease-out 0s both; }
.hero-variant-3 .hero-desc { animation: blurIn 0.9s ease-out 0.35s both; }
.hero-variant-3 .hero-actions { animation: fadeUp 0.8s ease-out 0.55s both; }
.hero-variant-3 .card-1 {
  top: 30px; right: -10px;
  animation: scaleBounce 0.8s ease-out 0.4s both, floatX 7s ease-in-out 1.5s infinite;
}
.hero-variant-3 .card-2 {
  bottom: 80px; left: -20px;
  animation: scaleBounce 0.8s ease-out 0.7s both, floatY 5s ease-in-out 2s infinite;
}
.hero-variant-3 .card-3 {
  top: 50%; right: 30px;
  animation: scaleBounce 0.8s ease-out 1s both, floatX 6s ease-in-out 1s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 4 — Glass reveal
   Panel glass clipReveal, imagen slideInRight,
   cards pulseGlow
   ═══════════════════════════════════════════ */
.hero-variant-4 .hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}
.hero-variant-4 .hero-bg { background: linear-gradient(160deg, #0d2638 0%, #1a3a4f 100%); }
.hero-variant-4 .hero-copy-wrap {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  animation: clipReveal 1s ease-out forwards;
}
.hero-variant-4 .hero-visual {
  position: relative;
  height: 520px;
}
.hero-variant-4 .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  filter: brightness(0.9) saturate(0.9);
  animation: slideInRight 1s ease-out forwards;
}
.hero-variant-4 h1 { animation: fadeUp 0.8s ease-out 0.3s both; }
.hero-variant-4 .hero-eyebrow { animation: fadeDown 0.5s ease-out 0.1s both; }
.hero-variant-4 .hero-desc { animation: fadeUp 0.8s ease-out 0.5s both; }
.hero-variant-4 .hero-actions { animation: fadeUp 0.8s ease-out 0.7s both; }
.hero-variant-4 .card-1 {
  bottom: 30px; left: -25px;
  animation: scaleBounce 0.8s ease-out 0.6s both, pulseGlow 3s ease-in-out 1.5s infinite;
}
.hero-variant-4 .card-2 {
  top: 20px; left: -15px;
  animation: scaleBounce 0.8s ease-out 0.9s both, pulseGlow 3s ease-in-out 2s infinite;
}
.hero-variant-4 .card-3 {
  top: 50%; right: -20px;
  animation: scaleBounce 0.8s ease-out 1.2s both, floatX 7s ease-in-out 1s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 5 — Epic cinematic
   BG zoom continuo, texto clipReveal,
   cards slide desde derecha
   ═══════════════════════════════════════════ */
.hero-variant-5 .hero-bg img {
  filter: brightness(0.35) contrast(1.05) saturate(0.9);
}
.hero-variant-5 .hero-overlay {
  background: linear-gradient(135deg, rgba(10,31,46,0.5) 0%, rgba(10,31,46,0.85) 60%, #0a1f2e 100%);
}
.hero-variant-5 .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding-top: 100px;
}
.hero-variant-5 h1 { max-width: 700px; animation: clipReveal 1s ease-out 0.2s both; }
.hero-variant-5 .hero-desc { max-width: 540px; animation: fadeUp 0.8s ease-out 0.4s both; }
.hero-variant-5 .hero-eyebrow { animation: slideInLeft 0.6s ease-out 0s both; }
.hero-variant-5 .hero-actions { animation: fadeUp 0.8s ease-out 0.6s both; }
.hero-variant-5 .card-1 {
  bottom: 120px; right: 10%;
  animation: slideInRight 0.8s ease-out 0.5s both, floatY 5s ease-in-out 1.5s infinite;
}
.hero-variant-5 .card-2 {
  bottom: 180px; right: 30%;
  animation: slideInRight 0.8s ease-out 0.8s both, floatY 6s ease-in-out 2s infinite;
}
.hero-variant-5 .card-3 {
  bottom: 60px; right: 20%;
  animation: slideInRight 0.8s ease-out 1.1s both, floatY 5.5s ease-in-out 2.5s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 6 — Cascade vertical
   Texto fadeUp, imagen zoomIn,
   cards swingIn escalonado
   ═══════════════════════════════════════════ */
.hero-variant-6 .hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 80vh;
}
.hero-variant-6 .hero-bg { background: linear-gradient(145deg, #0b2233 0%, #15384e 100%); }
.hero-variant-6 .hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-variant-6 .hero-visual img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  filter: brightness(0.85) saturate(0.9);
}
.hero-variant-6 h1 { animation: fadeUp 0.8s ease-out 0.15s both; }
.hero-variant-6 .hero-eyebrow { animation: slideInLeft 0.6s ease-out 0s both; }
.hero-variant-6 .hero-desc { animation: fadeUp 0.8s ease-out 0.35s both; }
.hero-variant-6 .hero-actions { animation: fadeUp 0.8s ease-out 0.55s both; }
.hero-variant-6 .card-1 {
  top: 10px; right: 5px;
  animation: swingIn 0.8s ease-out 0.4s both, floatY 5s ease-in-out 1.5s infinite;
}
.hero-variant-6 .card-2 {
  bottom: 10px; left: 10px;
  animation: swingIn 0.8s ease-out 0.7s both, floatY 6s ease-in-out 2s infinite;
}
.hero-variant-6 .card-3 {
  top: 40%; left: 0;
  animation: swingIn 0.8s ease-out 1s both, floatX 7s ease-in-out 1s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 7 — Stats + marco dorado
   Stats countUp, imagen slideInRight con borde,
   cards con glow pulsante
   ═══════════════════════════════════════════ */
.hero-variant-7 .hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}
.hero-variant-7 .hero-bg { background: linear-gradient(150deg, #071d2b 0%, #112f42 100%); }
.hero-variant-7 .hero-visual {
  position: relative;
  height: 520px;
}
.hero-variant-7 .hero-visual::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(200,155,60,0.2);
  border-radius: 28px;
  z-index: -1;
}
.hero-variant-7 .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  filter: brightness(0.85) saturate(0.85);
  animation: slideInRight 1s ease-out forwards;
}
.hero-variant-7 .hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.hero-variant-7 .hero-stat { text-align: center; }
.hero-variant-7 .hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: 'Staatliches', var(--font-sans);
  animation: countUp 0.01s 1.2s both;
}
.hero-variant-7 .hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-variant-7 h1 { animation: fadeUp 0.8s ease-out 0.15s both; }
.hero-variant-7 .hero-eyebrow { animation: fadeDown 0.5s ease-out 0s both; }
.hero-variant-7 .hero-desc { animation: fadeUp 0.8s ease-out 0.35s both; }
.hero-variant-7 .hero-actions { animation: fadeUp 0.8s ease-out 0.55s both; }
.hero-variant-7 .hero-stats { animation: fadeUp 0.8s ease-out 0.7s both; }
.hero-variant-7 .card-1 {
  top: -15px; left: -20px;
  animation: scaleBounce 0.8s ease-out 0.5s both, pulseGlow 3s ease-in-out 1.5s infinite;
}
.hero-variant-7 .card-2 {
  bottom: 30px; right: -15px;
  animation: scaleBounce 0.8s ease-out 0.8s both, pulseGlow 3s ease-in-out 2s infinite;
}
.hero-variant-7 .card-3 {
  top: 50%; right: -10px;
  animation: scaleBounce 0.8s ease-out 1.1s both, floatX 7s ease-in-out 1s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 8 — Diagonal split
   Texto slideInLeft con clip,
   imagen slideInRight inclinada,
   cards swingIn laterales
   ═══════════════════════════════════════════ */
.hero-variant-8 .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 80vh;
}
.hero-variant-8 .hero-bg { background: linear-gradient(160deg, #081d2b 0%, #143548 100%); }
.hero-variant-8 .hero-copy { order: 1; padding-top: 60px; }
.hero-variant-8 .hero-visual {
  position: relative;
  height: 460px;
  order: 2;
}
.hero-variant-8 .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 20px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.3);
  filter: brightness(0.8) saturate(0.85);
  animation: slideInRight 1s ease-out forwards;
}
.hero-variant-8 h1 { animation: clipReveal 0.9s ease-out 0.15s both; }
.hero-variant-8 .hero-eyebrow { animation: slideInLeft 0.6s ease-out 0s both; }
.hero-variant-8 .hero-desc { animation: fadeUp 0.8s ease-out 0.35s both; }
.hero-variant-8 .hero-actions { animation: fadeUp 0.8s ease-out 0.55s both; }
.hero-variant-8 .card-1 {
  top: -10px; left: -20px;
  animation: swingIn 0.8s ease-out 0.4s both, floatY 5s ease-in-out 1.5s infinite;
}
.hero-variant-8 .card-2 {
  top: 40%; right: -20px;
  animation: swingIn 0.8s ease-out 0.7s both, floatY 6s ease-in-out 2s infinite;
}
.hero-variant-8 .card-3 {
  bottom: 20px; left: 30%;
  animation: swingIn 0.8s ease-out 1s both, floatX 7s ease-in-out 1s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 9 — Grid de opciones
   Título fadeDown, cards scaleBounce
   en escalera horizontal
   ═══════════════════════════════════════════ */
.hero-variant-9 .hero-bg { background: linear-gradient(160deg, #091f2d 0%, #132f42 100%); }
.hero-variant-9 .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding-top: 80px;
}
.hero-variant-9 .hero-top { text-align: center; margin-bottom: 40px; }
.hero-variant-9 h1 { max-width: 800px; margin: 0 auto 14px; animation: fadeDown 0.8s ease-out 0.2s both; }
.hero-variant-9 .hero-desc { max-width: 600px; margin: 0 auto 24px; animation: fadeUp 0.8s ease-out 0.4s both; }
.hero-variant-9 .hero-eyebrow { animation: fadeUp 0.6s ease-out 0s both; }
.hero-variant-9 .hero-actions { justify-content: center; animation: fadeUp 0.8s ease-out 0.6s both; }
.hero-variant-9 .hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-variant-9 .floating-card {
  position: relative !important;
  text-align: center;
  padding: 24px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-variant-9 .floating-card .fc-icon { margin: 0 auto 10px; }
.hero-variant-9 .card-1 {
  animation: scaleBounce 0.7s ease-out 0.3s both, floatY 5s ease-in-out 1.5s infinite;
}
.hero-variant-9 .card-2 {
  animation: scaleBounce 0.7s ease-out 0.6s both, floatY 6s ease-in-out 2s infinite;
}
.hero-variant-9 .card-3 {
  animation: scaleBounce 0.7s ease-out 0.9s both, floatY 5.5s ease-in-out 2.5s infinite;
}

/* ═══════════════════════════════════════════
   VARIANTE 10 — Minimal conversational
   Texto blurIn, cards swingIn apiladas
   con floatY diferenciado
   ═══════════════════════════════════════════ */
.hero-variant-10 .hero-bg { background: linear-gradient(145deg, #0a2030 0%, #143144 100%); }
.hero-variant-10 .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 75vh;
}
.hero-variant-10 .hero-copy { text-align: left; }
.hero-variant-10 h1 { max-width: 600px; animation: blurIn 0.9s ease-out 0.2s both; }
.hero-variant-10 .hero-desc { max-width: 500px; animation: blurIn 0.9s ease-out 0.4s both; }
.hero-variant-10 .hero-eyebrow { animation: fadeDown 0.5s ease-out 0s both; }
.hero-variant-10 .hero-actions { animation: fadeUp 0.8s ease-out 0.6s both; }
.hero-variant-10 .hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.hero-variant-10 .floating-card { position: relative !important; width: 80%; margin-left: auto; }
.hero-variant-10 .card-1 {
  animation: swingIn 0.8s ease-out 0.3s both, floatY 5s ease-in-out 1.5s infinite;
  margin-right: 20px;
}
.hero-variant-10 .card-2 {
  animation: swingIn 0.8s ease-out 0.6s both, floatY 6s ease-in-out 2s infinite;
  margin-right: 0;
}
.hero-variant-10 .card-3 {
  animation: swingIn 0.8s ease-out 0.9s both, floatY 5.5s ease-in-out 2.5s infinite;
  margin-left: auto;
  margin-right: 40px;
}

/* ── BG animations (all variants) ── */
.hero-variant-1 .hero-bg img,
.hero-variant-2 .hero-bg img,
.hero-variant-5 .hero-bg img {
  animation: zoomIn 1.6s ease-out forwards;
}

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-hero { min-height: auto; }
  .page-hero .hero-content { padding: 100px 20px 60px; }
  .hero-variant-1 .hero-content,
  .hero-variant-3 .hero-content,
  .hero-variant-4 .hero-content,
  .hero-variant-6 .hero-content,
  .hero-variant-7 .hero-content,
  .hero-variant-8 .hero-content,
  .hero-variant-10 .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-variant-1 .hero-visual,
  .hero-variant-3 .hero-visual,
  .hero-variant-4 .hero-visual,
  .hero-variant-6 .hero-visual,
  .hero-variant-7 .hero-visual,
  .hero-variant-8 .hero-visual {
    height: 300px;
    order: -1;
  }
  .hero-variant-2 .hero-content { padding-top: 80px; }
  .hero-variant-9 .hero-cards { grid-template-columns: 1fr; }
  .hero-variant-10 .hero-visual { height: auto; }
  .hero-variant-2 .card-1,
  .hero-variant-2 .card-3 { display: none; }
  .hero-variant-2 .card-2 { position: relative; transform: none; left: auto; bottom: auto; margin-top: 20px; }
  .hero-variant-5 .card-2 { right: 15%; }
  .hero-variant-5 .card-1 { right: 5%; }
  .hero-variant-7 .hero-stats { justify-content: center; }
  .floating-card { padding: 12px 16px; min-width: 110px; }
  .floating-card .fc-label { font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .page-hero .hero-content { padding: 80px 16px 40px; }
  .hero-variant-1 .hero-visual,
  .hero-variant-3 .hero-visual,
  .hero-variant-4 .hero-visual,
  .hero-variant-6 .hero-visual,
  .hero-variant-7 .hero-visual,
  .hero-variant-8 .hero-visual { height: 220px; }
  .hero-variant-1 .floating-card,
  .hero-variant-3 .floating-card,
  .hero-variant-5 .floating-card,
  .hero-variant-8 .floating-card { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

