/* Landing Page Styles - Cyberpunk Theme */

:root {
  --bg-dark: #0a0a0a;
  --neon-green: #00ff33;
  --neon-cyan: #00ffff;
  --neon-purple: #a855f7;
  --neon-red: #ff0055;
  --neon-blue: #0099ff;
  --text-primary: #eaf0ff;
  --text-secondary: rgba(234, 240, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.landing {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

/* Matrix Background */
#matrixBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

/* Scanlines */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 999;
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Container */
.landing-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 51, 0.2);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.landing-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 255, 51, 0.1);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green);
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.nav-logo.glitch {
  animation: glitch-logo 5s infinite;
}

.nav-logo.glitch::before,
.nav-logo.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.nav-logo.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-red);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-logo 3s infinite linear alternate-reverse;
}

.nav-logo.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim-logo 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-logo {
  0%, 90%, 100% {
    transform: translate(0);
  }
  91% {
    transform: translate(-2px, 2px);
  }
  92% {
    transform: translate(2px, -2px);
  }
  93% {
    transform: translate(-2px, 2px);
  }
  94% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch-anim-logo {
  0% {
    clip: rect(42px, 9999px, 44px, 0);
  }
  5% {
    clip: rect(12px, 9999px, 59px, 0);
  }
  10% {
    clip: rect(48px, 9999px, 29px, 0);
  }
  15% {
    clip: rect(42px, 9999px, 73px, 0);
  }
  20% {
    clip: rect(63px, 9999px, 27px, 0);
  }
  25% {
    clip: rect(34px, 9999px, 55px, 0);
  }
  30% {
    clip: rect(86px, 9999px, 73px, 0);
  }
  35% {
    clip: rect(20px, 9999px, 20px, 0);
  }
  40% {
    clip: rect(26px, 9999px, 60px, 0);
  }
  45% {
    clip: rect(25px, 9999px, 66px, 0);
  }
  50% {
    clip: rect(57px, 9999px, 98px, 0);
  }
  55% {
    clip: rect(5px, 9999px, 46px, 0);
  }
  60% {
    clip: rect(82px, 9999px, 31px, 0);
  }
  65% {
    clip: rect(54px, 9999px, 27px, 0);
  }
  70% {
    clip: rect(28px, 9999px, 99px, 0);
  }
  75% {
    clip: rect(45px, 9999px, 69px, 0);
  }
  80% {
    clip: rect(23px, 9999px, 85px, 0);
  }
  85% {
    clip: rect(54px, 9999px, 84px, 0);
  }
  90% {
    clip: rect(45px, 9999px, 47px, 0);
  }
  95% {
    clip: rect(37px, 9999px, 20px, 0);
  }
  100% {
    clip: rect(4px, 9999px, 91px, 0);
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

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

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

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 51, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 255, 51, 0.1);
  border: 1px solid var(--neon-green);
  border-radius: 50px;
  color: var(--neon-green);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 51, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 51, 0.6);
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

/* New Hero Title Design */
.hero-title-new {
  font-family: 'Orbitron', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-title-new .title-line {
  display: block;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.hero-title-new .word {
  display: inline-block;
  position: relative;
  color: var(--neon-green);
  text-shadow: 
    0 0 10px var(--neon-green),
    0 0 20px var(--neon-green),
    0 0 30px var(--neon-green),
    0 0 40px var(--neon-green);
  animation: fadeInUp 1s ease-out backwards, glow 2s ease-in-out infinite alternate;
  letter-spacing: 0.1em;
}

.hero-title-new .title-line:nth-child(1) .word {
  animation-delay: 0.2s;
}

.hero-title-new .title-line:nth-child(2) .word {
  animation-delay: 0.4s;
  color: var(--neon-cyan);
  text-shadow: 
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan),
    0 0 30px var(--neon-cyan),
    0 0 40px var(--neon-cyan);
}

.hero-title-new .title-line:nth-child(3) .word {
  animation-delay: 0.6s;
}

.hero-title-new .gradient-text {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: fadeInUp 1s ease-out 0.6s backwards, gradientShift 3s ease infinite, glow 2s ease-in-out infinite alternate;
  text-shadow: none;
}

/* Glitch effect on hover */
.hero-title-new .word::before,
.hero-title-new .word::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-title-new .word:hover::before {
  opacity: 0.7;
  left: 2px;
  text-shadow: -2px 0 var(--neon-red);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 0.3s infinite linear alternate-reverse;
}

.hero-title-new .word:hover::after {
  opacity: 0.7;
  left: -2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 0.25s infinite linear alternate-reverse;
}

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

@keyframes glow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.3);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
  padding: 1rem 2.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: var(--bg-dark);
  border: none;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 51, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

/* Features Section */
.features {
  padding: 8rem 2rem;
  position: relative;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 51, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 51, 0.05), rgba(0, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-green);
}

/* How It Works */
.how-it-works {
  padding: 8rem 2rem;
  background: rgba(0, 255, 51, 0.02);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--bg-dark);
  box-shadow: 0 10px 30px rgba(0, 255, 51, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.step:nth-child(2) .step-number {
  animation-delay: 0.3s;
}

.step:nth-child(3) .step-number {
  animation-delay: 0.6s;
}

.step:nth-child(4) .step-number {
  animation-delay: 0.9s;
}

.step-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neon-purple);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Models Section */
.models {
  padding: 8rem 2rem;
}

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

.model-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  text-align: center;
}

.model-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-purple);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.model-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.model-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neon-purple);
}

.model-type {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.model-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid var(--neon-purple);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--neon-purple);
  margin-top: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 51, 0.05), rgba(0, 255, 255, 0.05));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 51, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(0, 255, 51, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 51, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-logo.glitch {
  animation: glitch-logo 5s infinite;
}

.footer-logo.glitch::before,
.footer-logo.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.footer-logo.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-red);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-logo 3s infinite linear alternate-reverse;
}

.footer-logo.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim-logo 2.5s infinite linear alternate-reverse;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-title-new {
    font-size: 2.8rem;
  }
  
  .hero-title-new .word {
    letter-spacing: 0.05em;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .features-grid,
  .models-grid,
  .steps-container {
    grid-template-columns: 1fr;
  }
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: particleFloat 10s linear infinite;
  opacity: 0.3;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* ==========================================================================
   Legal Sections: Syarat & Ketentuan + Refund Policy
   ========================================================================== */
.legal-section {
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.legal-section.refund {
  background: rgba(168, 85, 247, 0.03);
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.legal-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.legal-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.legal-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 18px 50px rgba(0, 255, 255, 0.18);
}

.legal-card.full-width {
  grid-column: 1 / -1;
  text-align: center;
}

.legal-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 255, 51, 0.25);
}

.legal-icon.refund-icon {
  background: linear-gradient(135deg, #22c55e, #00ff88);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  font-size: 1.4rem;
}

.legal-icon.refund-icon.denied {
  background: linear-gradient(135deg, var(--neon-red), #ff5577);
  box-shadow: 0 8px 20px rgba(255, 0, 85, 0.3);
  color: #fff;
}

.legal-card.full-width .legal-icon {
  margin: 0 auto 1.25rem;
  display: flex;
}

.legal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--neon-cyan);
}

.legal-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 860px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 51, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: var(--neon-green);
  box-shadow: 0 12px 30px rgba(0, 255, 51, 0.12);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.25s ease;
}

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

.faq-item:hover .faq-question {
  color: var(--neon-cyan);
}

.faq-toggle {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-green);
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--neon-red);
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 255, 51, 0.08);
  padding-top: 1rem;
  margin-top: -0.2rem;
}

@media (max-width: 768px) {
  .legal-section,
  .faq-section {
    padding: 5rem 1.25rem;
  }

  .legal-grid,
  .legal-grid.two-col {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
  }
}

  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}
