@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Share+Tech+Mono&family=Unbounded:wght@300;400;500;700;900&family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN SYSTEM - VARIABLES
   ========================================== */
:root {
  --bg-dark: #05020c;
  --bg-deep: #0a0418;
  --bg-card: rgba(14, 6, 27, 0.65);
  --bg-card-hover: rgba(22, 10, 42, 0.85);
  
  --primary: #8B5CF6; /* Royal Violet */
  --primary-glow: rgba(139, 92, 246, 0.55);
  --secondary: #FF2E93; /* Neon Orchid Pink */
  --secondary-glow: rgba(255, 46, 147, 0.45);
  
  /* Laponlo Logo Gold */
  --accent-gold: #FFD700; /* Vibrant Gold */
  --accent-gold-dark: #C5A000;
  --accent-gold-glow: rgba(255, 215, 0, 0.5);
  
  --text-white: #FFFFFF;
  --text-light: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-dim: #4B5563;
  
  --border: rgba(255, 255, 255, 0.04);
  --border-active: rgba(255, 215, 0, 0.45);
  --border-glow: rgba(139, 92, 246, 0.35);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  --transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Unbounded', sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Cosmic Noise Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  z-index: 999;
  pointer-events: none;
}

/* Dynamic Grid Canvas */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #0d061e 0%, #05020c 100%);
}

.bg-mesh::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
}

/* Morphing Background Liquid Blobs */
.bg-glow-1 {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
  top: -200px;
  left: -250px;
  z-index: -1;
  filter: blur(80px);
  border-radius: 43% 57% 50% 50% / 40% 45% 55% 60%;
  animation: morph-blob 25s infinite ease-in-out alternate;
}

.bg-glow-2 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 46, 147, 0.16) 0%, transparent 70%);
  bottom: -150px;
  right: -200px;
  z-index: -1;
  filter: blur(80px);
  border-radius: 50% 50% 45% 55% / 45% 55% 45% 55%;
  animation: morph-blob 18s infinite ease-in-out alternate-reverse;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ==========================================
   TYPOGRAPHY (BRUTALIST-LUXURY)
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

h1 {
  font-size: 4rem;
  font-weight: 900;
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--text-white) 15%, var(--accent-gold) 65%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-highlight {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  font-weight: 800;
}

/* Technical chrono detail tags */
.chrono-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chrono-tag::before {
  content: "[";
  color: var(--accent-gold);
}

.chrono-tag::after {
  content: "]";
  color: var(--accent-gold);
}

/* ==========================================
   SPATIAL COMPOSITION & OVERLAPS
   ========================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

section {
  padding: 120px 0;
  position: relative;
}

/* Structural grid lines */
.grid-line-x {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}

/* ==========================================
   GLASSMORPHISM PANELS (DOUBLE NEON BORDER)
   ========================================== */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Cyber corner decors */
.glass-panel::before {
  content: "+";
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent-gold);
  opacity: 0.55;
}

.glass-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  border-right: 2px solid rgba(255, 215, 0, 0.4);
  pointer-events: none;
}

.glass-panel:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(139, 92, 246, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1240px;
  height: 64px;
  z-index: 1000;
  border-radius: 40px;
  padding: 0 24px;
  background: rgba(10, 5, 24, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7),
              0 0 24px rgba(124, 58, 237, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible !important;
}

.navbar .btn,
.navbar > .btn-primary {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 30px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #070311 !important;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.35);
  transition: all 0.25s ease;
}

.navbar .btn:hover,
.navbar > .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

/* Logo Image / SVG styling */
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.45));
  transition: var(--transition);
}

.logo-container:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.65)) drop-shadow(0 0 15px var(--primary-glow));
}

.logo-icon-svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.45));
  transition: var(--transition);
}

.logo-container:hover .logo-icon-svg {
  transform: rotate(5deg) scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.65)) drop-shadow(0 0 15px var(--primary-glow));
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--accent-gold);
  letter-spacing: -0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

.logo-text span {
  color: var(--text-white);
  font-family: inherit;
  font-size: inherit !important;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  margin-left: 0;
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-links > li {
  position: relative;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 8px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.12);
  font-weight: 700;
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.15);
}

.nav-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.85;
  transition: var(--transition);
}

.nav-links a:hover .nav-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px var(--primary-glow));
}

.mobile-only-nav-cta {
  display: none !important;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--secondary));
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(250, 200, 21, 0.5);
}

.nav-links a.active {
  color: var(--text-white);
}

.nav-links a.active::after {
  width: 100%;
}

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

/* Glassmorphic Dropdown Navigation */
.nav-dropdown {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(10, 4, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 110;
}

/* Dropdown top indicator cyber decoration */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(10, 4, 24, 0.96);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-menu a {
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--text-muted) !important;
  display: flex;
  width: 100%;
  text-align: left;
  border-radius: 0;
}

.nav-dropdown-menu a:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--text-white) !important;
  padding-left: 24px;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

/* ==========================================
   BUTTONS (TACTILE RETRO-FUTURE)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  z-index: 1;
}

/* Tactical Glare & Corner Accent Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #05020c;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-weight: 900;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: 0.55s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.35),
              0 0 25px rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-md);
}

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

/* Secondary Cyber Outline Button */
.btn-secondary {
  background: rgba(139, 92, 246, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary::after {
  content: " ◈";
  color: var(--secondary);
  font-size: 0.8rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.18);
  color: var(--text-white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary:hover::after {
  transform: rotate(90deg);
  color: var(--accent-gold);
}

/* WhatsApp Brand Button */
.btn-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp::after {
  content: " ◈";
  color: #25D366;
  font-size: 0.8rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  color: #FFFFFF;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover::after {
  transform: rotate(90deg);
  color: var(--accent-gold);
}

/* Editorial Minimalist Button */
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  align-self: flex-start;
  background: rgba(255, 46, 147, 0.07);
  border: 1px solid rgba(255, 46, 147, 0.2);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  animation: pulse-slow 1.5s infinite;
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.05;
  font-weight: 900;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* Asymmetric Interactive Preview Showcase */
.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(255, 46, 147, 0.08) 0%, transparent 60%);
  top: -15%;
  left: -15%;
  z-index: -1;
  filter: blur(60px);
}

.showcase-frame {
  width: 100%;
  max-width: 500px;
  background: rgba(14, 6, 28, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6),
              inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transform: perspective(1200px) rotateY(-10deg) rotateX(8deg);
  transition: var(--transition);
}

.showcase-frame::before {
  content: "[SYS_MOCK_ACTIVE]";
  position: absolute;
  top: -24px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-gold);
}

.showcase-frame:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: var(--accent-gold-dark);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.7),
              0 0 40px rgba(250, 200, 21, 0.15);
}

.showcase-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 8px;
}

.showcase-title-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

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

.showcase-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.showcase-content {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #06020c;
  aspect-ratio: 4/3.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Custom interactive mockup preview */
.tambola-preview-mockup {
  width: 100%;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #0e0520 0%, #06020c 100%);
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-badge {
  background: rgba(255, 46, 147, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(255, 46, 147, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.mock-board {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 5px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-cell {
  aspect-ratio: 1.15;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.mock-cell.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #070311;
  box-shadow: 0 0 12px var(--accent-gold-glow);
  border: none;
}

.mock-cell.called {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  box-shadow: 0 0 12px var(--primary-glow);
  border: none;
}

.mock-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.mock-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-info span:first-child {
  font-size: 0.55rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.mock-info span:last-child {
  font-size: 0.9rem;
  color: var(--text-white);
  font-weight: 700;
}

.mock-ball {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #070311;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(250, 200, 21, 0.45);
  animation: pulse-slow 1.5s infinite;
  font-family: var(--font-heading);
}

/* ==========================================
   FEATURES / SERVICES SECTION
   ========================================== */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-tag {
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.section-header h2 {
  font-size: 3.2rem;
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-icon-box {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: rgba(255, 46, 147, 0.05);
  border: 1px solid rgba(255, 46, 147, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
  background: var(--secondary);
  color: #FFFFFF;
  border-color: var(--secondary);
  box-shadow: 0 12px 30px var(--secondary-glow);
  transform: translateY(-3px) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5.5rem;
  line-height: 0.8;
  background: linear-gradient(180deg, rgba(255, 46, 147, 0.15) 0%, rgba(255, 46, 147, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -24px;
  right: 16px;
  pointer-events: none;
}

.step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #070311;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

/* ==========================================
   MULTI-STEP REGISTRATION WIZARD
   ========================================== */
.wizard-container {
  max-width: 860px;
  margin: 0 auto;
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
  position: relative;
}

.wizard-progress::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.wizard-progress-bar {
  position: absolute;
  top: 28px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--secondary) 100%);
  box-shadow: 0 0 15px rgba(250, 200, 21, 0.5);
  z-index: 2;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  width: 120px;
  text-align: center;
}

.progress-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.progress-label {
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dim);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-step.active .progress-dot {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(250, 200, 21, 0.3);
  background: rgba(250, 200, 21, 0.03);
}

.progress-step.active .progress-label {
  color: var(--text-white);
}

.progress-step.completed .progress-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 0 20px var(--primary-glow);
}

.progress-step.completed .progress-label {
  color: var(--primary);
}

/* Wizard Steps Wrapper */
.wizard-step-panel {
  display: none;
}

.wizard-step-panel.active {
  display: block;
  animation: slide-up-fade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Theme Grid Style */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.theme-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.theme-card:hover {
  border-color: rgba(250, 200, 21, 0.25);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(250, 200, 21, 0.08);
}

.theme-card.selected {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(250, 200, 21, 0.2),
              0 0 0 1px var(--accent-gold);
  transform: translateY(-6px);
}

.theme-preview-box {
  height: 190px;
  background: #0f0722;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: var(--transition);
}

.theme-card:hover .theme-preview-img,
.theme-card.selected .theme-preview-img {
  opacity: 1;
  transform: scale(1.05);
}

.theme-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 3, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-family: var(--font-mono);
}

.theme-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.theme-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.theme-info p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.theme-select-indicator {
  align-self: flex-start;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: var(--transition);
  text-transform: uppercase;
}

.theme-card.selected .theme-select-indicator {
  color: var(--accent-gold);
}

/* ==========================================
   FORMS & INPUTS
   ========================================== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(7, 3, 17, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3),
              inset 0 1px 3px rgba(0,0,0,0.3);
  outline: none;
  background: rgba(12, 5, 28, 0.95);
}

.input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1.1rem;
  pointer-events: none;
  transition: var(--transition);
}

.form-input:focus ~ .input-icon {
  color: var(--primary);
}

/* Live Domain Preview UI */
.domain-preview {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-family: var(--font-mono);
}

.domain-preview strong {
  color: var(--accent-gold);
}

/* Error Indicators */
.error-msg {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  display: none;
  font-family: var(--font-mono);
}

.form-input.invalid {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.2);
}

.form-input.valid {
  border-color: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Password Strength Indicator */
.password-strength {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--border);
}

.strength-bar {
  flex-grow: 1;
  height: 100%;
  background: transparent;
  transition: var(--transition);
}

.strength-weak { background: var(--secondary); width: 33.33%; }
.strength-medium { background: var(--accent-gold); width: 66.66%; }
.strength-strong { background: #10B981; width: 100%; }

/* ==========================================
   PAYMENT SCREEN
   ========================================== */
.payment-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(7, 3, 17, 0.6);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-md);
  text-align: center;
}

.qr-code-box {
  width: 220px;
  height: 220px;
  background: var(--text-white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-box svg {
  width: 100%;
  height: 100%;
}

.qr-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qr-details strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
}

.qr-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Upload zone */
.upload-zone {
  border: 2px dashed rgba(255, 46, 147, 0.3);
  background: rgba(255, 46, 147, 0.02);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.upload-zone:hover {
  border-color: var(--accent-gold);
  background: rgba(250, 200, 21, 0.02);
}

.upload-zone.dragover {
  border-color: var(--accent-gold);
  background: rgba(250, 200, 21, 0.08);
}

.upload-icon {
  font-size: 2.8rem;
  color: var(--text-dim);
  transition: var(--transition);
}

.upload-zone:hover .upload-icon {
  color: var(--accent-gold);
  transform: translateY(-4px);
}

.upload-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-text span:first-child {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.upload-text span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.file-input {
  display: none;
}

.preview-container {
  display: none;
  width: 100%;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.preview-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.preview-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.preview-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  font-family: var(--font-mono);
}

.preview-remove {
  background: transparent;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.preview-remove:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px var(--secondary-glow);
}

/* ==========================================
   SUCCESS SCREEN
   ========================================== */
.success-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 64px 48px;
}

.success-icon-box {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.25);
  animation: scale-up 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-details {
  background: rgba(7, 3, 17, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  width: 100%;
  max-width: 550px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.success-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.success-detail-item span:first-child {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.success-detail-item span:last-child {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1rem;
}

/* ==========================================
   ACCORDION (FAQ)
   ========================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: -0.03em;
}

.faq-item.active .faq-question h4 {
  color: var(--accent-gold);
}

.faq-arrow {
  color: var(--text-dim);
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

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

.faq-answer-inner {
  padding: 0 28px 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #04010a;
  border-top: 1px solid var(--border);
  padding: 96px 0 48px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 100%, rgba(255, 46, 147, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 70px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-description {
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.7;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  align-self: flex-start;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(6px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-legal-links a {
  text-decoration: none;
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--text-light);
}

/* ==========================================
   GENERIC CONTENT PAGE LAYOUT
   ========================================== */
.page-header {
  padding: 150px 0 30px;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-bottom: none;
  background: transparent;
}

.page-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 46, 147, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.page-content-wrapper {
  padding: 30px 0 96px;
}

.rich-text {
  max-width: 860px;
  margin: 0 auto;
}

.rich-text h2 {
  font-size: 2rem;
  margin-top: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.rich-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.8;
  color: var(--text-muted);
}

.rich-text ul, .rich-text ol {
  margin-bottom: 32px;
  padding-left: 28px;
  color: var(--text-muted);
}

.rich-text li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* ==========================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================== */

/* Menu Hamburger (Mobile) */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  transition: var(--transition);
}

@media (max-width: 992px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
  .hero { padding-top: 150px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-badge {
    align-self: center;
  }
  .hero-description {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-showcase {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-description {
    margin: 0 auto;
  }
  .footer-links-col {
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* Mobile general overrides */
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 2px solid var(--primary);
    border-radius: 0;
    padding: 8px 0 8px 16px;
    margin-top: 8px;
    min-width: auto;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
  }
  .nav-dropdown-menu::before {
    display: none;
  }
  .nav-dropdown-menu a {
    padding: 8px 0;
    font-size: 0.85rem;
  }
  .mobile-only-nav-cta {
    display: block !important;
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .payment-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .hero-actions .btn {
    width: 100%;
  }
  .navbar {
    padding: 8px 24px;
    top: 14px;
  }
  .logo-text {
    font-size: 1.15rem;
  }
  .wizard-progress {
    margin-bottom: 40px;
  }
  .progress-step {
    width: 65px;
  }
  .progress-dot {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .progress-label {
    display: none;
  }
  .wizard-progress::before, .wizard-progress-bar {
    top: 22px;
  }
}

/* ==========================================
   DYNAMIC KEYFRAME ANIMATIONS
   ========================================== */
@keyframes morph-blob {
  0% {
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 50%;
    transform: translate(0, 0) scale(1);
  }
  33% {
    border-radius: 70% 30% 50% 50% / 40% 50% 60% 50%;
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    border-radius: 50% 60% 30% 70% / 55% 45% 60% 40%;
    transform: translate(-20px, 30px) scale(0.95);
  }
  100% {
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 50%;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes morph-btn {
  0% { border-radius: 65% 35% 45% 55% / 55% 45% 55% 45%; }
  50% { border-radius: 45% 55% 35% 65% / 45% 55% 45% 55%; }
  100% { border-radius: 65% 35% 45% 55% / 55% 45% 55% 45%; }
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-slow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.65; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slide-up-fade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-up {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================
   COMMUNITY-CENTRIC HOMEPAGE OVERHAULS
   ========================================== */

/* Full-bleed Community Hero with Gradient Fades */
.hero-bleed {
  min-height: 100vh;
  position: relative;
  background: url('friends-celebrating.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bleed .hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-bleed .hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 3, 17, 0.75) 0%, rgba(7, 3, 17, 0.4) 45%, rgba(7, 3, 17, 0.1) 100%),
              linear-gradient(180deg, rgba(7, 3, 17, 0.2) 0%, transparent 20%, rgba(7, 3, 17, 0.65) 100%);
  z-index: 1;
}

/* Community Trust Ribbon (Horizontal bar below hero) */
.trust-ribbon {
  background: rgba(16, 7, 31, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.trust-ribbon-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-ribbon-item svg {
  color: var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(250, 200, 21, 0.4));
  flex-shrink: 0;
}


.hero-bleed .container {
  z-index: 2;
  width: 100%;
}

.hero-bleed-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
}

.trust-badge-item svg {
  color: var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(250, 200, 21, 0.4));
  flex-shrink: 0;
}

/* Floating Trust Cards */
.floating-cards-container {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-glass-card {
  position: absolute;
  background: rgba(16, 7, 31, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  transition: var(--transition);
  animation: float-drift 6s ease-in-out infinite alternate;
}

.floating-glass-card .card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.floating-glass-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

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

.card-trust-1 {
  top: 15%;
  right: 5%;
  border-left: 3px solid var(--accent-gold);
  animation-delay: 0s;
}

.card-trust-2 {
  bottom: 20%;
  right: 15%;
  border-left: 3px solid var(--secondary);
  animation-delay: 3s;
}

@keyframes float-drift {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1.5deg); }
}

.floating-glass-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(250, 200, 21, 0.15);
}

/* Timeline/How it Works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 40px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.how-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.how-card .icon {
  font-size: 2.2rem;
  line-height: 1;
  display: inline-block;
  margin-bottom: 4px;
}

.how-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  font-family: var(--font-heading);
}

.how-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.how-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
  background: var(--bg-card-hover);
}

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

/* Perfect For Section */
.perfect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.perfect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.perfect-wide {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .perfect-wide {
    grid-column: span 2;
  }
}

.perfect-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.perfect-wide .perfect-image-wrapper {
  height: 240px;
}

.perfect-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.perfect-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(7, 3, 17, 0) 30%, rgba(7, 3, 17, 0.75) 100%);
  z-index: 1;
}

.perfect-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

.perfect-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.perfect-card .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(250, 200, 21, 0.08);
  border: 1px solid rgba(250, 200, 21, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.perfect-card:hover .icon-box {
  background: var(--accent-gold);
  color: #070311;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.perfect-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.perfect-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.perfect-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold-glow);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(250, 200, 21, 0.05);
}


/* Phone Mockup for Live Demo */
.phone-mockup-wrapper {
  max-width: 320px;
  width: 100%;
  background: #000;
  border: 12px solid #1c1917;
  border-radius: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8),
              0 0 0 2px rgba(255,255,255,0.05);
  overflow: hidden;
  aspect-ratio: 9/18.5;
  margin: 0 auto 40px;
  position: relative;
  transition: var(--transition);
}

.phone-mockup-wrapper:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 35px 80px rgba(124, 58, 237, 0.15);
}

.phone-mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0e0520 0%, #06020c 100%);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Everything Included - 3 Premium Panels */
.what-get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.get-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.get-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border);
  transition: var(--transition);
  z-index: 2;
}

.get-card-link::before { background: var(--accent-gold); }
.get-card-admin::before { background: var(--primary); }
.get-card-agent::before { background: var(--secondary); }

.get-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition);
}

.get-card-link .get-image-wrapper {
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.06) 0%, #080314 100%);
}
.get-card-admin .get-image-wrapper {
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, #080314 100%);
}
.get-card-agent .get-image-wrapper {
  background: radial-gradient(circle at center, rgba(255, 46, 147, 0.06) 0%, #080314 100%);
}

.get-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.get-card:hover .get-image-wrapper img {
  transform: scale(1.06);
}

.get-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 3, 20, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.get-content {
  padding: 25px 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.get-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.get-card .icon {
  font-size: 1.6rem;
  margin-bottom: 0;
  display: inline-block;
}

.get-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  font-family: var(--font-heading);
}

.get-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.get-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Customer Reviews */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold-glow);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* Redesigned Video Tutorials Section */
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.tutorial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tutorial-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--accent-gold);
  display: block;
}

.tutorial-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

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

.tutorial-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

/* FAQ Accordion Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--accent-gold);
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
  padding: 0 32px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dark Purple Final CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #16082f 0%, #080313 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  margin-top: 60px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
}

.cta-banner h2 {
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.15;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Footer styling */
.footer {
  background: #04020a;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

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

.footer-legal-links a:hover {
  color: var(--accent-gold);
}

/* ==========================================
   AVANT-GARDE MOBILE RESPONSIVE SYSTEM
   ========================================== */

/* Keyframe for Mobile Menu Drawer Dropdown */
@keyframes mobileNavSlide {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Base Mobile Toggle Button Default */
.mobile-nav-toggle {
  display: none;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--accent-gold);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:active {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--accent-gold);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Trust Bar Section */
.trust-bar-section {
  background: rgba(16, 7, 31, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.trust-card-new {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.trust-card-new:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35),
              0 0 20px rgba(124, 58, 237, 0.1);
}

.trust-card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.trust-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-card-content .card-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trust-card-content h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.trust-card-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* Media Query: Tablets & Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  
  .navbar {
    width: calc(100% - 48px);
    padding: 10px 20px;
  }
  
  .nav-links {
    gap: 14px;
  }
  
  .nav-links a {
    font-size: 0.78rem;
  }

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

  .floating-cards-container {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
  }

  .floating-glass-card {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 340px;
  }

  .perfect-grid, .what-get-grid, .testimonials-grid, .tutorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media Query: Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  /* GLOBAL SPACING & CONTAINERS */
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 55px 0 !important;
  }

  .glass-panel {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }

  /* FLUID TYPOGRAPHY */
  h1:not(.logo-text) {
    font-size: clamp(2.1rem, 7vw, 3rem) !important;
  }

  h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem) !important;
  }

  h3:not(.logo-text) {
    font-size: clamp(1.3rem, 4.5vw, 1.7rem) !important;
  }
}

/* ==========================================
   NAVBAR & BRAND LOGO RESPONSIVE RULES
   ========================================== */
.logo-text,
h1.logo-text,
h3.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--accent-gold);
  letter-spacing: -0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.logo-text span {
  color: var(--text-white);
  font-family: inherit;
  font-size: 1.15rem !important;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .navbar {
    top: 12px !important;
    width: calc(100% - 24px) !important;
    max-width: 100% !important;
    height: 56px !important;
    padding: 0 14px !important;
    border-radius: 28px !important;
  }

  .logo-text,
  h1.logo-text,
  h3.logo-text {
    font-size: 1.02rem !important;
  }

  .logo-text span {
    font-size: 1.02rem !important;
  }

  .logo-img,
  .logo-icon-svg {
    width: 28px !important;
    height: 28px !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 10px !important;
    width: calc(100% - 16px) !important;
    padding: 0 12px !important;
    height: 52px !important;
  }

  .logo-text,
  h1.logo-text,
  h3.logo-text {
    font-size: 0.94rem !important;
  }

  .logo-text span {
    font-size: 0.94rem !important;
  }

  .logo-img,
  .logo-icon-svg {
    width: 26px !important;
    height: 26px !important;
  }

  .mobile-nav-toggle {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
  }
}

/* ==========================================
   GLOBAL MOBILE MENU DRAWER OVERLAY
   ========================================== */
.nav-links.open {
  display: flex !important;
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  width: 100% !important;
  background: rgba(8, 3, 20, 0.96) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  border-radius: 20px !important;
  padding: 16px !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(139, 92, 246, 0.3) !important;
  z-index: 99999 !important;
  animation: mobileNavSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.nav-links.open li {
  width: 100% !important;
  display: block !important;
}

.nav-links.open a {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px 16px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--text-light, #F3F4F6) !important;
  gap: 12px !important;
  transition: all 0.2s ease !important;
}

.nav-links.open a:hover,
.nav-links.open a.active {
  background: rgba(255, 215, 0, 0.15) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  color: var(--accent-gold, #FFD700) !important;
  padding-left: 20px !important;
}

.nav-links.open .nav-svg {
  width: 18px !important;
  height: 18px !important;
}

.nav-links.open .mobile-only-nav-cta {
  display: block !important;
  margin-top: 8px !important;
  width: 100% !important;
}

.nav-links.open .mobile-only-nav-cta .btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 14px 20px !important;
}

/* Media Query: Navigation Toggle Visibility (<= 992px) */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex !important;
  }

  .navbar > .btn-primary {
    display: none !important;
  }

  .nav-links:not(.open) {
    display: none !important;
  }
}

/* Media Query: Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* BODY SECTION - RESPONSIVE GRIDS */
  .hero-bleed {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
    text-align: center;
    background-position: 30% center !important;
  }

  .hero-bleed::before {
    background: linear-gradient(180deg, rgba(7, 3, 17, 0.85) 0%, rgba(7, 3, 17, 0.75) 50%, rgba(7, 3, 17, 0.95) 100%) !important;
  }

  .hero-bleed .hero-title {
    font-size: clamp(2.1rem, 7vw, 3rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .hero-bleed .hero-description {
    font-size: 0.98rem;
    margin: 0 auto 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

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

  /* All Grids Single Column */
  .how-grid,
  .perfect-grid,
  .what-get-grid,
  .testimonials-grid,
  .tutorial-grid,
  .footer-grid,
  .features-grid,
  .about-grid,
  .pricing-grid,
  .trust-bar-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .trust-bar-section {
    padding: 30px 0;
  }

  .trust-card-new {
    padding: 20px 24px;
    gap: 16px;
  }

  .trust-card-content h4 {
    font-size: 1.15rem;
  }

  .cta-banner h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .cta-banner {
    padding: 40px 20px !important;
  }

  /* Page Headers */
  .page-header {
    padding-top: 100px !important;
    padding-bottom: 30px !important;
    text-align: center;
  }

  .page-subtitle {
    font-size: 0.98rem !important;
    padding: 0 10px;
  }

  /* WIZARD & REGISTRATION FORMS (get-link.html) */
  .wizard-progress {
    gap: 8px;
    margin-bottom: 30px;
  }

  .progress-step {
    flex: 1;
  }

  .progress-label {
    font-size: 0.7rem !important;
  }

  .progress-dot {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .theme-options-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* FOOTER SECTION */
  .footer {
    padding: 50px 0 30px !important;
  }

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

  .footer-brand {
    align-items: center;
  }

  .footer-links-col {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

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

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px !important;
  }
}

/* Media Query: Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .navbar {
    width: calc(100% - 16px);
    padding: 8px 12px;
  }

  .logo-text {
    font-size: 0.88rem !important;
  }

  .logo-img {
    width: 30px !important;
    height: 30px !important;
  }

  .btn {
    padding: 14px 20px !important;
    font-size: 0.8rem !important;
  }

  .glass-panel {
    padding: 20px 14px !important;
  }
}



