/* Rocket Home Deals - IGNITED v4 🚀💥 
   Fluid Design System | Abstract Fire | Space | Breaking Boundaries */

:root {
  /* ===== FLUID TYPE SCALE (Utopia) ===== */
  --step--2: clamp(0.69rem, 0.63rem + 0.26vw, 0.80rem);
  --step--1: clamp(0.83rem, 0.75rem + 0.35vw, 1.00rem);
  --step-0: clamp(1.00rem, 0.90rem + 0.47vw, 1.25rem);
  --step-1: clamp(1.20rem, 1.07rem + 0.59vw, 1.56rem);
  --step-2: clamp(1.44rem, 1.27rem + 0.77vw, 1.95rem);
  --step-3: clamp(1.73rem, 1.51rem + 1.00vw, 2.44rem);
  --step-4: clamp(2.07rem, 1.79rem + 1.30vw, 3.05rem);
  --step-5: clamp(2.49rem, 2.12rem + 1.69vw, 3.82rem);
  --step-6: clamp(2.99rem, 2.51rem + 2.17vw, 4.77rem);
  
  /* ===== FLUID SPACE SCALE ===== */
  --space-3xs: clamp(0.25rem, 0.22rem + 0.12vw, 0.31rem);
  --space-2xs: clamp(0.50rem, 0.45rem + 0.23vw, 0.63rem);
  --space-xs: clamp(0.75rem, 0.67rem + 0.35vw, 0.94rem);
  --space-s: clamp(1.00rem, 0.90rem + 0.47vw, 1.25rem);
  --space-m: clamp(1.50rem, 1.35rem + 0.70vw, 1.88rem);
  --space-l: clamp(2.00rem, 1.80rem + 0.94vw, 2.50rem);
  --space-xl: clamp(3.00rem, 2.69rem + 1.41vw, 3.75rem);
  --space-2xl: clamp(4.00rem, 3.59rem + 1.88vw, 5.00rem);
  --space-3xl: clamp(6.00rem, 5.39rem + 2.82vw, 7.50rem);
  
  /* ===== FLUID GAPS ===== */
  --gap-sm: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
  --gap-md: clamp(1rem, 0.75rem + 1.5vw, 2rem);
  --gap-lg: clamp(1.5rem, 1rem + 2vw, 3rem);
  --gap-xl: clamp(2rem, 1.5rem + 3vw, 4rem);
  
  /* ===== FLUID RADIUS ===== */
  --radius-sm: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  --radius-md: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  --radius-lg: clamp(1rem, 0.8rem + 0.7vw, 1.5rem);
  --radius-xl: clamp(1.25rem, 1rem + 0.9vw, 2rem);
  
  /* Core teals from logo */
  --teal-dark: #1a4d5c;
  --teal: #2d7d8a;
  --teal-light: #5bbfba;
  --cyan: #6dd3ce;
  --cyan-light: #a8e6cf;
  
  /* 🔥 FIRE COLORS */
  --fire-red: #ff4d4d;
  --fire-orange: #ff6b35;
  --fire-coral: #ff8c42;
  --fire-amber: #f59e0b;
  --fire-yellow: #fbbf24;
  
  /* Deep space */
  --space-dark: #0a1628;
  --space-mid: #0f2744;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container {
  max-width: clamp(20rem, 94vw, 90rem);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

/* Wider container for deals grid */
.container-wide {
  max-width: clamp(20rem, 96vw, 112.5rem);
  margin: 0 auto;
  padding: 0 var(--space-s);
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: var(--space-s) var(--space-m);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--step--1);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-coral) 50%, var(--fire-amber) 100%);
  color: white;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* Removed btn-shine animation for performance */

.btn-secondary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(91, 191, 186, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(91, 191, 186, 0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255,255,255,0.3);
  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-4px);
}

.btn-white {
  background: white;
  color: var(--fire-orange);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  border: 3px solid rgba(255,255,255,0.5);
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--fire-orange);
  transform: translateY(-4px);
}

.btn-lg { padding: var(--space-s) var(--space-l); font-size: var(--step-0); }
.btn-block { width: 100%; }

/* ========== HEADER ========== */
.header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  padding: var(--space-xs) 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img { height: clamp(45px, 8vw, 60px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: var(--step--1);
  transition: all 0.2s;
  position: relative;
}

.nav-links a:not(.btn):hover { color: var(--fire-orange); }

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-amber));
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after { width: 100%; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--teal-dark);
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .logo img { height: 45px; }
.mobile-nav .btn { padding: 12px 20px; font-size: 13px; }

.mobile-nav .menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--teal-dark);
  cursor: pointer;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 999;
  flex-direction: column;
}

.mobile-nav-menu.active { display: flex; }

.mobile-nav-menu a {
  padding: 16px 0;
  font-size: 17px;
  color: var(--gray-700);
  border-bottom: 2px solid var(--gray-100);
  font-weight: 600;
}

/* ========== 🔥 ABSTRACT EXPLOSION BACKGROUNDS ========== */
.explosion-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.explosion-bg-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.3) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.explosion-bg-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,191,36,0.25) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

.explosion-bg-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,140,66,0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--space-dark) 0%, #0d2137 40%, var(--teal-dark) 80%, var(--teal) 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Simplified background glows - no blur/animation for performance */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,191,36,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Twinkling Stars */
.stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, white, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, white, transparent),
    radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 230px 80px, white, transparent),
    radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 350px 30px, white, transparent),
    radial-gradient(2px 2px at 420px 90px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 480px 140px, white, transparent),
    radial-gradient(2px 2px at 520px 50px, rgba(255,255,255,0.6), transparent);
  background-size: 550px 200px;
  opacity: 0.6;
  animation: twinkle 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  background: linear-gradient(135deg, rgba(255,107,53,0.3), rgba(255,140,66,0.3));
  border: 2px solid rgba(255,107,53,0.4);
  padding: var(--space-xs) var(--space-m);
  border-radius: 50px;
  font-size: var(--step--2);
  font-weight: 700;
  margin-bottom: var(--space-m);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge i { color: var(--fire-amber); font-size: var(--step-1); }

.hero .tagline {
  font-size: var(--step-6);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-2xs);
  letter-spacing: -0.03em;
  color: white;
}

.hero .tagline span {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber), var(--fire-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 {
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-s);
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber), var(--fire-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: var(--step-1);
  opacity: 0.9;
  margin-bottom: var(--space-m);
  max-width: 30rem;
  line-height: 1.6;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap-md);
  margin-bottom: var(--space-l);
}

@media (max-width: 500px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-lg);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-size: var(--step-4);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-light), var(--fire-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--step--2);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ========== 🏠 FLOATING PROPERTY CARDS GALLERY ========== */
.hero-cards {
  position: relative;
  height: clamp(400px, 50vw, 520px);
  perspective: 1000px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 60px rgba(255,107,53,0.15);
  transition: all 0.4s;
  border: 4px solid var(--fire-orange);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  container-type: inline-size;
}

.floating-card:hover {
  transform: scale(1.05) !important;
  z-index: 10 !important;
  box-shadow: 0 35px 100px rgba(0,0,0,0.5), 0 0 80px rgba(255,107,53,0.25);
}

/* Card 1 - Main/Center */
.floating-card-1 {
  width: clamp(260px, 30vw, 320px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  z-index: 3;
  animation: float-1 6s ease-in-out infinite;
}

/* Card 2 - Back Right */
.floating-card-2 {
  width: clamp(220px, 26vw, 280px);
  top: 15%;
  right: -20px;
  transform: rotate(5deg);
  z-index: 2;
  opacity: 0.9;
  animation: float-2 7s ease-in-out infinite;
}

/* Card 3 - Back Left */
.floating-card-3 {
  width: clamp(200px, 24vw, 260px);
  bottom: 10%;
  left: -20px;
  transform: rotate(-8deg);
  z-index: 1;
  opacity: 0.85;
  animation: float-3 8s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-2deg) translateY(-15px); }
}

@keyframes float-2 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-20px); }
}

@keyframes float-3 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}

.floating-card .card-badge {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-coral));
  color: white;
  padding: var(--space-2xs) var(--space-xs);
  border-radius: 20px;
  font-size: var(--step--2);
  font-weight: 700;
  z-index: 1;
  text-transform: uppercase;
}

.floating-card .card-img {
  height: clamp(100px, 15vw, 140px);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card .card-img i {
  font-size: var(--step-4);
  color: white;
  opacity: 0.3;
}

.floating-card .card-stats-bar {
  display: flex;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  padding: var(--space-2xs) 0;
}

.floating-card .card-stat-item {
  flex: 1;
  text-align: center;
  border-right: 2px solid #e2e8f0;
}

.floating-card .card-stat-item:last-child {
  border-right: none;
}

.floating-card .card-stat-value {
  font-size: var(--step--1);
  font-weight: 700;
  color: #1e293b;
}

.floating-card .card-stat-label {
  font-size: var(--step--2);
  color: #64748b;
  text-transform: uppercase;
  margin-top: 2px;
}

.floating-card .card-body {
  padding: var(--space-xs) var(--space-s);
}

.floating-card .location {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: var(--space-3xs);
}

.floating-card h4 {
  font-size: var(--step--1);
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.floating-card .location i {
  color: var(--fire-orange);
  margin-right: var(--space-3xs);
}

.floating-card .prices {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-xs);
  border-top: 2px solid var(--gray-100);
}

.floating-card .prices .label {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-card .prices .value {
  font-size: var(--step-1);
  font-weight: 800;
}

.floating-card .prices .asking .value { color: var(--teal-dark); }
.floating-card .prices .arv .value { color: var(--success); }

/* 🔥 Fire trails connecting cards */
.fire-trail {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), rgba(251,191,36,0.2), transparent);
  height: 3px;
  border-radius: 2px;
  filter: blur(2px);
  z-index: 0;
}

.fire-trail-1 {
  width: 150px;
  top: 40%;
  left: 10%;
  transform: rotate(-15deg);
  animation: trail-pulse 3s ease-in-out infinite;
}

.fire-trail-2 {
  width: 120px;
  bottom: 35%;
  right: 20%;
  transform: rotate(20deg);
  animation: trail-pulse 4s ease-in-out infinite reverse;
}

@keyframes trail-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========== 🔥 SECTION DIVIDER - FIRE WAVE ========== */
.fire-divider {
  position: relative;
  height: 150px;
  margin-top: -75px;
  margin-bottom: -75px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.fire-divider::before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255,107,53,0.2) 0%, transparent 70%);
  filter: blur(40px);
}

.fire-divider::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(251,191,36,0.15) 0%, transparent 70%);
  filter: blur(30px);
}

/* ========== FEATURES ========== */
.features {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

/* Abstract explosion in background */
.features::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 60%);
  filter: blur(60px);
}

.features::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,191,186,0.1) 0%, transparent 60%);
  filter: blur(60px);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: var(--step-5);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.03em;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: var(--step-1);
  color: var(--gray-500);
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: white;
  padding: var(--space-l) var(--space-m);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0,0,0,0.03);
  container-type: inline-size;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-light), var(--fire-orange), var(--fire-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.12);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: clamp(60px, 15vw, 85px);
  height: clamp(60px, 15vw, 85px);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-m);
  font-size: var(--step-3);
  color: white;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(26, 77, 92, 0.3);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-coral));
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.feature-card h3 {
  font-size: var(--step-2);
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.feature-card p {
  color: var(--gray-500);
  font-size: var(--step--1);
  line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: var(--space-3xl) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Subtle fire glow */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.05) 0%, transparent 60%);
  filter: blur(60px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: var(--gap-xl);
  position: relative;
  z-index: 1;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: clamp(40px, 8vw, 50px);
  left: 20%;
  right: 20%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-light), var(--fire-orange), var(--fire-amber));
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: clamp(70px, 15vw, 100px);
  height: clamp(70px, 15vw, 100px);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-m);
  font-size: var(--step-4);
  font-weight: 900;
  color: white;
  border: 6px solid white;
  box-shadow: 0 15px 50px rgba(26, 77, 92, 0.35);
  transition: all 0.4s;
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-coral));
  transform: scale(1.1);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.45);
}

.step-card h3 {
  font-size: var(--step-2);
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.step-card p {
  color: var(--gray-500);
  font-size: var(--step-0);
  max-width: 18rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-section .section-header h2 {
  font-size: var(--step-4);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.faq-section .section-header h2 span {
  color: var(--fire);
}

.faq-section .section-header p {
  color: var(--text-muted);
  font-size: var(--step-0);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-m);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--text);
  gap: var(--space-s);
}

.faq-question i {
  color: var(--fire);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 var(--space-m) var(--space-m);
  color: var(--text-muted);
  font-size: var(--step--1);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--space-dark) 0%, var(--teal-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Big explosion glow */
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 60%);
  filter: blur(80px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 60%);
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: var(--step-5);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-s);
  letter-spacing: -0.03em;
}

.cta-content h2 span {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: var(--step-1);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  max-width: 37rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
  justify-content: center;
}

/* ========== DEALS PREVIEW ========== */
.deals-preview {
  padding: var(--space-3xl) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.deals-preview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 60%);
  filter: blur(40px);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--gap-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.deal-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  transition: all 0.4s;
  position: relative;
  border: 2px solid rgba(0,0,0,0.03);
  container-type: inline-size;
}

.deal-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.deal-card .deal-badge {
  position: absolute;
  top: var(--space-s);
  right: var(--space-s);
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-coral));
  color: white;
  padding: var(--space-2xs) var(--space-s);
  border-radius: 25px;
  font-size: var(--step--2);
  font-weight: 700;
  z-index: 1;
  text-transform: uppercase;
}

.deal-card .deal-img {
  height: clamp(140px, 25vw, 180px);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-card .deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-card .deal-img i {
  font-size: var(--step-5);
  color: white;
  opacity: 0.25;
}

.deal-card .deal-info { padding: var(--space-m); }

.deal-card h3 {
  font-size: var(--step-1);
  margin-bottom: var(--space-2xs);
  color: var(--gray-900);
}

.deal-card .deal-location {
  font-size: var(--step--1);
  color: var(--gray-500);
  margin-bottom: var(--space-s);
  font-weight: 500;
}

.deal-card .deal-location i {
  color: var(--fire-orange);
  margin-right: var(--space-2xs);
}

.deal-card .deal-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-bottom: var(--space-s);
}

.deal-card .deal-stats span {
  font-size: var(--step--2);
  color: var(--gray-500);
  background: var(--gray-100);
  padding: var(--space-2xs) var(--space-xs);
  border-radius: 20px;
  font-weight: 500;
}

.deal-card .deal-price {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-s);
  border-top: 2px solid var(--gray-100);
}

.deal-card .deal-price .label {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.deal-card .deal-price .value {
  font-size: var(--step-1);
  font-weight: 800;
}

.deal-card .deal-price .asking .value { color: var(--teal-dark); }
.deal-card .deal-price .arv .value { color: var(--success); }

.deals-preview .text-center { text-align: center; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91,191,186,0.08) 0%, transparent 60%);
  filter: blur(40px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--gap-lg);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  padding: var(--space-l);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  position: relative;
  border: 2px solid rgba(0,0,0,0.03);
  transition: all 0.3s;
  container-type: inline-size;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  font-size: clamp(60px, 15vw, 100px);
  font-family: Georgia, serif;
  background: linear-gradient(135deg, var(--teal-light), var(--fire-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--fire-amber);
  font-size: var(--step-1);
  margin-bottom: var(--space-s);
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--gray-700);
  font-size: var(--step-0);
  line-height: 1.8;
  margin-bottom: var(--space-m);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.testimonial-author .avatar {
  width: clamp(45px, 10vw, 55px);
  height: clamp(45px, 10vw, 55px);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: var(--step-1);
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: var(--step-0);
}

.testimonial-author .title {
  font-size: var(--step--1);
  color: var(--gray-500);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: white;
  padding: var(--space-3xl) 0 var(--space-l);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 60%);
  filter: blur(60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: var(--gap-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: clamp(50px, 10vw, 70px);
  margin-bottom: var(--space-m);
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: var(--gray-500);
  margin-bottom: var(--space-s);
  font-size: var(--step--1);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: var(--step-0);
  font-weight: 800;
  margin-bottom: var(--space-m);
  color: white;
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 4px;
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-amber));
  border-radius: 2px;
}

.footer-links ul,
.footer-contact ul { list-style: none; }

.footer-links li,
.footer-contact li {
  margin-bottom: var(--space-xs);
  font-size: var(--step--1);
  color: var(--gray-500);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--fire-orange); }

.footer-contact i {
  color: var(--fire-orange);
  margin-right: var(--space-xs);
  width: 18px;
}

.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: var(--space-l);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-md);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: var(--step--1);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.footer-legal a {
  color: var(--gray-500);
  font-size: var(--step--1);
}

.footer-legal a:hover { color: var(--fire-orange); }

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, var(--space-dark) 0%, var(--teal-dark) 50%, var(--teal) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 60%);
  filter: blur(80px);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255,107,53,0.1), transparent);
}

.page-header h1 {
  font-size: var(--step-6);
  font-weight: 900;
  margin-bottom: var(--space-xs);
  position: relative;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: var(--step-1);
  opacity: 0.9;
  position: relative;
  font-weight: 500;
}

/* ========== CONTENT SECTION ========== */
.content-section {
  padding: var(--space-3xl) 0;
}

/* ========== FORMS - COMPACT ========== */
.form-group {
  margin-bottom: var(--space-s);
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-2xs);
  color: var(--gray-700);
  font-size: var(--step--2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-xs) var(--space-s);
  border: 3px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--step--1);
  transition: all 0.3s;
  background: white;
  font-family: inherit;
  font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: var(--gap-sm);
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: var(--gap-sm);
}

/* ========== RESPONSIVE ========== */
/* Simplified responsive - most sizing is now fluid via clamp() */

@media (max-width: 1024px) {
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .header { display: none; }
  .mobile-nav { display: flex; }
  body { padding-top: 70px; }
  
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto var(--space-m); }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-cards { display: none; }
  
  .footer-grid { text-align: center; }
  .footer-links h4::after, .footer-contact h4::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { text-align: center; justify-content: center; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-fire { color: var(--fire-orange); }
.text-teal { color: var(--teal); }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ========== 🚀 ROCKET LAUNCHER HERO ========== */
.rocket-hero {
  min-height: 100vh;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.rocket-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--gap-xl);
  align-items: center;
}

/* Shooting stars */
.shooting-star {
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
  animation: shoot 4s linear infinite;
  z-index: 0;
}

.shooting-star:nth-child(2) { top: 15%; left: 10%; animation-delay: 0s; }
.shooting-star:nth-child(3) { top: 35%; left: 5%; animation-delay: 1.5s; }
.shooting-star:nth-child(4) { top: 55%; left: 15%; animation-delay: 3s; }

@keyframes shoot {
  0% { transform: translateX(-100px) translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(50vw + 100px)) translateY(80px); opacity: 0; }
}

/* 🚀 Launch Zone - Cards Flying Up */
.launch-zone {
  position: relative;
  height: clamp(450px, 60vw, 600px);
  perspective: 1200px;
  overflow: visible;
}

.launch-card {
  position: absolute;
  width: clamp(280px, 35vw, 380px);
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid var(--fire-orange);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  will-change: transform;
  container-type: inline-size;
}

.launch-card:hover {
  transform: scale(1.05) !important;
  z-index: 10 !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* No flame effect - removed per feedback */

/* Card 1 - Center (Main) - Biggest */
.launch-card-1 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  animation: rocketLaunch1 4.5s ease-in-out infinite;
}

/* Card 2 - Left */
.launch-card-2 {
  width: clamp(250px, 30vw, 340px);
  left: 0;
  bottom: clamp(50px, 8vw, 80px);
  transform: rotate(-4deg);
  z-index: 2;
  animation: rocketLaunch2 4.5s ease-in-out infinite 0.4s;
}

/* Card 3 - Right */
.launch-card-3 {
  width: clamp(250px, 30vw, 340px);
  right: 0;
  bottom: clamp(80px, 12vw, 120px);
  transform: rotate(4deg);
  z-index: 1;
  animation: rocketLaunch3 4.5s ease-in-out infinite 0.8s;
}

@keyframes rocketLaunch1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-25px); }
}

@keyframes rocketLaunch2 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-30px); }
}

@keyframes rocketLaunch3 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-20px); }
}

/* Launch Card Content */
.launch-card .card-img {
  height: clamp(140px, 20vw, 200px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.launch-card .card-badge {
  position: absolute;
  top: var(--space-s);
  left: var(--space-s);
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-coral));
  color: white;
  padding: var(--space-2xs) var(--space-s);
  border-radius: 25px;
  font-size: var(--step--2);
  font-weight: 700;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.launch-card .card-body {
  padding: var(--space-m);
}

.launch-card .card-location {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-2xs);
}

.launch-card .card-address {
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-2xs);
}

.launch-card .card-specs {
  font-size: var(--step--1);
  color: var(--gray-500);
  margin-bottom: var(--space-s);
}

.launch-card .card-prices {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-s);
  border-top: 2px solid var(--gray-100);
}

.launch-card .card-prices .label {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.launch-card .card-prices .value {
  font-size: var(--step-2);
  font-weight: 800;
}

.launch-card .card-prices .asking .value { color: var(--teal-dark); }
.launch-card .card-prices .arv .value { color: var(--success); }

/* 📱 Mobile Cards Carousel */
.mobile-cards-carousel {
  display: none;
  width: 100%;
  overflow: hidden;
  margin-top: var(--space-l);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-out;
  width: 300%;
}

.carousel-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 var(--space-2xs);
  box-sizing: border-box;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 4px solid var(--fire-orange);
  text-decoration: none;
  color: inherit;
  display: block;
  margin: 0 5%;
  width: 90%;
  container-type: inline-size;
}

.carousel-card > div:first-child,
.carousel-card > .card-img {
  height: clamp(140px, 35vw, 180px);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.carousel-card .card-img {
  height: clamp(140px, 35vw, 180px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-card .card-badge {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-coral));
  color: white;
  padding: var(--space-2xs) var(--space-xs);
  border-radius: 20px;
  font-size: var(--step--2);
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-card .card-body {
  padding: var(--space-s);
}

.carousel-card .card-location {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-3xs);
}

.carousel-card .card-address {
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-2xs);
}

.carousel-card .card-specs {
  font-size: var(--step--1);
  color: var(--gray-500);
  margin-bottom: var(--space-s);
}

.carousel-card .card-prices {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-xs);
  border-top: 2px solid var(--gray-100);
}

.carousel-card .card-prices .label {
  font-size: var(--step--2);
  color: var(--gray-500);
  text-transform: uppercase;
}

.carousel-card .card-prices .value {
  font-size: var(--step-1);
  font-weight: 800;
}

.carousel-card .card-prices .asking .value { color: var(--teal-dark); }
.carousel-card .card-prices .arv .value { color: var(--success); }

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2xs);
  margin-top: var(--space-s);
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active {
  background: var(--fire-orange);
  width: 30px;
  border-radius: 5px;
}

/* Responsive for Rocket Hero - simplified with fluid values */
@media (max-width: 900px) {
  .rocket-hero { min-height: auto; }
  .rocket-hero .container { grid-template-columns: 1fr; text-align: center; }
  .launch-zone { display: none; }
  .mobile-cards-carousel { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
}
