:root {
  /* Color System - Premium dark with green accents */
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-card: #1a2235;
  --bg-card-hover: #1f2a40;
  --bg-accent: rgba(34, 197, 94, 0.08);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-600: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.25);

  --orange-500: #f97316;
  --blue-500: #3b82f6;
  --red-500: #ef4444;

  --border-subtle: rgba(148, 163, 184, 0.08);
  --border-card: rgba(148, 163, 184, 0.12);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 0.3s;
}

*, *::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);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Announcement Bar ─── */
.announcement {
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
  color: #fff;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.announcement span {
  opacity: 0.85;
  font-weight: 400;
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .icon {
  width: 32px;
  height: 32px;
  background: var(--green-500);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--duration-base) var(--ease-out);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--green-500);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--duration-base) var(--ease-out);
}

.nav-cta:hover {
  background: var(--green-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}
/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

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

.trust-sep {
  color: var(--border-card);
  font-size: 0.75rem;
}

.trust-line {
  font-size: 0.85rem !important;
  color: var(--green-400) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 500;
}

.cta-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 0.25rem; flex-direction: column; }
}

/* ─── Hero ─── */
.hero {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-accent);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--green-400);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .green { color: var(--green-400); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-400);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-500);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.btn-primary:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

.hero-image .floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-image .floating-badge.top-left {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-image .floating-badge.bottom-right {
  bottom: 15%;
  right: -5%;
  animation-delay: 1.5s;
}

.hero-image .floating-badge .emoji { font-size: 1.2rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── Problem Section ─── */
.problem {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-400);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 3rem;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--duration-base) var(--ease-out);
}

.problem-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.2);
}

.problem-card .icon {
  width: 48px;
  height: 48px;
  background: var(--bg-accent);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-card .stat {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-500);
}

/* ─── Features Section ─── */
.features {
  padding: var(--section-pad) 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(34, 197, 94, 0.25);
  transform: translateY(-2px);
}

.feature-card.highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-card), rgba(34, 197, 94, 0.05));
}

.feature-card .icon-lg {
  width: 56px;
  height: 56px;
  background: var(--bg-accent);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-card .tag {
  display: inline-block;
  background: var(--bg-accent);
  color: var(--green-400);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ─── Specs Table ─── */
.specs {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.specs-table {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0,0,0,0.2);
}

.specs-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table tr:last-child td { border-bottom: none; }

.specs-table .spec-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.specs-table .spec-value {
  font-weight: 600;
}

.specs-table .spec-value.green { color: var(--green-400); }

/* ─── Comparison Section ─── */
.comparison {
  padding: var(--section-pad) 0;
}

.comparison-table {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0,0,0,0.2);
  text-align: center;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table th.winner {
  color: var(--green-400);
  background: rgba(34, 197, 94, 0.08);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table .highlight-col {
  background: rgba(34, 197, 94, 0.04);
  font-weight: 600;
}

.check { color: var(--green-400); }
.cross { color: var(--red-500); opacity: 0.6; }

/* ─── Cost Calculator ─── */
.calculator {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2.5rem;
}

.calc-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.calc-row:last-child { border-bottom: none; }
.calc-row .label { color: var(--text-secondary); }
.calc-row .value { font-weight: 600; }
.calc-row .value.red { color: var(--red-500); }
.calc-row .value.green { color: var(--green-400); }

.calc-total {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-total .label {
  font-weight: 700;
  font-size: 1.1rem;
}

.calc-total .value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}

/* ─── Reviews ─── */
.reviews {
  padding: var(--section-pad) 0;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: var(--green-400);
  margin-top: 0.25rem;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-card), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-box .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-box .price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-400);
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-box .price-original {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.region-selector {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.region-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.region-btn.active {
  background: var(--green-500);
  color: #fff;
  border-color: var(--green-500);
}

.region-btn:hover:not(.active) {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* ─── FAQ ─── */
.faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question .icon {
  font-size: 1.25rem;
  transition: transform var(--duration-base) var(--ease-out);
  color: var(--text-muted);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  color: var(--green-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

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

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer .affiliate-disclosure {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; margin-bottom: 2rem; }

  .hero-image .floating-badge { display: none; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.highlight { grid-column: span 1; grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-box .price-tag { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ─── Email Capture ─── */
.email-capture {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.capture-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.capture-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.capture-box > p, .capture-content > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.capture-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 0.75rem;
}

.capture-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--duration-base) var(--ease-out);
}

.capture-form input:focus {
  border-color: var(--green-500);
}

.capture-form input::placeholder {
  color: var(--text-muted);
}

.capture-fine {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 480px) {
  .capture-form { flex-direction: column; }
  .capture-box { padding: 2rem 1.5rem; }
}

/* ─── Interactive Cursor ─── */
.problem-card,
.feature-card,
.review-card,
.faq-question,
.region-btn,
.btn-primary,
.btn-secondary,
.nav-cta {
  cursor: pointer;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .floating-badge { animation: none; }
  .hero-badge::before { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
