/* ===== MeeSa Website – Revamped Styles ===== */

:root {
  --pink: #FF6B9D;
  --pink-light: #FF8DB5;
  --purple: #C084FC;
  --deep-purple: #7C3AED;
  --soft-pink: #FFF0F5;
  --soft-purple: #F5F0FF;
  --dark: #0F0F1A;
  --dark-2: #1A1A2E;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --gray-800: #262626;
  --gradient: linear-gradient(135deg, #FF6B9D 0%, #C084FC 50%, #7C3AED 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B9D 0%, #FF3D7F 50%, #E040A0 100%);
  --gradient-soft: linear-gradient(135deg, #FFF0F5 0%, #F5F0FF 50%, #EFF6FF 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,.4));
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 25px 80px rgba(0,0,0,.15);
  --shadow-glow: 0 8px 32px rgba(255,107,157,.25);
  --shadow-glow-lg: 0 16px 64px rgba(255,107,157,.3);
  --shadow-purple: 0 8px 32px rgba(124,58,237,.2);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --max-w: 1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-spring: .5s cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ───── Utilities ───── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ───── Animations ───── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .8s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ───── Ambient Background ───── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
  animation: drift 20s ease-in-out infinite alternate;
}
.p1 { width: 400px; height: 400px; background: var(--pink); top: -100px; right: -100px; animation-duration: 25s; }
.p2 { width: 300px; height: 300px; background: var(--purple); bottom: 20%; left: -80px; animation-delay: -5s; animation-duration: 22s; }
.p3 { width: 250px; height: 250px; background: #60A5FA; top: 40%; right: 10%; animation-delay: -10s; }
.p4 { width: 350px; height: 350px; background: var(--pink-light); bottom: -50px; right: 30%; animation-delay: -15s; animation-duration: 28s; }
.p5 { width: 200px; height: 200px; background: #34D399; top: 60%; left: 20%; animation-delay: -8s; animation-duration: 18s; }
.p6 { width: 280px; height: 280px; background: var(--deep-purple); top: 10%; left: 40%; animation-delay: -12s; animation-duration: 30s; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(.95); }
  100% { transform: translate(30px, -40px) scale(1.05); }
}

/* ───── Nav ───── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.03);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px;
  font-family: 'Outfit', sans-serif;
}
.nav-logo-img {
  width: 40px; height: 40px; border-radius: 12px; object-fit: cover;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  transition: var(--transition); position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--pink); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gradient); border-radius: 2px;
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 100px;
  background: var(--gradient); color: #fff !important;
  font-weight: 600; font-size: 13px;
  transition: var(--transition); box-shadow: var(--shadow-glow);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-lg); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; }
.mobile-toggle span { height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }

/* ───── Hero ───── */
.hero {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
}
.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,.15) 0%, rgba(192,132,252,.08) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex; align-items: center; gap: 60px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(255,107,157,.08);
  border: 1px solid rgba(255,107,157,.15);
  color: var(--pink); font-weight: 600; font-size: 13px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 900;
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero-gradient { font-size: inherit; }
.hero p {
  font-size: 17px; color: var(--gray-600); max-width: 480px;
  margin-bottom: 36px; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 100px;
  background: var(--gradient); color: #fff;
  font-weight: 700; font-size: 15px;
  transition: var(--transition);
}
.btn-glow {
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-lg);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 100px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  color: var(--gray-800);
  font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Social Proof */
.hero-social-proof {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.avatar-stack { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  border: 2.5px solid #fff;
}
.proof-text { display: flex; flex-direction: column; gap: 2px; }
.stars { color: #FBBF24; font-size: 14px; letter-spacing: 1px; }
.proof-text span { font-size: 13px; color: var(--gray-600); }
.proof-text strong { color: var(--gray-800); }

/* Hero Visual */
.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 450px;
}
.hero-logo-showcase {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-img {
  width: 220px; height: 220px;
  border-radius: 44px;
  object-fit: cover;
  position: relative; z-index: 2;
  box-shadow: 0 20px 60px rgba(255,107,157,.25), 0 0 0 1px rgba(255,255,255,.3);
}
.logo-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,.3) 0%, rgba(192,132,252,.15) 50%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,107,157,.15);
  z-index: 1;
  animation: ring-expand 4s ease-in-out infinite;
}
.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 380px; height: 380px; animation-delay: 1.3s; border-color: rgba(192,132,252,.1); }
.ring-3 { width: 460px; height: 460px; animation-delay: 2.6s; border-color: rgba(96,165,250,.08); }
@keyframes ring-expand {
  0%, 100% { opacity: .5; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Floating Cards */
.floating-cards { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.6);
  font-size: 13px;
  animation: float-card 5s ease-in-out infinite;
}
.float-card span { font-size: 24px; }
.float-card strong { display: block; font-weight: 600; font-size: 13px; }
.float-card small { color: var(--gray-400); font-size: 11px; }
.fc-1 { top: 15%; left: -30px; animation-delay: 0s; }
.fc-2 { top: 55%; right: -40px; animation-delay: 1.5s; }
.fc-3 { bottom: 5%; left: 0px; animation-delay: 3s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Wave */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ───── Trust Bar ───── */
.trust-bar {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.trust-items {
  display: flex; align-items: center; justify-content: center; gap: 48px;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label { font-size: 13px; color: var(--gray-400); font-weight: 500; margin-top: 4px; }
.trust-divider {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
}

/* ───── Section Shared ───── */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header .label {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(255,107,157,.06); color: var(--pink);
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid rgba(255,107,157,.1);
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -.5px;
}
.section-header p { font-size: 16px; color: var(--gray-600); line-height: 1.7; }

/* ───── Features ───── */
.features { padding: 100px 0; }

/* Feature Spotlight */
.feature-spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 48px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-soft);
  border: 1px solid rgba(255,107,157,.08);
}
.spotlight-icon {
  font-size: 48px; margin-bottom: 16px;
}
.spotlight-content h3 {
  font-size: 28px; font-weight: 800; margin-bottom: 14px;
}
.spotlight-content p {
  font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--gray-800);
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(52,211,153,.15); color: #10B981;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

/* Mood Demo */
.mood-demo {
  display: flex; flex-direction: column; gap: 16px;
}
.mood-bubble {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: 20px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.5);
  animation: mood-slide .6s ease forwards;
  opacity: 0;
  transform: translateX(20px);
}
.mb-1 { animation-delay: .3s; }
.mb-2 { animation-delay: .7s; }
.mb-3 { animation-delay: 1.1s; }
@keyframes mood-slide {
  to { opacity: 1; transform: translateX(0); }
}
.mood-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.mood-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.mood-header strong { font-size: 14px; }
.mood-header small { font-size: 11px; color: var(--gray-400); }
.mood-content strong { display: block; font-size: 14px; margin-bottom: 4px; }
.mood-emoji-row { font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.mood-content small { font-size: 11px; color: var(--gray-400); }

/* Mood Attachments */
.mood-attachment {
  display: flex; gap: 8px; margin-bottom: 8px;
}
.mood-photo-placeholder {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,157,.08), rgba(192,132,252,.08));
  border: 1px solid rgba(255,107,157,.1);
  font-size: 12px;
}
.mood-photo-placeholder span { font-size: 16px; }
.mood-photo-placeholder small { color: var(--gray-600); font-size: 11px; }

.mood-voice-note {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 12px;
  background: rgba(96,165,250,.08);
  border: 1px solid rgba(96,165,250,.1);
}
.voice-icon { font-size: 14px; }
.voice-wave {
  display: flex; align-items: center; gap: 2px; height: 16px;
}
.voice-wave span {
  width: 3px; border-radius: 2px;
  background: #60A5FA;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.voice-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 10px; animation-delay: .1s; }
.voice-wave span:nth-child(3) { height: 14px; animation-delay: .2s; }
.voice-wave span:nth-child(4) { height: 8px; animation-delay: .3s; }
.voice-wave span:nth-child(5) { height: 12px; animation-delay: .4s; }
.voice-wave span:nth-child(6) { height: 6px; animation-delay: .5s; }
.voice-wave span:nth-child(7) { height: 10px; animation-delay: .6s; }
.voice-wave span:nth-child(8) { height: 4px; animation-delay: .7s; }
@keyframes wave-bar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.4); }
}
.mood-voice-note small { font-size: 11px; color: var(--gray-400); }

.mood-drawing-placeholder {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(251,191,36,.08), rgba(244,114,182,.08));
  border: 1px solid rgba(251,191,36,.12);
  margin-bottom: 8px;
}
.mood-drawing-placeholder span { font-size: 16px; }
.mood-drawing-placeholder small { font-size: 11px; color: var(--gray-600); }

/* Mood Reactions */
.mood-reactions {
  display: flex; gap: 6px;
}
.reaction {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px 8px; border-radius: 10px;
  background: rgba(0,0,0,.04);
  font-size: 12px;
}

/* Mood Streak Bar */
.mood-streak-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 16px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.5);
  animation: mood-slide .6s ease forwards;
  opacity: 0; transform: translateX(20px);
}
.streak-label { font-size: 13px; font-weight: 700; white-space: nowrap; }
.streak-days { display: flex; gap: 4px; }
.streak-days .day {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--gray-400);
  background: rgba(0,0,0,.03);
}
.streak-days .day.active {
  background: linear-gradient(135deg, #FF6B9D, #C084FC);
  color: #fff;
}
.streak-days .day.today {
  background: linear-gradient(135deg, #34D399, #10B981);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(52,211,153,.3);
}
.streak-count { font-size: 12px; font-weight: 600; color: var(--pink); white-space: nowrap; }

/* Features Grid */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-card {
  padding: 32px 24px; border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0; transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* ───── Virtual Pet ───── */
.pet-section {
  padding: 100px 0;
  background: var(--gradient-soft);
}
.pet-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.pet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pet-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
  transition: var(--transition);
  position: relative;
  cursor: default;
}
.pet-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pet-card.featured {
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(192,132,252,.08));
  border-color: rgba(124,58,237,.15);
}
.pet-emoji { font-size: 48px; margin-bottom: 8px; }
.pet-card span { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.pet-badge {
  position: absolute; top: 8px; right: 8px;
  padding: 3px 8px; border-radius: 8px;
  background: var(--gradient); color: #fff;
  font-size: 10px; font-weight: 700;
}

.pet-features {
  display: flex; flex-direction: column; gap: 20px;
}
.pf-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.pf-item:hover {
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-md);
}
.pf-icon { font-size: 28px; flex-shrink: 0; }
.pf-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.pf-item p { font-size: 13px; color: var(--gray-600); margin: 0; }

/* ───── How It Works ───── */
.how-it-works { padding: 100px 0; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.step {
  text-align: center; padding: 20px; position: relative;
}
.step-line {
  position: absolute;
  top: 44px; left: 60%; right: -40%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  opacity: .2;
}
.step:last-child .step-line { display: none; }
.step-number {
  width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 24px;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 800;
  box-shadow: var(--shadow-glow);
  position: relative; z-index: 1;
}
.step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-content p { font-size: 14px; color: var(--gray-600); max-width: 260px; margin: 0 auto; line-height: 1.7; }

/* ───── Testimonials ───── */
.testimonials { padding: 100px 0; background: var(--gray-50); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  padding: 36px; border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.highlight {
  background: var(--gradient-soft);
  border-color: rgba(255,107,157,.1);
  box-shadow: var(--shadow-md);
}
.tc-stars {
  color: #FBBF24; font-size: 16px; letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.tc-author {
  display: flex; align-items: center; gap: 12px;
}
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
}
.tc-author strong { display: block; font-size: 14px; font-weight: 600; }
.tc-author small { font-size: 12px; color: var(--gray-400); }

/* ───── Premium Section ───── */
.premium-section { padding: 100px 0; }
.premium-card {
  border-radius: var(--radius-2xl);
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.premium-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,107,157,.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(124,58,237,.1) 0%, transparent 50%);
}
.premium-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  padding: 64px; position: relative; z-index: 1;
}
.premium-badge {
  display: inline-block;
  padding: 6px 16px; border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,215,0,.2), rgba(255,107,157,.2));
  color: #FFD700; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; margin-bottom: 20px;
  border: 1px solid rgba(255,215,0,.2);
}
.premium-text h2 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.premium-text p {
  font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 28px;
}
.premium-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.premium-perks li {
  font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500;
}
.premium-pricing {
  display: flex; align-items: center; gap: 16px;
}
.price-tag {
  display: flex; align-items: baseline; gap: 2px;
}
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 800; color: #fff;
}
.price-period { font-size: 15px; color: rgba(255,255,255,.5); }
.price-trial {
  padding: 6px 14px; border-radius: 100px;
  background: rgba(52,211,153,.15); color: #34D399;
  font-size: 12px; font-weight: 700;
}
.premium-visual {
  display: flex; align-items: center; justify-content: center;
}
.premium-logo {
  width: 260px; height: 260px; border-radius: 48px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

/* ───── CTA Section ───── */
.cta-section {
  padding: 120px 0; text-align: center;
  background: var(--gradient);
  color: #fff; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-logo {
  width: 80px; height: 80px; border-radius: 20px;
  object-fit: cover; margin: 0 auto 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 900;
  margin-bottom: 16px; letter-spacing: -.5px;
}
.cta-section p { font-size: 18px; opacity: .9; max-width: 500px; margin: 0 auto 40px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px; border-radius: 100px;
  background: #fff; color: var(--dark);
  font-weight: 700; font-size: 16px;
  transition: var(--transition);
}
.btn-glow-white { box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.cta-subtext { font-size: 13px; opacity: .7; margin-top: 16px; }

/* ───── Footer ───── */
.footer {
  padding: 80px 0 40px;
  background: var(--dark);
  color: #fff;
}
.footer-logo {
  margin-bottom: 8px;
}
.footer-logo .nav-logo-img { border-radius: 10px; width: 36px; height: 36px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 12px; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,.12); color: var(--pink);
}
.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px; color: rgba(255,255,255,.35);
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  color: rgba(255,255,255,.6); font-size: 14px; transition: var(--transition);
}
.footer ul a:hover { color: var(--pink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; font-size: 13px; color: rgba(255,255,255,.3);
}

/* ───── Legal Pages ───── */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 8px;
}
.legal-page .last-updated { color: var(--gray-400); font-size: 14px; margin-bottom: 48px; }
.legal-content { max-width: 800px; }
.legal-content h2 {
  font-size: 22px; font-weight: 700; margin: 40px 0 16px;
  padding-top: 24px; border-top: 1px solid var(--gray-100);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { color: var(--gray-600); font-size: 15px; line-height: 1.8; margin-bottom: 8px; }

/* ───── Support Page ───── */
.support-hero {
  padding: 160px 0 80px; text-align: center;
  background: var(--gradient-soft);
}
.support-hero h1 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; margin-bottom: 16px; }
.support-hero p { font-size: 18px; color: var(--gray-600); max-width: 500px; margin: 0 auto; }

.support-content { padding: 80px 0; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 64px; }
.support-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.support-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.support-card .icon { font-size: 36px; margin-bottom: 16px; }
.support-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.support-card a.link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; color: var(--pink); font-weight: 600; font-size: 14px;
}

.faq-section { max-width: 700px; margin: 0 auto; }
.faq-section h2 { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 40px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100); padding: 20px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; font-size: 16px; font-weight: 600; text-align: left;
  color: var(--gray-800); padding: 4px 0; cursor: pointer;
}
.faq-question::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--gray-400);
  transition: var(--transition); flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-question::after { content: '−'; color: var(--pink); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 12px 0 4px; color: var(--gray-600); font-size: 15px; line-height: 1.7; }

.contact-banner {
  margin-top: 64px; padding: 48px; border-radius: var(--radius-xl);
  background: var(--gradient); color: #fff; text-align: center;
}
.contact-banner h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.contact-banner p { opacity: .9; margin-bottom: 24px; }
.contact-banner a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  background: #fff; color: var(--dark); font-weight: 700; font-size: 15px;
  transition: var(--transition);
}
.contact-banner a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.delete-section {
  margin-top: 64px; padding: 40px; border-radius: var(--radius-lg);
  background: #FFF5F5; border: 1px solid #FED7D7;
}
.delete-section h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #C53030; }
.delete-section p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 8px; }
.delete-section ol { padding-left: 24px; }
.delete-section li { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 4px; }

/* ───── Responsive ───── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-inner { grid-template-columns: 1fr; text-align: center; }
  .premium-perks { align-items: center; }
  .premium-pricing { justify-content: center; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { margin-top: 20px; min-height: 350px; }
  .hero-logo-img { width: 160px; height: 160px; border-radius: 36px; }
  .logo-glow { width: 220px; height: 220px; }
  .ring-1 { width: 240px; height: 240px; }
  .ring-2 { width: 300px; height: 300px; }
  .ring-3 { width: 360px; height: 360px; }
  .fc-1 { left: 10px; }
  .fc-2 { right: -10px; }
  .fc-3 { left: 20px; }
  
  .feature-spotlight { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pet-showcase { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .support-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: rgba(255,255,255,.98);
    backdrop-filter: blur(24px);
    padding: 24px; gap: 20px; box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-100);
  }
  .features-grid { grid-template-columns: 1fr; }
  .pet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .floating-cards { display: none; }
  .hero { padding: 120px 0 100px; }
  .hero h1 { font-size: 36px; }
  .trust-number { font-size: 24px; }
  .premium-inner { padding: 40px 24px; }
  .premium-logo { width: 180px; height: 180px; border-radius: 36px; }
}
