/* ============================================
   LOVE CARD ❤️ — Landing Page
   Premium Design System
   ============================================ */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary: #FF4D6D;
  --primary-light: #FF758F;
  --primary-soft: #FFD6DD;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --dark-soft: #2A2A2A;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --gradient-primary: linear-gradient(135deg, #FF4D6D, #FF758F);
  --gradient-warm: linear-gradient(135deg, #FF4D6D, #FF8FA3, #FFB3C1);
  --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #2D1F2F 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.75);
  --glass-border-light: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 2px 8px rgba(255, 77, 109, 0.08);
  --shadow-md: 0 8px 30px rgba(255, 77, 109, 0.12);
  --shadow-lg: 0 20px 60px rgba(255, 77, 109, 0.15);
  --shadow-glow: 0 0 40px rgba(255, 77, 109, 0.3);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* === ANIMATED HEARTS BACKGROUND === */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  font-size: 16px;
  opacity: 0;
  animation: floatHeart 8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes floatHeart {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg) scale(0.5);
  }
  10% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.08;
  }
  90% {
    opacity: 0.05;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) rotate(360deg) scale(1);
  }
}

/* === SPARKLE EFFECT === */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === SECTION TITLES === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle--center {
  text-align: center;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border: none;
  border-radius: 60px;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(255, 77, 109, 0.4);
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(255, 77, 109, 0.4);
  }
  50% {
    box-shadow: var(--shadow-md), 0 0 0 12px rgba(255, 77, 109, 0);
  }
}

.btn-secondary {
  background: var(--glass-bg-light);
  color: var(--dark);
  border: 1px solid rgba(255, 77, 109, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-giant {
  padding: 24px 56px;
  font-size: 1.2rem;
  border-radius: 60px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.4) 0%,
    rgba(26, 26, 26, 0.6) 40%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 77, 109, 0.15);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: 60px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease-out;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: -0.02em;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__stars {
  font-size: 1.3rem;
  letter-spacing: 4px;
  filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.4));
}

.hero__social-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-family: var(--font-display);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,77,109,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PAIN SECTION
   ========================================= */
.pain {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.pain::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.06), transparent 70%);
  pointer-events: none;
}

.pain__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pain__title {
  color: var(--dark);
}

.pain__text {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--gray);
  line-height: 2;
  margin-top: 32px;
}

.pain__text strong {
  color: var(--dark);
  font-weight: 600;
}

.pain__highlight {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.3rem;
}

.pain__line-through {
  text-decoration: line-through;
  opacity: 0.5;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  background: var(--white);
  position: relative;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(255, 77, 109, 0.08);
  transition: var(--transition);
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 77, 109, 0.2);
}

.step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.step__content p {
  font-size: 0.95rem;
  color: var(--gray);
}

.step__icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

/* Connector line between steps */
.step::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 51px;
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--primary-soft), transparent);
}

.step:last-child::after {
  display: none;
}

/* =========================================
   DEMO SECTION
   ========================================= */
.demo {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.demo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.1), transparent 70%);
  pointer-events: none;
}

.demo__content {
  text-align: center;
}

.demo__title {
  color: var(--white);
}

/* Phone Mockup */
.demo__phone-wrapper {
  display: flex;
  justify-content: center;
  margin: 56px auto 40px;
  perspective: 1000px;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--dark);
  border-radius: 36px;
  border: 3px solid #333;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 77, 109, 0.15);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Phone notch */
.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--dark);
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

/* Phone screen content */
.phone-mockup__screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: phoneScroll 12s ease-in-out infinite;
}

@keyframes phoneScroll {
  0%, 15% { transform: translateY(0); }
  20%, 35% { transform: translateY(-100%); }
  40%, 55% { transform: translateY(-200%); }
  60%, 75% { transform: translateY(-300%); }
  80%, 95% { transform: translateY(-400%); }
  100% { transform: translateY(0); }
}

.phone-slide {
  width: 100%;
  min-height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.phone-slide--photo {
  background: linear-gradient(135deg, #2D1F2F, #1A1A1A);
}

.phone-slide--music {
  background: linear-gradient(135deg, #1A1A2E, #16213E);
}

.phone-slide--time {
  background: linear-gradient(135deg, #0F3460, #16213E);
}

.phone-slide--stars {
  background: linear-gradient(135deg, #0B0B2B, #1A0A2E);
}

.phone-slide--letter {
  background: linear-gradient(135deg, #2D1F2F, #3D2040);
}

.phone-slide__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(255, 77, 109, 0.5));
}

.phone-slide__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.phone-slide__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Music bars animation */
.music-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 40px;
  margin: 16px 0;
}

.music-bar {
  width: 6px;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: musicBar 1s ease-in-out infinite;
}

.music-bar:nth-child(1) { height: 15px; animation-delay: 0s; }
.music-bar:nth-child(2) { height: 25px; animation-delay: 0.1s; }
.music-bar:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.music-bar:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.music-bar:nth-child(5) { height: 18px; animation-delay: 0.4s; }
.music-bar:nth-child(6) { height: 28px; animation-delay: 0.15s; }
.music-bar:nth-child(7) { height: 22px; animation-delay: 0.35s; }

@keyframes musicBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* Timer display in phone */
.phone-timer {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
  letter-spacing: 1px;
}

/* Star dots in phone */
.phone-stars {
  width: 100%;
  height: 80px;
  position: relative;
  margin: 12px 0;
}

.phone-star-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.demo__features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.demo__feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* =========================================
   FEATURES / RESOURCES
   ========================================= */
.features {
  background: var(--white);
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(255, 77, 109, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 77, 109, 0.15);
}

.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 77, 109, 0.2));
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================================
   EMOTIONAL SECTION
   ========================================= */
.emotional {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.emotional__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.emotional__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.emotional__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.6) 0%,
    rgba(26, 26, 26, 0.75) 100%
  );
  z-index: 2;
}

.emotional__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.emotional__title {
  color: var(--white);
  margin-bottom: 40px;
}

.emotional__text {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.85);
}

.emotional__text p {
  margin-bottom: 4px;
}

.emotional__text .emotional__emphasis {
  color: var(--primary-light);
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.3em;
  display: block;
  margin-top: 24px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: var(--gray-light);
  position: relative;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(255, 77, 109, 0.06);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--primary-soft);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.3));
}

.testimonial__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.testimonial__author {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.08), transparent 70%);
  pointer-events: none;
}

.offer::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 117, 143, 0.06), transparent 70%);
  pointer-events: none;
}

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

.offer__title {
  color: var(--white);
}

.offer__card {
  max-width: 500px;
  margin: 48px auto 0;
  padding: 48px 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 77, 109, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.offer__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-warm);
}

.offer__plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer__includes {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.offer__includes li {
  padding: 10px 0;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.offer__includes li:last-child {
  border-bottom: none;
}

.offer__includes .check {
  color: #4ADE80;
  font-weight: bold;
  font-size: 1.1rem;
}

.offer__price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.offer__price-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255, 77, 109, 0.2);
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 12px;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.offer__price-current {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.offer__price-current small {
  font-size: 1.2rem;
  font-weight: 600;
}

.offer__urgency {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer__urgency p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
  background: var(--white);
}

.faq__list {
  max-width: 700px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 77, 109, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 77, 109, 0.2);
}

.faq-item.active {
  border-color: rgba(255, 77, 109, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  padding: 22px 28px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition-fast);
  text-align: left;
}

.faq-item__question:hover {
  background: rgba(255, 77, 109, 0.03);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer-content {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.final-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.final-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 2;
}

.final-cta__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.final-cta__title span {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 0 32px;
}

.footer__content {
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.footer__credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #25D366;
  color: var(--white);
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: floatBtnAppear 1s ease-out 2s both;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float__icon {
  width: 24px;
  height: 24px;
}

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

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }

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

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

/* =========================================
   RESPONSIVE — DESKTOP
   ========================================= */
@media (min-width: 1024px) {
  .section-padding {
    padding: 120px 0;
  }

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

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

  .how-it-works__steps {
    max-width: 650px;
  }

  .phone-mockup {
    width: 320px;
    height: 640px;
  }

  .whatsapp-float {
    bottom: 32px;
    right: 32px;
  }
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__heart {
  font-size: 3rem;
  animation: heartbeat 1s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
}

.preloader__text {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary-light);
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* =========================================
   COUNTDOWN TIMER (Urgency)
   ========================================= */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

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

.countdown__number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 109, 0.15);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* =========================================
   SELECTION
   ========================================= */
::selection {
  background: rgba(255, 77, 109, 0.3);
  color: var(--dark);
}
