/* ==========================================
   LANDING PAGES - EXTENSION STYLESHEET
   Extends styles-v2.css for landing pages
   Updated with mobile overflow fixes
   ========================================== */

/* ==========================================
   SECTION UTILITIES
   ========================================== */
.section-lg {
  padding: clamp(60px, 10vw, 100px) 0;
}

@media (max-width: 768px) {
  .section-lg {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .section-lg {
    padding: 40px 0;
  }
}

.bg-secondary {
  background: var(--bg-secondary);
}

.section-header {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.section-header p {
  margin-bottom: 0;
}

/* Global overflow fix - IMPROVED */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  overflow: hidden;
  box-sizing: border-box;
}

section,
main,
footer {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ==========================================
   LANDING PAGE HERO
   ========================================== */
.lp-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2c3e50; /* Fallback for missing hero images */
  min-height: clamp(550px, 70vh, 80vh);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) var(--space-lg) clamp(80px, 12vw, 140px);
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Trust Bar */
.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.hero-trust-item svg {
  color: #fbbf24;
  flex-shrink: 0;
}

.hero-trust-item:nth-child(3) svg {
  color: #34d399;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.lp-hero h1 {
  color: white;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.12;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.hero-subhead {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA Buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: white;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-primary svg {
  transition: transform 0.3s ease;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-microcopy {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: var(--space-xl);
}

/* Hero Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 14px;
  height: 14px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
}

@keyframes pulse {
  0% { 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  }
  50% { 
    opacity: 0.8;
  }
  100% { 
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-trust-bar {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
  }
  
  .hero-trust-divider {
    width: 60px;
    height: 1px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lp-hero {
    padding: 40px var(--space-md) 60px;
    min-height: auto;
  }
  
  .lp-hero h1 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.2;
  }
  
  .hero-subhead {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .btn-hero-primary {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-badges {
    gap: 8px;
  }
  
  .hero-badge {
    padding: 8px 12px;
    font-size: 12px;
    max-width: 100%;
    width: 100%;
  }
  
  .badge-icon {
    width: 24px;
    height: 24px;
  }
  
  .badge-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
  padding: 14px var(--space-lg);
  background: var(--bg-secondary);
  font-size: 14px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--text-muted);
}

/* ==========================================
   CARD VARIANTS
   ========================================== */
.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.card h4 {
  color: var(--text);
}

/* Badge inside cards */
.badge {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ==========================================
   PROCESS TIMELINE ENHANCEMENTS
   ========================================== */
.step-meta {
  display: block;
  margin-top: var(--space-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ==========================================
   COMPARISON SECTION - REDESIGNED
   ========================================== */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-column {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107, 68, 35, 0.08);
  border: 1px solid #e5e0db;
  transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107, 68, 35, 0.12);
}

.comparison-column-header {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid #e5e0db;
  position: relative;
}

.comparison-label {
  font-size: 18px;
  font-weight: 700;
  color: #1a1512;
}

.recommended-badge {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 12px;
  background: #6b4423;
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  vertical-align: middle;
}

/* Traditional column styling */
.comparison-traditional .comparison-column-header {
  background: #fdfcfb;
}

/* Propcash column styling */
.comparison-propcash {
  border: 2px solid #6b4423;
}

.comparison-propcash .comparison-column-header {
  background: linear-gradient(135deg, #f8f5f2 0%, #fdfcfb 100%);
}

/* List styling */
.comparison-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #f0ebe6;
  font-size: 15px;
  line-height: 1.4;
}

.comparison-list li:last-child {
  border-bottom: none;
}

/* Traditional list text */
.comparison-traditional .comparison-list li span:last-child {
  color: #6b625a;
}

/* Propcash list text */
.comparison-propcash .comparison-list li span:last-child {
  color: #1a1512;
  font-weight: 500;
}

/* Icon styling */
.icon-x,
.icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-x {
  background: #fef2f2;
  color: #dc2626;
}

.icon-check {
  background: #ecfdf5;
  color: #10b981;
}

/* Comparison Responsive - IMPROVED */
@media (max-width: 900px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .comparison-column-header {
    padding: 20px;
  }
  
  .comparison-label {
    font-size: 16px;
    display: block;
  }
  
  .recommended-badge {
    display: block;
    margin: 8px auto 0;
    width: fit-content;
  }
  
  .comparison-list li {
    padding: 14px 20px;
    font-size: 14px;
    gap: 12px;
  }
  
  .icon-x,
  .icon-check {
    width: 24px;
    height: 24px;
  }
  
  .icon-x svg,
  .icon-check svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .comparison-list li {
    padding: 12px 16px;
    font-size: 13px;
    gap: 10px;
  }
  
  .comparison-list li span:last-child {
    flex: 1;
    min-width: 0;
  }
  
  .icon-x,
  .icon-check {
    width: 22px;
    height: 22px;
  }
  
  .icon-x svg,
  .icon-check svg {
    width: 12px;
    height: 12px;
  }
}

/* ==========================================
   ICON GRID (As-Is Section)
   ========================================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.icon-card {
  background: var(--card);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.icon-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.icon-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  color: var(--primary);
}

.icon-card p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
}

/* ==========================================
   NEIGHBORHOOD GRID
   ========================================== */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  max-width: 1000px;
  margin: 0 auto;
}

.neighborhood-item {
  background: var(--card);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 15px;
  transition: var(--transition-fast);
}

.neighborhood-item:hover {
  border-color: var(--primary);
}

/* ==========================================
   FAQ LIST (Landing Page Style)
   ========================================== */
.faq-list details {
  background: var(--card);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-list details:hover {
  border-color: var(--primary);
}

.faq-list summary {
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  font-size: 16px;
}

.faq-list details p {
  padding: 0 var(--space-xl) var(--space-lg);
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .faq-list summary {
    padding: var(--space-md) var(--space-lg);
    font-size: 15px;
  }
  
  .faq-list details p {
    padding: 0 var(--space-lg) var(--space-md);
  }
}

@media (max-width: 480px) {
  .faq-list summary {
    padding: var(--space-md);
    font-size: 14px;
    line-height: 1.4;
  }
  
  .faq-list details p {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 14px;
  }
}

/* ==========================================
   CONTENT BLOCK
   ========================================== */
.content-block {
  line-height: 1.8;
}

.content-block h3 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.content-block p {
  margin-bottom: var(--space-xl);
}

.content-block a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-block a:hover {
  text-decoration: none;
}

@media (max-width: 480px) {
  .content-block h3 {
    font-size: 18px;
  }
  
  .content-block p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ==========================================
   LANDING PAGE CTA SECTION
   ========================================== */
.lp-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: clamp(60px, 10vw, 100px) var(--space-lg);
}

.lp-cta h2 {
  color: white;
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: var(--space-md);
}

.lp-cta .text-large {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.lp-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-contact {
  margin-top: var(--space-xl);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.cta-contact a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .lp-cta {
    padding: 48px var(--space-md);
  }
  
  .lp-cta h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .lp-cta .text-large {
    font-size: 15px;
  }
  
  .lp-cta .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .cta-contact {
    font-size: 14px;
  }
}

/* ==========================================
   AS-IS SECTION REDESIGN
   ========================================== */
.as-is-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: center;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(107, 68, 35, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.as-is-content h2 {
  margin-bottom: var(--space-md);
}

.as-is-content .text-large {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.as-is-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}

.checklist-item strong {
  display: block;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 2px;
}

.checklist-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Visual Card */
.as-is-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(145deg, var(--primary) 0%, #8b5a30 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.visual-card-header {
  margin-bottom: var(--space-lg);
}

.visual-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-stat {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.stat-dollar {
  font-size: 28px;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 8px;
  margin-right: 4px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.visual-card > p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.visual-breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.breakdown-item span:first-child {
  opacity: 0.8;
}

.breakdown-item span:last-child {
  font-weight: 600;
}

/* As-Is Responsive - IMPROVED */
@media (max-width: 1000px) {
  .as-is-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .visual-card {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .visual-card {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .as-is-content .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .stat-value {
    font-size: clamp(36px, 12vw, 48px);
    word-break: break-word;
  }
  
  .stat-dollar {
    font-size: 20px;
    margin-top: 4px;
  }
  
  .visual-stat {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .as-is-layout {
    margin: 0 calc(-1 * var(--space-md));
    padding: 0 var(--space-md);
    overflow: hidden;
  }
  
  .visual-card {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }
  
  .stat-value {
    font-size: 42px;
  }
  
  .stat-dollar {
    font-size: 22px;
    margin-top: 6px;
  }
  
  .visual-breakdown {
    gap: var(--space-xs);
  }
  
  .breakdown-item {
    font-size: 13px;
  }
  
  .checklist-item {
    gap: var(--space-sm);
  }
  
  .check-icon {
    width: 28px;
    height: 28px;
  }
  
  .check-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .checklist-item strong {
    font-size: 15px;
  }
  
  .checklist-item p {
    font-size: 13px;
  }
}

/* ==========================================
   CARD ACCENT HEADINGS
   ========================================== */
.card-accent h3 {
  color: var(--primary);
}

/* ==========================================
   SITUATION CARDS
   ========================================== */
.situation-card {
  text-align: left;
}

.situation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(107, 68, 35, 0.08) 0%, rgba(107, 68, 35, 0.15) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  color: var(--primary);
  transition: var(--transition);
}

.situation-card:hover .situation-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.situation-card h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.situation-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Situation Cards Responsive */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .situation-card {
    padding: var(--space-md);
  }
  
  .situation-icon {
    width: 48px;
    height: 48px;
  }
  
  .situation-card h4 {
    font-size: 16px;
  }
  
  .situation-card p {
    font-size: 14px;
  }
}

/* ==========================================
   NEIGHBORHOODS SECTION WITH IMAGE
   ========================================== */
.neighborhoods-section {
  overflow: hidden;
}

.neighborhoods-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Image Side */
.neighborhoods-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.neighborhoods-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.image-overlay-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.overlay-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.overlay-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Content Side */
.neighborhoods-content {
  padding: var(--space-lg) 0;
}

.neighborhoods-content h2 {
  margin-bottom: var(--space-md);
}

.neighborhoods-content > .text-muted {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* Neighborhood Tags */
.neighborhoods-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-xl);
}

.neighborhood-tag {
  display: inline-block;
  padding: 10px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.neighborhood-tag:hover {
  border-color: var(--primary);
  background: white;
  color: var(--primary);
}

.neighborhood-tag.tag-highlight {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text);
}

.neighborhood-tag.tag-highlight:hover {
  border-color: var(--primary);
  background: white;
  color: var(--primary);
}

/* CTA Area */
.neighborhoods-cta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.neighborhoods-cta p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* Neighborhoods Responsive - IMPROVED */
@media (max-width: 1000px) {
  .neighborhoods-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
   
   .neighborhoods-content {
    order: -1; /* Moves content above the image */
  }
}

@media (max-width: 900px) {
  .neighborhoods-image-wrapper {
    max-height: 350px;
  }
  
  .neighborhoods-image {
    min-height: 350px;
  }
  
  .neighborhoods-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

@media (max-width: 600px) {
  .neighborhoods-tags {
    gap: 8px;
  }
  
  .neighborhood-tag {
    padding: 8px 12px;
    font-size: 12px;
    flex: 0 1 auto;
    max-width: calc(50% - 4px);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .neighborhood-tag.tag-highlight {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .neighborhood-tag {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .image-overlay-badge {
    bottom: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
  }
  
  .overlay-number {
    font-size: 22px;
  }
  
  .overlay-text {
    font-size: 11px;
  }
}
/* ==========================================
   HOW IT WORKS - CONSOLIDATED SECTION
   ========================================== */
.how-it-works-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Left Column - Intro */
.hiw-intro {
  padding-right: var(--space-xl);
}

.hiw-intro h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(28px, 4vw, 38px);
  color: var(--primary);
}

.hiw-intro .text-large {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hiw-stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hiw-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hiw-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Right Column - Steps */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hiw-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.hiw-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.hiw-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.hiw-step-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary);
}

.hiw-step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.hiw-step-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.hiw-step-meta svg {
  opacity: 0.8;
}

/* How It Works Responsive - OPTIMIZED FOR MOBILE */
@media (max-width: 1000px) {
  .how-it-works-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hiw-intro,
  .hiw-steps {
    display: contents;
  }
  
  .hiw-intro {
    padding-right: 0;
  }
  
  /* Reorder elements */
  .hiw-intro .section-label { order: 1; }
  .hiw-intro h2 { order: 2; }
  .hiw-intro .text-large { order: 3; }
  .hiw-stats { order: 4; }
  .hiw-step:nth-child(1) { order: 5; }
  .hiw-step:nth-child(2) { order: 6; }
  .hiw-step:nth-child(3) { order: 7; }
  .hiw-intro .btn { order: 8; }
  
  /* Center text elements but keep pill auto-width */
  .hiw-intro .section-label {
    align-self: center;
    width: auto;
    margin-bottom: var(--space-sm);
  }
  
  .hiw-intro h2 {
    text-align: center;
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .hiw-intro .text-large {
    text-align: center;
    width: 100%;
    margin-bottom: var(--space-md);
  }
  
  .hiw-intro .btn {
    width: 100%;
    max-width: 320px;
    margin: var(--space-sm) auto 0;
    text-align: center;
  }
  
  /* Compact stats - keep side by side */
  .hiw-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-md);
  }
  
  .hiw-stat {
    text-align: center;
    flex: 1;
    max-width: none;
  }
  
  /* Tighter step cards */
  .hiw-step {
    gap: var(--space-md);
    padding: var(--space-md);
  }
  
  .hiw-steps {
    gap: var(--space-md);
  }
}

@media (max-width: 600px) {
  .how-it-works-layout {
    gap: var(--space-sm);
  }
  
  /* Keep stats horizontal but smaller */
  .hiw-stats {
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-sm);
  }
  
  .hiw-stat-number {
    font-size: 22px;
  }
  
  .hiw-stat-label {
    font-size: 10px;
    letter-spacing: 0;
  }
  
  /* Compact step cards - horizontal layout */
  .hiw-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
  }
  
  .hiw-step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-top: 2px;
  }
  
  .hiw-step-content h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .hiw-step-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
  }
  
  .hiw-step-meta {
    font-size: 12px;
  }
  
  .hiw-intro h2 {
    font-size: 24px;
  }
  
  .hiw-intro .text-large {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .hiw-intro .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  /* Extra small screens - even more compact stats */
  .hiw-stat-number {
    font-size: 18px;
  }
  
  .hiw-stat-label {
    font-size: 9px;
  }
  
  .hiw-stats {
    gap: var(--space-xs);
  }
}
/* ==========================================
   TESTIMONIALS RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: var(--space-md);
  }
  
  .testimonial-text {
    font-size: 14px;
  }
}

/* ==========================================
   GENERAL TYPOGRAPHY MOBILE FIXES
   ========================================== */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: clamp(22px, 6vw, 28px);
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .text-large {
    font-size: 16px;
  }
  
  .section-label {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .btn-primary,
  .btn {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================
   ICON GRID RESPONSIVE
   ========================================== */
@media (max-width: 600px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduce section header bottom margin on mobile */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: var(--space-md);
  }
}

/* Specifically target How It Works section spacing */
@media (max-width: 768px) {
  .how-it-works-layout {
    margin-bottom: 0;
  }
  
  /* Remove any extra padding from the section containing How It Works */
  #how-it-works.section-lg,
  .section-lg:has(.how-it-works-layout) {
    padding-bottom: 32px;
  }
}

/* Specifically target Neighborhoods section spacing */
@media (max-width: 768px) {
  .neighborhoods-section.section-lg {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .neighborhoods-layout {
    gap: var(--space-lg);
  }
  
  .neighborhoods-content {
    padding: 0;
  }
}

/* Reduce space between all sections on mobile */
@media (max-width: 480px) {
  .section-lg + .section-lg {
    padding-top: 24px;
  }

  .section-lg {
    padding: 32px 0;
  }
}

/* ==========================================
   STATE LANDING PAGE COMPONENTS
   Added for Batch 3+ state pages
   ========================================== */

/* ==========================================
   HERO ENHANCEMENTS
   ========================================== */
.lp-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.lp-hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .lp-hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .lp-hero-cta-group .btn-primary,
  .lp-hero-cta-group .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .lp-hero-trust {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* ==========================================
   STATS BAR SECTION
   ========================================== */
.lp-stats-bar {
  background: white;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.lp-stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin: 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .lp-stats-bar .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lp-stats-bar .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat-item {
    padding: var(--space-sm);
  }

  .stat-item .stat-number {
    font-size: 24px;
  }

  .stat-item .stat-label {
    font-size: 11px;
  }
}

/* ==========================================
   INTRO SECTION
   ========================================== */
.lp-intro {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-content h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--text);
}

.intro-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.intro-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lp-intro {
    padding: var(--space-2xl) 0;
  }

  .intro-content p {
    font-size: 16px;
  }
}

/* ==========================================
   CITIES SECTION
   ========================================== */
.lp-cities {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

@media (max-width: 768px) {
  .lp-cities {
    padding: var(--space-2xl) 0;
  }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.lp-benefits {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.benefit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.benefit-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 768px) {
  .lp-benefits {
    padding: var(--space-2xl) 0;
  }

  .benefit-card {
    padding: var(--space-lg);
  }
}

/* ==========================================
   HOW IT WORKS SECTION (STATE PAGES)
   ========================================== */
.lp-how-it-works {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.step-card .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.step-card h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

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

  .lp-how-it-works {
    padding: var(--space-2xl) 0;
  }

  .step-card {
    padding: var(--space-lg);
  }
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.faq-item h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 768px) {
  .lp-faq {
    padding: var(--space-2xl) 0;
  }

  .faq-item {
    padding: var(--space-lg);
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.lp-final-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
}

.lp-final-cta h2 {
  color: white;
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: var(--space-md);
}

.lp-final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.lp-final-cta .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .lp-final-cta {
    padding: var(--space-2xl) 0;
  }

  .lp-final-cta .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .lp-final-cta .cta-buttons .btn-primary,
  .lp-final-cta .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .lp-final-cta p {
    font-size: 16px;
  }
}

/* ==========================================
   BUTTON ALIASES
   ========================================== */
.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
}

.btn-primary.btn-lg,
.btn-secondary.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary.btn-lg {
  background: white;
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary.btn-lg {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary.btn-lg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Hero-specific button overrides */
.lp-hero .btn-primary.btn-lg {
  background: white;
  color: var(--primary);
}

.lp-hero .btn-secondary.btn-lg {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Final CTA button overrides */
.lp-final-cta .btn-primary.btn-lg {
  background: white;
  color: var(--primary);
}

.lp-final-cta .btn-secondary.btn-lg {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* ==========================================
   WHY SELL / REASONS SECTION
   (Used by Tier 2/3 state pages)
   ========================================== */
.lp-why-sell {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.reason-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

.reason-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.reason-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.reason-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.reason-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

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

  .lp-why-sell {
    padding: var(--space-2xl) 0;
  }
}

/* ==========================================
   CALLOUT BOX SECTION
   ========================================== */
.lp-callout {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.callout-box {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.callout-box h3 {
  font-size: 20px;
  margin-bottom: var(--space-md);
}

.callout-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.callout-box ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.callout-box li {
  margin-bottom: var(--space-sm);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================
   CITY CARDS (State Landing Pages)
   ========================================== */
.city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.city-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(107, 68, 35, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107, 68, 35, 0.12);
}

.city-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--bg-secondary);
}

.city-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(107, 68, 35, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.city-card-content,
.city-info {
  padding: var(--space-lg);
}

.city-card h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--text);
}

.city-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}

.city-region {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.city-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: var(--space-md);
}

.city-stat {
  text-align: center;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.city-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.city-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: var(--space-sm);
}

.city-card-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.city-card-cta:hover {
  background: var(--primary-dark);
}

.city-card-cta.coming-soon {
  background: var(--bg-secondary);
  color: var(--text-muted);
  cursor: default;
}

@media (max-width: 900px) {
  .city-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   REGIONS SECTION
   ========================================== */
.lp-regions {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.region,
.region-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--primary);
}

.region h4,
.region-card h4 {
  font-size: 18px;
  margin: 0 0 var(--space-sm);
  color: var(--primary);
}

.region ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  line-height: 1.5;
}

.region-cities {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

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

  .lp-regions {
    padding: var(--space-2xl) 0;
  }
}

/* ==========================================
   HOW IT WORKS - SIMPLE STEPS
   (Alternative to hiw-layout)
   ========================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: var(--transition);
}

.step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.step h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.steps-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

/* ==========================================
   MARKETPLACE PREVIEW / COMPARISON
   ========================================== */
.lp-marketplace-preview {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.comparison-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
}

.comparison-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.comparison-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-card.traditional li svg {
  color: #dc2626;
}

.comparison-card.propcash {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #fdfcfb 0%, #f8f5f2 100%);
}

.comparison-card.propcash li svg {
  color: #10b981;
}

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

/* ==========================================
   LEARN SECTION
   ========================================== */
.lp-learn {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.learn-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.learn-main h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.learn-main p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.learn-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.learn-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.learn-card h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.learn-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.learn-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learn-card li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.learn-card li:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .learn-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lp-learn {
    padding: var(--space-2xl) 0;
  }
}

/* ==========================================
   LIVE MARKETPLACE PREVIEW SECTION
   ========================================== */
.marketplace-preview {
  background: linear-gradient(135deg, #1a1512 0%, #2d251f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.marketplace-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(107, 68, 35, 0.3) 0%, transparent 50%);
}

.marketplace-preview .container {
  position: relative;
  z-index: 1;
}

.marketplace-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.marketplace-preview h2 {
  color: white;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 16px;
}

.marketplace-preview p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.marketplace-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.mp-stat {
  text-align: left;
}

.mp-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #d4a574;
}

.mp-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-marketplace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: white;
  color: #1a1512;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-marketplace:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.marketplace-visual {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid #10b981;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-icon svg {
  width: 20px;
  height: 20px;
  stroke: #10b981;
}

.activity-text {
  flex: 1;
}

.activity-title {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.activity-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

@media (max-width: 900px) {
  .marketplace-preview-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .marketplace-stats {
    justify-content: center;
  }

  .mp-stat {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .marketplace-preview {
    padding: 60px 0;
  }

  .marketplace-preview-content {
    gap: 40px;
  }

  .marketplace-visual {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .marketplace-preview {
    padding: 48px 0;
  }

  .marketplace-stats {
    gap: 24px;
  }

  .mp-stat-value {
    font-size: 28px;
  }

  .activity-item {
    padding: 12px;
    gap: 12px;
  }

  .activity-icon {
    width: 32px;
    height: 32px;
  }

  .activity-icon svg {
    width: 16px;
    height: 16px;
  }

  .activity-title {
    font-size: 13px;
  }

  .activity-meta {
    font-size: 11px;
  }
}

/* ==========================================
   LEARN/RESOURCES SECTION
   ========================================== */
.learn-section {
  background: #faf8f5;
  padding: 80px 0;
}

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

.learn-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(107, 68, 35, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107, 68, 35, 0.12);
}

.learn-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6b4423 0%, #8b5e3c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.learn-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.learn-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.learn-card p {
  color: #6b625a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.learn-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #6b4423;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
}

.btn-learn:hover {
  background: #5a3a1e;
}

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

@media (max-width: 768px) {
  .learn-section {
    padding: 60px 0;
  }

  .learn-grid {
    margin-top: 32px;
    gap: 20px;
  }

  .learn-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .learn-section {
    padding: 48px 0;
  }

  .learn-cta {
    margin-top: 32px;
  }

  .btn-learn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   GUIDE CARDS - Memphis Landing Page Article Links
   ========================================================================== */

.guide-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.guide-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.guide-card-content {
  padding: 24px;
}

.guide-card-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.guide-card p {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.guide-card-meta {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

/* Responsive adjustments for guide cards */
@media (max-width: 992px) {
  .guide-card-image {
    height: 160px;
  }

  .guide-card-content {
    padding: 20px;
  }

  .guide-card h4 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .guide-card-image {
    height: 200px;
  }
}
