:root {
  --ivory: #f9f6f1;
  --ivory-2: #f2ede4;
  --ink: #201b17;
  --muted: #6f6255;
  --gold: #d4af37;
  --gold-soft: #c8a96b;
  --night: #120f0c;
  --night-2: #1a1511;
  --line: rgba(212, 175, 55, 0.18);
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;
  --shadow-lux: 0 28px 80px rgba(32, 27, 23, 0.12);
}

/* ===== NAVBAR ===== */
.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  height: 96px;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  background: transparent;
}

.sp-nav-scrolled {
  background: rgba(249, 246, 241, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.sp-nav-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 768px) {
  .sp-nav-container { padding-inline: 32px; }
}
@media (min-width: 1024px) {
  .sp-nav-container { padding-inline: 48px; }
}

/* Logo */
.sp-nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}

.sp-logo-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-logo-ring {
  position: absolute;
  border-radius: 50%;
}

.sp-logo-ring-outer {
  inset: 0;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  animation: sp-spin 30s linear infinite;
}

.sp-logo-ring-inner {
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  animation: sp-spin-reverse 25s linear infinite;
}

.sp-logo-letter {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: #2C2C2C;
  transition: transform 0.5s ease;
}

.sp-nav-logo:hover .sp-logo-letter {
  transform: scale(1.05);
}

.sp-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-logo-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.sp-logo-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2C2C2C;
  line-height: 1;
}

/* Nav links */
.sp-nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1180px) {
  .sp-nav-links { display: flex; }
}

.sp-nav-links > a:not(.sp-nav-cta) {
  position: relative;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2C2C2C;
  padding: 8px 0;
  transition: color 0.4s ease;
}

.sp-nav-links > a:not(.sp-nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: width 0.4s ease;
}

.sp-nav-links > a:not(.sp-nav-cta):hover {
  color: var(--gold-soft);
}

.sp-nav-links > a:not(.sp-nav-cta):hover::after {
  width: 100%;
}

/* CTA Button */
.sp-nav-cta {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4AF37, #C8A96B);
  color: white;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(200, 169, 107, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(200, 169, 107, 0.4);
}

/* Hamburger */
.sp-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1180px) {
  .sp-nav-toggle { display: none; }
}

.sp-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C2C2C;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sp-nav-toggle-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.sp-nav-toggle-active span:nth-child(2) {
  opacity: 0;
}

.sp-nav-toggle-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.sp-mobile-menu {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  overflow-y: auto;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(249, 246, 241, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  height: 0;
  transition: opacity 0.4s ease, height 0.4s ease;
  pointer-events: none;
}

@media (min-width: 1180px) {
  .sp-mobile-menu { display: none; }
}

.sp-mobile-menu-open {
  opacity: 1;
  height: 100vh;
  pointer-events: all;
}

.sp-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  text-align: center;
}

.sp-mobile-menu-inner > a:not(.sp-mobile-cta) {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2C2C2C;
  padding: 8px 0;
  transition: color 0.4s ease;
}

.sp-mobile-menu-inner > a:not(.sp-mobile-cta):hover {
  color: var(--gold-soft);
}

.sp-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 16px 32px;
  width: 100%;
  max-width: 280px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4AF37, #C8A96B);
  color: white;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(200, 169, 107, 0.3);
}

@keyframes sp-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sp-spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ===== END NAVBAR ===== */

*  {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, 1380px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 980px);
}

.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.ivory {
  background:
    radial-gradient(circle at 80% 18%, rgba(212, 175, 55, 0.08), transparent 34%),
    var(--ivory);
}

.section-dark,
.stats-section,
.timeline-section {
  background: var(--night);
  color: #fff8e8;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #a68a55;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin: 0 0 40px;
  color: #fff8e8;
  font-size: clamp(3.25rem, 7vw, 7.6rem);
  line-height: 0.92;
}

.hero h1 {
  max-width: 860px;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.75rem;
}

em {
  color: var(--gold);
  font-style: italic;
}

.section-heading {
  margin-bottom: 72px;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(120px, 14vh, 180px) 0;
  background: var(--ivory);
  overflow: hidden;
}

.media-stack,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.media-stack {
  overflow: hidden;
  background: #f4eadb;
}

.media-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(1.05) contrast(1.02) brightness(1.1);
  transform: scale(1.08);
  animation: cinematicSwap 28s infinite both;
}

.media-two {
  animation-delay: 7s;
}

.media-three {
  animation-delay: 14s;
}

.media-four {
  animation-delay: 21s;
}

.hero-media-stack {
  opacity: 1;
}

.hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.04) contrast(1.03) brightness(1.04);
  transform-origin: center center;
  animation: kenBurns 20s ease-in-out infinite;
  will-change: transform;
}

.final-media-stack {
  opacity: 0.86;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.72), rgba(18, 15, 12, 0.44) 45%, rgba(18, 15, 12, 0.16)),
    radial-gradient(circle at 74% 28%, rgba(212, 175, 55, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.16), rgba(18, 15, 12, 0.18) 72%, rgba(18, 15, 12, 0.34));
}

.kundli-hero-one {
  object-position: center 42%;
}

.kundli-hero-two,
.kundli-hero-three {
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) 360px;
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.hero-subtitle {
  max-width: 610px;
  margin: 0 0 56px;
  color: rgba(255, 248, 232, 0.72);
  font-size: 1.08rem;
  line-height: 1.9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.cta-row.center {
  justify-content: center;
}

.btn {
  min-height: 60px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 32px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: white;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 248, 232, 0.22);
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.btn-ghost.dark {
  border-color: rgba(32, 27, 23, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 34px;
  background: rgba(255, 248, 232, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.hero-panel strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.85;
}

.panel-kicker,
.hero-panel p {
  color: rgba(255, 248, 232, 0.72);
}

.particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle-field i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.8);
  opacity: 0.45;
  animation: floatParticle 8s ease-in-out infinite;
}

.particle-field i:nth-child(1) { left: 8%; top: 70%; animation-delay: 0s; }
.particle-field i:nth-child(2) { left: 18%; top: 24%; animation-delay: 1.4s; }
.particle-field i:nth-child(3) { left: 28%; top: 84%; animation-delay: 2.2s; }
.particle-field i:nth-child(4) { left: 44%; top: 18%; animation-delay: 0.8s; }
.particle-field i:nth-child(5) { left: 58%; top: 76%; animation-delay: 3s; }
.particle-field i:nth-child(6) { left: 70%; top: 26%; animation-delay: 1.8s; }
.particle-field i:nth-child(7) { left: 84%; top: 54%; animation-delay: 2.7s; }
.particle-field i:nth-child(8) { left: 92%; top: 82%; animation-delay: 0.4s; }
.particle-field i:nth-child(9) { left: 12%; top: 48%; animation-delay: 3.4s; }
.particle-field i:nth-child(10) { left: 76%; top: 12%; animation-delay: 4s; }

.reveal {
  animation: revealUp 0.9s ease both;
}

.delay-1 {
  animation-delay: 0.18s;
}

.reveal-card-grid,
.problem-grid,
.stats-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

.reveal-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reveal-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(32, 27, 23, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 0.4s ease, border 0.4s ease, box-shadow 0.4s ease;
}

.reveal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-lux);
}

.reveal-card p,
.feature-copy p,
.timeline p,
.review-grid p,
.faq-list p,
.final-card p {
  color: var(--muted);
  line-height: 1.85;
}

.custom-icon {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.62));
}

.custom-icon::before,
.custom-icon::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.career-icon::before { width: 26px; height: 20px; border: 2px solid var(--gold); border-radius: 7px; }
.career-icon::after { width: 12px; height: 2px; background: var(--gold); top: 29px; }
.marriage-icon::before { width: 24px; height: 24px; border: 2px solid var(--gold); transform: rotate(45deg); border-radius: 8px 8px 2px 8px; }
.health-icon::before { width: 30px; height: 8px; background: var(--gold); border-radius: 6px; }
.health-icon::after { width: 8px; height: 30px; background: var(--gold); border-radius: 6px; }
.finance-icon::before { width: 28px; height: 28px; border: 2px solid var(--gold); }
.finance-icon::after { width: 16px; height: 16px; border: 2px solid var(--gold-soft); transform: translate(9px, -8px); }

.feature {
  padding: 130px 0;
  overflow: hidden;
}

.split-feature {
  background: white;
}

.dark-feature {
  background: var(--night);
  color: #fff8e8;
}

.wealth-section {
  background:
    radial-gradient(circle at 82% 40%, rgba(212, 175, 55, 0.16), transparent 32%),
    var(--ivory);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.reverse .split-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow-lux);
}

.dark-feature .feature-image {
  border-color: rgba(212, 175, 55, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-image:hover img {
  transform: scale(1.06);
}

.feature-copy {
  max-width: 620px;
}

.dark-feature .feature-copy p,
.dark-feature .lux-list li {
  color: rgba(255, 248, 232, 0.7);
}

.feature-copy p {
  font-size: 1rem;
}

.lux-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lux-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
}

.lux-list.light li {
  background: rgba(255, 255, 255, 0.045);
}

.lux-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
}

.wealth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.wealth-points span {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  padding: 13px 18px;
  color: #a68a55;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.62));
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.65rem;
  transition: transform 0.35s ease, border 0.35s ease;
}

.problem-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.42);
}

.timeline-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1), transparent 30%),
    var(--night);
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(255, 248, 232, 0.08);
  border-radius: 28px;
  background: rgba(255, 248, 232, 0.035);
  backdrop-filter: blur(14px);
}

.timeline span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  color: var(--gold);
  background: var(--night);
  font-family: var(--serif);
  font-size: 2rem;
}

.timeline h3 {
  color: #fff8e8;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 248, 232, 0.62);
}

.stats-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 34%),
    var(--night-2);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
  padding: 42px 24px;
  border: 1px solid rgba(255, 248, 232, 0.08);
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 248, 232, 0.035);
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.9;
}

.stats-grid span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 248, 232, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-section,
.faq-section {
  background: var(--ivory);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(32, 27, 23, 0.055);
}

.review-grid p {
  margin-top: 0;
  font-style: italic;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid strong {
  color: var(--ink);
}

.review-grid span {
  margin-top: 4px;
  color: #a68a55;
  font-size: 0.86rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: #a68a55;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 28px 26px;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--night);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(212, 175, 55, 0.24), transparent 28%),
    linear-gradient(115deg, rgba(18, 15, 12, 0.58), rgba(92, 65, 34, 0.2), rgba(18, 15, 12, 0.5));
  pointer-events: none;
}

.final-card {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  padding: clamp(42px, 7vw, 86px);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 42px;
  text-align: center;
  background: rgba(255, 248, 232, 0.14);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.final-card h2 {
  color: #fff8e8;
}

.final-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 36px;
  color: rgba(255, 248, 232, 0.7);
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@keyframes kenBurns {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(-0.6%, -0.4%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

@keyframes cinematicSwap {
  0% {
    opacity: 0;
    transform: scale(1.12) translate3d(0, 0, 0);
    filter: blur(6px) saturate(1) contrast(1.04) brightness(1.08);
  }
  7% {
    opacity: 1;
    filter: blur(0) saturate(1.12) contrast(1.04) brightness(1.14);
  }
  30% {
    opacity: 1;
    transform: scale(1.02) translate3d(-1.4%, -1%, 0);
  }
  37% {
    opacity: 0;
    filter: blur(6px) saturate(1) contrast(1.04) brightness(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.12) translate3d(1.2%, 1%, 0);
  }
}

@keyframes floatParticle {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.22; }
  50% { transform: translate3d(18px, -52px, 0); opacity: 0.75; }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding: clamp(110px, 12vh, 160px) 0;
  }

  .hero-grid,
  .split-grid,
  .reverse .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .problem-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1380px);
  }

  .section,
  .feature,
  .final-cta {
    padding: 84px 0;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-main-image {
    object-position: 75% 38%;
  }

  .hero-grid {
    gap: 42px;
  }

  .cta-row,
  .cta-row.center {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .reveal-card-grid,
  .problem-grid,
  .stats-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 360px;
    border-radius: 30px;
  }

  .split-grid {
    gap: 42px;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .final-card {
    border-radius: 30px;
  }
}

/* ─── SCROLL REVEAL EFFECTS ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(4px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.scroll-reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(4px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.scroll-reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

