/* ============================================================
   ASTORIXA OMNICANAL 360 - LANDING PAGE
   Aesthetic: Tech Luxury · Dark mode · Electric accents
   Author: Astorixa
   ============================================================ */

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

:root {
  /* Paleta */
  --bg-deep: #07070d;
  --bg-base: #0a0a14;
  --bg-elev: #11111d;
  --bg-card: rgba(20, 20, 32, 0.72);
  --bg-card-solid: #14141f;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);

  /* Texto */
  --text-primary: #f5f5f7;
  --text-secondary: rgba(245, 245, 247, 0.72);
  --text-muted: rgba(245, 245, 247, 0.5);
  --text-faint: rgba(245, 245, 247, 0.32);

  /* Acentos */
  --accent-purple: #7B61FF;
  --accent-purple-soft: rgba(123, 97, 255, 0.16);
  --accent-cyan: #00E0B8;
  --accent-cyan-soft: rgba(0, 224, 184, 0.14);
  --accent-amber: #FFB547;
  --accent-pink: #FF5C9D;

  /* Gradientes signature */
  --grad-primary: linear-gradient(135deg, #7B61FF 0%, #00E0B8 100%);
  --grad-text: linear-gradient(135deg, #b9a8ff 0%, #5cf2d4 100%);
  --grad-soft: linear-gradient(135deg, rgba(123, 97, 255, 0.18), rgba(0, 224, 184, 0.12));

  /* Tipografía */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Sombras */
  --shadow-glow: 0 0 60px rgba(123, 97, 255, 0.18);
  --shadow-card: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  --shadow-cta: 0 12px 32px -8px rgba(123, 97, 255, 0.5);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

img, svg {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--accent-purple);
  color: #fff;
}

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

/* ===== BACKGROUND ATMOSPHERE ===== */
.bg-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: orb-float 18s ease-in-out infinite;
}

.bg-orb--1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.5), transparent 70%);
}

.bg-orb--2 {
  top: 30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 224, 184, 0.35), transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.bg-orb--3 {
  bottom: -20%;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 92, 157, 0.25), transparent 70%);
  animation-delay: -12s;
  animation-duration: 26s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  position: relative;
  background: linear-gradient(90deg, #7B61FF, #00E0B8);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 100;
}

.urgency-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 48px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.urgency-bar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.8s infinite;
}

.urgency-bar__text strong {
  font-weight: 700;
}

.urgency-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.urgency-bar__close:hover {
  background: rgba(255, 255, 255, 0.15);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 20, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s, border-color 0.3s;
}

.header.is-scrolled {
  background: rgba(7, 7, 13, 0.85);
  border-bottom-color: var(--border-mid);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header__brand:hover .header__logo {
  transform: rotate(-12deg) scale(1.08);
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.header__brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-secondary);
}

.header__nav a {
  position: relative;
  transition: color 0.25s;
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--grad-primary);
  transition: width 0.3s ease;
}

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

.header__nav a:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--grad-primary);
  color: #0a0a14;
  font-weight: 700;
  box-shadow: var(--shadow-cta);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00E0B8 0%, #7B61FF 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary > * {
  position: relative;
  z-index: 1;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(0, 224, 184, 0.45);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 920px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title-accent {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  color: var(--accent-cyan);
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan-soft), transparent);
  z-index: -1;
  animation: underline-pulse 3s ease-in-out infinite;
}

@keyframes underline-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(0.95); opacity: 1; }
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 auto 36px;
  max-width: 720px;
}

.hero__subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero__channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.channel-pill {
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.channel-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.channel-pill[data-channel="whatsapp"]::before { background: #25D366; }
.channel-pill[data-channel="facebook"]::before { background: #1877F2; }
.channel-pill[data-channel="instagram"]::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.channel-pill[data-channel="tiktok"]::before { background: #ff0050; }
.channel-pill[data-channel="call"]::before { background: var(--accent-amber); }
.channel-pill[data-channel="email"]::before { background: var(--accent-purple); }
.channel-pill[data-channel="web"]::before { background: var(--accent-cyan); }

.channel-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-mid);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.channel-pill--more {
  background: var(--accent-purple-soft);
  border-color: rgba(123, 97, 255, 0.3);
  color: var(--text-primary);
}

.channel-pill--more::before {
  display: none;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__trust-item span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border-subtle);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan));
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { top: -16px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 32px; opacity: 0; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-strip__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.trust-strip__logos span {
  transition: color 0.3s, transform 0.3s;
}

.trust-strip__logos span:hover {
  color: var(--text-secondary);
  transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.section-header__eyebrow--accent {
  background: var(--accent-purple-soft);
  border-color: rgba(123, 97, 255, 0.3);
  color: #b9a8ff;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-header__title em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== PAINS ===== */
.pains {
  padding: 120px 0 80px;
}

.pains__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.pain-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 92, 157, 0.4);
  background: rgba(20, 20, 32, 0.85);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 92, 157, 0.18), rgba(255, 181, 71, 0.1));
  color: var(--accent-pink);
  margin-bottom: 20px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== SOLUTION ===== */
.solution {
  padding: 100px 0;
  position: relative;
}

.solution__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 968px) {
  .solution__layout { grid-template-columns: 1fr; }
}

/* === Platform Mockup === */
.platform-mockup {
  position: sticky;
  top: 100px;
}

.platform-mockup__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.platform-mockup__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0c0c14;
  border-bottom: 1px solid var(--border-subtle);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--red { background: #ff5f57; }
.dot--amber { background: #febc2e; }
.dot--green { background: #28c840; }

.platform-mockup__url {
  margin-left: 12px;
  font-family: 'SF Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.platform-mockup__body {
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  height: 460px;
}

.platform-mockup__sidebar {
  border-right: 1px solid var(--border-subtle);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0, 0, 0, 0.2);
}

.mockup-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: background 0.2s;
  position: relative;
}

.mockup-channel[data-active="true"] {
  background: var(--accent-purple-soft);
  color: var(--text-primary);
}

.mockup-channel__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mockup-channel__icon--whatsapp { background: #25D366; }
.mockup-channel__icon--instagram { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.mockup-channel__icon--facebook { background: #1877F2; }
.mockup-channel__icon--tiktok { background: #000; border: 1px solid #ff0050; color: #ff0050; }
.mockup-channel__icon--call { background: var(--accent-amber); color: #0a0a14; }
.mockup-channel__icon--mail { background: var(--accent-purple); }

.mockup-channel__badge {
  margin-left: auto;
  background: var(--accent-cyan);
  color: #0a0a14;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  min-width: 18px;
  text-align: center;
}

.platform-mockup__chat {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.mockup-msg {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
  position: relative;
  animation: msg-in 0.5s ease-out backwards;
}

.mockup-msg:nth-child(1) { animation-delay: 0.5s; }
.mockup-msg:nth-child(2) { animation-delay: 1.2s; }
.mockup-msg:nth-child(3) { animation-delay: 2s; }
.mockup-msg:nth-child(4) { animation-delay: 2.6s; }

@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mockup-msg--in {
  background: rgba(255, 255, 255, 0.06);
  align-self: flex-start;
  color: var(--text-primary);
  border-top-left-radius: 4px;
}

.mockup-msg--ai {
  background: var(--grad-soft);
  align-self: flex-end;
  border: 1px solid rgba(123, 97, 255, 0.3);
  color: var(--text-primary);
  border-top-right-radius: 4px;
}

.mockup-msg__tag {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 4px;
}

.mockup-msg__time {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

.mockup-msg--system {
  align-self: center;
  background: rgba(0, 224, 184, 0.1);
  border: 1px solid rgba(0, 224, 184, 0.25);
  font-size: 10px;
  color: var(--accent-cyan);
  padding: 6px 12px;
  border-radius: 100px;
}

.platform-mockup__panel {
  border-left: 1px solid var(--border-subtle);
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.panel-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panel-stat__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.panel-stat__lbl {
  font-size: 10px;
  color: var(--text-muted);
}

.panel-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 4px;
}

.panel-bar__fill {
  display: block;
  height: 100%;
  background: var(--grad-primary);
  border-radius: 100px;
  animation: bar-fill 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

@keyframes bar-fill {
  from { width: 0; }
}

.panel-foot {
  font-size: 10px;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* === Benefits === */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--border-subtle);
}

.benefit__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.benefit p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-purple) 20%, var(--accent-cyan) 80%, transparent);
  z-index: 0;
}

@media (max-width: 768px) {
  .process__timeline { grid-template-columns: 1fr; }
  .process__timeline::before { display: none; }
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.process-step:hover {
  border-color: rgba(0, 224, 184, 0.4);
  transform: translateY(-4px);
}

.process-step__day {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-cyan-soft);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ===== PLANS ===== */
.plans {
  padding: 100px 0;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 80px;
}

@media (max-width: 968px) {
  .plans__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.plan-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
}

.plan-card--featured {
  border: 1px solid rgba(123, 97, 255, 0.5);
  background: linear-gradient(180deg, rgba(123, 97, 255, 0.06), var(--bg-card));
  transform: scale(1.04);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  z-index: 2;
}

.plan-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
  border-color: rgba(123, 97, 255, 0.8);
}

.plan-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}

@media (max-width: 968px) {
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-6px); }
}

.plan-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #0a0a14;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -4px rgba(0, 224, 184, 0.4);
}

.plan-card__head {
  margin-bottom: 24px;
}

.plan-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-card__tier--accent {
  color: var(--accent-cyan);
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.plan-card__pitch {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.plan-card__price {
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.plan-card__price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
  display: inline-block;
}

.plan-card__price-now {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-card__price-currency {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-secondary);
}

.plan-card__price-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.plan-card--featured .plan-card__price-num {
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-card__price-cycle {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-card__price-note {
  font-size: 12px;
  color: var(--text-muted);
}

.plan-card__price-note strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.plan-card__features {
  flex: 1;
  margin-bottom: 28px;
}

.plan-card__features li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.plan-card__features li:last-child {
  border-bottom: none;
}

.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%2300E0B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-card__features li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== BONUSES ===== */
.bonuses {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.1), rgba(0, 224, 184, 0.05));
  border: 1px solid rgba(123, 97, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.bonuses::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 224, 184, 0.15), transparent 70%);
  pointer-events: none;
}

.bonuses__head {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.bonuses__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.bonuses__head h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.bonuses__head h3 strong {
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  position: relative;
}

.bonus {
  padding: 24px 20px;
  background: rgba(10, 10, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.bonus:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
}

.bonus__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-purple);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.bonus h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.bonus p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.bonus__value {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-cyan-soft);
}

.bonus--special {
  border-color: rgba(123, 97, 255, 0.4);
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.18), rgba(10, 10, 20, 0.6));
}

.bonus--special .bonus__num {
  color: var(--accent-cyan);
}

/* ===== GUARANTEE ===== */
.guarantee {
  padding: 100px 0;
}

.guarantee__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 980px;
  padding: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.guarantee__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(123, 97, 255, 0.1), transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .guarantee__inner { grid-template-columns: 1fr; gap: 32px; padding: 32px; text-align: center; }
}

.guarantee__seal {
  position: relative;
  z-index: 1;
}

.guarantee__seal svg {
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.guarantee__content {
  position: relative;
  z-index: 1;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 16px 0 18px;
}

.guarantee__title em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guarantee__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.guarantee__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee__list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .guarantee__list { align-items: center; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.4s ease, border-color 0.3s;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent-purple-soft);
  font-weight: 700;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 97, 255, 0.3);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

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

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a14;
  flex-shrink: 0;
}

.testimonial footer strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial footer span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-item[open] {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

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

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent-purple-soft);
  border-color: var(--accent-purple);
  color: #b9a8ff;
}

.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 90%;
  animation: faq-open 0.4s ease;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FINAL CTA / FORM ===== */
.final-cta {
  padding: 100px 0;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  padding: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

@media (max-width: 968px) {
  .final-cta__inner { grid-template-columns: 1fr; padding: 32px; gap: 40px; }
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}

.final-cta__title em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.final-cta__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta__perks li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* === Form === */
.final-cta__form {
  background: rgba(10, 10, 20, 0.6);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-field {
  display: block;
  margin-bottom: 16px;
}

.form-field > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
}

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

.form-field input:focus,
.form-field select:focus {
  border-color: var(--accent-purple);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px var(--accent-purple-soft);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.form-field select option {
  background: var(--bg-elev);
  color: var(--text-primary);
}

.form-field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 24px;
  cursor: pointer;
}

.form-field--check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.form-field--check span {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.form-submit {
  margin-top: 8px;
}

.form-foot {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--accent-cyan);
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: success-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent-cyan);
}

.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 320px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer__copy {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.footer__copy strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 480px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

.footer__cols h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer__cols a {
  display: block;
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.25s;
}

.footer__cols a:hover {
  color: var(--accent-cyan);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: wa-ring 2s ease-out infinite;
}

@keyframes wa-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-float:hover {
  transform: scale(1.1) rotate(-8deg);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .urgency-bar__inner { padding: 10px 36px 10px 16px; font-size: 12px; }
  .hero { padding: 48px 0 40px; }
  .hero__trust-divider { display: none; }
  .hero__trust { gap: 20px; }
  .platform-mockup { position: static; }
  .platform-mockup__body { grid-template-columns: 1fr; height: auto; }
  .platform-mockup__sidebar,
  .platform-mockup__panel { display: none; }
  .pains, .solution, .process, .plans, .guarantee, .faq, .final-cta { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .bonuses { padding: 24px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
