/* ==========================================================================
   Aerion's Design — Main Stylesheet
   Modern, Aesthetic, Responsive Design System for Surprise Websites
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #0a0a0f;
  --bg-surface: #12121c;
  --bg-card: rgba(23, 23, 36, 0.7);
  --bg-card-hover: rgba(30, 30, 48, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-strong: rgba(255, 255, 255, 0.15);

  --accent-rose: #f43f5e;
  --accent-rose-light: #fda4af;
  --accent-pink-glow: rgba(244, 63, 94, 0.25);
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fde68a;
  --accent-gold-glow: rgba(245, 158, 11, 0.25);

  --accent-diamond: #38bdf8;
  --accent-diamond-light: #bae6fd;
  --accent-diamond-glow: rgba(56, 189, 248, 0.25);

  --accent-purple: #a855f7;
  --accent-purple-glow: rgba(168, 85, 247, 0.25);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  --success: #10b981;
  --whatsapp: #25d366;

  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Elevation / Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px var(--accent-pink-glow);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Lights */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  animation: pulseGlow 14s ease-in-out infinite alternate;
}

/* Background Shimmering Sparkles Canvas */
#sparkles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f43f5e 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 30%;
  right: -150px;
  animation-delay: -5s;
}

.glow-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  bottom: 10%;
  left: -100px;
  animation-delay: -9s;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  50% { transform: scale(1.15) translate(30px, 40px); opacity: 0.5; }
  100% { transform: scale(0.95) translate(-20px, 20px); opacity: 0.35; }
}

/* Shining Glassmorphism Effect & Specular Reflections */
.package-card,
.step-card,
.reward-card,
.calculator-wrapper,
.calc-summary-card,
.contact-card,
.modal-card,
.device-screen {
  background: rgba(20, 20, 32, 0.72) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 20px 45px rgba(0, 0, 0, 0.5) !important;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* 3D Tilt Glare Spotlight Layer */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  mix-blend-mode: overlay;
}

.package-card:hover .card-glare,
.step-card:hover .card-glare,
.reward-card:hover .card-glare,
.calculator-wrapper:hover .card-glare,
.calc-summary-card:hover .card-glare,
.contact-card:hover .card-glare {
  opacity: 1;
}

/* Hover Pop & Shine Glow */
.package-card:hover,
.step-card:hover,
.reward-card:hover,
.calc-summary-card:hover,
.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: inset 0 1px 2px 0 rgba(255, 255, 255, 0.4), 0 30px 60px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(244, 63, 94, 0.25) !important;
}

/* Animated Light Sheen Sweep on Hover */
.package-card::before,
.step-card::before,
.reward-card::before,
.contact-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    45deg,
    transparent 42%,
    rgba(255, 255, 255, 0.04) 47%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.04) 53%,
    transparent 58%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 3;
}

.package-card:hover::before,
.step-card:hover::before,
.reward-card:hover::before,
.contact-card:hover::before {
  transform: rotate(30deg) translateY(100%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #fda4af 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.text-success {
  color: var(--success);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.6);
  background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.btn-diamond {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.btn-diamond:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass-strong);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass-strong);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--accent-rose-light);
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem auto;
}

/* Announcement Bar */
.top-banner {
  background: linear-gradient(90deg, rgba(244, 63, 94, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  position: relative;
  z-index: 50;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.banner-tag {
  background: var(--accent-rose);
  color: #fff;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.banner-link {
  color: var(--accent-rose-light);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: color var(--transition-fast);
}

.banner-link:hover {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.85rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.logo-icon.small {
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger Button (3 lines) */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass-strong);
  border-radius: 10px;
  padding: 10px 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 105;
}

.hamburger-btn:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--accent-rose);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Sidebar Drawer & Backdrop */
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sidebar-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0f0f18;
  border-right: 1px solid var(--border-glass-strong);
  z-index: 1600;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.sidebar-backdrop.open .sidebar-drawer {
  transform: translateX(0);
}

.sidebar-header {
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
}

.sidebar-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-close-btn:hover {
  background: var(--accent-rose);
}

.sidebar-content {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.sidebar-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  padding: 0 0.5rem 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 0.35rem;
}

.sidebar-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  color: #cbd5e1;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.sidebar-nav-link i {
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.sidebar-nav-link:hover {
  background: rgba(244, 63, 94, 0.12);
  color: #ffffff;
}

.sidebar-nav-link:hover i {
  color: var(--accent-rose);
}

.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.3);
}

.sidebar-social-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.sidebar-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.sidebar-social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Currency Switcher */
.currency-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass-strong);
  border-radius: 9999px;
  padding: 2px;
}

.currency-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn.active {
  background: #ffffff;
  color: var(--bg-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-strong);
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-rose);
  box-shadow: 0 0 10px var(--accent-rose);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  color: #cbd5e1;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-main);
}

.feature-pill i {
  color: var(--accent-rose);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-stars {
  color: #fbbf24;
  display: flex;
  gap: 2px;
}

/* Device Mockup (Interactive Preview) */
.device-mockup {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: #181824;
  border-radius: 36px;
  padding: 12px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(244, 63, 94, 0.2);
  position: relative;
}

.device-notch {
  width: 100px;
  height: 16px;
  background: #0d0d14;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 10px auto;
}

.device-screen {
  background: linear-gradient(180deg, #161622 0%, #0d0d14 100%);
  border-radius: 26px;
  padding: 1rem;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--accent-rose-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
}

.mockup-audio-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mockup-audio-badge:hover {
  background: rgba(244, 63, 94, 0.2);
}

.music-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.music-wave span {
  width: 2px;
  background: var(--accent-rose);
  border-radius: 2px;
  animation: waveBar 1.2s infinite ease-in-out alternate;
}

.music-wave span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.music-wave span:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.music-wave span:nth-child(3) { height: 8px; animation-delay: 0.2s; }

@keyframes waveBar {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Demo Slides */
.mockup-body {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.demo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  pointer-events: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.demo-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.slide-tag {
  font-size: 0.68rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.slide-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(244, 63, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.avatar-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent-rose);
  filter: blur(15px);
  opacity: 0.3;
}

.slide-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.slide-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.slide-interactive-element {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  color: #fff;
  animation: floatBounce 2.5s infinite ease-in-out;
}

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

/* Polaroid Mockup */
.demo-polaroid {
  background: #ffffff;
  padding: 8px 8px 18px 8px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: rotate(-3deg);
  margin-bottom: 0.75rem;
  width: 140px;
}

.polaroid-inner {
  background: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
  height: 100px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  padding: 4px;
}

.polaroid-inner i {
  font-size: 1.6rem;
}

.slide-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--accent-rose-light);
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* Letter Mockup */
.demo-letter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-strong);
  border-radius: 12px;
  padding: 0.85rem;
  position: relative;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.letter-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--accent-rose);
  font-size: 1rem;
}

.demo-letter h4 {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.demo-letter p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
}

.letter-sig {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-rose-light);
  text-align: right;
}

/* Mockup Controls */
.mockup-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem;
}

.mockup-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mockup-btn:hover {
  background: var(--accent-rose);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.mockup-dots .dot.active {
  width: 18px;
  border-radius: 4px;
  background: var(--accent-rose);
}

.mockup-footer {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-subtle);
  margin-top: 0.35rem;
}

/* Occasions Bar */
.occasions-section {
  padding: 1.5rem 0 3rem 0;
  border-bottom: 1px solid var(--border-glass);
}

.occasions-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.occasions-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.occasion-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.occasion-item:hover {
  border-color: rgba(244, 63, 94, 0.4);
  background: rgba(244, 63, 94, 0.08);
  transform: translateY(-2px);
}

/* Packages Section */
.packages-section {
  padding: 4rem 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-strong);
  box-shadow: var(--shadow-lg);
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.platinum-glow { background: #94a3b8; }
.golden-glow { background: #f59e0b; opacity: 0.25; }
.diamond-glow { background: #38bdf8; opacity: 0.25; }

.popular-card {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(28, 25, 23, 0.8);
}

.popular-card:hover {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  right: 2rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.diamond-card {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(14, 25, 38, 0.8);
}

.diamond-card:hover {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.2);
}

.vip-ribbon {
  position: absolute;
  top: 0;
  right: 2rem;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.pack-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.starter-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.golden-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.diamond-badge {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-diamond-light);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.pack-title {
  font-size: 1.75rem;
  margin-bottom: 0.3rem;
}

.pack-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pack-price-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-features {
  margin-bottom: 1.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-highlight i {
  color: var(--accent-rose);
  font-size: 1.2rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.feature-list li i {
  color: var(--success);
  margin-top: 2px;
  flex-shrink: 0;
}

.card-addons-preview {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.addons-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.addon-chip {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* Comparison Table */
.compare-trigger-box {
  margin: 1.5rem 0 2rem 0;
}

.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  backdrop-filter: blur(14px);
  animation: fadeIn 0.4s ease;
}

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

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.table-price {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

/* Theme Gallery */
.theme-showcase-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.2);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.theme-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.theme-card.active {
  border-color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.1);
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}

.theme-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.theme-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
}

.theme-preview-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-strong);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.preview-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-rose-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.theme-preview-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.theme-preview-box p {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.preview-tip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--accent-gold-light);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

/* Calculator Section */
.calculator-section {
  padding: 4.5rem 0;
}

.calculator-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-strong);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calculator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-gold), var(--accent-diamond));
}

.calculator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-group {
  margin-bottom: 1.75rem;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.85rem;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-rose);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-package-select {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pack-radio-label {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.pack-radio-label:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-strong);
}

.pack-radio-label.active {
  border-color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.08);
}

.pack-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.pack-radio-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.radio-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.radio-price {
  font-weight: 800;
  color: var(--accent-rose-light);
  font-size: 1.05rem;
}

.radio-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Addon Toggle Boxes */
.addon-toggle-box {
  display: block;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.addon-toggle-box input[type="checkbox"] {
  display: none;
}

.addon-custom-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: all var(--transition-fast);
}

.addon-toggle-box:hover .addon-custom-box {
  background: rgba(255, 255, 255, 0.06);
}

.addon-toggle-box input[type="checkbox"]:checked + .addon-custom-box {
  border-color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.1);
}

.addon-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.addon-name i {
  color: var(--accent-rose);
}

.addon-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.addon-rate {
  font-weight: 700;
  color: var(--accent-rose-light);
  font-size: 0.92rem;
  white-space: nowrap;
  margin-left: 0.75rem;
}

/* Inputs */
.calc-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.calc-input,
.calc-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass-strong);
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.calc-input:focus,
.calc-select:focus {
  border-color: var(--accent-rose);
}

.calc-select option {
  background: #181824;
  color: #fff;
}

/* Summary Card */
.calc-summary-card {
  background: rgba(10, 10, 16, 0.8);
  border: 1px solid var(--border-glass-strong);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-glass);
}

.summary-header i {
  font-size: 1.4rem;
  color: var(--accent-rose);
}

.summary-header h3 {
  font-size: 1.15rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 0.65rem;
}

.summary-val {
  font-weight: 700;
  color: #fff;
}

.addon-summary-line {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.summary-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 1.25rem 0;
}

.summary-total-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.total-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-rose-light);
  line-height: 1;
}

.delivery-time-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  font-size: 0.78rem;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.delivery-time-badge i {
  color: var(--accent-gold);
}

.dm-instruction-alert {
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #fde68a;
  text-align: left;
}

.dm-instruction-alert .alert-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.dm-instruction-alert .alert-text strong {
  color: #ffffff;
}

.summary-order-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.summary-note {
  font-size: 0.72rem;
  color: var(--text-subtle);
  line-height: 1.4;
  text-align: center;
}

/* Steps Section */
.steps-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-glass);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 63, 94, 0.4);
}

.step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-rose-light);
  background: rgba(244, 63, 94, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Rewards Section */
.rewards-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.reward-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.reward-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-strong);
}

.highlight-reward {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(28, 25, 23, 0.85);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.reward-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.review-icon {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-rose);
}

.referral-icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
}

.ledger-icon {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-diamond);
}

.reward-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.reward-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.reward-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.reward-highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
}

.reward-eligibility {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.78rem;
  color: #fde68a;
  line-height: 1.45;
}

.order-id-badge {
  display: inline-block;
  background: #000;
  color: var(--accent-diamond-light);
  font-family: monospace;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.ledger-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ledger-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ledger-list i {
  color: var(--accent-diamond);
}

/* Reviews & Client Love Section */
.reviews-section {
  padding: 4.5rem 0;
  background: rgba(12, 12, 20, 0.4);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.reviews-grid-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.25rem;
  align-items: start;
}

/* Post Review (Left Column QR Card) */
.post-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.post-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 20px 45px rgba(244, 63, 94, 0.18);
}

.review-reward-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fda4af;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.post-review-title {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
  color: #fff;
}

.post-review-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Digital QR Frame with Glowing Laser & Bezel */
.digital-qr-frame {
  position: relative;
  width: 190px;
  height: 190px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 0 35px rgba(244, 63, 94, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.digital-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Scanner Corner Markers */
.qr-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent-rose);
  pointer-events: none;
  z-index: 2;
}

.qr-corner.top-left {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 8px;
}

.qr-corner.top-right {
  top: 6px;
  right: 6px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 8px;
}

.qr-corner.bottom-left {
  bottom: 6px;
  left: 6px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 8px;
}

.qr-corner.bottom-right {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 8px;
}

/* Animated Scanner Laser Sweep */
.qr-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f43f5e, #fb7185, transparent);
  box-shadow: 0 0 12px #f43f5e;
  animation: scanSweep 2.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 3;
}

@keyframes scanSweep {
  0% { top: 6%; opacity: 0.2; }
  50% { opacity: 0.9; }
  100% { top: 92%; opacity: 0.2; }
}

.qr-caption {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.qr-caption i {
  color: var(--accent-rose);
}

.post-review-action {
  width: 100%;
  margin-bottom: 1rem;
}

.review-guarantee-note {
  font-size: 0.72rem;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-guarantee-note i {
  color: var(--success);
}

/* User Reviews Column (Right Side) */
.user-reviews-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Rating Summary Bar */
.reviews-summary-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.25rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.summary-score-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.score-big {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.score-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.score-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.summary-stats-pills {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.76rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stat-pill i {
  color: var(--accent-rose);
}

.stat-pill strong {
  color: #fff;
}

/* Review Cards List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.customer-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.customer-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviewer-meta strong {
  color: var(--accent-rose-light);
}

.review-rating {
  display: flex;
  gap: 0.15rem;
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.review-content {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
  font-style: italic;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-subtle);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.65rem;
}

.verified-tag {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-glass-strong);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.15rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  gap: 1rem;
}

.faq-question i {
  font-size: 1.1rem;
  color: var(--accent-rose);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.4rem 1.25rem 1.4rem;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0 5rem 0;
}

.contact-card {
  background: linear-gradient(135deg, #181828 0%, #10101c 100%);
  border: 1px solid var(--border-glass-strong);
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.contact-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 860px;
  margin: 0 auto 2rem auto;
}

.contact-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-strong);
  border-radius: 18px;
  padding: 1.15rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
  transition: all var(--transition-fast);
  text-align: left;
}

.contact-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
}

.instagram-btn:hover {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-color: var(--accent-rose);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--whatsapp);
}

.discord-btn:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: #5865F2;
}

.email-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-diamond);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.instagram-btn .btn-icon { background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%); color: #fff; }
.whatsapp-btn .btn-icon { background: var(--whatsapp); color: #fff; }
.discord-btn .btn-icon { background: #5865F2; color: #fff; }
.email-btn .btn-icon { background: var(--accent-diamond); color: #0a0a0f; }

.btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn-primary-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-sub-text {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.contact-btn > i {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.contact-footer-note {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-footer-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-footer-note i {
  color: var(--accent-rose);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0 2rem 0;
  background: #07070b;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

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

.footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  width: 100%;
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-strong);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-rose);
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-rose-light);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.modal-price-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-rose-light);
  margin-bottom: 1.5rem;
}

.modal-section {
  margin-bottom: 1.25rem;
}

.modal-section h4 {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  color: #fff;
}

.modal-section h4 i {
  color: var(--accent-rose);
}

.modal-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-feature-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.modal-feature-list li i {
  color: var(--success);
  margin-top: 2px;
}

.modal-upgrades-box,
.modal-requirements-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.modal-actions {
  margin-top: 1.75rem;
}

/* Toast */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e1e2d;
  border: 1px solid var(--success);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice i {
  color: var(--success);
  font-size: 1.1rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

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

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-features, .hero-cta-group {
    justify-content: center;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calc-summary-card {
    position: static;
  }

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

  .rewards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .reviews-grid-layout {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .contact-buttons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .calculator-wrapper {
    padding: 1.5rem 1.1rem;
  }

  .calc-inputs-row {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    padding: 2rem 1.25rem;
  }
}
