/* ═══════════════════════════════════════════
   DateLive Landing Page — Styles
   Rose/Pink palette from Flutter app
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Rose Palette */
  --rose-light: #FFEDFA;
  --rose-medium: #FFB8E0;
  --rose-primary: #EC7FA9;
  --rose-dark: #BE5985;
  --rose-deeper: #8B3A5E;

  /* Accent */
  --accent-blue: #64B5F6;
  --accent-blue-dark: #42A5F5;

  /* Semantic */
  --success: #4CAF50;
  --error: #E53935;
  --warning: #FFA726;
  --info: #42A5F5;

  /* Premium */
  --premium-violet: #8B5CF6;
  --premium-violet-light: #A78BFA;
  --premium-pink: #EC4899;
  --gold: #FFD700;
  --gold-dark: #FFB300;

  /* Neutrals */
  --bg: #FFFBFE;
  --surface: #FFFFFF;
  --surface-variant: #F8F0F5;
  --text-primary: #1A1A1A;
  --text-secondary: #757575;
  --text-hint: #BDBDBD;
  --border: #F0E0EC;
  --divider: #F5F5F5;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 120px;
  --card-radius: 20px;
  --btn-radius: 28px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Particles Background ─── */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-premium {
  background: linear-gradient(135deg, var(--premium-violet), var(--premium-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 24px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--btn-radius);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-primary), #FF6B9D);
  color: white;
  box-shadow: 0 4px 20px rgba(236, 127, 169, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 127, 169, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  border: 1px solid rgba(236, 127, 169, 0.2);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 237, 250, 0.5);
  border-color: var(--rose-primary);
  transform: translateY(-2px);
}

.btn-premium {
  background: linear-gradient(135deg, var(--premium-violet), var(--premium-pink));
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

/* ─── Section Shared ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--rose-primary);
  background: var(--rose-light);
  border-radius: 20px;
  margin-bottom: 16px;
}

.tag-premium {
  color: var(--premium-violet);
  background: #F3E8FF;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 251, 254, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236, 127, 169, 0.1);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-primary);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--rose-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--rose-light);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--rose-medium);
  bottom: -100px;
  left: -100px;
  opacity: 0.25;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #E3F2FD;
  top: 50%;
  left: 20%;
  opacity: 0.2;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: #F3E8FF;
  bottom: 20%;
  right: 20%;
  opacity: 0.3;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 237, 250, 0.8);
  border: 1px solid rgba(236, 127, 169, 0.15);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rose-dark);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-suffix {
  font-size: 20px;
  font-weight: 600;
  color: var(--rose-primary);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

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

/* ─── Phone Mockup ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2D1F2B, #1A1A2E);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, #2D1F2B 0%, #1A1A2E 100%);
  border-radius: 28px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* App UI inside phone */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.app-logo-mini {
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #F48FB1, #EC7FA9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-coins {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 179, 0, 0.15);
  padding: 4px 12px;
  border-radius: 16px;
  color: #FFB300;
  font-size: 13px;
  font-weight: 600;
}

.app-profile-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.profile-avatar {
  position: relative;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 143, 177, 0.3), rgba(236, 127, 169, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(244, 143, 177, 0.3);
}

.online-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--success);
  border-radius: 50%;
  border: 3px solid #1A1A2E;
}

.profile-info {
  text-align: center;
}

.profile-info h3 {
  color: #F5F5F5;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-info p {
  color: #B0B0B0;
  font-size: 12px;
}

.profile-tags {
  display: flex;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  background: rgba(244, 143, 177, 0.15);
  color: #F48FB1;
  font-size: 11px;
  font-weight: 500;
  border-radius: 12px;
}

.app-match-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
  border-radius: 24px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.match-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-item {
  padding: 8px;
  opacity: 0.7;
}

.nav-item.active {
  opacity: 1;
  position: relative;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--rose-primary);
  border-radius: 50%;
}

/* ─── Floating Cards ─── */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  font-weight: 500;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.card-like {
  top: 15%;
  left: -60px;
  animation-delay: 0s;
}

.card-video {
  top: 55%;
  right: -50px;
  animation-delay: 2s;
}

.card-message {
  bottom: 12%;
  left: -40px;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ─── Scroll Indicator ─── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(236, 127, 169, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 10px;
  background: var(--rose-primary);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */

.features {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-primary), var(--rose-medium));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(236, 127, 169, 0.12);
  border-color: rgba(236, 127, 169, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--icon-bg);
  color: var(--icon-color);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */

.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--surface-variant);
  position: relative;
  z-index: 1;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step-card {
  flex: 1;
  max-width: 340px;
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(236, 127, 169, 0.1);
}

.step-number {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--rose-medium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.6;
}

.step-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--rose-primary);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PREMIUM
   ═══════════════════════════════════════════ */

.premium {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.premium-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.premium-content .section-title {
  text-align: left;
}

.premium-content .section-subtitle {
  text-align: left;
  margin: 0 0 32px;
}

.premium-features {
  list-style: none;
  margin-bottom: 40px;
}

.premium-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-violet);
  flex-shrink: 0;
}

/* Premium Phone */
.premium-visual {
  display: flex;
  justify-content: center;
}

.premium-frame {
  background: linear-gradient(145deg, #1A0D2E, #0F0720) !important;
  box-shadow:
    0 25px 80px rgba(139, 92, 246, 0.2),
    0 0 0 1px rgba(139, 92, 246, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

.premium-screen {
  background: linear-gradient(180deg, #1A0D2E 0%, #0F0720 100%) !important;
}

.premium-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

.premium-crown {
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

.premium-screen-content h4 {
  color: #F5F5F5;
  font-size: 18px;
  font-weight: 600;
}

.premium-screen-content > p {
  color: #A78BFA;
  font-size: 12px;
  margin-bottom: 8px;
}

.premium-plan-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0 8px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.plan-card.plan-popular {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
  border-color: rgba(139, 92, 246, 0.4);
}

.plan-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: linear-gradient(135deg, var(--premium-violet), var(--premium-pink));
  color: white;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 8px;
}

.plan-duration {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 500;
}

.plan-price {
  color: #A78BFA;
  font-size: 13px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════ */

.social-proof {
  padding: var(--section-padding) 0;
  background: var(--surface-variant);
  position: relative;
  z-index: 1;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(236, 127, 169, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

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

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

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

/* ═══════════════════════════════════════════
   DOWNLOAD CTA
   ═══════════════════════════════════════════ */

.download-cta {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.download-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.dl-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--rose-light);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.dl-shape-2 {
  width: 300px;
  height: 300px;
  background: #F3E8FF;
  bottom: -100px;
  right: -50px;
  opacity: 0.3;
}

.download-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}

.download-content .section-title {
  margin-bottom: 16px;
}

.download-content .section-subtitle {
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--text-primary);
  color: white;
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.store-label {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  font-weight: 400;
}

.store-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: #0F0A12;
  color: #B0B0B0;
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: #888;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(236, 127, 169, 0.15);
  color: var(--rose-primary);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  color: #F5F5F5;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links-group ul {
  list-style: none;
}

.footer-links-group li {
  margin-bottom: 12px;
}

.footer-links-group a {
  font-size: 14px;
  color: #888;
  transition: var(--transition);
}

.footer-links-group a:hover {
  color: var(--rose-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: #666;
}

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

.footer-legal a {
  color: #666;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--rose-primary);
}

/* ═══════════════════════════════════════════
   ANIMATIONS (Scroll Reveal)
   ═══════════════════════════════════════════ */

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .section-title {
    font-size: 34px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-container {
    gap: 40px;
  }

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

  .steps-container {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: none;
  }

  .premium-wrapper {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 251, 254, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 5;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    font-size: 24px;
    font-weight: 600;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-container {
    flex-direction: column;
  }

  .premium-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .premium-content .section-title,
  .premium-content .section-subtitle {
    text-align: center;
  }

  .premium-features {
    max-width: 400px;
    margin: 0 auto 32px;
  }

  .premium-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 22px;
    padding: 16px 12px;
  }
}
