:root {
  --bg: #050914;
  --bg-gradient: linear-gradient(135deg, #050914 0%, #0a1128 100%);
  --card-bg: #070f26;
  --card-border: rgba(13, 31, 61, 0.8);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --white: #ffffff;
  
  /* Neon colors & glows */
  --neon-green: #00e676;
  --neon-green-glow: 0 0 15px rgba(0, 230, 118, 0.4), inset 0 0 10px rgba(0, 230, 118, 0.1);
  --neon-green-border: 1px solid rgba(0, 230, 118, 0.3);
  
  --neon-cyan: #00e5ff;
  --neon-cyan-glow: 0 0 15px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.1);
  --neon-cyan-border: 1px solid rgba(0, 229, 255, 0.3);
  
  --orange: #f97316;
  --orange-hover: #ea580c;
  --orange-glow: 0 0 12px rgba(249, 115, 22, 0.3);
  
  --radius: 18px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Sections Base */
.section-wrapper {
  padding: 40px 0;
}

.glow-card-container {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.glow-card-container.green-glow {
  border: var(--neon-green-border);
  box-shadow: var(--neon-green-glow), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.glow-card-container.cyan-glow {
  border: var(--neon-cyan-border);
  box-shadow: var(--neon-cyan-glow), 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Titles */
.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.eyebrow-accent {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.eyebrow-accent.yellow {
  color: #ffeb3b;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.section-title.gradient-green {
  background: linear-gradient(to right, #ffffff, var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges List */
.badges-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px 0;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Inner Banner Cards */
.banner-inner-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  max-width: 800px;
  margin: 0 auto 24px auto;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.banner-inner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0,0,0,0.4);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banner-inner-card:hover .banner-img {
  transform: scale(1.01);
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 auto;
  display: flex;
}

.btn-green-neon {
  background: var(--neon-green);
  color: #030712;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

.btn-green-neon:hover {
  background: var(--white);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-green-neon:active {
  transform: translateY(0);
}

.btn-cyan-neon {
  background: #00bcd4;
  color: var(--white);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
  font-size: 0.95rem;
  padding: 12px 24px;
}

.btn-cyan-neon:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
}

/* Badge overlay / pill in card headers */
.top-pill-badge {
  display: inline-block;
  background: var(--neon-green);
  color: #030712;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  margin: 0 auto 16px auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}

/* Bonus Grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.bonus-image-container {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-img {
  transform: scale(1.03);
}

.bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--orange-glow);
}

.btn-orange:hover {
  background: var(--orange-hover);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.5);
  transform: translateY(-1px);
}

/* FAQ Accordion Section */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: rgba(10, 17, 40, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 18px 24px;
  font-family: inherit;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-icon {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  font-weight: 600;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-panel p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.faq-panel a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.faq-panel a:hover {
  text-decoration: underline;
}

/* Footer style */
.site-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 40px;
}

.site-footer a {
  color: var(--neon-green);
  font-weight: 600;
}

.footer-contact {
  margin-top: 8px;
}

/* Image Placeholder Styling */
.placeholder-box {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: calc(var(--radius) - 6px);
  display: flex;
  flex-direction: center;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .glow-card-container {
    padding: 24px 16px;
  }
  
  .btn-cta {
    font-size: 0.95rem;
    padding: 14px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
