/* ============================================================
   LinkedIn Premium · Máquina de Vendas
   Design System: dark premium + accent laranja + sub-accent LinkedIn
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-deep: #020203;
  --bg-base: #050506;
  --bg-elevated: #0A0A0C;
  --bg-card: #0D0D10;

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Foreground */
  --fg: #EDEDEF;
  --fg-muted: #8A8F98;
  --fg-dim: #5A5F68;

  /* Accent — Azul LinkedIn como protagonista (diferencia do lançamento principal) */
  --accent: #0A66C2;
  --accent-soft: #1F8FE3;
  --accent-bright: #4DA6FF;
  --accent-deep: #044188;
  --accent-glow: rgba(10, 102, 194, 0.28);
  --accent-ring: rgba(31, 143, 227, 0.45);
  --accent-on: #001628;

  /* Reservado (não em uso) — caso queira destacar bônus sem competir com o azul */

  /* Negative */
  --neg: #E0413B;
  --neg-soft: rgba(224, 65, 59, 0.15);

  /* Radius */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-deep);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

::selection { background: var(--accent); color: var(--bg-deep); }

/* ============================================================
   AMBIENT BACKGROUND
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  will-change: transform;
}
.blob--1 { width: 400px; height: 400px; background: var(--accent); top: 6%; left: -8%; animation: drift 28s var(--ease) infinite; }
.blob--2 { width: 540px; height: 540px; background: var(--accent-soft); top: 38%; right: -12%; animation: drift 32s var(--ease) infinite reverse; }
.blob--3 { width: 360px; height: 360px; background: var(--accent); bottom: 8%; left: 28%; animation: drift 24s var(--ease) infinite; }
.blob--linkedin { width: 460px; height: 460px; background: var(--accent); top: 20%; left: 45%; opacity: 0.10; animation: drift 36s var(--ease) infinite reverse; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow {
  max-width: 880px;
}

.section {
  padding: clamp(40px, 5vw, 72px) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(24px, 3vw, 40px);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
}
.h1__sub {
  display: block;
  margin-top: 16px;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
}
.h2--center { text-align: center; }

.h2 em, .h1 em, .h3 em {
  font-style: normal;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(10, 102, 194, 0.35);
}

.h2 .accent, .h1 .accent {
  color: var(--accent);
}

.h2 .muted, .h1 .muted {
  color: var(--fg-muted);
  font-weight: 700;
}

.lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 400;
}
.lead--center { text-align: center; max-width: 680px; margin: 24px auto 0; }
.lead strong, .lead em {
  color: var(--fg);
  font-weight: 600;
  font-style: normal;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 18px;
}
.hero__copy .eyebrow { margin-bottom: 14px; }
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-ring);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--fg-muted);
  margin-top: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.micro {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
  color: #001628;
  box-shadow: 0 12px 32px -10px rgba(10, 102, 194, 0.55), 0 0 0 1px rgba(77, 166, 255, 0.4) inset;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(10, 102, 194, 0.7), 0 0 0 1px rgba(77, 166, 255, 0.6) inset;
}

.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--accent-ring);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl {
  padding: 22px 40px;
  font-size: 17px;
  border-radius: 14px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 2, 3, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #001628;
  box-shadow: 0 6px 18px -6px var(--accent-ring);
}
.brand__sub {
  color: var(--fg-muted);
  font-weight: 500;
}
.topbar__nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}
.topbar__nav a {
  transition: color 0.2s var(--ease);
}
.topbar__nav a:hover { color: var(--fg); }

@media (max-width: 720px) {
  .topbar__nav { display: none; }
  .brand__sub { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(24px, 3.5vw, 48px) 0 clamp(56px, 7vw, 96px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero__copy { max-width: 720px; }

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero__copy .lead { margin-top: 16px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  color: var(--fg-muted);
}
.chip svg { color: var(--accent); }

.price-tag {
  margin-top: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.12) 0%, rgba(10, 102, 194, 0.08) 100%);
  border: 1px solid var(--accent-ring);
  border-radius: 14px;
  flex-wrap: wrap;
}
.price-tag__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-right: 6px;
}
.price-tag__value {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-tag__strike {
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.hero__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__trust {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--fg-dim);
}
.hero__trust svg { color: var(--accent); }

/* Hero visual: mockup do LinkedIn + ocean stats flutuantes */
.hero__visual {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, var(--accent-glow) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 80%, rgba(77, 166, 255, 0.18) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* Stat tiles flutuantes ao redor do mockup */
.ocean-stat {
  position: absolute;
  z-index: 3;
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--accent-ring);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 200px;
  box-shadow: 0 14px 36px -14px rgba(10, 102, 194, 0.5);
  animation: floaty 6s var(--ease) infinite;
  backdrop-filter: blur(8px);
}
.ocean-stat--1 {
  top: -8px;
  left: -16px;
  animation-delay: 0s;
}
.ocean-stat--2 {
  bottom: -12px;
  right: -8px;
  animation-delay: -3s;
}
.ocean-stat__num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.ocean-stat__label {
  display: block;
  font-size: 11.5px;
  color: var(--fg-muted);
  font-weight: 500;
  line-height: 1.4;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Mockup do LinkedIn */
.mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #0F1418 0%, #0A0E12 100%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px var(--accent-ring) inset,
    0 0 60px -10px var(--accent-glow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.8s var(--ease);
}
.mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.mockup__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(10, 102, 194, 0.06);
  border-bottom: 1px solid var(--border);
}
.mockup__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.mockup__head-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mockup__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.mockup__sub {
  font-size: 11px;
  color: var(--fg-muted);
}
.mockup__pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: var(--accent-on);
  border-radius: 999px;
  white-space: nowrap;
}

.mockup__chat {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mockup__bubble {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mockup__bubble--out {
  flex-direction: row-reverse;
}
.mockup__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D5A8A 0%, #4A7FB5 100%);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.mockup__bubble-body {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.mockup__bubble--out .mockup__bubble-body {
  background: linear-gradient(180deg, rgba(10, 102, 194, 0.18) 0%, rgba(10, 102, 194, 0.08) 100%);
  border-color: var(--accent-ring);
}
.mockup__sender {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.mockup__sender strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.mockup__sender span {
  font-size: 10.5px;
  color: var(--fg-muted);
}
.mockup__bubble-body p {
  font-size: 13px;
  color: var(--fg);
  line-height: 1.5;
  margin: 0;
}
.mockup__time {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  color: var(--fg-dim);
}

.mockup__typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-left: 46px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
}
.mockup__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: typing 1.4s infinite var(--ease);
}
.mockup__typing span:nth-child(2) { animation-delay: 0.2s; }
.mockup__typing span:nth-child(3) { animation-delay: 0.4s; }
.mockup__typing em {
  font-style: italic;
  font-size: 11px;
  color: var(--fg-muted);
  margin-left: 4px;
}
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.mockup__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(10, 102, 194, 0.04);
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--fg-muted);
}
.mockup__foot-icon {
  display: grid;
  place-items: center;
  color: var(--accent-bright);
}

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

/* stat__num/stat__label reusados em hero stats antigo + results-stats */
.stat__num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat__label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero__visual { min-height: auto; padding: 40px 20px 24px; }
  .mockup { transform: none; max-width: 480px; }
  .ocean-stat--1 { top: 0; left: 0; }
  .ocean-stat--2 { bottom: 0; right: 0; }
}
@media (max-width: 560px) {
  .ocean-stat { display: none; }
}

/* ============================================================
   TENSION
   ============================================================ */
.section--tension {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 102, 194, 0.02) 50%, transparent 100%);
}
.tension {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}
@media (max-width: 880px) {
  .tension { grid-template-columns: 1fr; }
}

.tension__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
}
.tension__card--bad {
  border-color: rgba(224, 65, 59, 0.18);
}
.tension__card--good {
  border-color: rgba(10, 102, 194, 0.25);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(10, 102, 194, 0.06) 0%, transparent 60%),
    var(--bg-card);
  box-shadow: 0 24px 60px -24px rgba(10, 102, 194, 0.25);
}
.tension__tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(224, 65, 59, 0.12);
  color: #ff7d77;
  border: 1px solid rgba(224, 65, 59, 0.3);
  margin-bottom: 20px;
}
.tension__tag--good {
  background: rgba(10, 102, 194, 0.14);
  color: var(--accent-soft);
  border-color: var(--accent-ring);
}
.tension__card h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.tension__card ul { display: flex; flex-direction: column; gap: 14px; }
.tension__card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.x, .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.x {
  background: var(--neg-soft);
  border: 1px solid rgba(224, 65, 59, 0.3);
}
.x::after {
  content: '×';
  color: #ff7d77;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.check {
  background: rgba(10, 102, 194, 0.12);
  border: 1px solid var(--accent-ring);
}
.check::after {
  content: '✓';
  color: var(--accent-soft);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

.tension__pivot {
  display: grid;
  place-items: center;
  position: relative;
}
.tension__pivot-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}
.tension__pivot-label {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
@media (max-width: 880px) {
  .tension__pivot { padding: 8px 0; }
  .tension__pivot-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }
}

.tension__closer {
  text-align: center;
  margin-top: 28px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--fg);
  font-weight: 500;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.tension__closer em {
  font-style: normal;
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.tension__closer .muted { color: var(--fg-dim); }

/* ============================================================
   RESULTS
   ============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .results-grid { grid-template-columns: 1fr; } }

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.result-card:hover {
  border-color: var(--accent-ring);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(10, 102, 194, 0.4);
}
.result-card--featured {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10, 102, 194, 0.1) 0%, transparent 60%),
    var(--bg-card);
  border-color: var(--accent-ring);
  box-shadow: 0 0 40px rgba(10, 102, 194, 0.16) inset;
}
.result-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.result-card__num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.result-card__num em {
  font-style: normal;
  color: var(--fg-muted);
  font-weight: 600;
  font-size: 14px;
  background: none;
  -webkit-text-fill-color: var(--fg-muted);
  margin: 0 4px;
}
.result-card__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: 4px 10px;
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid var(--accent-ring);
  border-radius: 999px;
  white-space: nowrap;
}
.result-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.result-card__hook {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.45;
}
.result-card blockquote {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 14px;
  border-left: 2px solid var(--accent-ring);
  font-style: italic;
}

.results-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.results-stats .stat__num { font-size: clamp(28px, 4vw, 40px); }
@media (max-width: 640px) { .results-stats { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   METHOD / PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(10, 102, 194, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}
.pillar:hover::before { opacity: 1; }
.pillar:hover {
  border-color: var(--accent-ring);
  transform: translateY(-4px);
}
.pillar__num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
  opacity: 0.85;
}
.pillar__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.pillar__head h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.pillar__lead {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pillar__lead em {
  font-style: normal;
  color: var(--fg);
  font-weight: 600;
}
.pillar__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.pillar__bullets li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.pillar__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-ring);
}

/* ============================================================
   BENTO
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 1fr;
}
@media (max-width: 880px) { .bento { grid-template-columns: 1fr; } }

.bento__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.bento__card:hover {
  border-color: var(--accent-ring);
  transform: translateY(-3px);
}
.bento__card--hero {
  grid-row: span 2;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(10, 102, 194, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border-color: var(--accent-ring);
}
@media (max-width: 880px) {
  .bento__card--hero { grid-row: auto; }
}
.bento__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
}
.bento__card h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.bento__card--hero h3 {
  font-size: clamp(22px, 2.6vw, 30px);
}
.bento__card p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .audience { grid-template-columns: 1fr; } }
.audience article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s var(--ease);
  position: relative;
}
.audience article:hover {
  border-color: var(--accent-ring);
  transform: translateY(-2px);
}
.audience__num {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.audience h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.audience p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============================================================
   INCLUDES
   ============================================================ */
.includes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.include {
  grid-column: span 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.include:hover {
  border-color: var(--accent-ring);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -18px rgba(10, 102, 194, 0.4);
}
@media (max-width: 1100px) {
  .include { grid-column: span 6; }
}
@media (max-width: 560px) {
  .include { grid-column: span 12; }
}

.include__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid var(--accent-ring);
  color: var(--accent);
  margin-bottom: 18px;
}
.include h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.include p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Featured: agentes IA — card premium ocupa 2 por linha */
.include--featured {
  grid-column: span 6;
  padding: 32px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(31, 143, 227, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(10, 102, 194, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border-color: var(--accent-ring);
  box-shadow:
    0 0 0 1px rgba(31, 143, 227, 0.08) inset,
    0 24px 60px -28px rgba(10, 102, 194, 0.5);
}
.include--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.5;
  z-index: -1;
}
.include--featured:hover {
  transform: translateY(-5px);
  border-color: var(--accent-bright);
  box-shadow:
    0 0 0 1px rgba(77, 166, 255, 0.18) inset,
    0 30px 80px -28px rgba(10, 102, 194, 0.65);
}
@media (max-width: 1100px) {
  .include--featured { grid-column: span 12; }
}

.include__icon--ia {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(77, 166, 255, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, rgba(10, 102, 194, 0.25) 0%, rgba(31, 143, 227, 0.12) 100%);
  border: 1px solid var(--accent-bright);
  color: var(--accent-bright);
  box-shadow:
    0 0 24px var(--accent-glow),
    0 0 0 4px rgba(31, 143, 227, 0.05);
  margin-bottom: 22px;
}

.include__hook {
  font-size: 15px !important;
  color: var(--fg) !important;
  font-weight: 600 !important;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.include__hook em {
  font-style: normal;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.include__list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.include__list li {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.include__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent-bright) 0%, var(--accent-bright) 30%, transparent 32%);
}
.include__list li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 9px;
  font-weight: 900;
  color: var(--accent-on);
}

/* Bonus card */
.include--bonus {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(10, 102, 194, 0.18) 0%, transparent 50%),
    var(--bg-card);
  border-color: var(--accent-ring);
}
.include--bonus .include__icon {
  background: rgba(10, 102, 194, 0.16);
  border-color: var(--accent-ring);
  color: var(--accent-bright);
}

/* Badges */
.include__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.include__badge--ia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  padding: 5px 12px 5px 10px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  box-shadow:
    0 0 0 1px rgba(77, 166, 255, 0.3) inset,
    0 6px 18px -6px rgba(31, 143, 227, 0.6);
}
.include__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright);
  animation: ia-pulse 1.6s var(--ease) infinite;
}
@keyframes ia-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Note */
.includes__note {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fg-muted);
  text-align: center;
}
.includes__note svg { color: var(--accent-bright); }
@media (max-width: 560px) {
  .includes__note { flex-direction: column; gap: 6px; }
}

/* ============================================================
   VALUE / PRICE
   ============================================================ */
.section--value {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 102, 194, 0.025) 50%, transparent 100%);
}

.value-stack {
  max-width: 720px;
  margin: 0 auto 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.value-stack__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 24px;
}
.value-stack__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-stack__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
  color: var(--fg);
}
.value-stack__list li strong {
  font-weight: 800;
  color: var(--fg-muted);
  white-space: nowrap;
}
.value-stack__list li span em {
  font-style: normal;
  color: var(--accent-bright);
  font-weight: 700;
  margin-right: 4px;
}
.value-stack__bonus {
  background: linear-gradient(90deg, rgba(10, 102, 194, 0.06), transparent);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 10px;
  border-bottom-style: solid !important;
}
.value-stack__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.value-stack__total strong {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.price-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  isolation: isolate;
}
.price-card__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 70%);
  filter: blur(24px);
  z-index: -1;
}
.price-card__inner {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 0 60px rgba(10, 102, 194, 0.18) inset;
}
.price-card__pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(10, 102, 194, 0.12);
  border: 1px solid var(--accent-ring);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
}
.price-card h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.price-card__sub {
  font-size: 14.5px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.price-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.price-card__strike {
  font-size: 16px;
  color: var(--fg-dim);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-card__num {
  font-size: clamp(60px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(10, 102, 194, 0.4);
}
.price-card__note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.price-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.price-card__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--fg-muted);
  font-weight: 500;
}
.price-card__trust svg { color: var(--accent); }

.price-anchor {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
}
.price-anchor p {
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--fg-muted);
  line-height: 1.6;
}
.price-anchor strong {
  color: var(--fg);
  font-weight: 700;
}
.price-anchor .accent {
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 1.05em;
}
.price-anchor__small {
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: 16px;
}

/* ============================================================
   BIO
   ============================================================ */
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
@media (max-width: 820px) {
  .bio { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .bio__photo { margin: 0 auto; }
}
.bio__photo {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  font-weight: 900;
  font-size: 72px;
  color: #001628;
  letter-spacing: -0.04em;
}
.bio__photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.bio__copy h2 { margin-bottom: 16px; }
.bio__copy .lead { margin-bottom: 14px; }
.bio__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.bio__creds li {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(10, 102, 194, 0.1) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid var(--accent-ring);
  box-shadow: 0 0 40px rgba(10, 102, 194, 0.12) inset;
}
@media (max-width: 720px) {
  .guarantee { grid-template-columns: 1fr; gap: 24px; padding: 32px; text-align: center; }
  .guarantee__shield { margin: 0 auto; }
}
.guarantee__shield {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(10, 102, 194, 0.12);
  border: 1.5px solid var(--accent-ring);
  display: grid;
  place-items: center;
  color: var(--accent-soft);
  position: relative;
}
.guarantee__shield::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed var(--accent-ring);
  animation: spin 30s linear infinite;
}
.guarantee__copy h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 8px 0 14px;
  line-height: 1.2;
}
.guarantee__copy p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.guarantee__small {
  font-size: 13px !important;
  color: var(--fg-dim) !important;
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.faq__item:hover { border-color: var(--border-strong); }
.faq__item[open] {
  border-color: var(--accent-ring);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(10, 102, 194, 0.05) 0%, transparent 50%),
    var(--bg-card);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231F8FE3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='M12 5v14'/></svg>");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.faq__cta {
  margin-top: 48px;
  text-align: center;
}
.faq__cta p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

/* ============================================================
   FINAL
   ============================================================ */
.section--final {
  padding-bottom: clamp(64px, 8vw, 120px);
  text-align: center;
}
.section--final__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section--final__small {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  padding: 56px 0 96px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

.footer__about {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 360px;
}
.footer h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer li a {
  font-size: 13.5px;
  color: var(--fg-muted);
  transition: color 0.2s var(--ease);
}
.footer li a:hover { color: var(--accent); }

.footer__divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 32px 0 24px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 12px;
  color: var(--fg-dim);
  flex-wrap: wrap;
}
.footer__disclaimer { max-width: 640px; line-height: 1.5; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--accent-ring);
  border-radius: 14px;
  box-shadow: 0 18px 50px -18px rgba(10, 102, 194, 0.4);
}
.sticky-cta__price {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.sticky-cta__sub {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.sticky-cta .btn { padding: 12px 18px; font-size: 13px; }

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   ANIMATION ON SCROLL (set by app.js)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
