/*
Theme Name: Avoiding Foreclosure
Theme URI: https://avoidingforeclosure.ca
Author: Avoiding Foreclosure Canada
Description: Custom theme for AvoidingForeclosure.ca — no Elementor, no page builders. Pure HTML/CSS/PHP. Built for SEO domination in Canadian foreclosure keywords.
Version: 1.0.0
License: Proprietary
Text Domain: af-custom
*/

/* ── CSS VARIABLES ── */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --red: #c0392b;
  --red-light: #e74c3c;
  --gold: #d4a843;
  --gold-light: #f0c855;
  --white: #f8f6f1;
  --gray: #8a9bb0;
  --light-bg: #f2efe8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── PHONE BANNER ── */
.phone-banner {
  background: var(--red);
  text-align: center;
  padding: 12px 5%;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.phone-banner a { color: #fff; text-decoration: none; }
.phone-banner a:hover { text-decoration: underline; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 18px 5%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.logo span { color: var(--white); }
nav ul { list-style: none; display: flex; gap: 32px; }
nav ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-light) !important; }
.nav-social {
  display: flex !important;
  align-items: center;
  color: var(--gray) !important;
  transition: color 0.2s !important;
}
.nav-social:hover { color: var(--gold) !important; }

/* ── NAV DROPDOWNS ── */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  z-index: 101;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  list-style: none;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { margin: 0; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover {
  background: rgba(212,168,67,0.08);
  color: var(--gold);
}

/* ── MOBILE NAV ── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(192,57,43,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(212,168,67,0.05) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.urgency-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  color: #ff6b5b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse-border 2.5s infinite;
}
@keyframes pulse-border {
  0%,100% { border-color: rgba(192,57,43,0.4); }
  50% { border-color: rgba(192,57,43,0.8); }
}
.urgency-tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red-light);
  border-radius: 50%;
  animation: dot-pulse 1.5s infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(192,57,43,0.3);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.45);
}
.btn-ghost {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 14px; }
.btn-ghost::after { content: '\2192'; }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Form Card */
.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 0 0 3px 3px;
}
.card-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.card-sub {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--navy-mid); }
.form-group input::placeholder { color: rgba(138,155,176,0.5); }
.submit-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.submit-btn:hover { background: var(--red-light); transform: translateY(-1px); }
.card-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.5;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}
.trust-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── CITY BLOCKS ── */
.city-block {
  display: block;
  background: var(--navy-mid);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 6px;
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.city-block:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateY(-1px);
}
.city-name {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
}
.city-info {
  display: block;
  color: var(--gray);
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ── LEGAL HERO BADGE ── */
.legal-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.legal-badge-hero svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ── LEGAL AUTHORITY SECTION ── */
.legal-authority-section {
  padding: 50px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(17,34,64,0.6) 50%, var(--navy) 100%);
  border-top: 1px solid rgba(212,168,67,0.1);
  border-bottom: 1px solid rgba(212,168,67,0.1);
}
.legal-authority-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}
.legal-auth-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 300px;
  text-align: left;
}
.legal-auth-item svg { flex-shrink: 0; margin-top: 2px; }
.legal-auth-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.legal-auth-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}
.legal-auth-divider {
  width: 1px;
  background: rgba(212,168,67,0.2);
  align-self: stretch;
}
@media (max-width: 768px) {
  .legal-auth-divider { display: none; }
  .legal-authority-bar { flex-direction: column; align-items: center; gap: 28px; }
  .legal-auth-item { max-width: 100%; }
}

/* ── SECTION SHARED ── */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 720px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── CRISIS SECTION ── */
.crisis-section {
  background: var(--light-bg);
  color: var(--navy);
}
.crisis-section h2 { color: var(--navy); }
.crisis-section .section-label { color: var(--red); }
.crisis-section .section-intro { color: #445; }
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.crisis-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 26px;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.crisis-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.crisis-card p { font-size: 0.88rem; color: #556; line-height: 1.65; }

/* ── SOLUTIONS ── */
.solutions-section { background: var(--navy); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.solution-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.solution-card:hover {
  border-color: rgba(212,168,67,0.5);
  transform: translateY(-4px);
}
.solution-icon { font-size: 1.8rem; margin-bottom: 18px; }
.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.solution-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
.solution-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ── PROCESS ── */
.process-section { background: var(--navy-mid); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border: 2px solid rgba(212,168,67,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 30px 26px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(212,168,67,0.1);
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { font-weight: 600; font-size: 0.85rem; color: var(--white); }
.testimonial-location { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* ── FAQ ── */
.faq-section { background: var(--light-bg); color: var(--navy); }
.faq-section h2 { color: var(--navy); }
.faq-section .section-label { color: var(--red); }
.faq-section .section-intro { color: #445; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px 22px;
  border-left: 3px solid var(--red);
}
.faq-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-item p { font-size: 0.86rem; color: #445; line-height: 1.65; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #1a0a0a 0%, var(--navy) 50%, #0a1a2a 100%);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(192,57,43,0.12) 0%, transparent 70%);
}
.final-cta h2 { margin: 0 auto 20px; text-align: center; position: relative; }
.final-cta p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
}
.final-cta .cta-row { justify-content: center; position: relative; }

/* ── FOOTER ── */
footer {
  background: #050e1c;
  padding: 48px 5% 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--white); }
.footer-about {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}
footer h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--white); }
.footer-legal-strip {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: rgba(212,168,67,0.04);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 8px;
  font-size: 0.76rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 0.76rem;
  color: var(--gray);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── BLOG STYLES ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  border-color: rgba(212,168,67,0.4);
  transform: translateY(-3px);
}
.blog-card-body { padding: 24px; }
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.65; }
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-read-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SINGLE POST ── */
.post-content {
  max-width: 780px;
  margin: 0 auto;
}
.post-content h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.post-meta {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
}
.post-body h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 48px 0 16px;
}
.post-body h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 36px 0 12px;
}
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 16px 0; padding-left: 24px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--gold); text-decoration: underline; }
.post-body strong { color: var(--white); }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(212,168,67,0.05);
  font-style: italic;
}

/* ── PAGE STYLES ── */
.page-header {
  background: var(--navy-mid);
  padding: 140px 5% 60px;
  text-align: center;
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.page-header h1 { margin: 0 auto; }
.page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 5%;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
}
.page-body h2 { color: var(--white); margin: 40px 0 16px; }
.page-body p { margin-bottom: 20px; }
.page-body a { color: var(--gold); }

/* ── FADE ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 500px; }
  nav { flex-wrap: wrap; }
  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 0;
    order: 3;
  }
  nav ul li { width: 100%; }
  nav ul li a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
  }
  nav ul li:last-child a.nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  .mobile-toggle { display: block; }
  .dropdown {
    position: static;
    border: none;
    background: rgba(255,255,255,0.03);
    box-shadow: none;
    min-width: auto;
    padding: 0;
    border-radius: 0;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 10px 0 10px 16px; border-top: 1px solid rgba(255,255,255,0.04); }
  footer > div:first-child { grid-template-columns: 1fr 1fr !important; }
  .process-steps::before { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero { padding: 80px 5% 40px; min-height: auto; }
  h1 { font-size: 2.2rem; }
  section { padding: 60px 5%; }
  .trust-bar { padding: 20px 5%; gap: 16px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 12px; justify-content: flex-start; flex-direction: column; align-items: flex-start; padding: 16px 5%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .hero-card { padding: 24px 20px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .crisis-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer > div:first-child { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .phone-banner { font-size: 0.78rem; padding: 10px 4%; }
  .btn-primary { width: 100%; text-align: center; }
  .cta-row { flex-direction: column; }
}
