/* ============================================
   251 Home Buys — Mobile-First Stylesheet
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy: #1B4332;
  --navy-light: #2D6A4F;
  --blue: #D4A843;
  --blue-dark: #B8862D;
  --green: #E8722A;
  --green-dark: #D4631F;
  --orange: #E8722A;
  --gold: #D4A843;
  --white: #FFFFFF;
  --off-white: #F5F1EB;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #6C757D;
  --gray-700: #495057;
  --dark: #1A1A2E;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.25);
  --transition: all 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
.hidden { display: none !important; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--navy); }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.section-title--left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto 48px;
}
.text-accent { color: var(--blue); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--cta {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 114, 42, 0.4);
}
.btn--cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 114, 42, 0.5);
}
.btn--accent {
  background: var(--blue);
  color: var(--white);
}
.btn--accent:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--full { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.section-cta { text-align: center; margin-top: 40px; }

/* ========== 1. ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}
.announcement-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.announcement-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--white);
}
.announcement-bar__phone:hover { text-decoration: underline; }

/* ========== 2. NAVIGATION ========== */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
}
.nav__logo-251 { color: var(--blue); }
.nav__logo-home { color: var(--navy); }
.nav__links { display: none; gap: 24px; }
.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.nav__link:hover { color: var(--blue); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}
.nav__link:hover::after { width: 100%; }
.nav__cta { display: none; }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; pointer-events: none; }
.mobile-nav.active { pointer-events: all; }
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.active .mobile-nav__overlay { opacity: 1; }
.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.mobile-nav.active .mobile-nav__drawer { transform: translateX(0); }
.mobile-nav__link {
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-nav__link:hover { background: var(--off-white); color: var(--blue); }
.mobile-nav__cta { margin-top: 16px; text-align: center; }

/* ========== 3. HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero__content { color: var(--white); }
.hero__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.hero__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--green);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

/* Hero Form */
.hero__form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero__form {
  padding: 28px 24px;
}
.hero__form-header {
  text-align: center;
  margin-bottom: 24px;
}
.hero__form-header h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.hero__form-step {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.hero__form-progress {
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.hero__form-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.form-step { display: none; }
.form-step.active { display: block; }
.hero__form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}
.hero__form label:first-child { margin-top: 0; }
.hero__form input[type="text"],
.hero__form input[type="email"],
.hero__form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}
.hero__form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}
.hero__form .btn { margin-top: 20px; font-size: 1.05rem; padding: 16px; }
.form-back {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 0.9rem;
  cursor: pointer;
}
.form-back:hover { color: var(--blue); }
.hero__form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 16px;
}
.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success h3 {
  font-size: 1.3rem;
  margin: 16px 0 8px;
  color: var(--navy);
}
.form-success p { color: var(--gray-500); }

/* ========== 4. TRUST BAR ========== */
.trust-bar {
  background: var(--off-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar__label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-weight: 600;
}
.trust-bar__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========== 5. HOW IT WORKS ========== */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.step {
  text-align: center;
  max-width: 340px;
  position: relative;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step__icon {
  margin-bottom: 12px;
  color: var(--navy);
}
.step__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step__text {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.step__text a { color: var(--blue); font-weight: 600; }
.step__arrow { display: none; }

/* ========== 6. SITUATIONS ========== */
.situations {
  padding: 80px 0;
  background: var(--off-white);
}
.situations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.situation-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.situation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.situation-card__icon {
  margin-bottom: 14px;
  color: var(--blue);
}
.situation-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.situation-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ========== 7. COMPARISON TABLE ========== */
.comparison {
  padding: 80px 0;
  background: var(--white);
}
.comparison__table {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.comparison__col {
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison__col--traditional {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.comparison__col--us {
  background: var(--white);
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
}
.comparison__col-title {
  padding: 20px 24px;
  font-size: 1.2rem;
  text-align: center;
}
.comparison__col--traditional .comparison__col-title {
  background: var(--gray-200);
  color: var(--gray-700);
}
.comparison__col--us .comparison__col-title {
  background: var(--blue);
  color: var(--white);
}
.comparison__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
}
.comparison__x {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFEBEE;
  color: #E53935;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2px;
}
.comparison__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E8F1EC;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}
.comparison__row strong { color: var(--navy); }
.comparison__row div { line-height: 1.5; }
.comparison__row br + text { color: var(--gray-500); font-size: 0.88rem; }

/* ========== 8. ABOUT ========== */
.about {
  padding: 80px 0;
  background: var(--off-white);
}
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.about__image { flex-shrink: 0; }
.about__photo-placeholder {
  width: 240px;
  height: 280px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.85rem;
  border: 2px dashed var(--gray-300);
}
.about__content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.about__stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
}

/* ========== 9. TESTIMONIALS ========== */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.testimonial-card__author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}
.testimonial-card__author span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ========== 10. FAQ ========== */
.faq {
  padding: 80px 0;
  background: var(--off-white);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover { border-color: var(--blue); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--blue); }
.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.active .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.active .faq__answer {
  max-height: 300px;
}
.faq__answer p {
  padding: 0 24px 20px;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== 11. FINAL CTA ========== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.final-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ========== 12. FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand .footer__logo {
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.footer__brand .nav__logo-251 { color: var(--blue); }
.footer__brand .nav__logo-home { color: var(--white); }
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer__description { font-size: 0.9rem; line-height: 1.6; }
.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__links a,
.footer__contact a,
.footer__contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--blue); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ========== STICKY MOBILE CTA BAR ========== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  display: flex;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  z-index: 900;
  padding: 8px;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}
.mobile-cta-bar__btn--call {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.mobile-cta-bar__btn--offer {
  background: var(--green);
  color: var(--white);
}

/* ========================================
   TABLET BREAKPOINT (768px+)
   ======================================== */
@media (min-width: 768px) {
  .container { padding: 0 32px; }

  .situations__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; }

  .comparison__table { flex-direction: row; }
  .comparison__col { flex: 1; }

  .about__inner { flex-direction: row; text-align: left; }
  .about__stats { justify-content: flex-start; }

  .final-cta__buttons { flex-direction: row; justify-content: center; }

  .hero__inner { flex-direction: row; align-items: center; }
  .hero__content { flex: 1; }
  .hero__form-wrapper { flex: 0 0 420px; }
  .hero { padding: 60px 0 68px; }
}

/* ========================================
   DESKTOP BREAKPOINT (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }

  /* Nav */
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }

  /* Hero */
  .hero { padding: 80px 0 88px; }
  .hero__form-wrapper { flex: 0 0 450px; }
  .hero__form { padding: 32px; }

  /* Steps */
  .steps { flex-direction: row; gap: 0; }
  .step { flex: 1; }
  .step__arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin-top: -40px;
  }

  /* Situations */
  .situations__grid { grid-template-columns: repeat(4, 1fr); }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  /* Hide mobile CTA bar on desktop */
  .mobile-cta-bar { display: none; }

  /* Footer padding for no mobile CTA */
  .footer { padding-bottom: 0; }
}

/* ========================================
   LARGE DESKTOP (1280px+)
   ======================================== */
@media (min-width: 1280px) {
  .container { max-width: 1280px; }
  .hero__title { font-size: 3.2rem; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PRINT ---------- */
@media print {
  .announcement-bar, .nav, .mobile-cta-bar, .final-cta { display: none; }
  .hero { background: var(--white); color: var(--dark); }
  .hero__title { color: var(--navy); }
}
