/* ============================================================
   BUYHOMESMARTER.COM — Landing Page Styles
   Dark premium design system with gold accents
   ============================================================ */

/* ---- CSS RESET & VARIABLES ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0f0c29;
  --bg-secondary: #302b63;
  --bg-tertiary: #24243e;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(255, 215, 0, 0.3);
  --gold: #FFD700;
  --gold-light: #FFE55C;
  --gold-dark: #CC9900;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.42);
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --ca-red: #FF3333;
  --us-blue: #3B82F6;
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.18);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 700; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- UTILITY ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }
.bold-text { font-weight: 800; }
.hidden { display: none !important; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-xl { padding: 20px 44px; font-size: 1.15rem; border-radius: var(--radius-lg); }

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

.pulse-gold {
  animation: pulseGold 2.5s ease-in-out infinite;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(255, 215, 0, 0); }
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 12, 41, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
}

.logo-er { color: var(--gold); }

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

.nav-country-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  margin-left: 12px;
}

.country-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.country-btn.active {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-nav-cta {
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 41, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 320px;
}

.mobile-menu a {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-country {
  display: flex;
  gap: 12px;
}

.btn-mobile-cta {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  font-weight: 800 !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-md) !important;
}

/* ---- SECTION COMMONS ---- */
section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 100px;
}

.section-headline {
  color: white;
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 60px;
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 0.8s ease 0.3s forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(48, 43, 99, 0.8) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 40%;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  min-height: 2.2em;
}

.typewriter-cursor {
  color: var(--gold);
  animation: blink 1s step-end infinite;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-sub strong { color: white; }
.hero-sub em { color: var(--gold); font-style: normal; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

.stat-icon { font-size: 1.25rem; margin-bottom: 4px; }

.stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 140px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: center;
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  height: 340px;
}

.hcard {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.hcard-back {
  width: 100%;
  top: 0;
  right: -16px;
  transform: rotate(3deg);
  opacity: 0.6;
  z-index: 1;
}

.hcard-front {
  width: 95%;
  top: 30px;
  left: 0;
  z-index: 2;
  background: rgba(20, 18, 50, 0.9);
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.hcard-float {
  width: auto;
  bottom: 0;
  right: 0;
  z-index: 3;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  animation: float 4s ease-in-out infinite;
  padding: 14px 18px;
}

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

.hcard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.hcard-icon { font-size: 1.1rem; }

.hcard-amount {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.hcard-amount.red { color: #EF4444; }
.hcard-amount.gold { color: var(--gold); }

.hcard-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hcard-bar {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.red-bar { background: #EF4444; }
.gold-bar { background: var(--gold); }

.hcard-savings {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 6px;
}

.hcard-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
}

.mini-title { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.mini-value { font-size: 0.9rem; color: var(--success); font-weight: 700; }

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.scroll-arrow { font-size: 1.25rem; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-sep {
  color: var(--border);
  font-size: 0.8rem;
}

.trust-countries {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(48, 43, 99, 0.3) 100%);
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--danger), transparent);
  opacity: 0.7;
}

.problem-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--warning), transparent);
}

.problem-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--info), transparent);
}

.problem-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.problem-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.problem-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.danger { background: rgba(239, 68, 68, 0.15); color: #EF4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.warning { background: rgba(245, 158, 11, 0.15); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.3); }
.info { background: rgba(59, 130, 246, 0.15); color: #3B82F6; border: 1px solid rgba(59, 130, 246, 0.3); }

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.problem-card strong { color: white; }
.problem-card em { color: var(--gold); font-style: normal; }

.problem-callout {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.callout-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.callout-row:last-child { border-bottom: none; }
.bold-row { font-weight: 700; margin-top: 4px; padding-top: 8px; border-top: 1px solid var(--border); }

.bad-value { color: #EF4444; font-weight: 700; }
.good-value { color: #22C55E; font-weight: 700; }
.danger-value { color: #EF4444; font-weight: 800; font-size: 1rem; }
.warning-value { color: #F59E0B; font-weight: 700; }

.problem-footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.problem-footer strong { color: var(--gold); font-style: normal; }

.problem-resolution {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.resolution-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}

.resolution-line:last-child {
  background: linear-gradient(90deg, var(--border), transparent);
}

.resolution-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ---- FEATURES SECTION ---- */
.features-section {
  background: rgba(48, 43, 99, 0.15);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.feature-card h3 { font-size: 1.15rem; color: white; }

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.feature-card strong { color: white; }

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.feature-link {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feature-link:hover { gap: 8px; }

/* ---- IMPACT SECTION ---- */
.impact-section {
  background: linear-gradient(180deg, rgba(48, 43, 99, 0.15) 0%, rgba(255, 215, 0, 0.03) 100%);
  text-align: center;
}

.impact-quote {
  max-width: 760px;
  margin: 0 auto 80px;
  position: relative;
  padding: 0 48px;
}

.impact-quote p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.5;
}

.quote-marks {
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  font-family: Georgia, serif;
  position: absolute;
}

.quote-marks:first-child { top: -10px; left: 0; }
.close-quote { bottom: -50px; right: 0; }

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.impact-num {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.impact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ---- HOW IT WORKS ---- */
.how-section { text-align: center; }

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}

.how-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.how-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.how-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-top: 80px;
  flex-shrink: 0;
  gap: 4px;
}

.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-gold), var(--border-gold));
  position: relative;
}

.connector-arrow {
  font-size: 1.25rem;
  color: var(--gold);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 32px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.step-icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.how-step h3 { margin-bottom: 12px; }

.how-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-list li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding-left: 16px;
  position: relative;
}

.step-list li::before {
  content: '→';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.how-cta { margin-top: 16px; }

/* ---- PROGRAMS SECTION ---- */
.programs-section {
  background: rgba(48, 43, 99, 0.15);
}

.programs-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  width: fit-content;
}

.prog-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.prog-tab.active {
  background: var(--gold);
  color: #0a0a0a;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.prog-icon { font-size: 2rem; }

.prog-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
}

.gold-badge { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.3); }
.blue-badge { background: rgba(59,130,246,0.15); color: #3B82F6; border: 1px solid rgba(59,130,246,0.3); }
.green-badge { background: rgba(34,197,94,0.15); color: #22C55E; border: 1px solid rgba(34,197,94,0.3); }
.orange-badge { background: rgba(249,115,22,0.15); color: #F97316; border: 1px solid rgba(249,115,22,0.3); }
.red-badge { background: rgba(239,68,68,0.15); color: #EF4444; border: 1px solid rgba(239,68,68,0.3); }

.prog-card h4 { font-size: 1rem; color: white; line-height: 1.3; }

.prog-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}

.prog-amount span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.prog-couple {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -6px;
}

.prog-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}

.prog-tip {
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--gold);
  line-height: 1.5;
}

.programs-callout {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.pc-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.pc-content {
  flex: 1;
}

.pc-content strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.pc-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.pc-content strong + p { margin-bottom: 0; }
.pc-content p + p { margin-top: 6px; }

/* ---- NEGOTIATION SECTION ---- */
.negotiate-section {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, var(--bg-primary) 100%);
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.phase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.phase-card:hover::after { transform: scaleX(1); }

.phase-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.phase-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,215,0,0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.phase-icon { font-size: 1.4rem; }

.phase-header h3 {
  font-size: 1.05rem;
  color: white;
}

.phase-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 16px;
  font-style: italic;
}

.phase-tactics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.phase-tactics li {
  font-size: 0.83rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.tactic-check { color: var(--success); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

.phase-secret {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.secret-label {
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.negotiate-cta { text-align: center; }

.negotiate-callout {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  max-width: 800px;
  margin: 0 auto 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.ncallout-icon { font-size: 2rem; flex-shrink: 0; }

.negotiate-callout p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.negotiate-callout strong { color: white; }
.negotiate-callout em { color: var(--gold); font-style: normal; }

/* ---- SECRETS SECTION ---- */
.secrets-section {
  background: rgba(48, 43, 99, 0.15);
}

.secrets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.secret-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.secret-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.secret-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  user-select: none;
}

.secret-icon { font-size: 1.5rem; flex-shrink: 0; }

.secret-info { flex: 1; }

.secret-num {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.secret-info h4 {
  font-size: 0.95rem;
  color: white;
  line-height: 1.3;
}

.secret-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}

.secret-card.open .secret-arrow { transform: rotate(45deg); }

.secret-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}

.secret-card.open .secret-body { display: block; }

.secret-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin: 14px 0 12px;
  background: rgba(255,215,0,0.1);
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.2);
  text-transform: uppercase;
}

.warning-badge { background: rgba(245,158,11,0.1); color: #F59E0B; border-color: rgba(245,158,11,0.2); }
.danger-badge { background: rgba(239,68,68,0.1); color: #EF4444; border-color: rgba(239,68,68,0.2); }
.success-badge { background: rgba(34,197,94,0.1); color: #22C55E; border-color: rgba(34,197,94,0.2); }
.gold-badge-sm { background: rgba(255,215,0,0.1); color: var(--gold); border: 1px solid rgba(255,215,0,0.2); }
.ca-badge { background: rgba(255,51,51,0.1); color: #FF3333; border-color: rgba(255,51,51,0.2); }

.secret-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.65;
}

.secret-body strong { color: white; }
.secret-body em { color: var(--gold); font-style: normal; }

.secret-body ul {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.secret-body li {
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding-left: 14px;
  position: relative;
}

.secret-body li::before {
  content: '▸';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

/* ---- COMPARE SECTION ---- */
.compare-section { text-align: center; }

.compare-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.compare-col {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: left;
}

.ca-col { border-right: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.us-col { border-left: none; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.15);
  border-left: none;
  border-right: none;
  writing-mode: horizontal-tb;
}

.compare-flag {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.compare-col h3 {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: white;
}

.compare-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.compare-item:last-child { border-bottom: none; padding-bottom: 0; }

.ci-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ci-value {
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
}

.gold-text { color: var(--gold); font-weight: 700; }

/* ---- FINAL CTA ---- */
.final-cta-section {
  background: var(--gradient-hero);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.final-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.final-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(48,43,99,0.8) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

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

.final-badge {
  display: inline-block;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.final-headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.final-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
}

.final-features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ff-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ff-item span { color: var(--success); }

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-domain {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.domain-label { color: var(--text-muted); font-size: 0.85rem; }
.domain-name { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.domain-sep { color: var(--border); }
.domain-redirect { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }

/* ---- FOOTER ---- */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon { font-size: 1.75rem; }
.footer-logo-text { font-size: 1.25rem; font-weight: 900; }
.footer-logo-text .gold { color: var(--gold); }

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-countries {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================================
   GOOGLE ADSENSE AD SLOTS
   ============================================================ */

/* Base ad slot container */
.ad-slot {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Ad label — small "Advertisement" text required by Google policy */
.ad-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-bottom: 4px;
}

/* ---- AD SLOT 1 & 5: Leaderboard 728×90 / Responsive ---- */
/* Positioned: Below Trust Bar, After Programs Section */
.ad-leaderboard {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 24px;
  text-align: center;
  min-height: 110px;           /* 90px ad + label + padding */
}

.ad-leaderboard .adsbygoogle {
  display: block;
  min-height: 90px;
  max-height: 120px;
}

/* ---- AD SLOT 2, 4 & 6: In-Article / In-Content Fluid ---- */
/* Positioned: After Problem, After How-It-Works, After Secrets */
.ad-in-content {
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: center;
  min-height: 100px;
}

.ad-in-content .adsbygoogle {
  display: block;
  min-height: 90px;
}

/* ---- AD SLOT 3: Medium Rectangle 300×250 / Responsive ---- */
/* Positioned: Between Features and Stats sections */
.ad-rectangle {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  text-align: center;
  min-height: 280px;           /* 250px ad + label + padding */
}

.ad-rectangle .adsbygoogle {
  display: block;
  min-height: 250px;
  max-width: 336px;            /* Large Rectangle fallback */
  margin: 0 auto;
}

/* ---- Placeholder style (shows when AdSense not loaded yet) ---- */
/* Shown in development / before AdSense renders */
.ad-slot::before {
  content: '';
  display: none;               /* Hidden by default — AdSense fills the space */
}

/* Development / preview placeholder — only shows if .adsbygoogle is empty */
.adsbygoogle:empty + .ad-placeholder,
.ad-slot:not(:has(.adsbygoogle)) .ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  background: rgba(255, 215, 0, 0.03);
  border: 1px dashed rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  color: rgba(255, 215, 0, 0.3);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---- Responsive Ad Slot Adjustments ---- */
@media (max-width: 768px) {
  .ad-leaderboard {
    min-height: 60px;
    padding: 10px 16px;
  }

  .ad-leaderboard .adsbygoogle {
    min-height: 50px;
    max-height: 60px;           /* Mobile banner 320x50 */
  }

  .ad-rectangle {
    min-height: 260px;
    padding: 16px;
  }

  .ad-in-content {
    padding: 12px 16px;
    min-height: 80px;
  }

  .ad-slot {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .ad-leaderboard .adsbygoogle {
    min-height: 50px;
  }

  .ad-rectangle {
    min-height: 130px;          /* 120px small rectangle on very small screens */
  }

  .ad-rectangle .adsbygoogle {
    min-height: 100px;
    max-width: 300px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .problem-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    gap: 24px;
  }
  .how-connector { flex-direction: row; padding: 0; transform: rotate(90deg); }
  .how-connector { display: none; }
  .compare-grid { flex-direction: column; }
  .ca-col, .us-col { border-radius: var(--radius-lg); border: 1px solid var(--border); }
  .compare-vs { width: 100%; padding: 12px; writing-mode: horizontal-tb; }
  .secrets-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  section { padding: 64px 0; }

  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2rem; min-height: auto; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  
  .trust-container { flex-direction: column; gap: 12px; }
  .trust-logos { gap: 8px; }
  
  .features-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .phases-grid { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  
  .programs-callout { flex-direction: column; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .final-ctas { flex-direction: column; align-items: center; }
  .final-features { justify-content: flex-start; flex-direction: column; align-items: flex-start; max-width: 280px; margin: 0 auto 48px; }
  
  .resolution-text { font-size: 1rem; white-space: normal; text-align: center; }
  .problem-resolution { flex-direction: column; gap: 12px; }
  .resolution-line { width: 60px; height: 1px; }
  
  .negotiate-callout { flex-direction: column; }
  
  .scroll-top { bottom: 20px; right: 20px; }
}
