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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

/* ===== COLORS ===== */
:root {
  --brand-sky: #38bdf8;
  --brand-lilac: #c084fc;
  --brand-gold: #fbbf24;
  --brand-pink: #f472b6;
  --foreground: #1a1a2e;
  --background: #ffffff;
  --card: #f8fafc;
  --warm-bg: #FFF8E7;
  --warm-light: #FFFAF0;
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--brand-gold); font-weight: 800; }
.text-sky { color: var(--brand-sky); font-weight: 800; }
.text-lilac { color: var(--brand-lilac); font-weight: 800; }
.text-pink { color: var(--brand-pink); font-weight: 800; }

.gradient-text {
  background: linear-gradient(to right, var(--brand-sky), var(--brand-lilac), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

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

@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(8px); }
}

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.9; }
}

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

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

@keyframes slideInLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

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

.animate-twinkle { animation: twinkle 3s ease-in-out infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-gentle-pulse { animation: gentle-pulse 4s ease-in-out infinite; }
.animate-in { animation: slideIn 0.7s ease-out backwards; }
.animate-in-left { animation: slideInLeft 0.7s ease-out backwards; }
.animate-in-right { animation: slideInRight 0.7s ease-out 0.15s backwards; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 3rem;
  width: 100%;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn .arrow-icon {
  transition: transform 0.3s;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  min-height: 3.5rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--brand-sky), var(--brand-lilac), var(--brand-sky));
  color: white;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 900;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid;
}

.btn-sky {
  border-color: rgba(56, 189, 248, 0.5);
  color: var(--brand-sky);
}

.btn-sky:hover {
  background: rgba(56, 189, 248, 0.1);
}

.btn-gold {
  border-color: rgba(251, 191, 36, 0.5);
  color: var(--brand-gold);
}

.btn-gold:hover {
  background: rgba(251, 191, 36, 0.1);
}

.btn-secondary {
  background: linear-gradient(to right, var(--brand-sky), var(--brand-lilac));
  color: white;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 900;
}

.btn-secondary:hover {
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
}

.btn-gold.btn-checkout {
  background: linear-gradient(to right, var(--brand-gold), var(--brand-pink), var(--brand-gold));
  color: white;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 900;
}

.btn-gold.btn-checkout:hover {
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.btn-white {
  background: white;
  color: var(--brand-sky);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.btn-white:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.btn-checkout {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.1);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--brand-sky);
  font-size: 1rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  position: relative;
}

.logo:hover {
  background: rgba(56, 189, 248, 0.1);
}

.logo-cloud {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-sky);
}

.logo-star {
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  top: 0.25rem;
  left: 1.5rem;
  fill: var(--brand-gold);
  animation: twinkle 2s ease-in-out infinite;
}

.mobile-menu-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(56, 189, 248, 0.1);
}

.mobile-menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem;
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.mobile-menu button:hover {
  background: rgba(56, 189, 248, 0.1);
}

.mobile-cta-btn {
  background: var(--brand-sky) !important;
  color: white !important;
  text-align: center !important;
  margin-top: 0.75rem;
  border-radius: 9999px !important;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-pink), var(--brand-gold));
  color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.urgency-content {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}

.urgency-close {
  position: absolute;
  right: 0;
  padding: 0.25rem;
  border-radius: 50%;
  transition: background 0.2s;
}

.urgency-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.urgency-close svg {
  width: 1rem;
  height: 1rem;
}

.urgency-icon {
  width: 1rem;
  height: 1rem;
  animation: pulse 1s ease-in-out infinite;
}

.urgency-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.clock-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.countdown-digits {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 0.875rem;
}

.countdown-num {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.countdown-sep {
  font-weight: 700;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 7rem 1rem 4rem;
  background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 50%, #FFF9E6 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(56, 189, 248, 0.05), transparent, rgba(251, 191, 36, 0.05));
  animation: gentle-pulse 4s ease-in-out infinite;
  opacity: 0.6;
}

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

.deco-star, .deco-sparkle, .deco-heart {
  position: absolute;
}

.deco-star-1 {
  top: 4rem;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--brand-gold);
  opacity: 0.7;
  animation: twinkle 3s ease-in-out infinite;
}

.deco-star-2 {
  top: 8rem;
  right: 1.5rem;
  width: 1rem;
  height: 1rem;
  fill: var(--brand-gold);
  opacity: 0.8;
  animation: twinkle 3s ease-in-out infinite 1s;
}

.deco-sparkle-1 {
  top: 6rem;
  right: 3rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-lilac);
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.deco-heart-1 {
  bottom: 5rem;
  right: 2rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--brand-pink);
  opacity: 0.5;
  animation: float-slow 8s ease-in-out infinite;
}

.deco-star-3 {
  bottom: 8rem;
  left: 1.5rem;
  width: 1rem;
  height: 1rem;
  fill: var(--brand-sky);
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite 0.5s;
}

.hero-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(251, 191, 36, 0.1));
  border: 2px solid rgba(251, 191, 36, 0.4);
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
  margin-bottom: 1.5rem;
}

.badge-stars {
  display: flex;
  margin-left: -0.25rem;
}

.badge-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--brand-gold);
  animation: gentle-pulse 3s ease-in-out infinite;
}

.badge-stars svg:nth-child(2) { animation-delay: 0.3s; }
.badge-stars svg:nth-child(3) { animation-delay: 0.6s; }

.social-proof-badge > span {
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--brand-sky), var(--brand-lilac), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-text h1 > span {
  display: block;
  margin-bottom: 0.5rem;
}

.sparkle-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.sparkle-icon {
  width: 3rem;
  height: 3rem;
  color: var(--brand-gold);
  animation: twinkle 2s ease-in-out infinite;
}

.hero-text p {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}

.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-icon-sky {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(192, 132, 252, 0.3));
}
.trust-icon-sky svg { color: var(--brand-sky); }

.trust-icon-lilac {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.3), rgba(244, 114, 182, 0.3));
}
.trust-icon-lilac svg { color: var(--brand-lilac); }

.trust-icon-gold {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(244, 114, 182, 0.3));
}
.trust-icon-gold svg { color: var(--brand-gold); }

/* ===== CAROUSEL ===== */
.hero-carousel {
  margin-top: 2rem;
  position: relative;
}

.carousel-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, var(--brand-sky), var(--brand-lilac), var(--brand-gold));
  border-radius: 1.5rem;
  filter: blur(40px);
  opacity: 0.2;
  animation: gentle-pulse 4s ease-in-out infinite;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.carousel-slide-inner {
  background: linear-gradient(135deg, white, rgba(56, 189, 248, 0.1));
  padding: 0.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.carousel-slide-inner img {
  width: 100%;
  border-radius: 1rem;
  transition: transform 0.5s;
  max-height: 400px;
  object-fit: contain;
}

.carousel-slide-inner:hover img {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-sky);
}

.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.carousel-dot.active {
  width: 2rem;
  background: linear-gradient(to right, var(--brand-sky), var(--brand-gold));
}

/* ===== SECTIONS COMMON ===== */
.section-container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, rgba(56, 189, 248, 0.2), rgba(251, 191, 36, 0.2));
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-sky);
  margin-bottom: 1rem;
  min-height: 3rem;
}

.section-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-gold);
}

.section-badge-gold {
  background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(244, 114, 182, 0.2));
  border-color: rgba(251, 191, 36, 0.4);
  color: var(--brand-gold);
}

.section-badge-gold svg {
  fill: var(--brand-gold);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-header h2 > span {
  display: block;
  margin-bottom: 0.5rem;
}

.section-header > p {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 1rem;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, var(--warm-bg), var(--warm-light), var(--warm-bg));
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(251, 191, 36, 0.05), transparent, rgba(244, 114, 182, 0.05));
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.8), rgba(255, 237, 213, 0.6), rgba(254, 249, 195, 0.8));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.benefit-card:hover {
  border-color: rgba(251, 191, 36, 0.6);
  transform: translateY(-2px);
}

.benefit-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.benefit-card:hover .benefit-bg {
  opacity: 0.5;
}

.benefit-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.benefit-icon {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  min-height: 5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.05);
}

.benefit-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.benefit-icon-sky {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(192, 132, 252, 0.2));
}
.benefit-icon-sky svg { color: var(--brand-sky); }

.benefit-icon-gold {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(244, 114, 182, 0.2));
}
.benefit-icon-gold svg { color: var(--brand-gold); }

.benefit-icon-pink {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(192, 132, 252, 0.2));
}
.benefit-icon-pink svg { color: var(--brand-pink); }

.benefit-icon-lilac {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(56, 189, 248, 0.2));
}
.benefit-icon-lilac svg { color: var(--brand-lilac); }

.benefit-text {
  flex: 1;
  min-width: 0;
}

.benefit-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.benefit-text p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ===== CONTENT SHOWCASE ===== */
.content-showcase {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, white, var(--background));
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-card {
  position: relative;
  background: white;
  border: 2px solid rgba(56, 189, 248, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.1);
}

.content-card:hover {
  border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-pink));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.content-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(56, 189, 248, 0.05);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.content-card:hover .content-image img {
  transform: scale(1.05);
}

.content-info {
  padding: 2rem;
}

.content-title-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.content-icon {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(251, 191, 36, 0.2));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand-sky);
}

.content-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-info p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, var(--warm-bg), white, #F8F9FF);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(251, 191, 36, 0.05), transparent, rgba(56, 189, 248, 0.05));
}

.pricing-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(to right, rgba(244, 114, 182, 0.4), rgba(192, 132, 252, 0.4));
  border: 2px solid rgba(251, 191, 36, 0.5);
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  animation: gentle-pulse 3s ease-in-out infinite;
  margin: 1rem 0;
  min-height: 3rem;
}

.pricing-urgency svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-gold);
  animation: twinkle 2s ease-in-out infinite;
}

.pricing-urgency span {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-pink), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.25rem;
}

.pricing-trust .trust-item {
  font-size: 1rem;
}

.pricing-trust .trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-sky);
}

.pricing-trust .trust-item:nth-child(3) svg,
.pricing-trust .trust-item:nth-child(4) svg {
  color: var(--brand-gold);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
}

.pricing-card:first-child {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.7), rgba(255, 237, 213, 0.5), rgba(254, 249, 195, 0.7));
  border: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.1);
}

.pricing-card-popular {
  background: linear-gradient(135deg, #fffbeb, rgba(255, 237, 213, 0.8), #fef9c3);
  border: 3px solid rgba(251, 191, 36, 0.6);
  box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
  transform: scale(1.02);
  padding-top: 3rem;
}

.popular-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-pink), var(--brand-gold));
  border-radius: 1.5rem;
  opacity: 0.3;
  filter: blur(20px);
  animation: gentle-pulse 3s ease-in-out infinite;
  z-index: -1;
}

.popular-badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-pink), var(--brand-gold));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  min-height: 2.5rem;
  z-index: 10;
}

.popular-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: twinkle 2s ease-in-out infinite;
}

.discount-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(to right, #ef4444, #f43f5e);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  animation: bounce 1s ease-in-out infinite;
  z-index: 10;
}

.discount-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.premium-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.premium-title svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--brand-gold);
  opacity: 0.8;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-card-popular .pricing-header h3 {
  color: var(--brand-gold);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-sky);
}

.price-gold {
  color: var(--brand-gold);
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.original-price {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
  font-weight: 500;
}

.savings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--brand-gold);
  font-weight: 600;
}

.savings svg {
  width: 1rem;
  height: 1rem;
}

.pricing-features {
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-check {
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(192, 132, 252, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.feature-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-sky);
}

.feature-check-gold {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(244, 114, 182, 0.3));
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.feature-check-gold svg {
  color: var(--brand-gold);
}

.pricing-features li span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.feature-highlight span {
  font-weight: 700;
  color: var(--brand-gold);
}

.premium-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  margin-top: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, var(--warm-bg), var(--warm-light), var(--warm-bg));
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(251, 191, 36, 0.05), transparent, rgba(244, 114, 182, 0.05));
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.rating-stars {
  display: flex;
  gap: 0.5rem;
}

.rating-stars svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--brand-gold);
  animation: twinkle 3s ease-in-out infinite;
}

.rating-stars svg:nth-child(2) { animation-delay: 0.2s; }
.rating-stars svg:nth-child(3) { animation-delay: 0.4s; }
.rating-stars svg:nth-child(4) { animation-delay: 0.6s; }
.rating-stars svg:nth-child(5) { animation-delay: 0.8s; }

.rating-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-gold);
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.rating-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-carousel .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-carousel .carousel-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.8), rgba(255, 237, 213, 0.6), rgba(254, 249, 195, 0.8));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
}

.testimonial-card img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, var(--warm-bg), var(--warm-light), var(--warm-bg));
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(251, 191, 36, 0.05), transparent, rgba(244, 114, 182, 0.05));
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.8), rgba(255, 237, 213, 0.6), rgba(254, 249, 195, 0.8));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.1);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(251, 191, 36, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  gap: 1.25rem;
  min-height: 3.5rem;
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: 600;
  flex: 1;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  position: relative;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-lilac), var(--brand-gold));
  overflow: hidden;
}

.final-cta-stars {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.final-cta-stars .deco-star {
  position: absolute;
  fill: white;
  animation: twinkle 3s ease-in-out infinite;
}

.final-cta-stars .deco-star:nth-child(1) { top: 2rem; left: 2rem; width: 1.5rem; height: 1.5rem; }
.final-cta-stars .deco-star:nth-child(2) { top: 4rem; right: 2.5rem; width: 1.25rem; height: 1.25rem; animation-delay: 1s; }
.final-cta-stars .deco-star:nth-child(3) { bottom: 4rem; left: 4rem; width: 1.5rem; height: 1.5rem; animation-delay: 2s; }
.final-cta-stars .deco-star:nth-child(4) { bottom: 6rem; right: 2rem; width: 1.25rem; height: 1.25rem; animation-delay: 1.5s; }

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.final-cta-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.final-cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.final-cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
  animation: twinkle 2s ease-in-out infinite;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  padding: 0 0.5rem;
}

.final-cta-content > p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  padding: 0 1rem;
}

.final-cta-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.final-cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.final-cta-trust svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: white;
  border-top: 2px solid rgba(56, 189, 248, 0.2);
  padding: 2rem 1rem;
  overflow: hidden;
}

.footer-star {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--brand-gold);
  opacity: 0.2;
  animation: twinkle 3s ease-in-out infinite;
}

.footer-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--brand-sky), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.footer-brand h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-sky);
  -webkit-text-fill-color: initial;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.security-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(192, 132, 252, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-sky);
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-sky);
}

.footer-bottom {
  border-top: 2px solid rgba(56, 189, 248, 0.2);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
}

/* ===== SOCIAL PROOF TOAST ===== */
.social-proof-toast {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  transition: all 0.5s ease;
  transform: translateY(0);
  opacity: 1;
}

.social-proof-toast.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.social-proof-toast > div:first-child {
  position: relative;
  overflow: visible;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border: 2px solid;
  background: linear-gradient(135deg, rgba(255, 251, 235, 1), rgba(255, 237, 213, 1));
  border-color: rgba(251, 191, 36, 0.5);
}

.social-proof-toast.basic > div:first-child {
  background: linear-gradient(135deg, rgba(224, 242, 254, 1), rgba(224, 231, 255, 1));
  border-color: rgba(56, 189, 248, 0.5);
}

.toast-check {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-check svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.social-proof-toast.basic .toast-check {
  background: var(--brand-sky);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.toast-avatar {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 0 3px white, 0 0 0 5px var(--brand-gold);
}

.social-proof-toast.basic .toast-avatar {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-lilac));
  box-shadow: 0 0 0 3px white, 0 0 0 5px var(--brand-sky);
}

.toast-info {
  flex: 1;
  min-width: 0;
}

.toast-name {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-city {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-package {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.375rem;
}

.toast-package svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--brand-gold);
}

.toast-package span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.social-proof-toast.basic .toast-package svg,
.social-proof-toast.basic .toast-package span {
  color: var(--brand-sky);
}

.toast-time {
  font-size: 0.625rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0.25rem;
}

.toast-close {
  padding: 0.125rem;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  color: rgba(0, 0, 0, 0.6);
}

.toast-close svg {
  width: 1rem;
  height: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }

  .sparkle-line {
    font-size: 3rem;
  }

  .carousel-btn {
    width: 3rem;
    height: 3rem;
  }

  .social-proof-toast {
    left: 1rem;
    right: auto;
    max-width: 20rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 2rem 5rem;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: auto;
  }

  .hero-trust {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .benefits, .content-showcase, .pricing, .testimonials, .faq, .final-cta {
    padding: 5rem 2rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .pricing-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .pricing-card {
    flex: 1;
  }

  .pricing-trust {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .final-cta-content h2 {
    font-size: 3rem;
  }

  .final-cta-trust {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }

  .footer-links ul {
    flex-direction: row;
    gap: 1.5rem;
  }

  .footer-bottom {
    text-align: center;
  }
}
