/* Professional Black & White Real Estate Theme */
:root {
  --bg: #000000;
  --bg-contrast: #0a0a0a;
  --surface: #1a1a1a;
  --surface-light: #2a2a2a;
  --text: #ffffff;
  --muted: #888888;
  --primary: #ffffff;
  --primary-dark: #e0e0e0;
  --accent: #f5f5f5;
  --danger: #ff4444;
  --border: rgba(255,255,255,0.1);
  --border-light: rgba(255,255,255,0.05);
  --shadow: 0 20px 40px rgba(0,0,0,0.6);
  --shadow-light: 0 10px 20px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --container: 1200px;
  --gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
  animation: backgroundFloat 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes backgroundFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-20px) rotate(1deg);
    opacity: 0.5;
  }
  50% { 
    transform: translateY(-10px) rotate(-1deg);
    opacity: 0.4;
  }
  75% { 
    transform: translateY(-15px) rotate(0.5deg);
    opacity: 0.6;
  }
}

/* Floating Particles */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(3px 3px at 60px 90px, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(2px 2px at 110px 50px, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(2px 2px at 160px 80px, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(1.5px 1.5px at 200px 40px, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(2px 2px at 240px 70px, rgba(255, 255, 255, 0.2), transparent);
  background-repeat: repeat;
  background-size: 180px 90px;
  animation: particleFloat 14s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)) drop-shadow(0 0 12px rgba(255,255,255,0.35));
  z-index: -1;
}

@keyframes particleFloat {
  0% { transform: translateY(0px) translateX(0px); opacity: 0.8; }
  25% { transform: translateY(-140px) translateX(60px); opacity: 1; }
  50% { transform: translateY(-280px) translateX(-30px); opacity: 0.85; }
  75% { transform: translateY(-420px) translateX(90px); opacity: 1; }
  100% { transform: translateY(-560px) translateX(0px); opacity: 0.8; }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: 0.2px; font-size: 20px; transition: all 0.3s ease; }
.brand:hover { transform: scale(1.05); }
.brand-accent { color: var(--primary); }
.brand-vested { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 24px; }
.nav-link { 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 500; 
  padding: 12px 16px; 
  border-radius: 12px; 
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}
.nav-link:hover::before {
  left: 100%;
}
.nav-link:hover { 
  color: var(--text); 
  background: rgba(255,255,255,0.08); 
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.nav-cta { 
  color: var(--bg); 
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%); 
  text-decoration: none; 
  font-weight: 700; 
  padding: 12px 20px; 
  border-radius: 12px; 
  box-shadow: 
    0 4px 15px rgba(255,255,255,0.2),
    0 0 20px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3); 
  transition: all 0.3s ease; 
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.nav-cta:hover::before {
  left: 100%;
}
.nav-cta:hover { 
  transform: translateY(-3px) scale(1.05); 
  box-shadow: 
    0 8px 25px rgba(255,255,255,0.3),
    0 0 30px rgba(255,255,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.4);
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.nav-toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span:nth-child(1){ top: 12px; }
.nav-toggle span:nth-child(2){ top: 19px; }
.nav-toggle span:nth-child(3){ top: 26px; }

/* Hero */
.hero { 
  position: relative; 
  padding: 120px 0 80px; 
  overflow: hidden; 
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated Geometric Shapes */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { 
    transform: rotate(45deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: rotate(45deg) scale(1.2);
    opacity: 0.6;
  }
}
.hero-bg { 
  position: absolute; 
  inset: 0; 
  background: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none; 
  animation: heroShimmer 8s ease-in-out infinite;
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(10%) contrast(1.2) brightness(1.0);
  transition: all 0.3s ease;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.hero-image:hover img {
  opacity: 0.9;
  filter: grayscale(0%) contrast(1.3) brightness(1.1);
}
@keyframes heroShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.hero-inner { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 48px; 
  align-items: center; 
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content h1 { 
  font-size: 48px; 
  line-height: 1.1; 
  margin: 0 0 16px; 
  letter-spacing: -0.02em; 
  animation: slideInLeft 1s ease-out 0.2s both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes neonGlow {
  from {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.6),
      0 0 30px rgba(255, 255, 255, 0.4),
      0 0 40px rgba(255, 255, 255, 0.2);
  }
  to {
    text-shadow: 
      0 0 15px rgba(255, 255, 255, 1),
      0 0 25px rgba(255, 255, 255, 0.8),
      0 0 35px rgba(255, 255, 255, 0.6),
      0 0 45px rgba(255, 255, 255, 0.4);
  }
}
.hero-kicker { 
  color: var(--primary); 
  font-weight: 700; 
  margin: 0 0 8px; 
  text-transform: uppercase; 
  letter-spacing: 0.14em; 
  font-size: 14px;
  animation: slideInLeft 1s ease-out 0.1s both;
}
.hero-sub { 
  color: var(--muted); 
  margin: 0 0 24px; 
  font-size: 20px; 
  animation: slideInLeft 1s ease-out 0.3s both;
}
.hero-ctas { 
  display: flex; 
  gap: 16px; 
  margin: 24px 0 20px; 
  animation: slideInLeft 1s ease-out 0.4s both;
}
.trust-list { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px 18px; 
  padding: 0; 
  margin: 24px 0 0; 
  list-style: none; 
  color: var(--muted); 
  animation: slideInLeft 1s ease-out 0.5s both;
}
.trust-list li::before { content: "✓"; color: var(--primary); margin-right: 8px; font-weight: bold; }

.lead-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  animation: slideInRight 1s ease-out 0.3s both;
  transition: all 0.3s ease;
}
.lead-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.lead-card h2 { margin: 0 0 4px; font-size: 22px; }
.lead-card .lead-sub { margin: 0 0 12px; color: var(--muted); }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field span { font-size: 13px; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: inherit;
  font-size: 16px;
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.field select:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: var(--surface-light);
}

.field select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
.field input.error, .field textarea.error, .field select.error { 
  border-color: var(--danger); 
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15); 
  animation: shake 0.5s ease-in-out;
}
.field input.success, .field textarea.success, .field select.success { 
  border-color: #4ade80; 
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15); 
}
.field .error-message {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.field .error-message.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.btn { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 16px; border-radius: 10px; font-weight: 700; text-decoration: none; cursor: pointer; border: 0; }
.btn-primary { 
  color: var(--bg); 
  background: var(--primary); 
  box-shadow: var(--shadow-light); 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow); 
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-ghost { 
  color: var(--text); 
  background: rgba(255,255,255,0.06); 
  border: 1px solid var(--border); 
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.form-note { color: var(--muted); font-size: 12px; margin: 8px 0 0; }

/* Sections */
section { 
  padding: 100px 0; 
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  overflow: hidden;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animated section backgrounds */
section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  animation: slideAcross 15s linear infinite;
  z-index: 0;
  pointer-events: none;
}

section:nth-child(odd)::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  animation: slideAcrossReverse 18s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Additional floating elements for all sections */
section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

@keyframes slideAcross {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes slideAcrossReverse {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.contrast { 
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); 
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border); 
}
.two-col { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 32px; 
  align-items: start; 
  position: relative;
  z-index: 1;
}
.panel { 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 18px; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.8s ease;
}
.panel:hover::before {
  left: 100%;
}
.panel:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-light);
}
.bad-list, .good-list { 
  margin: 12px 0 0; 
  padding-left: 18px; 
  animation: slideInLeft 0.8s ease-out;
}
.good-list li { 
  margin: 6px 0; 
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.good-list li:nth-child(1) { animation-delay: 0.1s; }
.good-list li:nth-child(2) { animation-delay: 0.2s; }
.good-list li:nth-child(3) { animation-delay: 0.3s; }
.good-list li:nth-child(4) { animation-delay: 0.4s; }
.grid-4 { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 18px; 
  position: relative;
  z-index: 1;
}

/* Floating decorative elements */
.grid-4::before {
  content: '🏠 🏡 🏘️ 🏢';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  opacity: 0.1;
  animation: floatUpDown 3s ease-in-out infinite;
  z-index: 0;
}

.grid-4::after {
  content: '⭐ ✨ 🌟 💫';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  opacity: 0.08;
  animation: floatUpDown 3s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-15px); }
}
.benefit { 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  padding: 24px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.8s ease;
}
.benefit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
}
.benefit:hover::before {
  left: 100%;
}
.benefit:hover::after {
  width: 200px;
  height: 200px;
}
.benefit:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}
.benefit h3 { 
  margin: 0 0 12px; 
  font-size: 20px; 
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.benefit:hover h3 {
  color: var(--primary);
  transform: translateX(5px);
}
.benefit p {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.benefit:hover p {
  transform: translateX(5px);
}
.center { 
  text-align: center; 
  position: relative;
}

/* Enhanced section titles with floating elements */
#benefits-title {
  position: relative;
  display: inline-block;
}

#benefits-title::before {
  content: '🏠';
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: 24px;
  opacity: 0.1;
  animation: rotate 4s linear infinite;
}

#benefits-title::after {
  content: '⭐';
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 24px;
  opacity: 0.1;
  animation: rotate 4s linear infinite reverse;
}

/* Steps Section with Floating Elements */
#how {
  position: relative;
  overflow: hidden;
}

/* Neon glow utility for emoji layers */
.neon-emoji-layer { filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)) drop-shadow(0 0 14px rgba(255,255,255,0.6)); }

#how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

#how::after { content: ''; opacity: 0; }

/* Steps */
.steps { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin: 40px 0; 
  position: relative;
  z-index: 1;
}
.step { 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 24px; 
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.8s ease;
}
.step::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
}
.step:hover::before {
  left: 100%;
}
.step:hover::after {
  width: 200px;
  height: 200px;
}
.step:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}
.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  filter: grayscale(20%) contrast(1.1);
}
.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-light);
  z-index: 2;
}

/* Floating emojis for each step */
.step:nth-child(1)::before {
  content: '📞';
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 24px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.step:nth-child(2)::before {
  content: '🏠';
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 24px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite 0.5s;
  z-index: 2;
}

.step:nth-child(3)::before {
  content: '💰';
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 24px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite 1s;
  z-index: 2;
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { 
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 18px; 
  text-align: center; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: translateX(-100%);
  animation: statGlow 3s ease-in-out infinite;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-light);
}
.stat span { 
  display: block; 
  font-size: 28px; 
  font-weight: 800; 
  color: var(--primary);
  animation: countUp 2s ease-out;
}
.stat small { color: var(--muted); }

@keyframes statGlow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* Benefits Section with Floating Elements */
#benefits {
  position: relative;
  overflow: hidden;
}

#benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

#benefits::after { content: ''; opacity: 0; }

@keyframes floatHouses {
  0% { transform: translateX(-100%) translateY(0px) rotate(0deg); }
  25% { transform: translateX(0%) translateY(-20px) rotate(5deg); }
  50% { transform: translateX(100%) translateY(0px) rotate(0deg); }
  75% { transform: translateX(200%) translateY(-10px) rotate(-5deg); }
  100% { transform: translateX(300%) translateY(0px) rotate(0deg); }
}

@keyframes floatStars {
  0% { transform: translateX(100%) translateY(0px) rotate(0deg); }
  25% { transform: translateX(0%) translateY(-15px) rotate(10deg); }
  50% { transform: translateX(-100%) translateY(0px) rotate(0deg); }
  75% { transform: translateX(-200%) translateY(-5px) rotate(-10deg); }
  100% { transform: translateX(-300%) translateY(0px) rotate(0deg); }
}

/* Additional floating elements for benefits section */
.benefit:nth-child(1)::before {
  content: '🏠';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.benefit:nth-child(2)::before {
  content: '💰';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite 0.5s;
  z-index: 2;
}

.benefit:nth-child(3)::before {
  content: '⚡';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite 1s;
  z-index: 2;
}

.benefit:nth-child(4)::before {
  content: '⭐';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  opacity: 0.1;
  animation: bounce 2s ease-in-out infinite 1.5s;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

/* Why Bad Section with Floating Elements */
#why-bad {
  position: relative;
  overflow: hidden;
}

#why-bad::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

#why-bad::after { content: ''; opacity: 0; }

@keyframes floatMoneyHouses {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

@keyframes floatMoneyHousesReverse {
  0% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-light);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text);
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-author strong {
  color: var(--primary);
}
.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-light);
}
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 18px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.contact-points { margin: 12px 0 0; color: var(--muted); }
.contact-points li { margin: 6px 0; }
.contact-image {
  margin-top: 24px;
}
.contact-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(30%) contrast(1.1);
}

/* Typography */
h2 { 
  font-size: 36px; 
  font-weight: 700; 
  margin: 0 0 20px; 
  line-height: 1.2; 
}

/* Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 32px;
}

.contact-item {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.contact-item p {
  margin: 4px 0;
  color: var(--muted);
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.why-choose-us {
  padding: 80px 0;
  background: var(--gradient);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Footer Enhancements */
.site-footer {
  background: var(--bg-contrast);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  padding: 28px 0; 
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-brand p { color: var(--muted); margin: 4px 0 0; font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { 
  color: var(--muted); 
  text-decoration: none; 
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.footer-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}
.footer-links a:hover::before {
  left: 100%;
}
.footer-links a:hover { 
  color: var(--text); 
  background: rgba(255,255,255,0.05);
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-inner { height: 64px; }
  .nav { position: fixed; inset: 64px 0 auto 0; height: 0; overflow: hidden; background: rgba(9,11,18,0.92); border-bottom: 1px solid var(--border); flex-direction: column; padding: 0 20px; gap: 8px; transition: height .2s ease, padding .2s ease; }
  .nav.open { height: 200px; padding: 12px 20px; }
  .nav-toggle { display: inline-block; }
  .nav-cta { width: 100%; text-align: center; }
  .hero { padding-top: 80px; }
  .hero-content h1 { font-size: 34px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* Toast Notification System */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  min-width: 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-left: 4px solid #4ade80;
}

.toast.error {
  border-left: 4px solid var(--danger);
}

.toast.info {
  border-left: 4px solid var(--primary);
}

.toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: toastProgress 3s linear;
}

@keyframes toastProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.toast.success .toast-icon {
  background: #4ade80;
  color: #000;
}

.toast.error .toast-icon {
  background: var(--danger);
  color: #fff;
}

.toast.info .toast-icon {
  background: var(--primary);
  color: var(--bg);
}

.toast-message {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.toast-description {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.toast-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* Loading Animation */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--bg);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Utilities */
h1, h2, h3 { letter-spacing: -0.01em; }
p { margin: 0 0 10px; }
a { color: var(--primary); }


