/* ============================================================
   PROBATE PHILLY – Main Stylesheet
   Colors: Navy #1B2A4A | Gold #C8922A | White #FFFFFF
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111d35;
  --navy-mid: #243660;
  --gold: #C8922A;
  --gold-dark: #a87520;
  --gold-light: #e6a93a;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --light-gray: #F1F0ED;
  --mid-gray: #999;
  --dark-gray: #444;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --border: #e0ddd8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,146,42,0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 22px rgba(200,146,42,0.45);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-xl { padding: 20px 42px; font-size: 1.15rem; }
.btn-block { width: 100%; justify-content: center; }


/* ============================================================
   STICKY HEADER
   ============================================================ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-accent { color: var(--gold); }
.logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.header-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(200,146,42,0.4);
  transition: var(--transition);
}
.btn-phone:hover {
  background: rgba(200,146,42,0.1);
  border-color: var(--gold);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--navy-dark);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-link.phone-link { color: var(--gold); }
.mobile-cta { margin-top: 10px; text-align: center; justify-content: center; }


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    url('https://images.unsplash.com/photo-1569701813229-33284b643e3c?w=1800&q=80&auto=format&fit=crop') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 29, 53, 0.93) 0%,
    rgba(27, 42, 74, 0.88) 50%,
    rgba(27, 42, 74, 0.82) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

/* Hero Content */
.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,146,42,0.18);
  border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-h1 .text-gold { color: var(--gold-light); }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
}

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

.hero-micro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 36px;
}

/* Hero Proof Points */
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
}
.proof-item i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 22px;
  flex-shrink: 0;
}

/* Hero Form */
.hero-form-wrap {
  position: relative;
  z-index: 3;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--gold);
}

.form-header {
  margin-bottom: 24px;
  text-align: center;
}
.form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.form-header p {
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}
.form-group textarea::placeholder { color: #bbb; }
.label-optional {
  font-weight: 400;
  color: var(--mid-gray);
  font-size: 0.78rem;
  letter-spacing: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}
.form-group input::placeholder { color: #bbb; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 10px;
}

.form-success {
  text-align: center;
  padding: 16px 8px;
}
.success-icon {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 14px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.form-success a { color: var(--gold); font-weight: 700; }


/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,146,42,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(200,146,42,0.25);
}
.section-label.light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 100px 0 80px;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(27,42,74,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-md);
}
.cta-strip-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  max-width: 540px;
}
.cta-strip-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cta-strip-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  white-space: nowrap;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 70px;
  align-items: start;
}

.why-us-content { color: var(--white); }
.why-us-content .section-title { text-align: left; margin-bottom: 0; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 32px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.why-list li i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.why-list li strong { color: var(--white); }

.why-us-close {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

/* Why Us Visual */
.why-stats-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.stat-item {
  text-align: center;
  padding: 24px 0;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0;
}

.why-fit-card {
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.why-fit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-fit-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.why-fit-card li i {
  color: var(--gold);
  font-size: 0.7rem;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0 80px;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 56px;
}

.step-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.step-card:hover h3,
.step-card:hover p {
  color: rgba(255,255,255,0.85);
}
.step-card:hover h3 { color: var(--white); }
.step-card:hover .step-icon { background: var(--gold); color: var(--white); }
.step-card:hover .step-number { color: rgba(200,146,42,0.4); }

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(27,42,74,0.1);
  line-height: 1;
  margin-bottom: -10px;
  transition: var(--transition);
}
.step-icon {
  width: 68px;
  height: 68px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: var(--transition);
}
.step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  transition: var(--transition);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 16px;
  margin-top: 80px;
}

.steps-cta {
  text-align: center;
}
.steps-cta-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #666;
}


/* ============================================================
   PROOF & TRUST
   ============================================================ */
.proof-trust {
  padding: 100px 0 80px;
  background: var(--off-white);
}

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

.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.result-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.result-quote-icon {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}
.result-text {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.result-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(27,42,74,0.06);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.result-badge i { font-size: 0.7rem; }

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.trust-badge i { color: var(--gold); font-size: 1rem; }


/* ============================================================
   CHECKLIST LEAD MAGNET
   ============================================================ */
.checklist-magnet {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.checklist-magnet::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,146,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.checklist-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}

.checklist-content { color: var(--white); }
.checklist-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.checklist-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}
.checklist-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 24px;
}
.checklist-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist-preview li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.checklist-preview li i { color: var(--gold); font-size: 0.85rem; }

.checklist-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--gold);
}

.checklist-form .form-group { margin-bottom: 16px; }

/* Checkbox */
.checkbox-group { margin-top: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem !important;
  color: var(--text-body);
  font-weight: 500 !important;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  border: 2px solid var(--border) !important;
  padding: 0 !important;
}
.checkbox-label span.checkmark { display: none; }


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: start;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 4rem;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=600&q=75&auto=format&fit=crop') center / cover;
  opacity: 0.25;
}
.about-image-placeholder p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.about-image-placeholder i { position: relative; z-index: 1; }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.value-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(27,42,74,0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(27,42,74,0.12);
  transition: var(--transition);
}
.value-tag:hover { background: var(--navy); color: var(--white); }
.value-tag i { color: var(--gold); font-size: 0.75rem; }

.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content p {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.highlight-item i { color: var(--gold); font-size: 1rem; width: 18px; }


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 100px 0 80px;
  background: var(--off-white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.faq-question:hover {
  background: rgba(27,42,74,0.03);
  color: var(--gold-dark);
}
.faq-question[aria-expanded="true"] {
  background: var(--navy);
  color: var(--white);
}
.faq-question i {
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 12px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 16px;
  list-style: disc;
  padding-left: 20px;
}
.faq-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  list-style: disc;
}

.faq-cta {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 680px;
  margin: 0 auto;
}
.faq-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 24px;
}
.faq-cta p strong { color: var(--white); }


/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.3) 0%, transparent 60%);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.final-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.final-cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.final-cta .btn-gold {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.final-cta .btn-gold:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.final-cta .btn-outline-white {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
}
.final-cta-micro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-main { font-size: 1.7rem; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 14px 0 18px;
  color: rgba(255,255,255,0.6);
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  transition: var(--transition);
}
.footer-phone:hover { color: var(--gold-light); }
.footer-btn { margin-top: 4px; }

.footer-nap h4,
.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nap address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-nap address p i { margin-top: 3px; flex-shrink: 0; color: var(--gold); font-size: 0.75rem; }
.footer-nap address a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-nap address a:hover { color: var(--gold); }

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-block;
}
.footer-links li a:hover { color: var(--gold); padding-left: 4px; }

/* Footer Bottom */
.footer-bottom {
  padding: 28px 0;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 14px;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.6); }


/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta-call,
.mobile-cta-schedule {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
.mobile-cta-call {
  background: var(--navy);
  color: var(--white);
}
.mobile-cta-schedule {
  background: var(--gold);
  color: var(--white);
}


/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.modal-box h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.modal-box p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }


/* ============================================================
   SCROLL ANIMATION (simple fade-in)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }


/* ============================================================
   SE HABLA ESPAÑOL – HEADER LABEL
   ============================================================ */
.header-espanol {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 20px;
  background: rgba(200,146,42,0.08);
}


/* ============================================================
   SE HABLA ESPAÑOL – HERO TRUST BADGE
   ============================================================ */
.hero-espanol-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 24px;
  padding: 8px 16px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.hero-espanol-badge i {
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-espanol-badge strong {
  color: var(--gold-light);
}


/* ============================================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; padding-top: 50px; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-form-wrap { max-width: 520px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-us-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-us-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-stats-card { flex-direction: row; }
  .stat-divider { width: 1px; height: auto; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { transform: rotate(90deg); font-size: 1.2rem; margin: 0 auto; padding: 4px 0; }

  .results-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 60px; }

  .checklist-inner { grid-template-columns: 1fr; gap: 50px; }
  .checklist-form-wrap { max-width: 520px; margin: 0 auto; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}


/* ============================================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-ctas { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-inner { padding-top: 30px; }
  .hero-h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-strip { flex-direction: column; text-align: center; padding: 32px 24px; }
  .cta-strip-sub { white-space: normal; }

  .why-us-visual { grid-template-columns: 1fr; }
  .why-stats-card { flex-direction: row; flex-wrap: wrap; }

  .results-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 10px; }

  .faq-grid { max-width: 100%; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-cta { padding: 28px 20px; }
  .faq-cta p { font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-top: 60px; }

  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; max-width: 380px; }

  /* Show mobile sticky CTA */
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 58px; }

  .hero-form-card { padding: 28px 20px; }
  .checklist-form-wrap { padding: 28px 20px; }

  .section-header { margin-bottom: 36px; }

  .modal-box { padding: 28px 22px; }

  .header-espanol { display: none; }

  .hero-espanol-badge { font-size: 0.8rem; padding: 7px 14px; }
}


/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-h1 { font-size: 1.75rem; }
  .btn-xl { padding: 16px 26px; font-size: 1rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }
  .cta-strip { padding: 24px 18px; }
  .cta-strip-text { font-size: 1rem; }
  .section-title { font-size: 1.5rem; }
  .step-card { padding: 28px 20px; }
  .why-stats-card { flex-direction: column; }
  .stat-divider { height: 1px; width: auto; }
}
