/* ══════════════════════════════════════════════════════════════
   FÓRMULA DUAL SHOP — REDESIGN PREMIUM
   Inspirado em brunofernandes.site/aula9-90
   ══════════════════════════════════════════════════════════════ */

:root {
  --bg: #080b14;
  --text: #f5f7ff;
  --muted: #96a0bd;
  --cyan: #00F5FF;
  --violet: #7b2cff;
  --pink: #BF00FF;
  --green: #78ffb7;
  --gold: #FFD700;
  --shadow: 0 0 0 1px rgba(255,255,255,.04), 0 16px 50px rgba(0,0,0,.42);
  --glow: 0 0 24px rgba(0,245,255,.14), 0 0 36px rgba(191,0,255,.12);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(0,245,255,.08), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(191,0,255,.10), transparent 20%),
    radial-gradient(circle at 50% 60%, rgba(123,44,255,.08), transparent 22%),
    linear-gradient(180deg, #070a12 0%, var(--bg) 100%);
  min-height: 100vh;
  -webkit-user-select: none;
  user-select: none;
}

/* Grid cyberpunk no fundo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(0,245,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(191,0,255,.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(0,245,255,.16) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 120px 120px, 220px 220px, 240px 240px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.3));
  -webkit-mask-image: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.3));
}

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

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

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,245,255,.5); }
  70%      { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(0,245,255,0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes superGlow {
  0%   { box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan); transform: scale(1); }
  50%  { box-shadow: 0 0 40px var(--cyan), 0 0 80px var(--gold); transform: scale(1.15); }
  100% { box-shadow: 0 0 15px var(--cyan); transform: scale(1); }
}

/* ── Containers ────────────────────────────────────────────── */
.page-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 20px 140px; position: relative; z-index: 1; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.container-hero { max-width: 850px; }
.container-sm { max-width: 700px; }
.text-center { text-align: center; }

/* ── Ticker Marquee ────────────────────────────────────────── */
.top-ticker-wrap { overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.top-ticker { background: linear-gradient(90deg, rgba(123,44,255,.88), rgba(191,0,255,.94)); padding: 9px 0; }
.top-ticker-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.top-ticker-track span { color: #fff; font-size: 12.5px; font-weight: 700; white-space: nowrap; padding-right: 64px; letter-spacing: .05em; }

/* ── Dark BG sections ──────────────────────────────────────── */
section { padding: 60px 0; }
.dark-bg {
  background: linear-gradient(180deg, rgba(10,14,28,.6), rgba(8,11,20,.7));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ── Section Titles ────────────────────────────────────────── */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.section-desc { text-align: center; font-size: 17px; color: var(--muted); margin-bottom: 40px; line-height: 1.6; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: 50px 0 40px;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 30px 30px;
  padding: 1px;
  background: linear-gradient(120deg, var(--cyan), var(--violet), var(--pink), var(--cyan));
  background-size: 250% 250%;
  animation: borderFlow 7s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .4;
}

.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -.02em;
  animation: fadeUp .7s ease both;
}

.highlight-gold {
  background: linear-gradient(90deg, var(--cyan) 0%, #78f7ff 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  font-weight: 900;
}

.accent { color: var(--cyan); text-shadow: 0 0 20px rgba(0,245,255,.3); }

.subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.subheadline b, .subheadline strong { color: var(--cyan); font-weight: 700; }

/* ── Video Container ───────────────────────────────────────── */
.video-container {
  width: 100%;
  border-radius: 12px;
  background-color: #000;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.video-warning {
  color: var(--gold) !important;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.unmute-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
}

.unmute-btn {
  background: rgba(10, 14, 28, 0.95);
  color: white;
  border: 2px solid var(--cyan);
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0,245,255,.4);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-checkout {
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan), #78f7ff);
  color: #080b14;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(0,245,255,.28);
  transition: all 0.25s ease;
  border: none;
  letter-spacing: .02em;
  cursor: pointer;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 56px rgba(0,245,255,.5), 0 8px 32px rgba(0,0,0,.5);
}

.btn-checkout.xxl {
  font-size: 20px;
  padding: 20px 44px;
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
}

.pulse-animation { animation: pulse 2s infinite; }

.cta-container { text-align: center; margin-top: 10px; }

.safe-checkout-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* ── Pain Pills ────────────────────────────────────────────── */
.pain-section { padding: 60px 0; }

.pain-pill {
  display: inline-block;
  background: rgba(0,245,255,.04);
  border: 1px solid rgba(0,245,255,.15);
  color: #cdd4ef;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.pain-pill:hover {
  background: rgba(0,245,255,.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 0 16px rgba(0,245,255,.15);
}

/* ── Neon Card (universal) ─────────────────────────────────── */
.neon-card {
  position: relative;
  border-radius: 22px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(14,20,37,.88), rgba(10,15,28,.92));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.neon-card::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 14px rgba(0,245,255,.25);
}

.neon-card:hover {
  border-color: rgba(0,245,255,.18);
  box-shadow: var(--shadow), 0 0 24px rgba(0,245,255,.09);
  transform: translateY(-3px);
}

/* ── Intro & Checklist ─────────────────────────────────────── */
.intro-section { padding: 60px 0; }
.intro-text { font-size: 18px; line-height: 1.7; color: var(--muted); margin-bottom: 30px; text-align: center; }

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.check-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14,20,37,.88), rgba(10,15,28,.92));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.check-item::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 14px rgba(0,245,255,.2);
}

.check-item:hover {
  border-color: rgba(0,245,255,.18);
  box-shadow: var(--shadow), 0 0 20px rgba(0,245,255,.08);
  transform: translateY(-2px);
}

.check-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.check-item p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.check-item b { display: block; color: #dde3ff; font-weight: 800; margin-bottom: 4px; font-size: 16px; }

/* ── Promise Section ───────────────────────────────────────── */
.promise-section { padding: 60px 0; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 60px 0; }

.carousel-wrapper { position: relative; width: 100%; max-width: 900px; margin: 0 auto; overflow: hidden; display: flex; align-items: center; }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 10px 40px; width: 100%; -ms-overflow-style: none; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 calc(33.333% - 20px); scroll-snap-align: center; display: flex; justify-content: center; align-items: center; }
.carousel-slide img { width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,.07); box-shadow: var(--shadow); transition: transform 0.3s, box-shadow .3s, border-color .3s; }
.carousel-slide img:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow), 0 0 28px rgba(0,245,255,.15); border-color: rgba(0,245,255,.25); }

#test-track .carousel-slide img { aspect-ratio: 9/16; width: 100%; height: 100%; object-fit: cover; object-position: top; background-color: rgba(0,0,0,0.3); }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(10,14,28,0.9); color: var(--cyan); border: 1px solid rgba(0,245,255,.3); font-size: 22px; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; justify-content: center; align-items: center; transition: all 0.2s; box-shadow: 0 0 15px rgba(0,245,255,.15); }
.carousel-btn:hover { background: var(--cyan); color: var(--bg); box-shadow: 0 0 20px rgba(0,245,255,.4); }
.prev-btn { left: 0; }
.next-btn { right: 0; }

/* ── Modules Section ───────────────────────────────────────── */
.modules-section { padding: 60px 0; }

/* ── Bonus Section ─────────────────────────────────────────── */
.bonus-section { padding: 60px 0; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,20,37,.9), rgba(10,15,28,.95));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.bonus-card::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 14px rgba(0,245,255,.2);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 28px rgba(0,245,255,.12);
  border-color: rgba(0,245,255,.2);
}

.bonus-card img { width: 100%; display: block; }

.bonus-text-content { padding: 20px; }
.bonus-text-content h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; color: #fff; margin: 0 0 8px 0; }
.bonus-text-content p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 12px 0; }

.bonus-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,245,255,.08);
  border: 1px solid rgba(0,245,255,.2);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}
.bonus-tag s { color: rgba(255,255,255,.4); }
.bonus-tag b { color: var(--green); }

/* ── Transformation Section ────────────────────────────────── */
.transformation-section { padding: 60px 0; }

.gamify-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}

.gamify-btn {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(14,20,37,.8), rgba(10,15,28,.9));
  border: 1px solid rgba(0,245,255,.2);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.gamify-btn:hover {
  transform: scale(1.05);
  border-color: var(--cyan);
  box-shadow: var(--shadow), 0 0 20px rgba(0,245,255,.15);
}

.gamify-btn.glow-active {
  animation: superGlow 0.8s ease-out forwards;
  border-color: var(--green);
  color: var(--gold);
}

/* ── Offer Section ─────────────────────────────────────────── */
.offer-section { padding: 80px 0; }

.offer-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,20,37,.94), rgba(9,13,24,.98));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 26px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow), var(--glow);
}

.offer-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, var(--cyan), var(--violet), var(--pink), var(--cyan));
  background-size: 250% 250%;
  animation: borderFlow 7s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .75;
}

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}

.price-anchor { display: flex; flex-direction: column; align-items: center; margin-bottom: 30px; position: relative; z-index: 1; }
.price-old { color: #ff6b6b; text-decoration: line-through; font-size: 22px; font-weight: 700; margin-bottom: 5px; }
.price-txt { font-size: 18px; color: var(--muted); margin-bottom: 5px; }
.price-huge {
  font-family: 'Montserrat', sans-serif;
  font-size: 70px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 24px rgba(0,245,255,.35);
  letter-spacing: -.03em;
}

.offer-summary { position: relative; z-index: 1; }
.secure-badges { position: relative; z-index: 1; }

/* ── Guarantee Section ─────────────────────────────────────── */
.guarantee-section { padding: 60px 0; }

.guarantee-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 40px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14,20,37,.9), rgba(10,15,28,.95));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guarantee-box::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 18px rgba(0,245,255,.3);
}

.g-seal { flex-shrink: 0; }
.g-seal svg { fill: var(--gold); }
.g-text h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.g-text p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── FAQ Section ───────────────────────────────────────────── */
.faq-section { padding: 60px 0; }
.faq-box { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14,20,37,.88), rgba(10,15,28,.92));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 10px rgba(0,245,255,.15);
}

.faq-item[open] { border-color: rgba(0,245,255,.18); }

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: #dde3ff;
  list-style: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "▸ "; color: var(--cyan); margin-right: 6px; }
.faq-item[open] summary::before { content: "▾ "; }
.faq-item summary:hover { color: var(--cyan); }

.faq-content {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  margin-top: 36px;
  padding: 30px 20px 12px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer p { color: #7f89a7; font-size: 14px; margin-bottom: 10px; }
.footer strong { color: #f0f4ff; }
.disclaimer { font-size: 11px !important; color: #555 !important; max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* ── Floating CTA ──────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  white-space: nowrap;
  display: none;
  animation: floatIn .5s ease forwards;
}

.float-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--cyan), #78f7ff);
  color: #080b14;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(0,245,255,.45), 0 4px 24px rgba(0,0,0,.5);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .04em;
}

.float-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 56px rgba(0,245,255,.6), 0 8px 32px rgba(0,0,0,.5);
}

/* ── Fade Up Animation ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO MOBILE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-wrapper { padding: 0 14px 120px; }
  .headline { font-size: 24px; }
  .subheadline { font-size: 16px; }
  .btn-checkout { font-size: 16px; padding: 16px 24px; width: 100%; white-space: normal; }
  .btn-checkout.xxl { font-size: 17px; padding: 18px 20px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; text-align: center; padding: 30px 20px; }
  .offer-box { padding: 30px 20px; }
  .price-huge { font-size: 55px; }
  .gamify-btn { width: 120px; height: 120px; font-size: 13px; }
  .carousel-slide { flex: 0 0 calc(80% - 20px); }
  .carousel-track { padding: 10px 20px; }
  .carousel-btn { display: none; }
  .section-title { font-size: 24px; }
  .float-cta a { font-size: 13px; padding: 13px 22px; }
  .top-ticker-track span { font-size: 11px; padding-right: 40px; }
}


/* Light Section Styling */
.light-section {
    background: #f4f5f7 !important;
    color: #0b1a30 !important;
}
.light-section .section-title {
    color: #0b1a30 !important;
}
.light-section p {
    color: #1e293b !important;
}
.light-section .check-item p,
.light-section .neon-card p,
.light-section .neon-card h3 {
    color: #ffffff !important;
}
.light-section .highlight-gold {
    color: #ca8a04 !important;
}

