:root {
  --bg: #03050a;
  --bg-soft: #080d18;
  --surface: rgba(10, 17, 31, 0.78);
  --surface-strong: rgba(15, 26, 48, 0.94);
  --text: #f4f7ff;
  --muted: #a9b8d7;
  --muted-strong: #cfdaef;
  --line: rgba(155, 190, 255, 0.18);
  --blue: #1677ff;
  --cyan: #22d3ff;
  --violet: #9b5cff;
  --green: #20d981;
  --yellow: #ffc857;
  --red: #ff5d73;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(15, 119, 255, 0.28), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(155, 92, 255, 0.25), transparent 30%),
    linear-gradient(180deg, #020307 0%, #07101d 45%, #03050a 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(34, 211, 255, 0.08), transparent 35%, rgba(155, 92, 255, 0.08));
  pointer-events: none;
  z-index: -4;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p { color: var(--muted); }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

img { display: block; max-width: 100%; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 86%);
  pointer-events: none;
  z-index: -3;
}

.bg-orbit {
  position: fixed;
  width: 46vw;
  height: 46vw;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.24;
  pointer-events: none;
  z-index: -2;
}

.bg-orbit-one { top: -18vw; left: -16vw; background: var(--cyan); }
.bg-orbit-two { right: -18vw; bottom: -18vw; background: var(--violet); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3, 5, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(34, 211, 255, 0.24);
}

.brand strong { color: var(--cyan); }

.main-nav, .header-actions, .language-switch {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 22px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.main-nav a:hover { color: var(--cyan); }

.header-actions { gap: 12px; }

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 800 0.78rem "Manrope", sans-serif;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #02101b;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #04111d;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 42%, var(--violet) 100%);
  box-shadow: 0 18px 42px rgba(34, 211, 255, 0.22);
}

.btn-primary:hover { box-shadow: 0 22px 54px rgba(155, 92, 255, 0.34); }

.btn-secondary, .btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(210, 228, 255, 0.16);
}

.btn-secondary:hover, .btn-ghost:hover {
  border-color: rgba(34, 211, 255, 0.55);
  background: rgba(34, 211, 255, 0.09);
}

.btn-lg {
  min-height: 54px;
  padding: 15px 24px;
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 58px 0 84px;
  display: grid;
  align-items: center;
  gap: 34px;
}

.eyebrow, .kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(34, 211, 255, 0.28);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(34, 211, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7.4vw, 5.25rem);
}

.hero-subtitle {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.12rem, 2.7vw, 1.55rem);
  font-weight: 800;
}

.hero-copy, .section-heading p {
  max-width: 720px;
  font-size: 1.02rem;
}

.hero-actions, .final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
}

.terminal-card {
  position: relative;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(155, 190, 255, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(34, 211, 255, 0.2), transparent 22%),
    linear-gradient(150deg, rgba(7, 14, 28, 0.98), rgba(12, 18, 34, 0.92));
  box-shadow: var(--shadow);
}

.terminal-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(34, 211, 255, 0.13);
  border-radius: 24px;
  pointer-events: none;
}

.terminal-topline, .signal-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.terminal-topline strong { color: var(--green); }

.logo-orb {
  position: relative;
  z-index: 1;
  width: min(84%, 420px);
  margin: 32px auto 0;
}

.logo-orb img {
  border-radius: 30px;
  filter: drop-shadow(0 0 40px rgba(34, 211, 255, 0.18));
}

.chart-stage {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 78px;
  z-index: 2;
  height: 155px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.bar {
  position: relative;
  width: 14px;
  border-radius: 8px;
  animation: floatBar 3.2s ease-in-out infinite;
}

.bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  width: 2px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.45;
}

.blue { color: var(--blue); background: var(--blue); }
.cyan { color: var(--cyan); background: var(--cyan); }
.violet { color: var(--violet); background: var(--violet); }
.red { color: var(--red); background: var(--red); }
.h2 { height: 48px; }
.h3 { height: 66px; }
.h4 { height: 86px; }
.h5 { height: 106px; }
.h6 { height: 124px; }
.h7 { height: 142px; }

@keyframes floatBar {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(-8px); opacity: 1; }
}

.signal-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(2, 5, 12, 0.7);
}

.signal-card strong { color: var(--text); }

.section { padding: 84px 0; }

.section-heading { margin-bottom: 28px; }

.section-heading.center { text-align: center; }

.section-heading.center p, .section-heading.center .kicker {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.compact { margin-bottom: 0; }

.section h2 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4.6vw, 3.2rem);
}

.metric-grid, .pain-list, .solution-grid, .difference-band, .proof-grid, .plans-grid, .zero-ai-grid, .funnel-grid {
  display: grid;
  gap: 16px;
}

.metric-card, .glass-card, .feature-card, .plan-card, .proof-slot, .philosophy, .final-cta-inner, .zero-ai-panel, .zero-ai-card, .zero-ai-console, .funnel-card, .sequence-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.metric-card, .glass-card, .feature-card, .plan-card, .zero-ai-card, .funnel-card { padding: 24px; }

.metric-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-card h3, .glass-card h3, .feature-card h3, .plan-card h3 { margin-bottom: 10px; }

.split-layout {
  display: grid;
  gap: 26px;
  align-items: start;
}

.pain-list { gap: 12px; }

.glass-card { background: linear-gradient(135deg, rgba(255, 93, 115, 0.08), rgba(255, 255, 255, 0.035)); }

.solution-grid { grid-template-columns: 1fr; }

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 30%;
  height: 120px;
  background: radial-gradient(circle, rgba(34, 211, 255, 0.16), transparent 68%);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.difference-band {
  padding: 22px;
  border: 1px solid rgba(34, 211, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34, 211, 255, 0.08), rgba(155, 92, 255, 0.1));
}

.difference-band div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(1, 5, 12, 0.44);
}

.difference-band strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.zero-ai-panel {
  padding: 28px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 211, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(155, 92, 255, 0.18), transparent 32%),
    rgba(8, 12, 24, 0.86);
}

.zero-ai-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 28%;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 211, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.zero-ai-console {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
  padding: 18px;
  background: rgba(1, 5, 12, 0.48);
}

.zero-ai-orb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #04111d;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--cyan), var(--violet));
  box-shadow: 0 0 38px rgba(34, 211, 255, 0.28);
}

.zero-ai-console strong,
.zero-ai-card h3 {
  font-family: "Sora", sans-serif;
}

.zero-ai-console p,
.zero-ai-card p {
  margin-bottom: 0;
}

.zero-ai-grid {
  position: relative;
  z-index: 1;
}

.zero-ai-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(34, 211, 255, 0.04));
}

.zero-ai-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 900;
}

.funnel-section {
  position: relative;
}

.funnel-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(12, 25, 48, 0.72));
}

.funnel-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -46% 26%;
  height: 150px;
  background: radial-gradient(circle, rgba(34, 211, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.funnel-card.highlighted {
  border-color: rgba(34, 211, 255, 0.58);
  background: linear-gradient(150deg, rgba(34, 211, 255, 0.13), rgba(155, 92, 255, 0.14));
}

.funnel-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.funnel-card h3,
.sequence-panel h3 {
  margin-bottom: 12px;
}

.funnel-card .btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 12px;
}

.sequence-panel {
  display: grid;
  gap: 22px;
  margin-top: 18px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(34, 211, 255, 0.1), rgba(155, 92, 255, 0.12)),
    rgba(5, 10, 22, 0.88);
}

.sequence-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sequence;
}

.sequence-panel li {
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(1, 5, 12, 0.42);
  counter-increment: sequence;
}

.sequence-panel li::before {
  content: counter(sequence);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #04111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  font-weight: 900;
}

.sequence-panel strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.sequence-panel p {
  margin-bottom: 0;
}

.scale-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.scale-strip span {
  flex: 1 1 230px;
  padding: 12px 14px;
  border: 1px solid rgba(34, 211, 255, 0.16);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(34, 211, 255, 0.06);
  text-align: center;
  font-weight: 800;
}

.proof-slot {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted-strong);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(34, 211, 255, 0.045)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(255, 255, 255, 0.025) 16px 17px);
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 255, 0.52);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.plan-card.featured {
  border-color: rgba(34, 211, 255, 0.62);
  background: linear-gradient(160deg, rgba(16, 38, 74, 0.92), rgba(12, 18, 34, 0.88));
}

.plan-card.lifetime {
  border-color: rgba(155, 92, 255, 0.62);
  background: linear-gradient(160deg, rgba(45, 25, 80, 0.78), rgba(12, 18, 34, 0.9));
}

.plan-tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
}

.green { color: #baffd9; background: rgba(32, 217, 129, 0.16); }
.yellow { color: #ffe6a6; background: rgba(255, 200, 87, 0.16); }
.plan-tag.blue { color: #d9f6ff; background: rgba(34, 211, 255, 0.18); }
.plan-tag.violet { color: #eadfff; background: rgba(155, 92, 255, 0.2); }

.price {
  margin-bottom: 18px;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
}

.plan-card ul {
  min-height: 132px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.plan-btn {
  width: 100%;
  margin-top: auto;
}

.philosophy {
  padding: 46px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 255, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(8, 18, 36, 0.96), rgba(52, 24, 88, 0.86));
}

.philosophy .kicker, .philosophy h2 {
  margin-left: auto;
  margin-right: auto;
}

.philosophy p {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 800;
}

.final-cta {
  padding-top: 34px;
  padding-bottom: 92px;
}

.final-cta-inner {
  display: grid;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(34, 211, 255, 0.12), rgba(155, 92, 255, 0.18)),
    rgba(8, 12, 24, 0.88);
}

.final-cta h2 { margin-bottom: 10px; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 3, 8, 0.88);
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding: 34px 0;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-grid p {
  max-width: 540px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid a:hover { color: var(--cyan); }

.footer-meta { color: var(--muted); }

.lead-dock {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 48;
  display: grid;
  gap: 10px;
}

.lead-dock-btn {
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: rgba(5, 9, 18, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  font-weight: 900;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.lead-dock-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 255, 0.56);
}

.lead-dock-btn.whatsapp {
  background: linear-gradient(135deg, rgba(32, 217, 129, 0.22), rgba(5, 9, 18, 0.9));
}

.lead-dock-btn.telegram {
  background: linear-gradient(135deg, rgba(34, 211, 255, 0.22), rgba(5, 9, 18, 0.9));
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(1, 3, 8, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lead-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid rgba(34, 211, 255, 0.26);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 255, 0.18), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(155, 92, 255, 0.18), transparent 34%),
    rgba(6, 11, 22, 0.98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
  transform: translateY(14px) scale(0.96);
  transition: transform 0.25s ease;
}

.lead-popup.is-visible .lead-popup-card {
  transform: translateY(0) scale(1);
}

.lead-popup-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4.8vw, 2.6rem);
}

.lead-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.2rem;
}

.popup-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.popup-note {
  margin: 16px 0 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.legal-page {
  min-height: 100vh;
  padding: 40px 0 80px;
}

.legal-brand {
  margin-bottom: 28px;
}

.legal-card {
  max-width: 860px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 255, 0.16), transparent 34%),
    rgba(8, 12, 24, 0.9);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.legal-card .btn {
  margin-top: 18px;
}

.checkout-page {
  min-height: 100vh;
  padding: 38px 0 82px;
}

.checkout-hero {
  display: grid;
  gap: 22px;
  align-items: end;
  margin: 28px 0;
}

.checkout-hero h1,
.success-card h1,
.member-card h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 4.2rem);
}

.checkout-security,
.checkout-card,
.success-card,
.member-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 255, 0.15), transparent 34%),
    rgba(8, 12, 24, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.checkout-security {
  padding: 22px;
}

.checkout-security strong,
.checkout-security span {
  display: block;
}

.checkout-security strong {
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.checkout-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.checkout-plans {
  display: grid;
  gap: 12px;
}

.checkout-plan {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(155, 190, 255, 0.18);
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.checkout-plan:hover,
.checkout-plan.is-active {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 255, 0.65);
  background: rgba(34, 211, 255, 0.09);
}

.checkout-plan.is-recommended::after {
  content: "Mais vantajoso";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #04111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  font-size: 0.72rem;
  font-weight: 900;
}

.checkout-plan strong {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
}

.checkout-plan small {
  color: var(--muted);
  font-weight: 800;
}

.checkout-card,
.success-card,
.member-card {
  padding: 28px;
}

.checkout-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted-strong);
  font-weight: 800;
}

.checkout-card input,
.checkout-card select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  padding: 13px 14px;
  font: inherit;
}

.checkout-card select option {
  color: #05070d;
}

.checkout-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(34, 211, 255, 0.18);
  border-radius: 18px;
  background: rgba(34, 211, 255, 0.06);
}

.checkout-summary span,
.checkout-note,
.checkout-feedback {
  color: var(--muted);
}

.checkout-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 800;
}

.checkout-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.success-card,
.member-card {
  max-width: 900px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.member-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.member-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(1, 5, 12, 0.38);
}

.member-grid span,
.member-grid strong {
  display: block;
}

.member-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.member-grid strong {
  margin-top: 8px;
  font-family: "Sora", sans-serif;
}

.zero-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
}

.zero-chat-toggle {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(34, 211, 255, 0.42);
  border-radius: 22px;
  color: #04111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan), var(--violet));
  box-shadow: 0 18px 46px rgba(34, 211, 255, 0.28);
  cursor: pointer;
}

.zero-chat-icon {
  position: relative;
  z-index: 2;
  font-family: "Sora", sans-serif;
  font-weight: 900;
}

.zero-chat-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(34, 211, 255, 0.42);
  border-radius: 28px;
  animation: zeroPulse 2s ease-out infinite;
}

@keyframes zeroPulse {
  0% { opacity: 0.9; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.25); }
}

.zero-chat-window {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(155, 190, 255, 0.22);
  border-radius: 24px;
  background: rgba(5, 9, 18, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.zero-chat.is-open .zero-chat-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.zero-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(34, 211, 255, 0.14), rgba(155, 92, 255, 0.14));
}

.zero-chat-header span {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.zero-chat-header strong {
  font-family: "Sora", sans-serif;
}

.zero-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.2rem;
}

.zero-chat-body {
  height: 330px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zero-message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.zero-message.ai {
  align-self: flex-start;
  border: 1px solid rgba(34, 211, 255, 0.16);
  background: rgba(34, 211, 255, 0.08);
}

.zero-message.user {
  align-self: flex-end;
  color: #06111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
}

.zero-chat-suggestions {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  overflow-x: auto;
}

.zero-chat-suggestions button {
  flex: 0 0 auto;
  border: 1px solid rgba(34, 211, 255, 0.2);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 11px;
  cursor: pointer;
  font-weight: 800;
}

.zero-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zero-chat-form input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  padding: 12px;
  font: inherit;
}

.zero-chat-form button {
  border: 0;
  border-radius: 14px;
  color: #04111d;
  background: linear-gradient(135deg, #ffffff, var(--cyan), var(--violet));
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .main-nav, .header-cta { display: none; }

  .brand span { font-size: 0.95rem; }

  .hero { padding-top: 40px; }

  .terminal-card { min-height: 430px; }

  .zero-chat {
    right: 16px;
    bottom: 16px;
  }

  .lead-dock {
    left: 16px;
    right: 96px;
    bottom: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-dock-btn {
    min-width: 0;
    padding: 11px 10px;
    font-size: 0.86rem;
  }

  .zero-chat-window {
    right: -6px;
    bottom: 78px;
  }

  .zero-ai-console {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-popup-card {
    padding: 26px 20px;
  }

  .signal-card, .terminal-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 821px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; }

  .metric-grid, .proof-grid, .funnel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .split-layout, .final-cta-inner, .sequence-panel { grid-template-columns: 0.9fr 1.1fr; }

  .checkout-hero,
  .checkout-layout { grid-template-columns: 0.95fr 1.05fr; }

  .member-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .solution-grid, .difference-band { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .zero-ai-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .plans-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
