/* =========================================
   CPA SOCIAL SNIPER — TACTICAL OPS DESIGN SYSTEM
   By ProfitHive | 2026
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Core Palette */
  --bg-primary: #0A0D12;
  --bg-secondary: #10141A;
  --bg-card: #141922;
  --bg-card-hover: #1A2030;
  --bg-elevated: #1E2536;

  /* Accent */
  --accent: #00FF88;
  --accent-dim: #00cc6d;
  --accent-glow: rgba(0, 255, 136, 0.15);
  --accent-glow-strong: rgba(0, 255, 136, 0.3);

  /* Secondary accent */
  --orange: #FF6B35;
  --orange-glow: rgba(255, 107, 53, 0.15);

  /* Text */
  --text-primary: #F0F0F0;
  --text-secondary: #A0A8B8;
  --text-muted: #6B7280;
  --text-dark: #0A0D12;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 255, 136, 0.2);

  /* Fonts */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 960px;
  --container-wide: 1100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-dim);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== FLOATING BACKGROUND ELEMENTS ===== */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.floating-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12), transparent 70%);
  top: 10%;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
  bottom: 20%;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06), transparent 70%);
  top: 60%;
  right: 10%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.container--wide {
  max-width: var(--container-wide);
}

/* ===== SECTION ===== */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ===== MISSION LABEL ===== */
.mission-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mission-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow-strong); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #00D4FF 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--accent);
}

.highlight-orange {
  color: var(--orange);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero__eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  padding: 10px 28px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.hero__price-badge .old-price {
  text-decoration: line-through;
  color: var(--text-muted);
}

.hero__price-badge .new-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

/* ===== CTA BUTTON ===== */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}

.cta-wrapper img {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cta-wrapper:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.cta-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.cta-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--accent), #00D4FF);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2.5s ease-in-out infinite;
}

.cta-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow-strong);
  color: var(--text-dark);
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 8px 40px var(--accent-glow-strong); }
}

.cta-custom::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s ease-in-out infinite;
}

.cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ===== DARK CTA SECTION ===== */
.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  margin-bottom: 8px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== STORY SECTION ===== */
.story-section {
  border-bottom: 1px solid var(--border);
}

.story-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 720px;
}

.story-section p em {
  color: var(--text-primary);
  font-style: italic;
}

.story-section p strong {
  color: var(--accent);
  font-weight: 600;
}

.story-greeting {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.signature {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 20px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-left-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.problem-card p {
  color: var(--text-secondary);
  margin: 0;
}

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

/* ===== DISCOVERY SECTION ===== */
.discovery-section {
  border-bottom: 1px solid var(--border);
}

.discovery-section p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.discovery-section strong {
  color: var(--accent);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== MODULE CARDS (What You Get) ===== */
.modules-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 28px 28px 80px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

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

.module-number {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
}

.module-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.module-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== SOCIAL PROOF ===== */
.proof-section {
  border-bottom: 1px solid var(--border);
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.proof-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.proof-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
}

.proof-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.proof-detail {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.proof-card blockquote {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  border: none;
  padding: 0;
  margin: 0;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bonus-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.03) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-glow);
  border-color: var(--accent);
}

.bonus-card::after {
  content: 'BONUS';
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.4;
}

.bonus-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.bonus-value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  margin-top: 12px;
  font-weight: 600;
}

/* ===== VALUE STACK ===== */
.value-section {
  text-align: center;
}

.value-stack {
  max-width: 600px;
  margin: 40px auto;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.value-row:last-child {
  border-bottom: none;
}

.value-item {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.value-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid var(--accent);
  margin-top: 8px;
}

.value-total .value-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.value-total .value-price {
  text-decoration: none;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
}

.value-today {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 16px;
  display: inline-block;
}

.value-today .label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.value-today .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.value-today .one-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== QUALIFIER SECTION (Who It's For) ===== */
.qualifier-section {
  border-bottom: 1px solid var(--border);
}

.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.qualifier-col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qualifier-col.for h3 {
  color: var(--accent);
}

.qualifier-col.not-for h3 {
  color: var(--orange);
}

.qualifier-col ul {
  list-style: none;
  padding: 0;
}

.qualifier-col ul li {
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.qualifier-col ul li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.qualifier-col.for ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.qualifier-col.not-for ul li::before {
  content: '✗';
  color: var(--orange);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

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

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== FINAL CTA + P.S. ===== */
.final-section {
  text-align: center;
  padding-bottom: 40px;
}

.final-section h2 {
  margin-bottom: 16px;
}

.final-section .sub {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.ps-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 700px;
  margin: 48px auto 0;
  text-align: left;
}

.ps-section h4 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.ps-section p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.wplus_spdisclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 16px auto 0;
  padding: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ===== DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

/* ===== CROSSHAIR DECORATIVE ===== */
.crosshair {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: var(--accent);
  opacity: 0.4;
}

.crosshair::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.crosshair::after {
  width: 100%;
  height: 1px;
  top: 50%;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .qualifier-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .module-card {
    padding-left: 70px;
  }

  .hero {
    padding: 80px 0 var(--section-padding);
    min-height: auto;
  }

  .cta-custom {
    padding: 16px 36px;
    font-size: 16px;
  }

  .value-today .price {
    font-size: 2.4rem;
  }

  .ps-section {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero__price-badge {
    padding: 8px 20px;
    font-size: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
