/* ==========================================================================
   V07 - Electric Violet (Cyberpunk Theme)
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --color-bg: #0d0221;
  --color-bg-alt: #130330;
  --color-accent: #b537f2;
  --color-accent-alpha: rgba(181, 55, 242, 0.4);
  --color-secondary: #ff2d95;
  --color-tertiary: #00f0ff;
  --color-text: #e0d4ff;
  --color-muted: #8b7aab;
  --color-surface: rgba(181, 55, 242, 0.06);
  --color-border: rgba(181, 55, 242, 0.25);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --glow-violet: 0 0 20px rgba(181, 55, 242, 0.5), 0 0 40px rgba(181, 55, 242, 0.2);
  --glow-pink: 0 0 20px rgba(255, 45, 149, 0.5), 0 0 40px rgba(255, 45, 149, 0.2);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
}

/* ---------- Base ---------- */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      rgba(181, 55, 242, 0.03) 49px,
      rgba(181, 55, 242, 0.03) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      rgba(181, 55, 242, 0.03) 49px,
      rgba(181, 55, 242, 0.03) 50px
    );
}

/* ---------- Dramatic Enter Animation ---------- */
.dramatic-enter {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.dramatic-enter.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* ---------- Glitch Effect ---------- */
@keyframes glitch {
  0%, 100% {
    text-shadow:
      2px 0 var(--color-secondary),
      -2px 0 var(--color-tertiary);
    transform: translate(0);
  }
  20% {
    text-shadow:
      -2px 0 var(--color-secondary),
      2px 0 var(--color-tertiary);
    transform: translate(-1px, 1px);
  }
  40% {
    text-shadow:
      2px 0 var(--color-secondary),
      -2px 0 var(--color-tertiary);
    transform: translate(1px, -1px);
  }
  60% {
    text-shadow:
      -1px 0 var(--color-secondary),
      1px 0 var(--color-tertiary);
    transform: translate(-1px, 0);
  }
  80% {
    text-shadow:
      1px 0 var(--color-secondary),
      -1px 0 var(--color-tertiary);
    transform: translate(1px, 0);
  }
}

/* ---------- Neon Scan Line ---------- */
@keyframes scanline {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* ---------- Neon Pulse Border ---------- */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 5px var(--color-accent), 0 0 10px var(--color-accent), 0 0 20px rgba(181, 55, 242, 0.3);
  }
  50% {
    box-shadow: 0 0 10px var(--color-accent), 0 0 20px var(--color-accent), 0 0 40px rgba(181, 55, 242, 0.5);
  }
}

/* ---------- Section Commons ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-tertiary);
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.text-accent {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(181, 55, 242, 0.5);
}

.section-description {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* ---------- CTA Button Override ---------- */
.cta-btn {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 18px 40px;
  border-radius: 4px;
  box-shadow: var(--glow-violet);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-3px);
}

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

.hero__scanline {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(181, 55, 242, 0.03) 50%,
    transparent 100%
  );
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--color-accent);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 24px;
  animation: neonPulse 2s ease-in-out infinite;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 10px var(--color-secondary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  animation: glitch 4s ease-in-out infinite;
}

.hero__title-accent {
  color: var(--color-accent);
  text-shadow: 0 0 30px rgba(181, 55, 242, 0.6);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero .countdown {
  margin-bottom: 32px;
}

.hero .countdown__number {
  font-family: var(--font-heading);
  color: var(--color-tertiary);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.hero .countdown__separator {
  color: var(--color-tertiary);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.hero .countdown__label {
  color: var(--color-muted);
  font-family: var(--font-body);
}

.hero__photo {
  max-width: 250px;
  margin: 0 auto 32px;
}

.hero__photo-img {
  border: 2px solid var(--color-accent);
  box-shadow: var(--glow-violet);
  border-radius: 12px;
  color: var(--color-muted);
}

/* ========================================================================
   PERSUASION
   ======================================================================== */
.persuasion {
  padding: 80px 0;
}

.persuasion .video-wrapper {
  border: 1px solid var(--color-border);
  box-shadow: var(--glow-violet);
  margin-bottom: 40px;
}

.persuasion .video-placeholder span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--glow-violet);
}

.testimonial-card__stars {
  color: var(--color-secondary);
  font-size: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 45, 149, 0.4);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 0.6rem;
  background: linear-gradient(135deg, rgba(181, 55, 242, 0.2), rgba(255, 45, 149, 0.2));
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Guarantee */
.guarantee {
  text-align: center;
  padding: 32px 20px;
  margin-top: 40px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: 0 0 30px rgba(181, 55, 242, 0.1);
}

.guarantee__icon {
  font-size: 2rem;
  color: var(--color-tertiary);
  margin-bottom: 12px;
  text-shadow: var(--glow-cyan);
}

.guarantee__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.guarantee__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================================================
   CONTENT / MODULES
   ======================================================================== */
.content-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

/* Module Cards */
.module-card {
  background: var(--color-surface);
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--color-accent), var(--color-secondary), var(--color-tertiary)) 1;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.module-card__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(181, 55, 242, 0.4);
  line-height: 1;
}

.module-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.module-card__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* IA Section */
.ia-section {
  position: relative;
  margin-top: 48px;
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  overflow: hidden;
}

.ia-section__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ia-section__content {
  position: relative;
  z-index: 1;
}

.ia-section__badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-tertiary);
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.ia-section__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ia-section__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Price Block */
.price-block {
  text-align: center;
  padding: 40px 24px;
  margin-top: 48px;
  border: 1px solid var(--color-accent);
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: var(--glow-violet);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.price-block__from {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.price-block__from s {
  color: var(--color-secondary);
}

.price-block__for {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-block__value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(181, 55, 242, 0.4);
}

.price-block__value strong {
  font-size: 3rem;
}

.price-block__cash {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* ========================================================================
   SPECIALIST
   ======================================================================== */
.specialist {
  padding: 80px 0;
}

.specialist__grid {
  margin-top: 32px;
}

.specialist__photo {
  max-width: 280px;
  margin: 0 auto 32px;
}

.specialist__photo-img {
  border: 2px solid var(--color-accent);
  box-shadow: var(--glow-violet);
  color: var(--color-muted);
}

.specialist__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(181, 55, 242, 0.3);
}

.specialist__role {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.specialist__bio {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.specialist__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.specialist__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.specialist__credential-icon {
  color: var(--color-tertiary);
  font-size: 0.7rem;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.faq .accordion__item {
  border-color: var(--color-border);
}

.faq .accordion__trigger {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.faq .accordion__trigger:hover {
  color: #fff;
}

.faq .accordion__icon {
  color: var(--color-accent);
}

.faq .accordion__content-inner {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(181, 55, 242, 0.4);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 8px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--color-muted);
  opacity: 0.5;
}

/* ========================================================================
   CAROUSEL OVERRIDES
   ======================================================================== */
.carousel__dot {
  background: rgba(181, 55, 242, 0.3);
}

.carousel__dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(181, 55, 242, 0.5);
}

.carousel__arrow {
  background: rgba(181, 55, 242, 0.3);
  border: 1px solid var(--color-border);
}

.carousel__arrow:hover {
  background: rgba(181, 55, 242, 0.6);
  box-shadow: var(--glow-violet);
}

/* ========================================================================
   RESPONSIVE - Tablet (768px+)
   ======================================================================== */
@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .hero__photo {
    max-width: 300px;
  }

  .specialist__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
  }

  .specialist__photo {
    margin: 0;
    max-width: 100%;
  }

  .price-block__value strong {
    font-size: 3.5rem;
  }

  .ia-section {
    padding: 40px 32px;
  }
}

/* ========================================================================
   RESPONSIVE - Desktop (1024px+)
   ======================================================================== */
@media (min-width: 1024px) {
  .section-title {
    font-size: 2.6rem;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero__title {
    font-size: 3.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    font-size: 1.15rem;
    max-width: 600px;
  }

  .persuasion,
  .content-section,
  .specialist,
  .faq {
    padding: 100px 0;
  }

  .section-description {
    font-size: 1.05rem;
  }

  .specialist__grid {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
  }

  .guarantee {
    padding: 48px 40px;
  }

  .ia-section {
    padding: 48px 40px;
  }

  .price-block {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 40px;
  }

  .faq .container {
    max-width: 800px;
  }
}
