/* ============================================================
   VIRAL SOLO ADS — styles.css
   Aesthetic: Dark, fiery, high-energy — editorial meets sales
   ============================================================ */

:root {
  --fire-orange: #FF6B00;
  --fire-yellow: #FFD000;
  --fire-red: #E8001C;
  --dark-bg: #0A0A0F;
  --dark-surface: #12121A;
  --dark-card: #1A1A28;
  --text-light: #F0F0F8;
  --text-muted: #9090A8;
  --accent-gold: #FFD000;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    url('https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=1600&auto=format&fit=crop&q=80') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 15, 0.93) 0%,
    rgba(15, 10, 5, 0.88) 40%,
    rgba(25, 10, 0, 0.82) 100%
  );
  z-index: 1;
}

/* Animated fire gradient border at bottom of hero */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-yellow), var(--fire-orange), var(--fire-red));
  background-size: 200% 100%;
  animation: fireSlide 3s linear infinite;
  z-index: 3;
}

@keyframes fireSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.0rem);
  line-height: 1.0;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.highlight-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow));
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(255,160,0,0.6));
}

.sub-headline-accent {
  color: var(--fire-yellow);
  display: inline-block;
}

.hero-subhead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(240, 240, 248, 0.85);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-subhead strong {
  color: var(--fire-yellow);
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-orange) 60%, var(--fire-yellow) 100%);
  border: none;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 0 40px rgba(255, 107, 0, 0.6),
    0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: ctaPulse 2.5s ease-in-out infinite;
  text-decoration: none;
}

.btn-cta-inner {
  display: block;
  font-family: var(--font-condensed);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 20px 48px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 60px rgba(255, 107, 0, 0.8),
    0 8px 30px rgba(0,0,0,0.5);
  animation: none;
}

.btn-cta:active {
  transform: translateY(0) scale(0.99);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,107,0,0.6), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 70px rgba(255,107,0,0.9), 0 4px 30px rgba(0,0,0,0.4); }
}

.cta-micro-text {
  font-size: 0.82rem;
  color: rgba(240,240,248,0.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL HINT
   ============================================================ */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-condensed);
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounceArrow 1.6s ease-in-out infinite;
  display: block;
  margin-top: 4px;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.8; }
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

.ticker-inner span {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 40px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-dark {
  background-color: var(--dark-bg);
}

.section-accent {
  background: linear-gradient(135deg, #0F0A1A 0%, #1A0A05 100%);
  border-top: 1px solid rgba(255,107,0,0.15);
  border-bottom: 1px solid rgba(255,107,0,0.15);
}

.section-cta {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1A0A05 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-accent {
  color: var(--fire-orange);
}

.text-accent-gold {
  color: var(--accent-gold);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-red), var(--fire-yellow));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h4 {
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   WORKS FOR LIST
   ============================================================ */
.works-list {
  list-style: none;
  padding: 0;
}

.works-list li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.works-list li:last-child {
  border-bottom: none;
}

.check {
  color: var(--fire-orange);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   BIG QUOTE BOX
   ============================================================ */
.big-quote-box {
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(232,0,28,0.08));
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 0 60px rgba(255,107,0,0.08);
}

.bq-icon {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--fire-orange);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 24px;
}

.bq-text {
  font-family: var(--font-condensed);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.35;
  position: relative;
  z-index: 1;
  margin: 0;
}

.bq-text strong {
  color: var(--fire-yellow);
}

/* ============================================================
   STEP CARDS
   ============================================================ */
.step-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255,107,0,0.12);
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--fire-orange);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 18px;
}

.step-card h4 {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BOTTOM CTA SECTION
   ============================================================ */
.bottom-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.bottom-cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #06060A;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.site-footer a {
  color: rgba(255,107,0,0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--fire-orange);
}

/* ============================================================
   MODAL
   ============================================================ */
.lead-modal-content {
  background: linear-gradient(160deg, #16162A 0%, #1A0E08 100%);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(255,107,0,0.12);
}

.lead-modal-header {
  background: linear-gradient(135deg, rgba(232,0,28,0.2), rgba(255,107,0,0.15));
  padding: 32px 32px 20px;
  position: relative;
}

.modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.lead-modal-body {
  padding: 32px;
}

.modal-label {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 8px;
}

.lead-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lead-input::placeholder {
  color: rgba(144,144,168,0.5);
}

.lead-input:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.18);
  color: var(--text-light);
  outline: none;
}

.btn-modal-submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-orange) 60%, var(--fire-yellow) 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 18px;
  cursor: pointer;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  box-shadow: 0 0 30px rgba(255,107,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,107,0,0.7);
}

.modal-privacy {
  font-size: 0.78rem;
  color: rgba(144,144,168,0.6);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-down {
  animation: fadeDown 0.8s ease both;
}

.animate-fade-up {
  animation: fadeUp 0.9s ease both;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 100px;
    text-align: center;
  }

  .big-quote-box {
    padding: 32px 24px;
  }

  .bq-icon {
    font-size: 4rem;
  }

  .lead-modal-header,
  .lead-modal-body {
    padding: 24px 20px;
  }

  .btn-cta-inner {
    padding: 18px 28px;
  }
}