/* =============================================
   SEGUNDO CÉREBRO — Premium Dark Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Tokens --- */
:root {
  --bg:           #050810;
  --bg-2:         #080d1a;
  --glass:        rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover:  rgba(255,255,255,0.06);

  --indigo:       #6366f1;
  --indigo-light: #a5b4fc;
  --violet:       #7c3aed;
  --purple:       #a855f7;
  --cyan:         #22d3ee;
  --emerald:      #34d399;
  --rose:         #f43f5e;

  --grad-main:    linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #7c3aed 100%);
  --grad-text:    linear-gradient(135deg, #a5b4fc 0%, #c084fc 60%, #e879f9 100%);
  --grad-green:   linear-gradient(135deg, #34d399, #22d3ee);

  --text:         #f8fafc;
  --text-2:       #cbd5e1;
  --text-muted:   #475569;
  --text-faint:   #1e293b;

  --font:         'Inter', system-ui, sans-serif;
  --font-head:    'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;

  --max-w:        1120px;
  --max-w-narrow: 680px;
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- Layout helpers --- */
.container        { max-width: var(--max-w);        margin: 0 auto; padding: 0 24px; }
.container--narrow{ max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

/* --- Gradient text --- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   ANIMATED BACKGROUND MESH
   ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(99,102,241,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(168,85,247,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(34,211,238,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* --- Noise overlay for depth --- */
body::after {
  content: '';
  position: fixed;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* =============================================
   SCROLL ANIMATION SYSTEM
   ============================================= */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-anim="fade-up"]    { transform: translateY(40px); }
[data-anim="fade-left"]  { transform: translateX(-40px); }
[data-anim="fade-right"] { transform: translateX(40px); }
[data-anim="scale-in"]   { transform: scale(0.92); }
[data-anim="fade"]       { transform: none; }

[data-anim].anim-visible {
  opacity: 1;
  transform: none !important;
}

/* stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
[data-stagger].anim-visible > * { opacity: 1; transform: none; }
[data-stagger].anim-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].anim-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].anim-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].anim-visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].anim-visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].anim-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes blink        { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes pulse-glow   { 0%,100%{box-shadow:0 0 0 0 rgba(99,102,241,0.3)} 50%{box-shadow:0 0 0 8px rgba(99,102,241,0)} }
@keyframes float        { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-12px)} }
@keyframes shimmer      { from{background-position:200% center} to{background-position:-200% center} }
@keyframes rotate-slow  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes line-grow    { from{width:0} to{width:100%} }
@keyframes hero-in      { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes scale-dot    { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: linear-gradient(90deg, rgba(99,102,241,0.15), rgba(168,85,247,0.15));
  border-bottom: 1px solid rgba(99,102,241,0.2);
  color: var(--indigo-light);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.top-bar strong { color: #fff; font-weight: 600; }
.top-bar__icon { font-size: 0.95rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 120px 0 90px;
  text-align: center;
  overflow: hidden;
}

/* Orbs decorativos */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.22), transparent 70%);
  top: -180px; left: -120px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.18), transparent 70%);
  top: -80px; right: -100px;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,211,238,0.08), transparent 70%);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  animation-delay: -2s;
}

/* Grid dots background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: hero-in 0.8s ease forwards;
}
.badge__dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: scale-dot 2s ease-in-out infinite;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  animation: hero-in 0.8s 0.1s ease both;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  animation: hero-in 0.9s 0.15s ease both;
}

.hero__title .line-accent {
  display: inline-block;
  position: relative;
}
.hero__title .line-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-main);
  border-radius: 2px;
  animation: line-grow 0.8s 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
  animation: hero-in 0.9s 0.3s ease both;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: hero-in 1s 0.45s ease both;
}
.hero__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__disclaimer span { display: flex; align-items: center; gap: 4px; }
.hero__disclaimer span::before { content: '·'; color: var(--text-faint); }
.hero__disclaimer span:first-child::before { display: none; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--r-xl);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 4px 24px rgba(99,102,241,0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
  animation: shimmer 4s linear infinite;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(99,102,241,0.5), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn--primary:active { transform: scale(0.99); }

.btn--ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.15); color: var(--text); }

.btn--large { padding: 18px 44px; font-size: 1.05rem; border-radius: 100px; }
.btn--icon svg { transition: transform 0.2s ease; }
.btn--icon:hover svg { transform: translateX(4px); }

/* =============================================
   TERMINAL CARD
   ============================================= */
.hero__visual {
  margin-top: 72px;
  animation: hero-in 1s 0.65s ease both;
}
.terminal-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.terminal-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,0.4), rgba(168,85,247,0.3), rgba(34,211,238,0.2));
  z-index: -1;
  filter: blur(1px);
}

.terminal {
  background: rgba(8,13,26,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.terminal__bar {
  background: rgba(255,255,255,0.03);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.terminal__dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal__dot--red    { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green  { background: #28c840; }
.terminal__title { font-size: 0.75rem; color: var(--text-muted); margin-left: 8px; font-family: 'SF Mono', 'Fira Code', monospace; }
.terminal__body  { padding: 22px 22px 28px; font-family: 'SF Mono','Fira Code','Courier New',monospace; font-size: 0.83rem; line-height: 1.8; }
.terminal__line  { display: flex; align-items: flex-start; gap: 8px; }
.t-grey   { color: #3d4d66; }
.t-green  { color: #34d399; }
.t-white  { color: #e2e8f0; }
.t-yellow { color: #fbbf24; }
.t-blue   { color: #38bdf8; }
.t-purple { color: #c084fc; }
.t-dim    { color: #475569; }
.blink    { animation: blink 1.1s step-end infinite; }

/* =============================================
   PROOF BAR
   ============================================= */
.proof-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(12px);
  padding: 36px 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 48px;
  gap: 4px;
}
.proof-bar__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.proof-bar__label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.proof-bar__divider { width: 1px; height: 44px; background: rgba(255,255,255,0.06); }

/* =============================================
   SECTION BASE
   ============================================= */
.section       { padding: 110px 0; }
.section--alt  { background: rgba(255,255,255,0.015); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--grad-text);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
}

/* =============================================
   PAIN GRID
   ============================================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 56px;
  margin-bottom: 64px;
}

.pain-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.pain-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.06);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pain-card__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: inline-block;
}
.pain-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pain-card p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

.pain-divider {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}
.pain-divider__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent); }
.pain-divider__text {
  font-size: 1rem;
  color: var(--text-2);
  text-align: center;
  flex: 0 1 520px;
  line-height: 1.65;
  padding: 0 8px;
}
.pain-divider__text strong { color: var(--text); font-weight: 600; }

/* =============================================
   PILLARS
   ============================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-card:hover {
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(99,102,241,0.1);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-card--featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.06));
  border-color: rgba(99,102,241,0.2);
}

.pillar-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  margin-bottom: 20px;
}
.pillar-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.pillar-card p  { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.pillar-list li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pillar-list li::before { content: '✓'; color: var(--emerald); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }

/* =============================================
   MODULES
   ============================================= */
.modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.module {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.module:hover {
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.module--bonus {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(168,85,247,0.05));
  border-color: rgba(99,102,241,0.18);
}
.module__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-light);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.module h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.module__topics li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.module__topics li::before { content: '→'; color: var(--indigo-light); font-size: 0.78rem; flex-shrink: 0; margin-top: 1px; }
.module__topics li code {
  background: rgba(99,102,241,0.12);
  color: var(--indigo-light);
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 0.77rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.module__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.module__bonus-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.module__bonus-item span { font-size: 1.1rem; }

/* =============================================
   FOR WHOM
   ============================================= */
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: start;
}
.for-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.for-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.for-card__icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.for-card__icon-wrap--yes { background: rgba(52,211,153,0.1); }
.for-card__icon-wrap--no  { background: rgba(244,63,94,0.08); }
.for-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }

.check-list li, .x-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.check-list li:last-child, .x-list li:last-child { border-bottom: none; }
.check-mark, .x-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0px;
}
.check-mark { background: rgba(52,211,153,0.12); color: var(--emerald); }
.x-mark     { background: rgba(244,63,94,0.08); color: #f87171; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.testimonial {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.3s;
}
.testimonial:hover {
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.testimonial__quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--indigo);
  opacity: 0.3;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial__stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; margin-bottom: 22px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px; height: 42px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial__author span  { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(99,102,241,0.25); background: rgba(99,102,241,0.04); }
.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--indigo-light);
  transition: transform 0.3s ease, background 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: rgba(99,102,241,0.2); }
.faq-item p { padding: 0 28px 22px; font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* =============================================
   OFFER BOX
   ============================================= */
.offer-section { padding: 110px 0; }

.offer-box {
  position: relative;
  background: rgba(8,13,26,0.85);
  border-radius: 32px;
  padding: 64px 56px;
  text-align: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}
.offer-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(99,102,241,0.5), rgba(168,85,247,0.4), rgba(34,211,238,0.2));
  z-index: -1;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.offer-box::after {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 140%;
  height: 180%;
  background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.08), transparent 60%);
  pointer-events: none;
}

.offer-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(34,211,238,0.1));
  border: 1px solid rgba(52,211,153,0.25);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.offer-box__badge::before { content: '●'; font-size: 0.6rem; animation: blink 1.5s infinite; }

.offer-box__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
  line-height: 1.2;
}

.offer-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; text-align: left; }
.offer-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.offer-item:last-child { border-bottom: none; }
.offer-item__check {
  width: 28px; height: 28px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--emerald);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.offer-item strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.offer-item span   { font-size: 0.82rem; color: var(--text-muted); }

.offer-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 36px;
}
.offer-original { display: flex; flex-direction: column; align-items: center; }
.offer-original > span:first-child { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; }
.offer-strike { font-size: 1.6rem; color: var(--text-muted); text-decoration: line-through; }
.offer-sep { width: 1px; height: 60px; background: rgba(255,255,255,0.08); }
.offer-price { display: flex; flex-direction: column; align-items: center; }
.offer-price__label { font-size: 0.72rem; color: var(--emerald); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.05em; }
.offer-price__value {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-box .btn--large { width: 100%; max-width: 480px; margin: 0 auto; justify-content: center; }
.offer-disclaimer { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; margin-bottom: 36px; }

.offer-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(52,211,153,0.04);
  border: 1px solid rgba(52,211,153,0.12);
  border-radius: var(--r-md);
  padding: 22px 28px;
  text-align: left;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.offer-guarantee__icon { font-size: 2.2rem; flex-shrink: 0; }
.offer-guarantee strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.offer-guarantee p { font-size: 0.85rem; color: var(--text-2); margin: 0; line-height: 1.65; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 40px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer__logo-dot {
  width: 8px; height: 8px;
  background: var(--grad-main);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__brand p { font-size: 0.83rem; color: var(--text-muted); max-width: 240px; line-height: 1.6; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.footer__links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--indigo-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; }
.footer__bottom p { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* =============================================
   STICKY CTA
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta .btn {
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 4px 20px rgba(99,102,241,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 860px) {
  .for-whom-grid { grid-template-columns: 1fr; }
  .offer-box { padding: 44px 28px; }
  .offer-pricing { gap: 20px; }
}
@media (max-width: 640px) {
  .hero { padding: 80px 0 60px; }
  .section, .offer-section { padding: 72px 0; }
  .hero__title { font-size: 2rem; }
  .btn--large { padding: 16px 28px; font-size: 0.95rem; }
  .proof-bar__item { padding: 8px 24px; }
  .proof-bar__divider { display: none; }
  .pillar-card { padding: 28px 24px; }
  .offer-box { padding: 36px 20px; }
  .offer-pricing { flex-direction: column; gap: 16px; }
  .offer-sep { display: none; }
  .offer-price__value { font-size: 2.8rem; }
  .pain-divider { flex-direction: column; gap: 12px; }
  .pain-divider__line { display: none; }
}

.pain-card__icon--img { display: flex; align-items: center; justify-content: center; }
.pain-card__icon--img img { width: 56px; height: 56px; border-radius: 8px; object-fit: contain; }
