/* =============================================
   NOVIA LANDING PAGE — Custom Styles
   Colors: #D4197F (hot pink) → #4A1472 (purple)
   ============================================= */

:root {
  --pink:        #D4197F;
  --pink-light:  #E91E8C;
  --purple:      #4A1472;
  --purple-dark: #3A0F5A;
  --gradient:    linear-gradient(135deg, #D4197F 0%, #7B2D8B 50%, #4A1472 100%);
  --gradient-h:  linear-gradient(90deg,  #D4197F 0%, #4A1472 100%);
  --bg-light:    #F9F6FB;
  --text-dark:   #1A1A2E;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;
  --radius-lg:   1.25rem;
  --shadow-sm:   0 2px 8px rgba(74,20,114,.08);
  --shadow-md:   0 8px 32px rgba(74,20,114,.14);
  --shadow-lg:   0 20px 60px rgba(74,20,114,.20);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: var(--gradient-h);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(212,25,127,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,25,127,.45);
  opacity: .95;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 3rem;
  border: 2px solid var(--purple);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.btn-secondary:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(74,20,114,.06);
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(74,20,114,.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 2.5rem;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,255,255,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative blobs */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #A8EDCB;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-hero-primary {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.btn-hero-primary:hover {
  background: rgba(255,255,255,.93);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.btn-hero-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #fff;
  font-weight: 600;
  margin-left: -8px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #fff;
}

.hero-card-main {
  padding: 2rem;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: .9rem;
  opacity: .9;
}
.hero-card-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-stat-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-stat {
  flex: 1;
  background: rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .875rem;
  text-align: center;
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.hero-stat-label {
  font-size: .72rem;
  opacity: .75;
  margin-top: .25rem;
}

.hero-progress-item {
  margin-bottom: .875rem;
}
.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  opacity: .8;
  margin-bottom: .35rem;
}
.hero-progress-bar {
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: rgba(255,255,255,.7);
  transition: width 1.5s ease;
}

.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-mini-card {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .82rem;
}
.hero-mini-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.18);
  border-radius: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ─── Section Commons ─── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── Features ─── */
.features { background: var(--bg-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

/* 4-pillar 2×2 variant */
.features-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── Pillars (5-card grid) ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(74,20,114,.07);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Colored top accent bar */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pillar-pink::before   { background: linear-gradient(90deg, #D4197F, #E91E8C); }
.pillar-purple::before { background: linear-gradient(90deg, #7B2D8B, #4A1472); }
.pillar-teal::before   { background: linear-gradient(90deg, #0DB491, #0891B2); }
.pillar-amber::before  { background: linear-gradient(90deg, #D97706, #EA580C); }
.pillar-blue::before   { background: linear-gradient(90deg, #2563EB, #1D4ED8); }

.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.pillar-num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(74,20,114,.25);
}

.pillar-icon {
  width: 44px; height: 44px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.pillar-pink   .pillar-icon { background: rgba(212,25,127,.1); }
.pillar-purple .pillar-icon { background: rgba(74,20,114,.1); }
.pillar-teal   .pillar-icon { background: rgba(13,180,145,.1); }
.pillar-amber  .pillar-icon { background: rgba(217,119,6,.1); }
.pillar-blue   .pillar-icon { background: rgba(37,99,235,.1); }

.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .625rem;
  line-height: 1.3;
}

.pillar-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pillar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
}
.pillar-chips li {
  font-size: .72rem;
  font-weight: 600;
  padding: .28rem .7rem;
  border-radius: 2rem;
  border: 1px solid;
}
.pillar-pink   .pillar-chips li { color: #B01468; background: rgba(212,25,127,.07); border-color: rgba(212,25,127,.18); }
.pillar-purple .pillar-chips li { color: var(--purple); background: rgba(74,20,114,.07); border-color: rgba(74,20,114,.18); }
.pillar-teal   .pillar-chips li { color: #0A7A63; background: rgba(13,180,145,.08); border-color: rgba(13,180,145,.22); }
.pillar-amber  .pillar-chips li { color: #92400E; background: rgba(217,119,6,.08); border-color: rgba(217,119,6,.2); }
.pillar-blue   .pillar-chips li { color: #1E40AF; background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.2); }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,20,114,.06);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.icon-pink    { background: rgba(212,25,127,.1); }
.icon-purple  { background: rgba(74,20,114,.1); }
.icon-teal    { background: rgba(13,180,145,.1); }
.icon-orange  { background: rgba(234,88,12,.08); }
.icon-blue    { background: rgba(37,99,235,.08); }
.icon-amber   { background: rgba(217,119,6,.08); }

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .625rem;
  color: var(--text-dark);
}
.feature-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ─── Video Section ─── */
.video-section { background: var(--white); }

.video-wrapper {
  margin-top: 3rem;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--gradient);
}

.video-container video,
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.video-play-btn {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s, background .2s;
  margin-bottom: 1.5rem;
}
.video-play-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,.3);
}
.video-play-btn svg {
  width: 32px; height: 32px;
  fill: #fff;
  margin-left: 4px; /* optical center */
}
.video-placeholder-text {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: .9;
}
.video-placeholder-sub {
  font-size: .875rem;
  opacity: .65;
  margin-top: .35rem;
}

/* ─── How it Works ─── */
.how { background: var(--bg-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(212,25,127,.2), rgba(74,20,114,.2));
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--gradient-h);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(212,25,127,.3);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text-dark);
}
.step-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Stats ─── */
.stats-section {
  background: var(--gradient);
  padding: 5rem 2rem;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .9rem;
  opacity: .8;
}

/* ─── Testimonials ─── */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(74,20,114,.06);
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: #F59E0B;
  font-size: 1rem;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
}
.testimonial-role {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ─── CTA Section ─── */
.cta-section {
  background: var(--bg-light);
  padding: 6rem 2rem;
}
.cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-note {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 1;
}

/* ─── Footer ─── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .625rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--pink-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--pink); }

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
  /* Fallback: force visible after 1.2s in case JS observer misses */
  animation: reveal-fallback 0s 1.2s forwards;
}
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}
.reveal.visible {
  opacity: 1;
  transform: none;
  animation: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── Mobile Nav ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--pink); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid--2col { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid .pillar-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-connector { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; text-align: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .features-grid,
  .features-grid--2col,
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-grid .pillar-card:last-child { max-width: 100%; grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-card { padding: 3rem 1.5rem; }
  .section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }
}
