/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

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

/* ===== DESIGN TOKENS ===== */
:root {
  --font-headlines: 'Outfit', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg-primary: #050816;
  --bg-secondary: #0B1026;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.45);
  --accent-blue: #3B82F6;
  --accent-blue-glow: rgba(59,130,246,0.15);
  --accent-blue-dark: #2563EB;
  --accent-gold: #F59E0B;
  --accent-gold-glow: rgba(245,158,11,0.15);
  --accent-green: #10B981;
  --accent-green-glow: rgba(16,185,129,0.15);
  --accent-red: #EF4444;
  --whatsapp-green: #25D366;
  --border-subtle: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --gradient-hero: linear-gradient(135deg, #050816 0%, #0B1026 50%, #111827 100%);
  --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --shadow-glow: 0 0 40px rgba(59,130,246,0.15);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headlines);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { color: var(--text-secondary); font-size: clamp(0.95rem, 1.5vw, 1.1rem); }
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 600px; margin: 1rem auto 0; }
.accent-line {
  width: 3rem; height: 3px;
  background: var(--gradient-accent);
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.4);
}
.btn-gold {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.4);
}
.btn-outline {
  border: 1px solid var(--border-hover);
  color: white;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent-blue);
  background: var(--accent-blue-glow);
}
.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.card-icon-blue { background: var(--accent-blue-glow); color: var(--accent-blue); }
.card-icon-gold { background: var(--accent-gold-glow); color: var(--accent-gold); }
.card-icon-green { background: var(--accent-green-glow); color: var(--accent-green); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5,8,22,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-headlines);
  font-weight: 800; font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.logo span { color: var(--accent-blue); }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-desktop a:hover { color: white; }
.lang-switch {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hover);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.lang-switch:hover { color: white; border-color: var(--accent-blue); }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 1px;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(5,8,22,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-headlines);
  font-size: 1.5rem; font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: white; }
.mobile-menu-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.06) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--accent-blue-glow);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out forwards;
}
.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.15s ease-out forwards;
  opacity: 0;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.3s ease-out forwards;
  opacity: 0;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeInUp 0.6s 0.45s ease-out forwards;
  opacity: 0;
}
.hero-price {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.6s 0.6s ease-out forwards;
  opacity: 0;
}
.hero-price .price-big {
  font-family: var(--font-headlines);
  font-size: 2.5rem; font-weight: 900;
  line-height: 1;
}
.hero-price .price-detail {
  font-size: 0.9rem; color: var(--text-secondary);
}
.hero-price .price-detail strong { color: white; }

/* ===== PAIN/SOLUTION ===== */
.pain-section { background: var(--bg-secondary); }
.pain-card {
  text-align: center; padding: 2.5rem 1.5rem;
}
.pain-card .pain-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.pain-card h3 { color: var(--accent-red); margin-bottom: 0.75rem; }
.pain-card .solution {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.pain-card .solution h4 {
  color: var(--accent-green); font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { text-align: center; padding: 2rem; }
.step-number {
  font-family: var(--font-headlines);
  font-size: 3.5rem; font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.75rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { padding: 2rem; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.service-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.tag-included { background: var(--accent-green-glow); color: var(--accent-green); }
.tag-ai { background: rgba(96,165,250,0.15); color: #60A5FA; }
.tag-geo { background: var(--accent-blue-glow); color: var(--accent-blue); }

/* ===== SHOWCASE SLIDER ===== */
.showcase-section {
  background: var(--bg-secondary);
  overflow: hidden;
}
.showcase-track {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  animation: scroll-auto 30s linear infinite;
  width: max-content;
}
@keyframes scroll-auto {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.showcase-track:hover { animation-play-state: paused; }
.showcase-item {
  flex-shrink: 0;
  width: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s;
  position: relative;
}
.showcase-item:hover {
  border-color: var(--accent-blue);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(59,130,246,0.2);
}
.showcase-item img {
  width: 100%; height: 260px;
  object-fit: cover; object-position: top;
}
.showcase-label {
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  font-size: 0.85rem; font-weight: 600;
  text-align: center;
}
.showcase-label span {
  color: var(--text-muted);
  font-weight: 400; font-size: 0.8rem;
}

/* ===== PRICING ===== */
.pricing-section { position: relative; }
.pricing-compare {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-compare .old-price {
  font-family: var(--font-headlines);
  font-size: 3rem; font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  position: relative;
}
.pricing-compare .old-label {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.pricing-compare .arrow-down {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  color: var(--accent-green);
}
.pricing-main-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(96,165,250,0.05));
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(59,130,246,0.1);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 0.35rem 1.5rem;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-amount {
  font-family: var(--font-headlines);
  font-size: 5rem; font-weight: 900;
  line-height: 1;
  margin: 1.5rem 0 0.5rem;
}
.pricing-amount sup { font-size: 2rem; vertical-align: super; }
.pricing-monthly {
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.pricing-monthly span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.pricing-features {
  text-align: left;
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text-secondary);
}
.pricing-features .check { color: var(--accent-green); font-weight: 700; }
.pricing-email-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.75rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
}

/* ===== REFERRAL ===== */
.referral-section {
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(96,165,250,0.05));
  border-top: 1px solid rgba(245,158,11,0.1);
  border-bottom: 1px solid rgba(245,158,11,0.1);
}
.referral-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .referral-grid { grid-template-columns: 1fr 1fr; }
}
.referral-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-lg);
}
.referral-card .ref-amount {
  font-family: var(--font-headlines);
  font-size: 3rem; font-weight: 900;
  margin: 0.75rem 0;
}
.referral-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ref-step {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.ref-step-num {
  width: 40px; height: 40px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #000;
  font-weight: 800; font-size: 1.1rem;
  font-family: var(--font-headlines);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  padding: 2rem;
  position: relative;
}
.testimonial-card .stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.testimonial-card .author span {
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem; font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.3s;
  background: none; border: none;
  min-height: 48px;
}
.faq-question:hover { color: var(--accent-blue); }
.faq-icon {
  font-size: 1.25rem; transition: transform 0.3s;
  min-width: 24px; text-align: center;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  font-size: 0.95rem; line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  text-align: center;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.final-cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 1rem;
}
.footer a {
  display: block; padding: 0.3rem 0;
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.3s;
}
.footer a:hover { color: var(--accent-blue); }
.footer-legal {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; gap: 1rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.cookieless-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-green);
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent-green);
  cursor: help;
  position: relative;
}
.cookieless-badge:hover::after {
  content: attr(data-tooltip);
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-size: 0.75rem; font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  z-index: 10;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  width: 56px; height: 56px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .showcase-track { animation: none; }
}

/* ===== PRICE REVEAL EFFECT ===== */
.pricing-blur-layer {
  filter: blur(10px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.8s cubic-bezier(0.4,0,0.2,1), opacity 0.8s;
}
.pricing-blur-layer.revealed {
  filter: blur(0);
  pointer-events: all;
}
.pricing-reveal-trigger {
  cursor: pointer;
  padding: 1.25rem 2rem;
  border: 2px dashed rgba(245,158,11,0.4);
  border-radius: var(--radius-lg);
  background: rgba(245,158,11,0.05);
  text-align: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
  min-height: 48px;
}
.pricing-reveal-trigger:hover {
  border-color: var(--accent-gold);
  background: rgba(245,158,11,0.1);
  transform: scale(1.02);
}
.pricing-reveal-trigger.hidden { display: none; }
@keyframes priceRevealPop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.price-pop { animation: priceRevealPop 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards; }

/* Confetti */
.confetti-container {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; overflow: hidden; z-index: 10;
}
.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  top: -10px;
  opacity: 0;
}
.confetti-piece.active {
  animation: confettiFall 1.5s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(400px) rotate(720deg); }
}

/* ===== HERO IMAGE ===== */
.hero-layout {
  display: flex; align-items: center; gap: 3rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero-layout { flex-direction: row; }
}
.hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  animation: fadeInUp 0.6s 0.7s ease-out forwards;
  opacity: 0;
}
.hero-image img {
  width: 280px; height: 280px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 2px solid var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .hero-image img { width: 320px; height: 360px; }
}

/* ===== TRUST BADGES ===== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}
.trust-badge:hover { color: var(--text-secondary); }
.trust-badge-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

/* ===== HERO PRICE TEASER (replaces full price in hero) ===== */
.hero-price-teaser {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 2rem; padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s;
  animation: fadeInUp 0.6s 0.6s ease-out forwards;
  opacity: 0;
}
.hero-price-teaser:hover {
  border-color: var(--accent-gold);
  background: rgba(245,158,11,0.05);
}
.hero-price-teaser .teaser-blur {
  font-family: var(--font-headlines);
  font-size: 1.5rem; font-weight: 900;
  filter: blur(6px);
  user-select: none;
  color: var(--accent-gold);
}
.hero-price-teaser .teaser-text {
  font-size: 0.9rem; color: var(--text-secondary);
}
.hero-price-teaser .teaser-text strong { color: white; }

/* ===== HERO IN-PLACE PRICE REVEAL ===== */
.hero-price-revealed {
  position: relative;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(59,130,246,0.05));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.6s ease-out forwards;
}
.hero-reveal-price {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin: 0.25rem 0;
}
.hero-reveal-big {
  font-family: var(--font-headlines);
  font-size: 2.5rem; font-weight: 900;
  line-height: 1;
}
.hero-reveal-detail {
  font-size: 1rem; color: var(--text-secondary);
}

/* ===== SERVICE CARD IMAGES ===== */
.service-card-img {
  width: 100%; height: 140px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

/* ===== RESPONSIVE FINE TUNING ===== */
@media (max-width: 480px) {
  .hero-price { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .pricing-amount { font-size: 4rem; }
  .referral-card .ref-amount { font-size: 2.5rem; }
  .showcase-item { width: 280px; }
  .showcase-item img { height: 200px; }
}
