/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  --bg-darker: #05050a;
  --bg-dark: #0a0a14;
  --bg-card: rgba(18, 18, 32, 0.6);
  --bg-glass: rgba(10, 10, 20, 0.5);
  
  --primary: #9d4edd;
  --primary-glow: rgba(157, 78, 221, 0.5);
  --secondary: #00f2fe;
  --secondary-glow: rgba(0, 242, 254, 0.4);
  --accent-gold: #ffb703;
  --accent-gold-glow: rgba(255, 183, 3, 0.4);
  
  --text-main: #f5f5fa;
  --text-muted: #94a3b8;
  --text-inverse: #05050a;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(157, 78, 221, 0.2);
  
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Reset & Basics
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darker);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Canvas styling for 3D Background */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #0d0b21 0%, var(--bg-darker) 100%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* ==========================================================================
   Typography & Helper Styles
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

.section-header {
  margin-bottom: 3.5rem;
}

.section-badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0 auto;
  font-size: 1.1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #7b2cbf 100%);
  color: var(--text-main);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--primary-glow);
  filter: brightness(1.1);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Glassmorphic Cards
   ========================================================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.15);
  transform: translateY(-5px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

.logo-icon {
  font-size: 1.7rem;
  animation: pulse-glow 2s infinite ease-in-out;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
}

.desktop-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.desktop-menu a:hover, .desktop-menu a.active {
  color: var(--text-main);
}

.desktop-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-fast);
}

.desktop-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discount-badge {
  background: rgba(255, 183, 3, 0.1);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-glow);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.1);
}

/* Mobile drawer style */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

.mobile-drawer {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--bg-darker);
  backdrop-filter: blur(20px);
  z-index: 99;
  transition: var(--transition-smooth);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-light);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 160px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
}

.badge-accent {
  align-self: flex-start;
  background: rgba(0, 242, 254, 0.1);
  color: var(--secondary);
  border: 1px solid var(--secondary-glow);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero-content .motto {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
}

.sale-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 183, 3, 0.4);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.sale-glow {
  color: var(--accent-gold);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 183, 3, 0.3);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CSS 3D Phone Mockup Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.visual-3d-card-wrapper {
  transform-style: preserve-3d;
  animation: float-3d 6s ease-in-out infinite alternate;
}

.visual-3d-card {
  width: 280px;
  height: 560px;
  background: #09090f;
  border: 12px solid #1a1a2e;
  border-radius: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 
              0 0 30px rgba(157, 78, 221, 0.2), 
              inset 0 0 15px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transform: rotateY(-15deg) rotateX(10deg);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #1a1a2e;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(circle at center, #1b1437 0%, #070414 100%);
  position: relative;
  z-index: 10;
}

/* Pre-styled inner mockup elements */
.mock-invite-header {
  text-align: center;
  margin-top: 2rem;
}

.wedding-ring {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: ring-bounce 2s infinite ease-in-out;
}

.mock-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.mock-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.mock-date-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-radius: 15px;
  width: 100%;
  text-align: center;
}

.mock-date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.mock-timer {
  font-size: 0.75rem;
  font-family: var(--font-display);
  color: var(--secondary);
  margin-top: 0.25rem;
}

.mock-pulse-button {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--text-main);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 0 15px var(--primary-glow);
  animation: btn-pulse 2s infinite;
  cursor: pointer;
}

.mock-audio-visualizer {
  display: flex;
  gap: 4px;
  height: 20px;
  align-items: flex-end;
  margin-top: 0.5rem;
}

.mock-audio-visualizer span {
  width: 3px;
  background-color: var(--secondary);
  border-radius: 3px;
  animation: bounce-bar 1.2s ease-in-out infinite alternate;
}

.mock-audio-visualizer span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.mock-audio-visualizer span:nth-child(2) { height: 16px; animation-delay: 0.4s; }
.mock-audio-visualizer span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.mock-audio-visualizer span:nth-child(4) { height: 18px; animation-delay: 0.6s; }
.mock-audio-visualizer span:nth-child(5) { height: 6px; animation-delay: 0.3s; }

/* ==========================================================================
   Sliding Showcase (Marquee)
   ========================================================================== */
.sliding-showcase-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 20, 0.4) 50%, transparent 100%);
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  width: 280px;
  height: 380px;
}

.mock-preview-thumb {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.mock-preview-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(5,5,10,0.95) 0%, rgba(5,5,10,0.3) 50%, rgba(255,255,255,0.05) 100%);
  z-index: 1;
}

.thumb-content {
  position: relative;
  z-index: 2;
}

.thumb-content .tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.thumb-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Background Gradients for showcase templates */
.royal-wedding {
  background: radial-gradient(circle at top right, #912f56 0%, #240a16 100%);
  border-color: rgba(145, 47, 86, 0.4);
}
.neon-party {
  background: radial-gradient(circle at top right, #00f2fe 0%, #051937 100%);
  border-color: rgba(0, 242, 254, 0.3);
}
.forest-boho {
  background: radial-gradient(circle at top right, #40916c 0%, #1b4332 100%);
  border-color: rgba(64, 145, 108, 0.3);
}
.dark-luxe {
  background: radial-gradient(circle at top right, #2c3e50 0%, #000000 100%);
  border-color: rgba(255, 255, 255, 0.1);
}
.cosmic-save {
  background: radial-gradient(circle at top right, #5c3d75 0%, #160a20 100%);
  border-color: rgba(157, 78, 221, 0.3);
}
.baby-shower {
  background: radial-gradient(circle at top right, #f686af 0%, #46142a 100%);
  border-color: rgba(246, 134, 175, 0.3);
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */
.advantages-section {
  padding: 100px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.adv-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  height: 60px;
  display: flex;
  align-items: center;
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  font-weight: 600;
}

.advantage-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   Catalogue Section
   ========================================================================== */
.catalogue-section {
  padding: 100px 0;
  background: rgba(10, 10, 20, 0.3);
}

.catalogue-filters {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.4rem;
  border-radius: 50px;
  margin-top: 2rem;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.catalogue-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.catalogue-item:hover .item-preview::before {
  opacity: 0.25;
}

.item-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--primary);
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.8rem;
  border-radius: 5px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.item-badge.video-badge {
  background: var(--secondary);
  color: var(--text-inverse);
}

.item-preview {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  transition: var(--transition-fast);
}

/* Individual preview block gradients styling */
.template1-preview {
  background: radial-gradient(circle, #8fbc8f 0%, #2f4f4f 100%);
}
.template2-preview {
  background: radial-gradient(circle, #e63946 0%, #1d3557 100%);
}
.template3-preview {
  background: radial-gradient(circle, #c8b6ff 0%, #1e1b29 100%);
}
.royal-wed-preview {
  background: radial-gradient(circle, #7209b7 0%, #10002b 100%);
}
.gold-glitter-preview {
  background: radial-gradient(circle, #d4af37 0%, #3a2e0a 100%);
}
.neon-retro-preview {
  background: radial-gradient(circle, #00b4d8 0%, #000814 100%);
}
.floral-breeze-preview {
  background: radial-gradient(circle, #f08080 0%, #580000 100%);
}
.luxury-minimal-preview {
  background: radial-gradient(circle, #ffd700 0%, #1a1a1a 100%);
}
.funky-neon-preview {
  background: radial-gradient(circle, #ff007f 0%, #3d001f 100%);
}

.preview-overlay {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: var(--transition-smooth);
}

.catalogue-item:hover .preview-overlay {
  transform: scale(1.05);
  border-color: var(--secondary);
}

.item-details {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.original-price {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.sale-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
}

.save-badge {
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 183, 3, 0.2);
}

.item-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.item-actions .btn-direct-pay {
  grid-column: span 2;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
}

.reviews-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.reviews-container {
  position: relative;
  width: 100%;
  height: 280px; /* Keep fixed height to avoid page layout shifts */
  overflow: hidden;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  opacity: 0;
  transform: translateX(100px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.review-card.prev {
  transform: translateX(-100px) scale(0.95);
}

.rating {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-main);
  flex-grow: 1;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.rev-1 { background: linear-gradient(135deg, #f72585 0%, #7209b7 100%); }
.rev-2 { background: linear-gradient(135deg, #4cc9f0 0%, #4895ef 100%); }
.rev-3 { background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%); }

.reviewer-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-fast);
  z-index: 10;
  position: absolute;
}

.prev-arrow { left: -75px; }
.next-arrow { right: -75px; }

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--secondary);
  width: 25px;
  border-radius: 5px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background: rgba(10, 10, 20, 0.2);
}

.faq-accordion-container {
  max-width: 750px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-item.active {
  border-color: var(--border-glow);
  background: rgba(157, 78, 221, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
}

.faq-toggle-icon {
  font-size: 1.4rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

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

.footer-links h4, .footer-socials h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-icon svg {
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--secondary);
}

.social-icon:hover svg {
  color: var(--secondary);
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: var(--border-light);
  width: 100%;
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.made-in {
  font-weight: 500;
}

.footer-legal a {
  border-bottom: 1px dotted var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-main);
  border-color: var(--text-main);
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-content {
  width: 90%;
  max-width: 600px;
  padding: 3rem 2.5rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-smooth);
  max-height: 85vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-main);
  transform: rotate(90deg);
}

.modal-body h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.mock-interactive-viewport {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Responsive Iframe Viewport for Real Website Previews */
.mock-interactive-viewport.real-web-viewport {
  height: 520px;
  background: #fff;
  padding: 0;
  border: 1px solid var(--border-light);
}

.preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Reduce padding in modal-content when viewing real-web templates to emulate phone */
.modal.real-web-open .modal-content {
  max-width: 500px;
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}

.preview-screen-sim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 2rem;
  text-align: center;
}

.preview-sim-text {
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.preview-sim-sub {
  z-index: 2;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

/* Privacy Body specifics */
.privacy-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.last-updated {
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.privacy-body h3 {
  color: var(--text-main);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem 0;
}

.privacy-body p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Help Desk Chat & WhatsApp Floating Widgets
   ========================================================================== */
/* WhatsApp bubble */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  left: 75px;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Help Desk Widget */
.helpdesk-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-family: var(--font-body);
}

.helpdesk-trigger {
  background: linear-gradient(135deg, var(--primary) 0%, #6200ea 100%);
  color: var(--text-main);
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 8px 25px var(--primary-glow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.helpdesk-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--primary-glow);
}

.helpdesk-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 360px;
  height: 480px;
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-smooth);
}

.helpdesk-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.helpdesk-header {
  background: rgba(157, 78, 221, 0.1);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.helpdesk-agent-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.agent-avatar {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.helpdesk-agent-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.agent-status {
  font-size: 0.75rem;
  color: var(--secondary);
}

.helpdesk-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.helpdesk-close:hover {
  color: var(--text-main);
}

.helpdesk-chat-area {
  flex-grow: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 80%;
  padding: 0.85rem 1.1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chat-message.bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-message.user {
  background: var(--primary);
  align-self: flex-end;
  color: var(--text-main);
  border-bottom-right-radius: 2px;
  box-shadow: 0 4px 10px rgba(157, 78, 221, 0.2);
}

.chat-message .time {
  font-size: 0.65rem;
  color: var(--text-muted);
  align-self: flex-end;
}

.chat-message.user .time {
  color: rgba(255,255,255,0.7);
}

.chat-suggestions {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 1.25rem;
  border-top: 1px solid var(--border-light);
  scrollbar-width: none;
}

.chat-suggestions::-webkit-scrollbar {
  display: none;
}

.suggest-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.suggest-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  border-color: var(--secondary);
}

.helpdesk-input-form {
  border-top: 1px solid var(--border-light);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  background: rgba(5,5,10,0.5);
}

.helpdesk-input-form input {
  flex-grow: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 0.6rem 1.2rem;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

.helpdesk-input-form input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
}

.chat-send-btn {
  background: var(--primary);
  color: var(--text-main);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-send-btn:hover {
  background: #7b2cbf;
  transform: scale(1.05);
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--secondary-glow)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 10px var(--secondary)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--secondary-glow)); }
}

@keyframes float-3d {
  0% { transform: translateY(0px) rotateY(-12deg) rotateX(8deg); }
  100% { transform: translateY(-20px) rotateY(-20deg) rotateX(15deg); }
}

@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(157, 78, 221, 0); }
  100% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0); }
}

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

@keyframes bounce-bar {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1.1); }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Media Queries & Responsive Styling
   ========================================================================== */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content .motto {
    border-left: none;
    border-top: 3px solid var(--primary);
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .prev-arrow { left: -20px; }
  .next-arrow { right: -20px; }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-cta {
    display: none;
  }
}

/* ==========================================================================
   Checkout Form Controls
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px var(--secondary-glow);
}

/* Gold Direct Purchase Button styling */
.btn-buy {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e6a100 100%);
  color: var(--text-inverse);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
  border: none;
}

.btn-buy:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.5);
  filter: brightness(1.15);
}
