﻿/* Core Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text-primary); background: var(--dark-primary); line-height:1.6; }

:root {
  --primary:#ffc400;
  --primary-accent:#ff9500;
  --gradient:linear-gradient(135deg,var(--primary),var(--primary-accent));
  --radius:20px;
  --shadow:0 10px 30px -10px rgba(0,0,0,0.25);
  --glass:rgba(255,255,255,0.12);
  
  /* Professional color scheme inspired by Eberst Law */
  --dark-primary: #0a0d14;
  --dark-secondary: #1a1f2b;
  --dark-tertiary: #2a2f3b;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent-gold: #fbbf24;
  --accent-orange: #f97316;
  --accent-red: #dc2626;
  --white-section: #ffffff;
  
  /* Property Owner-specific colors - Purple theme for luxury and prosperity */
  --owner-primary: #8b5cf6; /* Purple for luxury and wealth */
  --owner-accent: #7c3aed;
  --owner-gradient: linear-gradient(135deg, var(--owner-primary), var(--owner-accent));
  --accent-purple: #8b5cf6;
}

/* Navbar */
.navbar { position:fixed; top:0; left:0; right:0; z-index:100; background:#0a0d14; border-bottom:1px solid rgba(255,196,0,0.3); transition:all .3s ease; }
.navbar.scrolled { background:#0a0d14; box-shadow:0 4px 30px -5px rgba(0,0,0,0.5); }
.nav-inner { display:grid; grid-template-columns: 260px 1fr auto; align-items:center; height:70px; padding:0; }
.navbar .logo { display:flex; align-items:center; cursor:pointer; font-weight:800; font-size:22px; letter-spacing:.5px; color: #ffffff; gap:12px; padding:0 20px; justify-content:center; background:#0a0d14; height:70px; border-right:1px solid rgba(255,196,0,0.3); }
.logo span { line-height:1; display:flex; align-items:center; }
.navbar .logo-icon { width:42px; height:42px; border-radius:10px; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:20px; line-height:1; color:#000; box-shadow:0 4px 15px rgba(255,196,0,0.4); }
.nav-links { display:flex; align-items:center; gap:16px; justify-content:center; padding:0 20px; }
.nav-links button, .nav-links a:not(.cta) { background:none; border:none; font-weight:600; font-size:15px; cursor:pointer; color: #ffffff; position:relative; padding:8px 8px; transition:color .3s; text-decoration:none; white-space:nowrap; text-align:center; }
.navbar.scrolled .nav-links button, .navbar.scrolled .nav-links a:not(.cta) { color:#ffffff; }
.nav-links button:hover, .nav-links a:not(.cta):hover { color:var(--primary-accent); }
.nav-links a:not(.cta).active { color:var(--primary-accent); }
.nav-links a:not(.cta)::after { content:''; position:absolute; bottom:2px; left:50%; transform:translateX(-50%); width:0; height:2px; background:var(--gradient); transition:width .3s ease; }
.nav-links a:not(.cta):hover::after, .nav-links a:not(.cta).active::after { width:80%; }
.nav-links .cta { background:var(--gradient); color:#000; font-weight:700; padding:12px 20px; border-radius:50px; text-decoration:none; font-size:14px; box-shadow:0 6px 18px rgba(255,196,0,0.4); transition:.3s; margin-left:12px; }
.nav-links .cta:hover { filter:brightness(.9); transform:translateY(-2px); }

.nav-cta { background:var(--gradient); color:#000; font-weight:700; padding:12px 26px; border-radius:50px; text-decoration:none; font-size:14px; box-shadow:0 6px 18px rgba(255,196,0,0.4); transition:.3s; margin-right:32px; white-space:nowrap; }
.nav-cta:hover { filter:brightness(.9); transform:translateY(-2px); }

.mobile-toggle { display:none; background:none; border:none; font-size:30px; cursor:pointer; color: #ffffff; margin-right:20px; }
.navbar.scrolled .mobile-toggle { color:#ffffff; }
.mobile-menu { display:none; flex-direction:column; background:rgba(10, 13, 20, 0.95); backdrop-filter:blur(10px); padding:16px 20px; border-bottom:1px solid rgba(255,196,0,0.2); }
.mobile-menu.open { display:flex; }
.mobile-menu button, .mobile-menu a { background:none; border:none; padding:14px 4px; font-size:16px; font-weight:600; text-align:left; cursor:pointer; color: #ffffff; border-bottom:1px solid rgba(255,255,255,0.1); text-decoration:none; display:block; width:100%; }

/* Sidebar Navigation */
.page-sidebar {
  position: fixed;
  left: 0;
  top: 70px;
  width: 260px;
  height: calc(100vh - 70px);
  background: linear-gradient(180deg, #1a1f2b 0%, #0a0d14 100%);
  border-right: 1px solid rgba(255, 196, 0, 0.1);
  padding: 32px 0;
  z-index: 90;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar-content {
  padding: 0 20px;
}

.sidebar-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding: 0 12px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-link .icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.sidebar-link:hover {
  background: rgba(255, 196, 0, 0.1);
  color: var(--accent-gold);
  transform: translateX(4px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-accent));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
}

.sidebar-link.active .icon {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

/* Content shift for sidebar */
body {
  padding-left: 260px;
}

.mobile-menu a.cta { background:var(--owner-gradient); color:#fff; text-align:center; border:none; margin-top:8px; border-radius:10px; }

/* Hero */
.hero { min-height:100vh; position:relative; display:flex; align-items:center; justify-content:center; text-align:center; padding:110px 24px 80px; background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.55)),url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.hero-video-wrapper { position:absolute; inset:0; overflow:hidden; z-index:0; background:#000; }
.hero-video { width:100%; height:100%; object-fit:cover; filter:brightness(.55) saturate(1.15); transform:scale(1.0); background:#000; object-position:center; }
.hero-overlay { z-index:1; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.65)),radial-gradient(circle at 30% 70%, rgba(139,92,246,0.12) 0%, transparent 55%), radial-gradient(circle at 80% 25%, rgba(255,196,0,0.15) 0%, transparent 55%); animation:pulse 5s ease-in-out infinite; }
.hero-content { position:relative; z-index:2; max-width:1100px; }

/* Dramatic tagline styling */
.hero-tagline { margin-bottom: 40px; }
.tagline-small { 
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--owner-primary);
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.tagline-big {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #ffffff;
  text-shadow: 4px 4px 16px rgba(0,0,0,0.9);
  margin-bottom: 0;
  letter-spacing: 1px;
}
.accent-text {
  color: var(--owner-primary);
  display: block;
  position: relative;
  text-shadow: 0 0 15px rgba(139,92,246,0.4);
}

/* Value proposition styling */
.hero-value-prop { 
  margin-bottom: 35px; 
  border-left: 4px solid var(--owner-primary);
  padding-left: 30px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
}
.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--owner-primary);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-transform: uppercase;
}
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero benefits */
.hero-benefits { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
  margin: 40px 0; 
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-item { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 20px; 
  background: rgba(139,92,246,0.1); 
  backdrop-filter: blur(8px); 
  border-radius: 16px; 
  border: 1px solid rgba(139,92,246,0.2);
  transition: all 0.3s ease;
}
.benefit-item:hover {
  background: rgba(139,92,246,0.15);
  transform: translateY(-2px);
}
.benefit-icon { 
  font-size: 28px; 
  background: var(--owner-gradient); 
  width: 50px; 
  height: 50px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 12px; 
  box-shadow: 0 6px 15px rgba(139,92,246,0.3);
  flex-shrink: 0;
}
.benefit-item span:last-child { 
  font-weight: 600; 
  color: var(--text-primary); 
  font-size: 15px; 
  line-height: 1.4;
}

/* Enhanced CTA section */
.hero-cta-enhanced { 
  margin-top: 50px; 
}
.cta-urgent { 
  text-align: center; 
  margin-bottom: 30px; 
  padding: 25px; 
  background: rgba(139,92,246,0.1); 
  border-radius: 20px; 
  border: 2px solid rgba(139,92,246,0.3);
}
.cta-label { 
  display: block; 
  font-size: 14px; 
  font-weight: 800; 
  color: var(--owner-primary); 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  margin-bottom: 12px;
}
.cta-phone { 
  display: block; 
  font-size: clamp(1.8rem, 3vw, 2.5rem); 
  font-weight: 900; 
  color: #ffffff; 
  text-decoration: none; 
  margin-bottom: 8px; 
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  transition: color 0.3s ease;
}
.cta-phone:hover { 
  color: var(--owner-primary); 
}
.cta-availability { 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--text-secondary); 
  text-transform: uppercase; 
  letter-spacing: 1px;
}

/* CTA buttons */
.hero-cta { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary { 
  padding: 18px 35px; 
  font-size: 17px; 
  font-weight: 700; 
  border-radius: 50px; 
  text-decoration: none; 
  border: none; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}
.btn-primary { 
  background: var(--owner-gradient); 
  color: #ffffff; 
  box-shadow: 0 8px 25px rgba(139,92,246,0.4);
}
.btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 35px rgba(139,92,246,0.5);
}
.btn-secondary { 
  background: rgba(255,255,255,0.1); 
  color: #ffffff; 
  border: 2px solid rgba(255,255,255,0.3); 
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { 
  background: rgba(255,255,255,0.2); 
  transform: translateY(-3px);
}

/* Trust indicators */
.trust-indicators { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 25px; 
  margin: 50px 0; 
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.trust-item { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  padding: 20px; 
  background: rgba(255,255,255,0.05); 
  backdrop-filter: blur(10px); 
  border-radius: 16px; 
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.trust-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.trust-icon { 
  font-size: 24px; 
  background: var(--gradient); 
  width: 45px; 
  height: 45px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 10px; 
  box-shadow: 0 4px 12px rgba(255,196,0,0.3);
  flex-shrink: 0;
}
.trust-item span { 
  font-weight: 600; 
  color: var(--text-primary); 
  font-size: 14px;
}

/* Stats */
.stats { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
  gap: 30px; 
  margin: 60px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stat { 
  text-align: center; 
  padding: 25px 20px; 
  background: rgba(255,255,255,0.05); 
  backdrop-filter: blur(10px); 
  border-radius: 20px; 
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.stat:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}
.stat .value { 
  font-size: clamp(2rem, 3vw, 3rem); 
  font-weight: 900; 
  color: var(--owner-primary); 
  margin-bottom: 8px; 
  text-shadow: 0 0 10px rgba(139,92,246,0.3);
}
.stat .label { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--text-secondary); 
  text-transform: uppercase; 
  letter-spacing: 1px;
}

/* Layout utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.center { text-align: center; }
.section { padding: 100px 0; position: relative; }
.section.dark { background: var(--dark-primary); }
.section.light { background: var(--white-section); color: var(--dark-primary); }
.grid { display: grid; gap: 30px; }

/* Section headers */
.section-header-dramatic { 
  margin-bottom: 70px; 
  text-align: center; 
}
.section-eyebrow { 
  display: block; 
  font-size: 14px; 
  font-weight: 900; 
  letter-spacing: 3px; 
  color: var(--owner-primary); 
  text-transform: uppercase; 
  margin-bottom: 20px; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.section-eyebrow.dark-text {
  color: var(--owner-accent);
  text-shadow: none;
}
.section-title-dramatic {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 4px 4px 20px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}
.section-title-dramatic.dark-text {
  color: var(--dark-primary);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}
.section-title-dramatic.dark-text .accent-purple {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.accent-purple {
  color: var(--owner-primary);
  display: block;
  text-shadow: 0 0 15px rgba(139,92,246,0.4);
}
.section-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}
.section-subtitle.dark-text {
  color: var(--text-muted);
}

/* Enhanced service cards */
.cards-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 60px 0;
}
.service-card-enhanced {
  background: linear-gradient(145deg, #1a1f2e, #2d3346);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card-enhanced:hover::before {
  opacity: 1;
}
.service-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 20px 40px -10px rgba(139,92,246,0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.icon-enhanced {
  width: 60px;
  height: 60px;
  background: var(--owner-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(139,92,246,0.4);
  position: relative;
  z-index: 2;
}

/* Service badges */
.priority-badge, .service-badge, .urgent-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.priority-badge {
  background: var(--owner-gradient);
  color: white;
}
.service-badge {
  background: rgba(255,196,0,0.2);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.service-card-enhanced h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.service-card-enhanced p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.card-impact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(139,92,246,0.1);
  border-radius: 10px;
  border: 1px solid rgba(139,92,246,0.2);
  position: relative;
  z-index: 2;
}
.impact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.impact-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--owner-primary);
}

.service-details {
  position: relative;
  z-index: 2;
}
.service-details ul {
  list-style: none;
  margin-top: 15px;
}
.service-details li {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.service-details li:before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--owner-primary);
  font-weight: bold;
}

/* Optimization Section */
.optimization-section {
  background: var(--white-section);
  color: var(--dark-primary);
}
.optimization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.optimization-card {
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  border: 2px solid rgba(139,92,246,0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.optimization-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 15px 40px rgba(139,92,246,0.15);
}
.optimization-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  background: var(--owner-gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(139,92,246,0.3);
}
.optimization-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-primary);
  margin-bottom: 15px;
}
.optimization-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.optimization-stats {
  background: rgba(139,92,246,0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border-left: 4px solid var(--owner-primary);
}
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--owner-primary);
  margin-bottom: 5px;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Recovery Section */
.recovery-section {
  background: var(--dark-primary);
}
.recovery-cases-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.recovery-case-card {
  background: linear-gradient(145deg, #1a1f2e, #2d3346);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.recovery-case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 20px 40px -10px rgba(139,92,246,0.3);
}
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.case-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--owner-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(139,92,246,0.4);
}
.case-amount {
  font-size: 14px;
  font-weight: 800;
  color: var(--owner-primary);
  background: rgba(139,92,246,0.1);
  padding: 8px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.recovery-case-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}
.recovery-case-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(139,92,246,0.1);
  border-radius: 12px;
  border: 1px solid rgba(139,92,246,0.2);
}
.timeline-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.timeline-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--owner-primary);
}

/* Process Section */
.process-section {
  background: var(--white-section);
  color: var(--dark-primary);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--owner-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(139,92,246,0.3);
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-primary);
}
.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}
.step-timeline {
  font-size: 14px;
  font-weight: 600;
  color: var(--owner-primary);
  background: rgba(139,92,246,0.1);
  padding: 6px 12px;
  border-radius: 15px;
  display: inline-block;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
  padding: 100px 0;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-urgency {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(139,92,246,0.1);
  border-radius: 15px;
  border: 1px solid rgba(139,92,246,0.2);
}
.urgency-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--owner-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(139,92,246,0.3);
}
.urgency-text strong {
  display: block;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}
.urgency-text span {
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-primary {
  text-align: center;
  padding: 40px;
  background: rgba(139,92,246,0.1);
  border-radius: 20px;
  border: 2px solid rgba(139,92,246,0.3);
  margin-bottom: 30px;
}
.phone-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--owner-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.phone-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  transition: color 0.3s ease;
}
.phone-number:hover {
  color: var(--owner-primary);
}
.phone-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-secondary {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,196,0,0.3);
}
.contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 3px;
}
.contact-item span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Enhanced Footer */
.footer-enhanced {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  position: relative;
}

.footer-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 196, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
}

.footer-brand .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.4);
}

.footer-brand .logo span {
  line-height: 1;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 25px;
}
.footer-emergency {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.emergency-label {
  font-size: 12px;
  font-weight: 800;
  color: #ffc400;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.emergency-phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.emergency-phone:hover {
  color: #ffc400;
  transform: scale(1.05);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffc400;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 12px;
  white-space: nowrap;
}
.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}
.footer-column a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal span {
  color: #64748b;
  font-size: 14px;
}
.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.legal-links a:hover {
  color: #ffffff;
}

.footer-final-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 149, 0, 0.1));
  border: 2px solid rgba(255, 196, 0, 0.4);
  border-radius: 16px;
  padding: 18px 30px;
  box-shadow: 0 8px 25px -8px rgba(255, 196, 0, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -10px rgba(255, 196, 0, 0.4);
}

.final-cta-text {
  font-size: 12px;
  font-weight: 800;
  color: #ffc400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta-phone {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta-phone:hover {
  color: #ffc400;
  transform: scale(1.05);
}

/* Responsive Design - Enhanced Mobile First Approach */

/* Large Desktop - 1920px+ */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  .section { padding: 120px 40px; }
  .tagline-big { font-size: 4.5rem; }
  .cards-enhanced { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
  .trust-indicators { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .optimization-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .process-steps { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .recovery-cases-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
}

/* Desktop - 1200px to 1919px */
@media (min-width: 1200px) and (max-width: 1919px) {
  .container { max-width: 1200px; }
  .section { padding: 100px 32px; }
  .cards-enhanced { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  .optimization-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .process-steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .recovery-cases-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
}

/* Tablet Landscape - 1024px to 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
  .container { max-width: 1000px; padding: 0 20px; }
  .section { padding: 80px 20px; }
  .hero { padding: 100px 20px 70px; }
  .tagline-big { font-size: clamp(3.2rem, 6vw, 4rem); }
  .cards-enhanced { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-indicators { grid-template-columns: repeat(3, 1fr); }
  .optimization-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .recovery-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop Small - hide CTA button */
@media (max-width: 1199px) {
  .nav-cta { display: none !important; }
}

/* Tablet Portrait - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Global tablet fixes */
  * { box-sizing: border-box; }
  html, body { overflow-x: hidden !important; width: 100% !important; }
  body { margin-left: 0 !important; padding-left: 0 !important; }
  
  /* Hide sidebar on tablets */
  .page-sidebar { display: none !important; }
  main { margin-left: 0 !important; width: 100% !important; }
  .hero, .section, .container { width: 100% !important; max-width: 100% !important; }
  
  /* Navbar */
  .nav-cta { display: none !important; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .container { max-width: 100%; padding: 0 24px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; font-size: 26px; padding: 20px; }
  
  .section { padding: 70px 16px; }
  .hero { padding: 90px 16px 60px; }
  .tagline-big { font-size: clamp(2.8rem, 7vw, 3.5rem); }
  .hero-subtitle { font-size: clamp(1.3rem, 4vw, 1.6rem); }
  .lead { font-size: clamp(1rem, 3vw, 1.2rem); }
  
  .hero-benefits { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-indicators { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cards-enhanced { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .optimization-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .recovery-cases-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-content { grid-template-columns: 1fr; gap: 30px; }
}

/* Mobile Large - 480px to 767px */
@media (min-width: 480px) and (max-width: 767px) {
  /* Hide sidebar */
  .page-sidebar { display: none !important; }
  body { margin-left: 0 !important; padding-left: 0 !important; overflow-x: hidden; }
  main { margin-left: 0 !important; width: 100%; }
  .hero, .section, .container { width: 100%; max-width: 100%; box-sizing: border-box; }
  .container { max-width: 100%; padding: 0 12px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  
  .section { padding: 60px 12px; }
  .hero { padding: 80px 12px 50px; }
  .tagline-big { font-size: clamp(2.4rem, 8vw, 3rem); }
  .hero-subtitle { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .lead { font-size: clamp(0.95rem, 4vw, 1.1rem); }
  
  .hero-benefits { grid-template-columns: 1fr; gap: 10px; }
  .trust-indicators { grid-template-columns: 1fr; gap: 12px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cards-enhanced { grid-template-columns: 1fr; gap: 16px; }
  .optimization-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .recovery-cases-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .contact-content { grid-template-columns: 1fr; gap: 25px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Mobile Small - 320px to 479px */
@media (max-width: 479px) {
  /* Global mobile fixes */
  * { max-width: 100%; box-sizing: border-box; }
  html { overflow-x: hidden !important; }
  body { 
    margin-left: 0 !important; 
    padding-left: 0 !important; 
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    font-size: 14px;
  }
  img { max-width: 100% !important; height: auto; }
  
  /* Hide sidebar on mobile */
  .page-sidebar { display: none !important; }
  main { margin-left: 0 !important; width: 100% !important; padding: 0 !important; }
  .hero, .section, .container { 
    width: 100% !important; 
    max-width: 100vw !important; 
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Navigation optimized */
  .navbar { padding: 0; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .mobile-toggle { display: block !important; font-size: 28px; padding: 20px; margin: 0; }
  .logo { font-size: 16px; padding: 0 16px; }
  
  /* Mobile optimizations */
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .container { padding: 0 8px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  
  .section { padding: 50px 8px; }
  .hero { padding: 70px 8px 40px; }
  .tagline-big { font-size: clamp(2rem, 9vw, 2.6rem); line-height: 1.1; }
  .hero-subtitle { font-size: clamp(1.1rem, 5vw, 1.3rem); }
  .lead { font-size: clamp(0.9rem, 4vw, 1rem); }
  
  .hero-benefits { grid-template-columns: 1fr; gap: 8px; }
  .trust-indicators { grid-template-columns: 1fr; gap: 10px; }
  .stats { grid-template-columns: 1fr; gap: 10px; }
  .cards-enhanced { grid-template-columns: 1fr; gap: 12px; }
  .optimization-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .recovery-cases-grid { grid-template-columns: 1fr; gap: 12px; }
  
  .hero-cta { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; padding: 12px 20px; font-size: 14px; }
  
  .contact-content { grid-template-columns: 1fr; gap: 20px; }
  .contact-primary { padding: 20px 16px; }
  .phone-number { font-size: clamp(1.6rem, 6vw, 2rem); }
  
  .footer-top { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { grid-template-columns: 1fr; gap: 15px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  /* Typography adjustments */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .section-subtitle { font-size: clamp(0.9rem, 3vw, 1.1rem); }
}

/* Fix hieroglyphs in bullet points */
.service-details li {
  padding-left: 0 !important;
  text-align: justify;
}
.service-details li:before,
.service-details li::before {
  display: none !important;
  content: '' !important;
}
.service-details ul {
  padding-left: 0 !important;
}
