/* ===================================
   NEURAL REVIVE™ - STYLES.CSS
   Production-Ready, Mobile-First
   =================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --secondary: #7b2fff;
  --accent: #ff6b35;
  --warning: #ffd700;
  --bg-dark: #050d1a;
  --bg-dark2: #070f1f;
  --bg-card: #0d1b2e;
  --bg-card2: #0a1628;
  --text-primary: #ffffff;
  --text-secondary: #b0c4de;
  --text-muted: #7a90b0;
  --border: rgba(0, 212, 255, 0.15);
  --glow: rgba(0, 212, 255, 0.3);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 800;
}

p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-pad {
  padding: 80px 0;
}

.bg-dark-alt {
  background-color: var(--bg-dark2);
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin-top: 14px;
}

.text-center .section-heading::after,
.section-heading.text-center::after {
  margin: 14px auto 0;
}

.section-sub {
  max-width: 800px;
  margin: -20px auto 40px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.text-accent {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inline-link {
  color: var(--primary);
  border-bottom: 1px solid rgba(0,212,255,0.3);
  transition: border-color 0.3s;
}
.inline-link:hover { border-color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s;
  min-height: 48px;
  white-space: nowrap;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(0, 212, 255, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: rgba(0,212,255,0.1);
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning) 0%, var(--accent) 100%);
  color: #000;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.1rem;
  min-height: 60px;
}

.btn-hero {
  padding: 18px 36px;
  font-size: 1.05rem;
  min-height: 56px;
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 20px;
  min-height: 40px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
}

.pulse-btn {
  animation: pulseBtnAnim 2.5s infinite;
}

@keyframes pulseBtnAnim {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,212,255,0.35); }
  50% { box-shadow: 0 4px 40px rgba(0,212,255,0.7), 0 0 60px rgba(123,47,255,0.3); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, background 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(5, 13, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
  padding: 4px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(0,212,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 80%, rgba(123,47,255,0.1) 0%, transparent 60%),
              var(--bg-dark);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123,47,255,0.15) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  width: fit-content;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,212,255,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-line {
  color: var(--text-primary);
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
}

.img-glow-wrap {
  position: relative;
}

.img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0,212,255,0.3) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.2);
}

.floating {
  animation: floatAnim 6s ease-in-out infinite;
}

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

.brain-wave-anim {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.wave-svg {
  width: 100%;
  height: 40px;
}

.wave-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wave-a {
  stroke: var(--primary);
  opacity: 0.7;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: waveDraw 3s ease forwards infinite;
}

.wave-b {
  stroke: var(--secondary);
  opacity: 0.5;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: waveDraw 3s 0.5s ease forwards infinite;
}

@keyframes waveDraw {
  0% { stroke-dashoffset: 800; }
  60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

/* Fade-in animations */
.fade-in-up {
  animation: fadeInUp 0.9s ease both;
}

.fade-in-right {
  animation: fadeInRight 0.9s 0.2s ease both;
}

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

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

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, rgba(123,47,255,0.12) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

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

.banner-icon {
  font-size: 1.5rem;
}

.banner-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-primary);
  margin: 0;
}

/* ===== PRICE SECTION ===== */
.price-section {
  padding: 60px 0;
}

.price-img-wrap {
  text-align: center;
}

.price-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.price-img:hover {
  transform: scale(1.01);
}

.price-caption {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  width: 100%;
}

.img-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.about-text p {
  margin-bottom: 1.2rem;
}

/* ===== HOW IT WORKS ===== */
.how-text {
  max-width: 900px;
  margin: 0 auto;
}

.how-text p {
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.review-stars {
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

/* ===== INSIDE GRID ===== */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.inside-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.inside-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.4);
}

.inside-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.inside-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.inside-card p {
  font-size: 0.9rem;
  margin: 0;
}

.inside-text {
  max-width: 900px;
  margin: 0 auto 40px;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.4);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,212,255,0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.93rem;
  margin: 0;
}

/* ===== GUARANTEE ===== */
.guarantee-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-glow);
}

.guarantee-badge-wrap {
  flex-shrink: 0;
}

.guarantee-badge {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0,212,255,0.4));
  animation: floatAnim 4s ease-in-out infinite;
}

.guarantee-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.guarantee-content p {
  margin-bottom: 1rem;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(0,212,255,0.4);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ===== BONUS LIST ===== */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-item:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--primary), 0 8px 30px rgba(0,0,0,0.2);
}

.bonus-img-wrap {
  flex-shrink: 0;
  width: 140px;
}

.bonus-img-wrap img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ff9a35);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.bonus-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.bonus-content p {
  font-size: 0.95rem;
  margin: 0;
}

/* ===== BUY SECTION ===== */
.buy-content {
  max-width: 900px;
  margin: 0 auto;
}

.buy-content > p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.buy-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.buy-reason {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s;
}

.buy-reason:hover {
  border-color: rgba(0,212,255,0.4);
}

.reason-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.buy-reason h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.buy-reason p {
  font-size: 0.93rem;
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.open {
  border-color: rgba(0,212,255,0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  transition: color 0.3s;
  min-height: 60px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== ORDER SECTION ===== */
.order-section {
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 70%);
}

.order-img-wrap {
  text-align: center;
}

.order-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.order-img:hover {
  transform: scale(1.01);
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-dark2);
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0,212,255,0.1);
  top: -200px;
  left: -200px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(123,47,255,0.1);
  bottom: -150px;
  right: -150px;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.cta-badge-anim {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ff9a35);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  animation: badgePulse 2s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.timer-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.timer-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  min-width: 60px;
}

.timer-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.timer-unit {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 2px;
}

.timer-colon {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1;
  animation: colonBlink 1s step-end infinite;
}

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

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Neural Canvas */
.neural-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

#neuralCanvas {
  width: 100%;
  height: 100%;
}

/* ===== QUICK LINKS ===== */
.quick-links-section {
  background: var(--bg-dark);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.quick-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.quick-links-list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

.quick-links-list a:hover {
  text-shadow: 0 0 12px rgba(0,212,255,0.6);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #020810;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-text {
  max-width: 640px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-text a {
  color: var(--primary);
}

.footer-disclaimer {
  max-width: 640px;
  font-size: 0.82rem;
  color: #5a6a80;
  margin: 0;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-copy a {
  color: var(--primary);
}

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

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

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

.footer-links span {
  color: var(--text-muted);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.6);
}

/* ===== PURCHASE NOTIFICATION ===== */
.purchase-notif {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 800;
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.4s, transform 0.4s;
}

.purchase-notif.show {
  opacity: 1;
  transform: translateX(0);
}

.notif-avatar {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.notif-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
}

.notif-text strong {
  color: var(--primary);
}

.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.notif-close:hover {
  color: var(--text-primary);
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.popup-box {
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,212,255,0.1);
  transform: scale(0.9);
  transition: transform 0.4s;
}

.popup-overlay.show .popup-box {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.popup-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--text-primary);
}

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ff9a35);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.popup-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.popup-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.popup-timer-mini {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 24px;
  display: inline-block;
}

.popup-timer-mini strong {
  color: var(--primary);
}

.popup-cta {
  width: 100%;
  display: flex;
  margin-bottom: 16px;
}

.popup-skip {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  margin: 0;
  transition: color 0.2s;
}

.popup-skip:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .floating, .hero-orb, .img-glow, .guarantee-badge { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .fade-in-up, .fade-in-right { animation: none; }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-img {
    max-width: 500px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guarantee-wrap {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,13,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    padding: 80px 20px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.3rem;
    color: var(--text-primary);
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-around;
    padding: 12px 8px;
  }

  .stat-item {
    padding: 0 8px;
  }

  .stat-num { font-size: 1rem; }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

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

  .bonus-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }

  .bonus-img-wrap {
    width: 120px;
  }

  .buy-reason {
    flex-direction: column;
    gap: 10px;
  }

  .timer-wrap {
    padding: 12px 16px;
    gap: 10px;
  }

  .timer-num { font-size: 2rem; }

  .timer-box { min-width: 70px; padding: 10px 14px; }

  .purchase-notif {
    left: 12px;
    bottom: 80px;
    max-width: calc(100vw - 24px);
  }

  .scroll-top {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .banner-content {
    flex-direction: column;
    gap: 12px;
  }

  .img-badge-float {
    right: 0;
    bottom: -10px;
    font-size: 0.72rem;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-heading { font-size: 1.6rem; margin-bottom: 28px; }
  .hero-title { font-size: 1.8rem; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .stat-divider { width: 60px; height: 1px; }

  .guarantee-badge { width: 140px; height: 140px; }

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

  .popup-box {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 8px;
  }

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

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

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

  .footer-links { flex-direction: column; gap: 8px; }
  .footer-links span { display: none; }
}
