@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&family=Quicksand:wght@400;500;600;700&display=swap');

/* ========================= VARIABLES ========================= */
:root {
  --rose: #e0537a;
  --rose-deep: #c23d63;
  --rose-deeper: #9c2f4e;
  --text-mid: #7a4256;
  --text-dim: #b87a90;
  --gold: #f0c68a;
  --gold-deep: #e0a95f;
  --panel: rgba(255, 250, 252, 0.55);
  --panel-solid: #fff8fa;
  --hairline: rgba(255, 207, 225, 0.7);
  --sh-sm: 0 2px 8px rgba(185, 58, 95, 0.08);
  --sh-md: 0 8px 24px rgba(185, 58, 95, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --sh-lg: 0 16px 40px rgba(185, 58, 95, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --sh-glow: 0 0 40px rgba(224, 83, 122, 0.15);
  --r-sm: 12px; --r-md: 18px; --r-lg: 24px; --r-xl: 32px;
}

/* ========================= RESET ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100%;
  font-family: 'Quicksand', sans-serif;
  color: var(--text-mid);
  overflow-x: hidden;
  background: linear-gradient(165deg, #fff5f8 0%, #ffe3ee 30%, #f6d4e4 60%, #f0c8dc 100%);
  background-attachment: fixed;
}
a { color: var(--rose-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rose-deeper); }
img { max-width: 100%; display: block; }
::selection { background: rgba(224, 83, 122, 0.2); color: var(--rose-deeper); }

/* ========================= GRAIN OVERLAY ========================= */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}

/* ========================= FLOATING PARTICLES ========================= */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  width: var(--size, 6px); height: var(--size, 6px);
  border-radius: 50%;
  background: var(--color, rgba(224, 83, 122, 0.15));
  animation: particleFloat var(--dur, 18s) var(--delay, 0s) ease-in-out infinite;
  will-change: transform;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(var(--ty, -40vh)) translateX(var(--tx, 20px)) scale(1.2); opacity: 0.7; }
  90% { opacity: 0; }
}

/* ========================= SCROLL ANIMATIONS ========================= */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ========================= NAVIGATION ========================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255, 250, 252, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.3s, background 0.3s, padding 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(185, 58, 95, 0.1);
  background: rgba(255, 250, 252, 0.9);
  padding: 12px 48px;
}
.nav-brand {
  font-family: 'Great Vibes', cursive; font-size: 28px;
  color: var(--rose-deeper); display: flex; align-items: center; gap: 10px;
  text-shadow: 0 1px 4px rgba(224, 83, 122, 0.15);
  text-decoration: none;
}
.nav-brand svg { width: 24px; height: 24px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-mid);
  position: relative; padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--rose); border-radius: 2px; transform: translateX(-50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: var(--rose-deep); }
.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff !important; padding: 11px 26px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(185, 58, 95, 0.3);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(185, 58, 95, 0.4);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--panel); border: 1px solid var(--hairline);
  align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--sh-sm); transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:active { transform: scale(0.92); }
.nav-toggle svg { width: 20px; height: 20px; color: var(--rose-deep); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(156, 47, 78, 0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 280px; max-width: 85vw;
  background: var(--panel-solid);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--hairline);
  box-shadow: -8px 0 30px rgba(156, 47, 78, 0.15);
  padding: 24px; padding-top: calc(24px + env(safe-area-inset-top));
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end; width: 36px; height: 36px; border-radius: 10px;
  background: none; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-bottom: 16px; color: var(--text-dim);
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.5); }
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  font-size: 15px; font-weight: 600; color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.5); color: var(--rose-deep); }
.mobile-nav a svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-nav-divider { height: 1px; background: var(--hairline); margin: 8px 0; }
.mobile-nav .mn-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff !important; text-align: center; justify-content: center;
  margin-top: 8px; padding: 14px;
  box-shadow: 0 4px 14px rgba(185, 58, 95, 0.3);
}

/* ========================= HERO ========================= */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 83, 122, 0.08), transparent 70%);
  animation: float 12s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 169, 95, 0.06), transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
}
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--hairline);
  border-radius: 999px; padding: 8px 20px;
  font-size: 12px; font-weight: 700; color: var(--rose-deep);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 32px;
  box-shadow: var(--sh-sm);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: var(--rose-deeper); line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(224, 83, 122, 0.18);
  animation: fadeUp 0.7s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--rose-deep); margin-bottom: 20px;
  animation: fadeUp 0.7s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-desc {
  font-size: 16px; color: var(--text-dim); max-width: 500px;
  line-height: 1.75; margin-bottom: 40px;
  animation: fadeUp 0.7s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ========================= BUTTONS ========================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff; padding: 15px 36px; border-radius: 999px;
  font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(185, 58, 95, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(185, 58, 95, 0.45);
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--rose-deep); padding: 15px 32px; border-radius: 999px;
  font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 700;
  border: 1.5px solid var(--hairline); cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--sh-sm);
}

/* ========================= HERO PHONE MOCKUP ========================= */
.hero-visual {
  margin-top: 64px; position: relative;
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-visual::before {
  content: ''; position: absolute; inset: -20px; border-radius: 48px;
  background: radial-gradient(ellipse, rgba(224, 83, 122, 0.1), transparent 70%);
  filter: blur(20px); z-index: -1;
}
.hero-phone {
  width: 290px;
  background: rgba(255, 250, 252, 0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--hairline);
  border-radius: 36px; padding: 14px;
  box-shadow: var(--sh-lg), var(--sh-glow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-phone:hover { transform: translateY(-6px) scale(1.01); }
.hero-phone-inner {
  background: linear-gradient(160deg, #ffd6e4 0%, #ffb8d0 50%, #f8a8c0 100%);
  border-radius: 24px; height: 500px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px; overflow: hidden;
  position: relative;
}
.hero-phone-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
  border-radius: 24px 24px 0 0; pointer-events: none;
}
.ph-emoji { font-size: 52px; margin-bottom: 16px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.ph-names {
  font-family: 'Great Vibes', cursive; font-size: 24px;
  color: var(--rose-deeper); margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ph-timer {
  font-family: 'Playfair Display', serif; font-size: 13px;
  color: var(--rose-deep); margin-bottom: 20px;
  background: rgba(255,255,255,0.4); padding: 6px 16px;
  border-radius: 999px;
}
.ph-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.ph-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px; padding: 14px 8px; text-align: center;
  transition: transform 0.2s;
}
.ph-card:hover { transform: translateY(-2px); }
.ph-card-num {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--rose-deeper);
}
.ph-card-lbl {
  font-size: 9px; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================= TRUST BAR ========================= */
.trust-bar {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding: 32px 24px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 250, 252, 0.3);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--text-mid);
}
.trust-item svg { width: 20px; height: 20px; color: var(--rose); flex-shrink: 0; }

/* ========================= SECTIONS ========================= */
.section {
  padding: 100px 24px;
  max-width: 1100px; margin: 0 auto;
}
.section-label {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 11px; font-weight: 700; color: var(--rose-deep);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.section-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--rose-deeper); text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 1px 6px rgba(224, 83, 122, 0.1);
}
.section-desc {
  text-align: center; font-size: 15px; color: var(--text-dim);
  max-width: 520px; margin: 0 auto 52px; line-height: 1.75;
}

/* ========================= FEATURES GRID ========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--panel);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px 20px; text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold-deep));
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(224, 83, 122, 0.3);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(185, 58, 95, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(185, 58, 95, 0.35);
}
.feature-icon svg { width: 26px; height: 26px; color: #fff; }
.feature-card h3 {
  font-size: 15px; font-weight: 700; color: var(--rose-deeper);
  margin-bottom: 8px; letter-spacing: 0.01em;
}
.feature-card p {
  font-size: 13px; color: var(--text-dim); line-height: 1.65;
}

/* ========================= HOW IT WORKS ========================= */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; max-width: 860px; margin: 0 auto;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 24px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hairline), var(--rose), var(--hairline), transparent);
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(185, 58, 95, 0.3);
  border: 3px solid rgba(255,255,255,0.8);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(185, 58, 95, 0.4);
}
.step h3 {
  font-size: 16px; font-weight: 700; color: var(--rose-deeper);
  margin-bottom: 8px;
}
.step p { font-size: 13.5px; color: var(--text-dim); line-height: 1.65; }

/* ========================= TESTIMONIALS ========================= */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.testimonial-card {
  background: var(--panel);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', serif; font-size: 48px;
  color: var(--rose); opacity: 0.2; line-height: 1;
}
.testimonial-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--rose-deeper); }
.testimonial-role { font-size: 11px; color: var(--text-dim); }

/* ========================= FAQ ========================= */
.faq-list {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--panel);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-size: 14px; font-weight: 700; color: var(--rose-deeper);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.3); }
.faq-question svg {
  width: 18px; height: 18px; color: var(--rose);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq-answer p {
  font-size: 13.5px; color: var(--text-mid); line-height: 1.7;
}

/* ========================= CTA SECTION ========================= */
.cta-section {
  text-align: center; padding: 80px 24px 100px; position: relative;
}
.cta-card {
  max-width: 620px; margin: 0 auto;
  background: var(--panel);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 56px 44px;
  box-shadow: var(--sh-lg), var(--sh-glow);
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -60%; left: -60%; width: 220%; height: 220%;
  background: linear-gradient(115deg, transparent 45%, rgba(255,255,255,0.2) 50%, transparent 55%);
  animation: sheen 8s ease-in-out infinite;
}
@keyframes sheen { 0% { transform: translateX(-40%) translateY(-40%); } 100% { transform: translateX(40%) translateY(40%); } }
.cta-card h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--rose-deeper); margin-bottom: 10px;
  position: relative;
}
.cta-card p {
  font-size: 15px; color: var(--text-dim); margin-bottom: 32px;
  line-height: 1.7; position: relative;
}
.cta-card .btn-primary { position: relative; }

/* ========================= FOOTER ========================= */
.footer {
  text-align: center; padding: 40px 24px;
  border-top: 1px solid var(--hairline);
  background: rgba(255, 250, 252, 0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.footer-brand {
  font-family: 'Great Vibes', cursive; font-size: 24px;
  color: var(--rose-deeper); margin-bottom: 6px;
}
.footer p { font-size: 12.5px; color: var(--text-dim); margin-bottom: 14px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a {
  font-size: 12.5px; color: var(--text-dim); font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose-deep); }

/* ========================= STICKY MOBILE CTA ========================= */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 250, 252, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--hairline);
  box-shadow: 0 -4px 16px rgba(185, 58, 95, 0.08);
}
.sticky-cta .btn-primary {
  width: 100%; justify-content: center; padding: 14px;
  font-size: 14px;
}

/* ========================= LEGAL PAGES ========================= */
.legal {
  max-width: 720px; margin: 0 auto;
  padding: 140px 24px 80px;
}
.legal h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--rose-deeper); text-align: center;
  margin-bottom: 6px;
  text-shadow: 0 1px 6px rgba(224, 83, 122, 0.1);
}
.legal .legal-date {
  text-align: center; font-size: 13px; color: var(--text-dim);
  margin-bottom: 44px; font-weight: 600;
}
.legal h2 {
  font-size: 17px; font-weight: 700; color: var(--rose-deeper);
  margin: 36px 0 14px; padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.legal p, .legal li {
  font-size: 14.5px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px;
}
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal li::marker { color: var(--rose); }
.legal a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--rose-deeper); }
.legal strong { color: var(--rose-deeper); font-weight: 700; }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps { gap: 24px; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-phone { width: 250px; }
  .hero-phone-inner { height: 420px; padding: 24px; }
  .section { padding: 70px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 22px 16px; }
  .feature-icon { width: 48px; height: 48px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .steps { grid-template-columns: 1fr; gap: 32px; max-width: 360px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cta-card { padding: 40px 28px; }
  .legal { padding: 120px 20px 60px; }
  .trust-bar { gap: 20px; padding: 24px 16px; }
  .trust-item { font-size: 12px; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: calc(24px + 60px + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; max-width: 300px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-badge { font-size: 11px; padding: 7px 16px; }
  .footer-links { gap: 16px; }
  .trust-bar { flex-direction: column; align-items: center; gap: 14px; }
}

/* ========================= STATS COUNTER ========================= */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 800px; margin: 0 auto;
  background: var(--panel);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.stat-item {
  text-align: center; padding: 32px 16px;
  border-right: 1px solid var(--hairline);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.3); }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700; color: var(--rose-deeper); line-height: 1;
  margin-bottom: 6px;
}
.stat-num .stat-suffix { font-size: 0.6em; color: var(--rose); }
.stat-label {
  font-size: 11px; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ========================= FEATURED IN BAR ========================= */
.featured-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 40px 24px;
  opacity: 0.5;
}
.featured-label {
  font-size: 11px; font-weight: 700; color: var(--text-dim);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.featured-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.featured-logo {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 600; color: var(--text-dim); letter-spacing: 0.05em;
  opacity: 0.6; transition: opacity 0.3s;
}
.featured-logo:hover { opacity: 1; }

/* ========================= SCROLL TO TOP ========================= */
.scroll-top {
  position: fixed; bottom: 80px; right: 20px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--panel);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  box-shadow: var(--sh-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: rgba(255,255,255,0.9); }
.scroll-top:active { transform: scale(0.9); }
.scroll-top svg { width: 18px; height: 18px; color: var(--rose-deep); }

/* ========================= CURSOR GLOW ========================= */
.cursor-glow {
  position: fixed; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 83, 122, 0.06), transparent 70%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.8s ease-out, top 0.8s ease-out;
  will-change: left, top;
}

/* ========================= SECTION DIVIDERS ========================= */
.section-divider {
  width: 100%; height: 1px; max-width: 200px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: 0.4;
}

/* ========================= TESTIMONIAL STARS ========================= */
.testimonial-stars {
  display: flex; gap: 2px; margin-bottom: 12px;
}
.testimonial-stars svg { width: 14px; height: 14px; color: var(--gold-deep); fill: var(--gold-deep); }

/* ========================= CTA URGENT BADGE ========================= */
.cta-urgent {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(224, 83, 122, 0.1);
  border: 1px solid rgba(224, 83, 122, 0.2);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--rose-deep);
  margin-bottom: 20px; position: relative;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(224,83,122,0.15); } 50% { box-shadow: 0 0 0 8px rgba(224,83,122,0); } }
.cta-urgent-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose); animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ========================= RESPONSIVE ADDITIONS ========================= */
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 12px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .featured-bar { gap: 24px; padding: 28px 16px; }
  .featured-logos { gap: 24px; }
  .featured-logo { font-size: 15px; }
  .scroll-top { bottom: 90px; right: 16px; }
}

@media (max-width: 480px) {
  .stats-bar { border-radius: var(--r-lg); }
  .stat-num { font-size: 1.4rem; }
}

/* ========================= REDUCED MOTION ========================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
