:root {
  --color-bg: #030504;
  --color-card: #0a0c0a;
  --color-card-border: #131a14;
  --color-primary: #1de068;
  --color-primary-dark: #12b04f;
  --color-text-main: #ffffff;
  --color-text-muted: #8b968e;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --border-radius: 12px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1 {
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo span:first-child {
  color: var(--color-primary);
}
.logo span:last-child {
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-text-main);
  transition: color 0.2s;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 0 10rem 0;
  background-image: 
    linear-gradient(to right, rgba(3, 5, 4, 1) 10%, rgba(3, 5, 4, 0.7) 60%, rgba(3, 5, 4, 0.2) 100%),
    url('./assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.hero-content {
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  background-color: rgba(29, 224, 104, 0.05);
  border: 1px solid rgba(29, 224, 104, 0.2);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero .btn-primary {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Pain Point Section */
.pain-point {
  padding: 8rem 0;
  text-align: center;
}

.alert-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 59, 48, 0.05);
  border: 1px solid rgba(255, 59, 48, 0.15);
  color: #ff5247;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
}
.alert-icon svg { width: 24px; height: 24px; }

.pain-point h2 {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.pain-point .subtitle {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  font-size: 1.125rem;
}

.pain-box {
  border: 1px solid rgba(29, 224, 104, 0.2);
  background: linear-gradient(to bottom, rgba(29, 224, 104, 0.05) 0%, transparent 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 40px -10px rgba(29, 224, 104, 0.1);
}

.pain-box p {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Section Shared */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-subtitle {
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* MVP Cards */
.mvp-section {
  padding: 6rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(29, 224, 104, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -10px rgba(29, 224, 104, 0.08);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(29, 224, 104, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.card-letter-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(29, 224, 104, 0.05);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
}
.card-icon svg { width: 20px; height: 20px; }

.card-letter {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Services */
.services-section {
  padding: 6rem 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card-service {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.card-service .card-icon {
  margin: 0 auto 1.5rem auto;
}

.card-service h3 {
  font-size: 1.125rem;
}

.card-service p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Guarantee Section */
.guarantee-section {
  padding: 6rem 0 8rem 0;
  text-align: center;
}

.shield-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(29, 224, 104, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(29, 224, 104, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  margin: 0 auto 2rem auto;
}
.shield-icon svg { width: 32px; height: 32px; }

.guarantee-section p {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1rem;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--color-card);
  border: 1px solid rgba(29, 224, 104, 0.2);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 60px -15px rgba(29, 224, 104, 0.15);
  position: relative;
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--color-primary);
  box-shadow: 0 0 30px 10px rgba(29, 224, 104, 0.3);
}

.pricing-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.price-period {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  .hero { padding: 4rem 0; }
  .hero-content { text-align: center; margin: 0 auto; }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  text-align: center;
}

.faq-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

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

.faq-item:hover {
  border-color: rgba(29, 224, 104, 0.3);
}

.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* remove details marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 0.9375rem;
}

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

.faq-item summary svg {
  color: var(--color-text-muted);
  transition: transform 0.3s;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  padding: 6rem 0 8rem 0;
  text-align: center;
}

.final-cta-section h2 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta-section p {
  margin-bottom: 2rem;
}

.final-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(29, 224, 104, 0.2);
  margin-top: 1rem;
}

.final-btn:hover {
  box-shadow: 0 0 40px rgba(29, 224, 104, 0.4);
}

/* Footer */
.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */

.anim-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Marquee Strip */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(29, 224, 104, 0.08);
  border-bottom: 1px solid rgba(29, 224, 104, 0.08);
  padding: 0.85rem 0;
  background: rgba(29, 224, 104, 0.02);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-track .mdot {
  color: var(--color-primary);
  font-size: 0.6rem;
  opacity: 0.5;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* Stats Bar */
.stats-section {
  background: linear-gradient(to bottom, transparent, rgba(29, 224, 104, 0.03), transparent);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(29, 224, 104, 0.4);
}

.stat-suffix {
  font-size: 2rem;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ===========================
   BAMBOO JOURNEY SECTION
   =========================== */
.bamboo-section {
    position: relative;
    overflow: hidden;
}

.bamboo-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

/* LEFT: sticky bamboo column */
.bamboo-left-col {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 38vh;
}

.bamboo-clip-wrapper {
    height: 85vh;
    max-height: 720px;
    width: 120px;
    clip-path: inset(0 0 88% 0);
    transition: clip-path 0.08s linear;
    will-change: clip-path;
    filter: drop-shadow(0 0 18px rgba(29, 224, 104, 0.15));
}

.bamboo-svg {
    height: 100%;
    width: auto;
}

/* RIGHT: scrollable steps */
.bamboo-right-col {
    padding-right: 1rem;
}

.bamboo-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bamboo-step {
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: border-color 0.5s ease;
    opacity: 0.35;
    transform: translateX(-8px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
}

.bamboo-step::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.5s ease;
}

.bamboo-step.bstep-active {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(29, 224, 104, 0.5);
}

.bamboo-step.bstep-active::before {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(29, 224, 104, 0.6);
}

.bstep-number {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    transition: color 0.5s;
}

.bamboo-step.bstep-active .bstep-number {
    color: var(--color-primary);
}

.bstep-body {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.bstep-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(29, 224, 104, 0.04);
    border: 1px solid rgba(29, 224, 104, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.bamboo-step.bstep-active .bstep-icon {
    background: rgba(29, 224, 104, 0.08);
    border-color: rgba(29, 224, 104, 0.35);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(29, 224, 104, 0.1);
}

.bstep-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.5s ease;
}

.bamboo-step.bstep-active .bstep-body h3 {
    color: var(--color-text-main);
}

.bstep-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* Responsive: hide sticky bamboo on small screens */
@media (max-width: 900px) {
    .bamboo-inner {
        grid-template-columns: 1fr;
    }
    .bamboo-left-col {
        display: none;
    }
    .bamboo-step {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Para Quem É */
.for-who-section {
  padding: 6rem 0;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.for-who-card {
  background-color: var(--color-card);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--color-card-border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.for-who-card.for-who-yes {
  border-color: rgba(29, 224, 104, 0.15);
}

.for-who-card.for-who-no {
  border-color: rgba(255, 82, 71, 0.12);
}

.for-who-card.for-who-yes:hover {
  border-color: rgba(29, 224, 104, 0.4);
  box-shadow: 0 0 40px rgba(29, 224, 104, 0.08);
}

.for-who-card.for-who-no:hover {
  border-color: rgba(255, 82, 71, 0.3);
  box-shadow: 0 0 40px rgba(255, 82, 71, 0.05);
}

.for-who-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.for-who-card-header h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.for-who-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.for-who-icon.yes-icon {
  background: rgba(29, 224, 104, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(29, 224, 104, 0.2);
}

.for-who-icon.no-icon {
  background: rgba(255, 82, 71, 0.08);
  color: #ff5247;
  border: 1px solid rgba(255, 82, 71, 0.2);
}

.for-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.for-who-list li {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.list-check {
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.list-x {
  color: #ff5247;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-text-muted) !important;
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,224,104,0.2), rgba(29,224,104,0.05));
  border: 1px solid rgba(29, 224, 104, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.author-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Footer Grid */
.footer {
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: rgba(29, 224, 104, 0.4);
  color: var(--color-primary);
  background: rgba(29, 224, 104, 0.06);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col ul li a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Responsive additions */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { gap: 0.5rem; }
  .stat-number { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .stats-grid { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .for-who-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* --- MAGNIFICENT 3D & NEON EFFECTS --- */

@keyframes float {
  0% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-12px) rotateX(5deg); }
  100% { transform: translateY(0px) rotateX(0deg); }
}

@keyframes pulseGlow {
  0% { opacity: 0.15; filter: drop-shadow(0 0 50px var(--color-primary)) blur(80px); }
  100% { opacity: 0.35; filter: drop-shadow(0 0 120px var(--color-primary)) blur(120px); }
}

/* Hero Volumetric Light */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow-backlight {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 6s infinite alternate;
}

/* Floating Elements */
.alert-icon, .shield-icon {
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(29, 224, 104, 0.25);
  border: 1px solid rgba(29, 224, 104, 0.4);
}

/* 3D Context for Cards */
.card, .card-service, .pricing-card, .faq-item, .final-btn, .for-who-card, .stat-item {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Inner pop-out 3D effect */
.card > *, .card-service > *, .pricing-card > *, .faq-item > *, .for-who-card > * {
  transform: translateZ(30px);
}

/* Super Neon Glow on Hover */
.card:hover, .faq-item:hover, .card-service:hover {
  box-shadow: 0 0 30px rgba(29, 224, 104, 0.3), 0 0 80px rgba(29, 224, 104, 0.15);
  border-color: rgba(29, 224, 104, 0.8) !important;
}

.pricing-card::after {
  box-shadow: 0 0 40px 10px rgba(29, 224, 104, 0.4), 0 -20px 80px rgba(29, 224, 104, 0.2);
}

.pricing-card:hover::after {
  background: var(--color-primary);
  box-shadow: 0 0 60px 20px rgba(29, 224, 104, 0.7), 0 -30px 100px rgba(29, 224, 104, 0.4);
}

.final-btn:hover {
  transform: translateY(-5px) translateZ(15px) !important;
  box-shadow: 0 15px 50px rgba(29, 224, 104, 0.6), 0 0 100px rgba(29, 224, 104, 0.4);
  background: #23f274; /* Brighter green on hover */
}

h1 .text-primary, h2 .text-primary {
  text-shadow: 0 0 40px rgba(29, 224, 104, 0.4);
}
