/* ================================================
   HINGE LIKER — Landing Page Styles
   ================================================ */

:root {
  --primary: #E84393;
  --primary-dark: #C0367A;
  --primary-light: #FD79A8;
  --accent: #6C5CE7;
  --accent-light: #A29BFE;
  --dark: #0A0A0F;
  --dark-card: #12121A;
  --dark-border: #1E1E2E;
  --gray-900: #111118;
  --gray-800: #1A1A25;
  --gray-700: #2D2D3F;
  --gray-600: #3D3D52;
  --gray-400: #8888A0;
  --gray-300: #ADADC0;
  --gray-200: #D0D0DD;
  --gray-100: #EBEBF0;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-text: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(232,67,147,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------
   Announcement Bar
   ------------------------------------------------ */
.announcement-bar {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ------------------------------------------------
   Navigation
   ------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  font-size: 18px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,67,147,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,67,147,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gray-200);
  border: 1.5px solid var(--gray-600);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--white);
  background: rgba(232,67,147,0.08);
}

/* ------------------------------------------------
   Hero Section
   ------------------------------------------------ */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,67,147,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,67,147,0.1);
  border: 1px solid rgba(232,67,147,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-sub em {
  color: var(--primary-light);
  font-style: normal;
  font-weight: 600;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-700);
}

/* Hero Form */
.input-group {
  display: flex;
  align-items: stretch;
  gap: 10px;
  background: var(--gray-800);
  border: 1.5px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 6px;
  transition: border-color var(--transition);
}

.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,67,147,0.1);
}

.input-group input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--white);
}

.input-group .btn {
  flex: 0 0 auto;
}

.input-group input::placeholder { color: var(--gray-600); }

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
}

.form-note strong { color: var(--primary-light); }

.form-terms {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray-400);
}

.form-terms a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}


.modal-terms {
  max-width: 620px;
}

.terms-body {
  margin: 14px 0 18px;
}

.terms-body p {
  margin: 0 0 10px;
  color: var(--gray-400);
  line-height: 1.6;
}

.terms-body p strong {
  color: var(--white);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 280px;
  height: 580px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 650px;
  background: radial-gradient(circle, rgba(232,67,147,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Floating notifications */
.floating-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  color: #1a1a1a;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  white-space: nowrap;
  animation: float-notif 3s ease-in-out infinite;
}

.notif-icon { font-size: 16px; }

.notif-1 {
  top: 60px;
  right: -40px;
  animation-delay: 0s;
}

.notif-2 {
  top: 200px;
  left: -60px;
  animation-delay: 1s;
}

.notif-3 {
  bottom: 120px;
  right: -30px;
  animation-delay: 2s;
}

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

/* ------------------------------------------------
   Social Proof Bar
   ------------------------------------------------ */
.social-proof-bar {
  padding: 40px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.proof-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-weight: 500;
}

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

.proof-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.proof-logo:hover { opacity: 0.8; }

/* ------------------------------------------------
   Sections
   ------------------------------------------------ */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--gray-900);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: rgba(108,92,231,0.1);
  border: 1px solid rgba(108,92,231,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto;
}

/* ------------------------------------------------
   How It Works (Steps)
   ------------------------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: rgba(232,67,147,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ------------------------------------------------
   Benefits Grid
   ------------------------------------------------ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: rgba(108,92,231,0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(108,92,231,0.1);
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ------------------------------------------------
   Testimonials
   ------------------------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card.featured {
  border-color: rgba(232,67,147,0.3);
  box-shadow: var(--shadow-glow);
}

.stars {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-200);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* Results showcase (3 images) */
.results-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}

.result-image { opacity: 0.7; transform: scale(0.9); }
.result-image-center { opacity: 1; transform: scale(1); }

.showcase-image {
  width: 220px;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* ------------------------------------------------
   Pricing
   ------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  justify-items: center;
}

.pricing-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

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

.pricing-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-amount {
  margin-bottom: 28px;
}

.price {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.period {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-200);
  border-bottom: 1px solid var(--dark-border);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.muted { color: var(--gray-600); }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--gray-300);
}

/* ------------------------------------------------
   FAQ
   ------------------------------------------------ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(232,67,147,0.3);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ------------------------------------------------
   Final CTA
   ------------------------------------------------ */
.section-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--dark);
  position: relative;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,67,147,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-cta p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.cta-form {
  max-width: 560px;
  margin: 0 auto 24px;
}

.input-group-lg {
  padding: 8px;
}

.input-group-lg input {
  padding: 16px 20px;
  font-size: 17px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 48px;
}

.waitlist-tiers {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tier {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-300);
}

.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tier-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a1a;
}

.tier-silver {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  color: #1a1a1a;
}

.tier-bronze {
  background: linear-gradient(135deg, #CD7F32, #A0522D);
  color: var(--white);
}

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--dark-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
}

/* ------------------------------------------------
   Modal
   ------------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.modal-icon { font-size: 56px; margin-bottom: 16px; }

.modal h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.modal p {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.modal-share {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.share-link {
  flex: 1;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gray-300);
  font-family: var(--font);
}

.modal-note {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

/* ------------------------------------------------
   Responsive
   ------------------------------------------------ */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  
  .steps-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-featured {
    transform: scale(1);
  }
  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .results-showcase {
    flex-direction: column;
    align-items: center;
  }
  .result-image, .result-image-center {
    transform: scale(1);
    opacity: 1;
  }

  .nav-links { display: none; }
  
  .floating-notif { display: none; }
  
  .cta-trust { flex-direction: column; gap: 12px; }
  .waitlist-tiers { flex-direction: column; align-items: center; }
}

@media (min-width: 768px) and (max-width: 992px) {
  .steps-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 60px; }
  
  .input-group {
    flex-direction: column;
    background: none;
    border: none;
    gap: 12px;
    padding: 0;
  }
  
  .input-group:focus-within {
    box-shadow: none;
  }
  
  .input-group input {
    background: var(--gray-800);
    border: 1.5px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 16px;
  }
  
  .input-group .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
  }
  
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .hero-image {
    width: 240px;
    height: 500px;
    border-radius: 24px;
  }
  
  .proof-logos { gap: 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

/* ------------------------------------------------
   Animations
   ------------------------------------------------ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fade-up 0.8s ease-out; }
.hero-visual { animation: fade-up 0.8s ease-out 0.2s both; }

/* Smooth reveal on scroll */
.step-card,
.benefit-card,
.testimonial-card,
.pricing-card,
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.6s ease-out forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.15s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(4) { animation-delay: 0.25s; }
.benefit-card:nth-child(5) { animation-delay: 0.3s; }
.benefit-card:nth-child(6) { animation-delay: 0.35s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }
.faq-item:nth-child(7) { animation-delay: 0.35s; }


/* Pricing: center the single featured card */
.pricing-grid {
  justify-content: center;
}
