/* ==========================================================================
   AI TOOL GEMS — 3D CYBER-CRYSTAL DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Core Obsidian Void & Cyber Palette */
  --bg-void: #050813;
  --bg-space: #070c1a;
  --bg-card: rgba(13, 22, 42, 0.78);
  --bg-card-hover: rgba(19, 32, 60, 0.9);
  --bg-surface: rgba(15, 23, 42, 0.65);
  
  /* Neon Accents derived from 3D Crystal Logo */
  --neon-cyan: #00e5ff;
  --neon-cyan-glow: rgba(0, 229, 255, 0.4);
  --neon-blue: #3b82f6;
  --neon-blue-glow: rgba(59, 130, 246, 0.35);
  --neon-purple: #8b5cf6;
  --neon-purple-glow: rgba(139, 92, 246, 0.35);
  --neon-magenta: #c084fc;
  
  /* Functional Accents */
  --accent-green: #10b981;
  --accent-green-hover: #059669;
  --accent-yellow: #fbbf24;
  
  /* Text & Surface Tokens */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-glass: rgba(56, 189, 248, 0.16);
  --border-glass-hover: rgba(0, 229, 255, 0.45);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  /* 3D Shadows & Elevations */
  --shadow-3d: 0 20px 50px -10px rgba(0, 0, 0, 0.75), 0 0 35px -5px rgba(0, 229, 255, 0.15);
  --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.25);
  --radius-card: 18px;
  --radius-pill: 9999px;
  
  /* Typography */
  --font-display: "Outfit", "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-void);
  color-scheme: dark;
}

body {
  margin: 0;
  background: radial-gradient(circle at 50% 0%, #0c1833 0%, var(--bg-space) 40%, var(--bg-void) 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   ANNOUNCEMENT BAR & NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.announcement {
  background: linear-gradient(90deg, #0b152d, #142852, #0b152d);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  text-align: center;
  letter-spacing: 0.03em;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-badge {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #030712;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 4px;
}

.bullet {
  color: var(--neon-cyan);
  opacity: 0.6;
}

.site-header {
  height: 80px;
  background: rgba(7, 12, 26, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark-3d {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.brand-mark-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 70%);
}

.brand-nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 229, 255, 0.5));
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title b {
  background: linear-gradient(135deg, var(--neon-cyan), #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title small {
  font-size: 8px;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--neon-cyan);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-button, .cart-button, .menu-button {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  border-radius: 12px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.icon-button:hover, .cart-button:hover, .menu-button:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  transform: translateY(-1px);
}

.icon-button, .menu-button {
  width: 42px;
}

.cart-button {
  gap: 9px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 600;
}

.cart-button b {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #030712;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
  background: #080e1e;
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 20px;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 49;
}

.mobile-nav.show {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   HERO SECTION & 3D INTERACTIVE STAGE
   -------------------------------------------------------------------------- */
.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(139, 92, 246, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

.eyebrow.dark {
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.18);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 12px 0 20px;
  color: #ffffff;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--neon-cyan) 20%, #a855f7 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.35));
}

.hero-copy > p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
  max-width: 530px;
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.primary-button, .light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), #2563eb);
  color: #030712;
  font-weight: 800;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 229, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-button:hover, .light-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(0, 229, 255, 0.55), 0 0 25px rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
}

.text-button {
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.text-button:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--border-glass-hover);
  color: var(--neon-cyan);
}

.text-button svg {
  color: var(--neon-cyan);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 15px;
  height: 15px;
  color: var(--neon-cyan);
}

/* 3D Visual Holographic Stage */
.hero-visual {
  height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 229, 255, 0.28) 0%, rgba(139, 92, 246, 0.2) 45%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
}

.hero-3d-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* 3D Cyber Orbital Rings */
.hero-orbit-system {
  position: absolute;
  width: 440px;
  height: 440px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  pointer-events: none;
}

.orbit-3d {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit-primary {
  border: 1.5px dashed rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.25), inset 0 0 20px rgba(0, 229, 255, 0.15);
  animation: rotateOrbitPrimary 24s linear infinite;
}

.orbit-secondary {
  inset: 50px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
  animation: rotateOrbitSecondary 18s linear infinite reverse;
}

@keyframes rotateOrbitPrimary {
  0% { transform: rotateX(66deg) rotateY(18deg) rotateZ(0deg); }
  100% { transform: rotateX(66deg) rotateY(18deg) rotateZ(360deg); }
}

@keyframes rotateOrbitSecondary {
  0% { transform: rotateX(55deg) rotateY(-22deg) rotateZ(0deg); }
  100% { transform: rotateX(55deg) rotateY(-22deg) rotateZ(360deg); }
}

/* Circuit Nodes matching user's logo */
.orbit-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px 2px var(--neon-cyan), 0 0 25px var(--neon-purple);
  border: 2px solid #ffffff;
}

.orbit-node.n1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-node.n2 { top: 50%; right: 0; transform: translate(50%, -50%); background: var(--neon-purple); }
.orbit-node.n3 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.orbit-node.n4 { top: 25%; left: 0; transform: translate(-50%, -50%); background: #38bdf8; }

.orbit-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px 3px #ffffff;
}

.orbit-spark.s1 { top: 12%; left: 15%; }
.orbit-spark.s2 { bottom: 20%; right: 15%; }

/* The 3D Centerpiece Crystal Core */
.hero-3d-gem {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateZ(40px);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-3d-gem:hover {
  transform: translateZ(65px) scale(1.05);
}

.gem-halo-bloom {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.45) 0%, rgba(139, 92, 246, 0.3) 50%, transparent 75%);
  filter: blur(25px);
  z-index: -1;
  animation: pulseGemHalo 4s ease-in-out infinite alternate;
}

@keyframes pulseGemHalo {
  0% { transform: scale(0.88); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.gem-badge-3d {
  width: 170px;
  height: 170px;
  background: linear-gradient(145deg, rgba(20, 32, 60, 0.85), rgba(7, 12, 26, 0.95));
  border: 1.5px solid rgba(0, 229, 255, 0.55);
  border-radius: 36px;
  display: grid;
  place-items: center;
  box-shadow: 
    0 25px 50px -10px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(0, 229, 255, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 0 20px rgba(139, 92, 246, 0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gem-glint {
  position: absolute;
  inset: -100%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  animation: sweepGlint 6s infinite;
  pointer-events: none;
}

@keyframes sweepGlint {
  0% { transform: translateX(-100%) translateY(-100%); }
  30%, 100% { transform: translateX(100%) translateY(100%); }
}

.gem-logo-img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
  transition: transform 0.3s ease;
}

.hero-3d-gem:hover .gem-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.gem-caption {
  margin-top: 18px;
  background: rgba(11, 18, 35, 0.9);
  border: 1px solid var(--border-glass-hover);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 229, 255, 0.2);
  white-space: nowrap;
}

.gem-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: blink 2s infinite ease-in-out;
}

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

.gem-caption small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
}

.gem-caption b {
  font-family: var(--font-display);
  font-size: 13px;
  color: #ffffff;
}

/* Floating 3D Tool Cards */
.float-card {
  position: absolute;
  background: rgba(13, 22, 44, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 15;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.float-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.4);
  transform: translateZ(70px) scale(1.05) !important;
}

.float-card img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.float-card span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

.float-card small {
  display: block;
  font-size: 9px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.float-chatgpt { left: 4%; top: 16%; animation: floatA 6s ease-in-out infinite; }
.float-canva { right: 0%; top: 22%; animation: floatB 7s ease-in-out infinite; }
.float-capcut { left: 2%; bottom: 15%; animation: floatB 6.5s ease-in-out infinite 1s; }
.float-figma { right: 2%; bottom: 16%; animation: floatA 7.5s ease-in-out infinite 1.5s; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) translateZ(45px); }
  50% { transform: translateY(-12px) translateZ(55px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) translateZ(50px); }
  50% { transform: translateY(12px) translateZ(60px); }
}

/* --------------------------------------------------------------------------
   SEARCH DECK & QUICK PILLS
   -------------------------------------------------------------------------- */
.search-deck {
  position: relative;
  z-index: 25;
  margin-top: -32px;
  background: rgba(14, 23, 44, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.search-wrap {
  height: 56px;
  border-radius: 14px;
  background: rgba(6, 11, 24, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-wrap:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.search-wrap > svg {
  color: var(--neon-cyan);
  width: 22px;
  height: 22px;
}

.search-wrap input {
  border: 0;
  background: transparent;
  outline: 0;
  flex: 1;
  height: 100%;
  padding: 0 16px;
  font-size: 15px;
  color: #ffffff;
}

.search-wrap input::placeholder {
  color: var(--text-muted);
}

.search-wrap kbd {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  color: var(--neon-cyan);
  padding: 4px 8px;
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
}

.suggestions {
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  background: #0b1429;
  border: 1px solid var(--border-glass-hover);
  box-shadow: var(--shadow-3d);
  border-radius: 16px;
  padding: 10px;
  display: none;
  z-index: 40;
}

.suggestions.show {
  display: block;
}

.suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.suggestion:hover {
  background: rgba(0, 229, 255, 0.12);
}

.suggestion img {
  width: 32px;
  height: 32px;
  padding: 4px;
  background: #ffffff;
  border-radius: 8px;
}

.suggestion span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.suggestion small {
  margin-left: auto;
  color: var(--neon-cyan);
  font-weight: 700;
}

.quick-search {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 4px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.quick-search button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.quick-search button:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
}

/* --------------------------------------------------------------------------
   STATS STRIP
   -------------------------------------------------------------------------- */
.stats-strip {
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0 35px;
  background: rgba(7, 12, 26, 0.5);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-inner div {
  padding-left: 38px;
  border-left: 1px solid var(--border-subtle);
}

.stats-inner div:first-child {
  padding-left: 0;
  border: 0;
}

.stats-inner b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-inner span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   SECTION COMMON STYLES
   -------------------------------------------------------------------------- */
.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 12px 0 0;
  color: #ffffff;
}

.section-head > p {
  width: 400px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CATEGORY 3D CARDS
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  padding: 0;
  min-height: 250px;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.category-visual {
  display: block;
  width: 100%;
  height: 158px;
  background-image: url("assets/category-visuals.png");
  background-repeat: no-repeat;
  background-size: 500% auto;
  background-position: var(--category-x) var(--category-y);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 19, 0.85));
}

.category-count {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  background: rgba(7, 12, 26, 0.85);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-content {
  min-height: 92px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.category-content > span {
  display: flex;
  flex-direction: column;
}

.category-content small {
  margin: 0 0 4px;
  color: var(--neon-cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-content b {
  font-family: var(--font-display);
  font-size: 16px;
  color: #ffffff;
}

.category-content i {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--neon-cyan);
  display: grid;
  place-items: center;
  font-style: normal;
  transition: all 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.25);
}

.category-card:hover .category-visual {
  transform: scale(1.08);
}

.category-card:hover .category-content i {
  background: var(--neon-cyan);
  color: #030712;
  transform: translateX(3px);
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* --------------------------------------------------------------------------
   PRODUCTS SECTION & 3D INTERACTIVE CARDS
   -------------------------------------------------------------------------- */
.products-section {
  background: radial-gradient(circle at 50% 30%, rgba(14, 25, 52, 0.5) 0%, rgba(5, 8, 19, 0.8) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.filter-actions select, .filter-toggle {
  height: 42px;
  background: rgba(14, 23, 44, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0 15px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease;
}

.filter-actions select:focus, .filter-toggle:hover {
  border-color: var(--neon-cyan);
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-chip {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #030712;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
}

.active-query {
  font-size: 13px;
  margin: -8px 0 20px;
  color: var(--text-secondary);
  display: none;
}

.active-query.show {
  display: block;
}

.active-query button {
  color: var(--neon-cyan);
  text-decoration: underline;
  padding: 0;
}

/* 3D Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: linear-gradient(180deg, rgba(16, 26, 50, 0.85) 0%, rgba(8, 14, 28, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease-out, border-color 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.16) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.product-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.25);
  --ty: -6px;
}

.product-card:hover::after {
  opacity: 1;
}

.product-media {
  height: 175px;
  background: radial-gradient(circle at 50% 50%, rgba(26, 45, 86, 0.6) 0%, rgba(7, 12, 26, 0.9) 80%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.product-media::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.1);
}

.product-media .brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .brand-logo {
  transform: scale(1.1) translateZ(20px);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #030712;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.compare-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(11, 18, 35, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.compare-toggle.active {
  background: var(--neon-cyan);
  color: #030712;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating {
  color: var(--accent-yellow);
  letter-spacing: 0;
}

.product-body h3 {
  font-family: var(--font-display);
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  min-height: 38px;
}

.tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--text-secondary);
}

.product-specs {
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-specs i {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  border-radius: 50%;
}

.product-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}

.price-block small {
  display: block;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 11px;
}

.price-block strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.saving {
  font-size: 10px;
  font-weight: 800;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 3px 7px;
  border-radius: 6px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin-top: 14px;
}

.buy-now-card {
  grid-column: 1 / -1;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}

.buy-now-card:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
}

.detail-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 11px;
  transition: all 0.2s ease;
  min-height: 40px;
}

.detail-button:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.add-button {
  width: 42px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.add-button:hover, .add-button.added {
  background: var(--neon-cyan);
  color: #030712;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 70px 20px;
  display: none;
}

.empty-state.show {
  display: block;
}

.empty-state-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #ffffff;
}

.center-action {
  text-align: center;
  margin-top: 36px;
}

.secondary-button {
  background: rgba(14, 23, 44, 0.8);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  border-radius: 12px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s ease;
}

.secondary-button:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
  color: var(--neon-cyan);
}

/* --------------------------------------------------------------------------
   GUIDED FINDER SECTION
   -------------------------------------------------------------------------- */
.finder-section {
  background: linear-gradient(135deg, #070d1d 0%, #101c3d 50%, #070d1d 100%);
  padding: 95px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.finder-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.finder-copy h2 {
  font-size: clamp(38px, 4vw, 56px);
  margin: 18px 0 20px;
  color: #ffffff;
  font-family: var(--font-display);
}

.finder-copy > p {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  font-size: 16px;
}

.finder-preview {
  background: rgba(14, 23, 44, 0.9);
  border: 1px solid var(--border-glass-hover);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 229, 255, 0.15);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease;
}

.finder-preview:hover {
  transform: rotate(0deg) scale(1.02);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  color: var(--neon-cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.finder-preview > p {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 20px 0 16px;
}

.preview-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.preview-options span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(6, 11, 24, 0.6);
}

.preview-options .selected {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(139, 92, 246, 0.25));
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.match-card {
  background: rgba(7, 12, 26, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  margin-top: 25px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #030712;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.match-card small {
  color: var(--neon-cyan);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.match-card b {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 15px;
}

.match-card span {
  font-size: 11px;
  color: var(--text-muted);
}

.match-card strong {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 16px;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   STEPS GRID (HOW IT WORKS)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}

.steps-grid article {
  padding: 32px 28px;
  border-right: 1px solid var(--border-glass);
  position: relative;
  transition: background 0.3s ease;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article:hover {
  background: rgba(0, 229, 255, 0.04);
}

.steps-grid article > span {
  position: absolute;
  right: 24px;
  top: 24px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-display);
}

.step-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.steps-grid h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 26px 0 8px;
}

.steps-grid p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   STACK CARD & BUNDLE
   -------------------------------------------------------------------------- */
.stack-section {
  padding-bottom: 90px;
}

.stack-card {
  min-height: 520px;
  background: linear-gradient(135deg, #091224 0%, #15274d 60%, #0e1c3a 100%);
  border: 1px solid var(--border-glass-hover);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 229, 255, 0.15);
}

.stack-copy {
  padding: 70px;
  position: relative;
  z-index: 2;
}

.stack-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 1.05;
  color: #ffffff;
  margin: 16px 0 20px;
}

.stack-copy > p {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
  font-size: 16px;
}

.stack-price {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.stack-price span {
  font-size: 11px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.stack-price b {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.stack-visual {
  position: relative;
  min-height: 500px;
  z-index: 2;
}

.stack-item {
  position: absolute;
  background: rgba(13, 22, 44, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 20px;
  width: 170px;
  height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease;
}

.stack-item:hover {
  transform: scale(1.08) translateY(-5px) !important;
  border-color: var(--neon-cyan);
}

.stack-item img, .stack-item .eleven {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.stack-item .eleven {
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #030712;
  border-radius: 12px;
  font-weight: 900;
}

.stack-item span {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}

.s1 { top: 60px; left: 40px; transform: rotate(-6deg); }
.s2 { top: 30px; right: 55px; transform: rotate(6deg); }
.s3 { bottom: 60px; left: 80px; transform: rotate(5deg); }
.s4 { bottom: 85px; right: 35px; transform: rotate(-7deg); }

/* --------------------------------------------------------------------------
   PROOF & TRUST SECTION
   -------------------------------------------------------------------------- */
.proof-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.proof-card, .why-card {
  border-radius: 24px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-3d);
}

.proof-card {
  background: linear-gradient(135deg, rgba(14, 25, 52, 0.9) 0%, rgba(8, 14, 30, 0.95) 100%);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--neon-cyan);
  opacity: 0.8;
}

.proof-card blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 30px 0 45px;
  color: #ffffff;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer > div {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #030712;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.reviewer b {
  font-size: 13px;
  color: #ffffff;
}

.reviewer small {
  font-size: 11px;
  color: var(--text-muted);
}

.why-card h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: #ffffff;
  margin: 15px 0 28px;
}

.why-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-card li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
}

.why-card li svg {
  color: var(--neon-cyan);
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.why-card li b {
  font-size: 14px;
  color: #ffffff;
}

.why-card li small {
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 3px;
  display: block;
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  color: #ffffff;
  margin: 15px 0;
}

.faq-section > div > p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 700;
  margin-top: 18px;
  transition: opacity 0.2s ease;
}

.whatsapp-link:hover {
  opacity: 0.85;
}

.faq-list details {
  border-top: 1px solid var(--border-subtle);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-list summary {
  list-style: none;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 24px;
  color: var(--neon-cyan);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 30px 24px 0;
  margin: 0;
}

/* --------------------------------------------------------------------------
   FINAL CALL TO ACTION
   -------------------------------------------------------------------------- */
.final-cta {
  background: radial-gradient(circle at 50% 50%, #0d1e40 0%, #050813 75%);
  border-top: 1px solid var(--border-glass);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge-3d {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(139, 92, 246, 0.25));
  border: 1.5px solid var(--border-glass-hover);
  border-radius: 24px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35);
}

.cta-logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  color: #ffffff;
  margin: 18px 0;
  letter-spacing: -0.04em;
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 550px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.outline-light-button {
  border: 1px solid var(--border-glass);
  color: #ffffff;
  border-radius: 12px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(14, 23, 44, 0.6);
  transition: all 0.2s ease;
}

.outline-light-button:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  color: var(--neon-cyan);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: #03060c;
  color: var(--text-secondary);
  padding: 70px 0 25px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 45px;
}

.footer-brand p {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--text-muted);
  margin-top: 30px;
}

.footer-grid h3 {
  font-size: 11px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 4px 0 20px;
  font-weight: 800;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  margin: 12px 0;
  transition: color 0.2s ease;
}

.footer-grid > div > a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  margin-top: 50px;
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
}

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  z-index: 55;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-radius: 999px;
  height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.mobile-bottom {
  display: none;
}

/* --------------------------------------------------------------------------
   DRAWERS & MODALS (CART, COMPARE, FINDER, DETAILS)
   -------------------------------------------------------------------------- */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background: #090f20;
  border-left: 1px solid var(--border-glass);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.8);
}

.drawer.open {
  transform: none;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(14, 23, 44, 0.6);
}

.drawer-head small {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  font-weight: 800;
}

.drawer-head h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #ffffff;
  margin: 3px 0 0;
}

.close-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.close-button:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.cart-items {
  padding: 18px;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  background: rgba(14, 23, 44, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  align-items: center;
}

.cart-item img {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px;
}

.cart-item span {
  display: flex;
  flex-direction: column;
}

.cart-item b {
  font-size: 14px;
  color: #ffffff;
}

.cart-item small {
  color: var(--text-muted);
  font-size: 11px;
}

.cart-item strong {
  font-size: 13px;
  color: var(--neon-cyan);
  margin-top: 2px;
}

.remove-cart {
  border: 0;
  background: none;
  color: var(--text-muted);
  font-size: 20px;
}

.remove-cart:hover {
  color: #ef4444;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding-top: 100px;
}

.cart-empty h3 {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 4px;
}

.cart-footer {
  background: rgba(14, 23, 44, 0.95);
  border-top: 1px solid var(--border-glass);
  padding: 24px;
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cart-footer > div b {
  font-family: var(--font-display);
  font-size: 24px;
  color: #ffffff;
}

.cart-footer p {
  color: var(--text-muted);
  font-size: 11px;
  margin: 0 0 16px;
}

.whatsapp-checkout {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
}

.whatsapp-checkout:hover {
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
  transform: translateY(-2px);
}

/* Compare Drawer & Table */
.compare-drawer {
  width: min(920px, 100%);
}

#compareContent {
  padding: 25px;
  overflow: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
  font-size: 13px;
}

.compare-table th {
  background: rgba(14, 23, 44, 0.9);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px;
  min-width: 160px;
}

.compare-table th img {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px;
}

.compare-table td {
  background: rgba(11, 18, 35, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-secondary);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  background: transparent;
  border: 0;
  color: #ffffff;
}

/* Modals (Product Details & Guided Finder) */
.modal {
  position: fixed;
  z-index: 80;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(720px, calc(100% - 30px));
  max-height: 90vh;
  overflow-y: auto;
  background: #090f20;
  border: 1px solid var(--border-glass-hover);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 229, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.finder-step {
  padding: 50px 40px;
}

.finder-step .progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 30px;
  overflow: hidden;
}

.finder-step .progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  box-shadow: 0 0 10px var(--neon-cyan);
  transition: width 0.35s ease;
}

.finder-step h2 {
  font-family: var(--font-display);
  font-size: 34px;
  color: #ffffff;
  margin: 12px 0;
}

.finder-step > p {
  color: var(--text-secondary);
  font-size: 15px;
}

.finder-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.finder-choice {
  background: rgba(14, 23, 44, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  transition: all 0.2s ease;
}

.finder-choice:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
}

.finder-choice small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

.finder-results {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.finder-result {
  background: rgba(14, 23, 44, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: all 0.2s ease;
}

.finder-result:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
}

.finder-result img {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px;
}

.finder-result small {
  color: var(--neon-cyan);
  font-size: 9px;
  font-weight: 800;
}

.finder-result b {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 15px;
}

.finder-result span {
  font-size: 11px;
  color: var(--text-muted);
}

.finder-result strong {
  margin-left: auto;
  font-size: 15px;
  color: #ffffff;
}

/* Product Detail Modal */
.product-modal {
  width: min(900px, calc(100% - 30px));
}

.product-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 540px;
}

.detail-media {
  background: radial-gradient(circle at 50% 50%, rgba(20, 35, 70, 0.7) 0%, rgba(5, 8, 18, 0.95) 80%);
  display: grid;
  place-items: center;
  position: relative;
  min-height: 380px;
  border-right: 1px solid var(--border-subtle);
}

.detail-media img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.detail-copy {
  padding: 42px;
}

.detail-category {
  color: var(--neon-cyan);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.detail-copy h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: #ffffff;
  margin: 10px 0 6px;
}

.detail-rating {
  color: var(--accent-yellow);
  font-size: 13px;
  margin-bottom: 12px;
}

.detail-copy > p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.detail-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 18px 0;
}

.detail-price del {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}

.detail-spec {
  border: 1px solid var(--border-glass);
  background: rgba(14, 23, 44, 0.6);
  border-radius: 10px;
  padding: 12px;
}

.detail-spec small {
  display: block;
  color: var(--neon-cyan);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.detail-spec b {
  font-size: 13px;
  color: #ffffff;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0;
}

.feature-list span {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}

.feature-list svg {
  color: var(--neon-cyan);
  width: 14px;
  height: 14px;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 24px;
}

.detail-actions button {
  height: 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
}

.detail-actions .order-now {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.detail-actions .add-detail {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #ffffff;
}

/* Compare floating bar */
.compare-bar {
  position: fixed;
  z-index: 55;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  background: #091024;
  border: 1px solid var(--border-glass-hover);
  border-radius: 16px;
  height: 66px;
  padding: 8px 12px 8px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.compare-bar.show {
  transform: translate(-50%, 0);
}

.compare-bar > span {
  font-size: 12px;
  white-space: nowrap;
  color: var(--text-primary);
}

.compare-bar > span b {
  color: var(--neon-cyan);
}

.compare-mini {
  display: flex;
}

.compare-mini img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  margin-left: -8px;
  border: 2px solid #091024;
}

.compare-bar button {
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #030712;
  padding: 0 16px;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 100;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -30px);
  background: #0b152d;
  border: 1px solid var(--border-glass-hover);
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 229, 255, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   RESPONSIVE QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions, .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    height: 480px;
    margin-top: 20px;
  }
  .category-grid, .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .finder-shell {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .finder-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stack-card {
    grid-template-columns: 1fr;
  }
  .stack-copy {
    text-align: center;
    padding: 50px 30px;
  }
  .stack-price, .stack-copy .light-button {
    margin-inline: auto;
  }
  .stack-visual {
    min-height: 420px;
  }
  .proof-section, .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-visual {
    height: 380px;
  }
  .hero-orbit-system {
    width: 320px;
    height: 320px;
  }
  .gem-badge-3d {
    width: 130px;
    height: 130px;
    border-radius: 26px;
  }
  .gem-logo-img {
    width: 90px;
    height: 90px;
  }
  .float-card {
    padding: 8px 10px;
  }
  .float-card img {
    width: 24px;
    height: 24px;
  }
  .float-card span {
    font-size: 11px;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stats-inner div {
    padding-left: 15px;
    border-left: 1px solid var(--border-subtle);
  }
  .category-grid, .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid article:nth-child(2) {
    border-right: 0;
  }
  .steps-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-glass);
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .detail-media {
    min-height: 220px;
  }
  .detail-copy {
    padding: 24px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .floating-whatsapp {
    display: none;
  }
  .mobile-bottom {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: #070c1a;
    border-top: 1px solid var(--border-glass);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-bottom button {
    color: var(--text-secondary);
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
  }
  .mobile-bottom button:last-child {
    background: #10b981;
    color: #ffffff;
  }
  .mobile-bottom b {
    position: absolute;
    top: 6px;
    left: 55%;
    background: var(--neon-cyan);
    color: #030712;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
    display: grid;
    place-items: center;
  }
  body {
    padding-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }
  .category-grid, .product-grid {
    grid-template-columns: 1fr;
  }
  .preview-options {
    grid-template-columns: 1fr 1fr;
  }
  .finder-choices {
    grid-template-columns: 1fr;
  }
  .stack-visual {
    display: none;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Recolored AI Tool Gems brand mark */
.brand-mark-3d {
  background: linear-gradient(135deg, rgba(183, 239, 89, 0.16), rgba(39, 189, 100, 0.13), rgba(167, 139, 250, 0.16));
  border-color: rgba(183, 239, 89, 0.5);
  box-shadow: 0 0 22px rgba(39, 189, 100, 0.24), inset 0 0 10px rgba(255, 255, 255, 0.12);
}
.brand-nav-logo {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 7px rgba(39, 189, 100, 0.42));
  position: relative;
  z-index: 1;
}
.brand-title b {
  background: linear-gradient(100deg, #b7ef59 0%, #27bd64 42%, #79bdf2 72%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gem-logo-img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 18px rgba(39, 189, 100, 0.34));
}
.cta-badge-3d {
  background: linear-gradient(135deg, rgba(183, 239, 89, 0.16), rgba(121, 189, 242, 0.13), rgba(167, 139, 250, 0.18));
  border-color: rgba(183, 239, 89, 0.46);
  box-shadow: 0 0 32px rgba(39, 189, 100, 0.26);
}
