/* ============================================
   Midvalley Insurance Giveaway Funnel
   White background, blue accents, clean modern
   Fonts: Montserrat (headings) + Inter (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* --- Design Tokens --- */
:root {
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
  --brand-200: #bfdbfe;
  --brand-300: #93c5fd;
  --brand-400: #60a5fa;
  --brand-500: #2563eb;
  --brand-600: #1d4ed8;
  --brand-700: #1e40af;
  --brand-800: #1e3a8a;
  --brand-900: #172554;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-500: #ef4444;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }

/* --- Funnel Shell --- */
.funnel-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
}
/* Subtle mountain/brand background texture */
.funnel-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(37,99,235,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(37,99,235,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.03) 0%, transparent 70%);
}
.funnel-page::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45vh;
  pointer-events: none;
  z-index: 0;
  /* Desktop: wide gentle mountains */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'%3E%3Cpolygon points='0,400 180,180 360,300 540,120 720,250 900,80 1080,220 1260,150 1440,280 1440,400' fill='%232563eb' opacity='0.045'/%3E%3Cpolygon points='0,400 120,250 300,320 480,200 660,300 840,160 1020,280 1200,200 1380,300 1440,260 1440,400' fill='%232563eb' opacity='0.03'/%3E%3Cpolygon points='0,400 200,300 400,350 600,260 800,340 1000,240 1200,320 1400,280 1440,300 1440,400' fill='%232563eb' opacity='0.02'/%3E%3C/svg%3E") no-repeat bottom center / 100% auto;
}
/* Mobile: realistic mountain silhouettes with curved ridgelines */
@media (max-width: 640px) {
  .funnel-page::before {
    background:
      radial-gradient(ellipse at 80% 10%, rgba(37,99,235,0.1) 0%, transparent 55%),
      radial-gradient(ellipse at 15% 75%, rgba(37,99,235,0.09) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 45%, rgba(37,99,235,0.05) 0%, transparent 65%);
  }
  .funnel-page::after {
    height: 55vh;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300' preserveAspectRatio='none'%3E%3Cpath d='M0,300 L0,180 C40,175 70,140 120,125 C160,112 190,130 230,118 C270,106 300,85 350,95 C400,105 420,80 470,70 C520,60 550,90 600,85 C650,80 690,100 730,95 C770,90 800,110 800,110 L800,300 Z' fill='%232563eb' opacity='0.08'/%3E%3Cpath d='M0,300 L0,220 C60,210 100,190 160,195 C220,200 260,175 320,180 C380,185 410,165 470,160 C530,155 570,175 630,170 C690,165 740,185 800,178 L800,300 Z' fill='%232563eb' opacity='0.05'/%3E%3C/svg%3E") no-repeat bottom center / 100% auto;
  }
}
/* Ensure all content sits above the bg */
.funnel-page > * {
  position: relative;
  z-index: 1;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--brand-500);
  padding: 18px 24px;
  text-align: center;
}
.top-bar__logo {
  height: 48px;
  width: auto;
  display: inline-block;
}

/* ==============================
   LANDING PAGE
   ============================== */

.landing {
  flex: 1;
  padding: 40px 0 48px;
  text-align: center;
}

/* Utah Residents Badge */
.landing__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  border: 1.5px solid var(--brand-400);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

/* Headline */
.landing__headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--gray-900);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 14px;
}
.landing__subtext {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--gray-500);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* Hero Image — padded, rounded, clickable */
.landing__hero {
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  margin-bottom: 40px;
}
.landing__hero:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.landing__hero-img {
  width: 100%;
  display: block;
}

/* Checklist */
.checklist {
  margin-bottom: 36px;
}
.checklist__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
  text-align: center;
}
.checklist__list {
  list-style: none;
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.55;
  text-align: left;
}
.checklist__item + .checklist__item {
  border-top: 1px solid var(--gray-100);
}
.checklist__check {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Landing CTA */
.landing__cta {
  display: flex;
  max-width: 420px;
  margin: 0 auto 16px;
}
.landing__fine-print {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.landing__fine-print a {
  text-decoration: underline;
  color: var(--gray-500);
}

/* ==============================
   MODAL (Entry Form Popup)
   ============================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-slow);
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal__header-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}
.modal__close:hover {
  background: var(--gray-200);
  color: var(--gray-700);
}
.modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 6px;
}
.modal__subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}
.modal__fine-print {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* ==============================
   FORMS
   ============================== */

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-input:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-input::placeholder { color: var(--gray-400); }
.form-input--error { border-color: var(--red-500) !important; }
.form-error {
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 6px;
  display: none;
}
.form-error.visible { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Radio Cards */
.radio-group { margin-bottom: 20px; }
.radio-group__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-card { cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.radio-card__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.radio-card input:checked ~ .radio-card__inner {
  border-color: var(--brand-500);
  background: var(--brand-50);
  color: var(--brand-700);
}
.radio-card input:checked ~ .radio-card__inner .radio-card__dot {
  border-color: var(--brand-500);
  background: var(--brand-500);
  box-shadow: inset 0 0 0 3px var(--white);
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  cursor: pointer;
}
.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-500);
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
  width: 100%;
  text-decoration: none;
}
.btn--primary {
  background: var(--brand-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn--primary:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--brand-300);
  color: var(--brand-600);
  background: var(--brand-50);
}
.btn--sm { font-size: 0.9rem; padding: 12px 24px; }
.btn--lg { font-size: 1.1rem; padding: 18px 36px; }

.btn--pulse { animation: btnPulse 2.5s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 4px 28px rgba(37, 99, 235, 0.5), 0 0 48px rgba(37, 99, 235, 0.1); }
}

/* ==============================
   OTHER PAGES (bonus, quote, confirmation)
   ============================== */

/* Progress Bar */
.progress-wrapper {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.progress-pct {
  background: var(--brand-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  min-width: 40px;
  text-align: center;
}
.progress-track {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}
.progress-next {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.progress-next:hover { background: var(--brand-600); transform: scale(1.05); }
.progress-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 24px;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px 28px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.card--elevated { box-shadow: var(--shadow-xl); border-color: var(--brand-200); }
.card--glow { border-color: var(--brand-200); box-shadow: var(--shadow-lg), 0 0 40px rgba(37,99,235,0.06); }
.card__header-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.card__subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Content Section */
.content-section {
  padding: 48px 0 56px;
  flex: 1;
  background: var(--white);
}

/* Trust Badges */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ==============================
   BONUS PAGE
   ============================== */

.bonus-page {
  flex: 1;
  padding: 48px 0;
  text-align: center;
}
.bonus-check {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(34,197,94,0.25);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.bonus-page__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bonus-page__confirm {
  font-size: clamp(0.93rem, 2.5vw, 1.05rem);
  color: var(--gray-500);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}
.bonus-page__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  border-radius: 2px;
  margin: 32px auto;
}
.bonus-page__pitch {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.25;
}
.bonus-page__copy {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.bonus-page__copy strong { color: var(--gray-800); }
.bonus-page__cta {
  max-width: 420px;
  margin: 32px auto 16px;
}
.bonus-page__phone {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.bonus-page__phone a {
  color: var(--brand-500);
  font-weight: 600;
  text-decoration: underline;
}
.bonus-skip {
  color: var(--gray-400);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.bonus-skip:hover { color: var(--gray-600); }

@media (max-width: 640px) {
  .bonus-page { padding: 36px 0; }
  .bonus-check { width: 52px; height: 52px; margin-bottom: 20px; }
  .bonus-check svg { width: 26px; height: 26px; }
  .bonus-page__divider { margin: 24px auto; }
  .bonus-page__cta { max-width: 100%; }
}
@media (min-width: 769px) {
  .bonus-page .container { max-width: 640px; }
}

/* Survey / Quote Steps */
.survey-step { display: none; }
.survey-step.active { display: block; animation: fadeIn 0.4s ease; }
.survey-option {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition-fast);
  margin-bottom: 10px;
  cursor: pointer;
}
.survey-option:hover { border-color: var(--brand-400); background: var(--brand-50); color: var(--brand-700); }
.survey-option.selected { border-color: var(--brand-500); background: var(--brand-50); color: var(--brand-700); box-shadow: 0 0 0 1px var(--brand-500); }
.survey-nav { display: flex; gap: 12px; margin-top: 20px; }

/* Confirmation */
.confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 8px 24px rgba(34,197,94,0.2);
}
.confirmation-icon svg { width: 40px; height: 40px; }
.confirmation-details {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}
.confirmation-details dt {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
}
.confirmation-details dt:first-child { margin-top: 0; }
.confirmation-details dd {
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 600;
  margin-top: 2px;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 16px 0;
}
.social-proof__avatars { display: flex; }
.social-proof__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--white);
}
.social-proof__avatar:first-child { margin-left: 0; }

/* Share */
.share-section {
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 8px;
}
.share-section p { color: var(--gray-600); }
.share-section .share-title { font-weight: 700; color: var(--gray-900); margin-bottom: 8px; font-size: 1rem; }
.share-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.share-buttons .btn { width: auto; flex: none; padding: 10px 24px; font-size: 0.85rem; }

/* Divider */
.divider { height: 1px; background: var(--gray-200); margin: 32px 0; }

/* Footer */
.funnel-footer {
  margin-top: auto;
  background: var(--gray-50);
  color: var(--gray-500);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.78rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}
.funnel-footer a { color: var(--gray-600); text-decoration: underline; text-underline-offset: 2px; }
.funnel-footer a:hover { color: var(--brand-500); }
.page-light .funnel-footer { background: var(--brand-600); color: rgba(255,255,255,0.7); border-top: none; }
.page-light .funnel-footer a { color: rgba(255,255,255,0.85); }

/* ==============================
   ANIMATIONS
   ============================== */

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.animate-in { animation: fadeInUp 0.5s ease both; }
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }

/* ==============================
   RESPONSIVE
   ============================== */

/* Desktop: wider container, better proportions */
@media (min-width: 769px) {
  .landing .container {
    max-width: 720px;
  }
  .landing { padding: 56px 0 64px; }
  .top-bar { padding: 20px 32px; }
  .top-bar__logo { height: 56px; }
  .landing__badge { margin-bottom: 24px; }
  .landing__headline { margin-bottom: 16px; }
  .landing__subtext { margin-bottom: 40px; }
  .landing__hero { margin-bottom: 48px; border-radius: var(--radius-xl); }
  .checklist { margin-bottom: 44px; }
  .checklist__list { max-width: 540px; }
  .landing__cta { max-width: 440px; }
  .modal { max-width: 500px; padding: 40px 36px 32px; }
}

/* Tablet */
@media (max-width: 768px) and (min-width: 641px) {
  .landing .container { max-width: 600px; }
  .top-bar__logo { height: 48px; }
}

/* Mobile */
@media (max-width: 640px) {
  .landing { padding: 28px 0 36px; }
  .landing__badge { margin-bottom: 16px; font-size: 0.72rem; padding: 7px 14px; }
  .landing__headline { margin-bottom: 10px; }
  .landing__subtext { margin-bottom: 24px; }
  .landing__hero { border-radius: var(--radius-md); margin-bottom: 32px; }
  .card { padding: 24px 20px; }
  .btn--lg { font-size: 1rem; padding: 16px 28px; }
  .bonus-header { padding: 32px 16px; }
  .progress-wrapper { padding: 12px 14px; }
  .top-bar__logo { height: 40px; }
  .modal { padding: 28px 20px 20px; margin: 12px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .checklist__item { font-size: 0.93rem; }
}
