@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&display=swap");

:root {
  --bg-base: #09090b;
  --bg-surface: #101015;
  --bg-surface-2: #15151c;
  --bg-card: #14141a;
  --bg-card-hover: #1b1b24;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-cyan: rgba(0, 229, 255, 0.35);
  --border-green: rgba(30, 214, 122, 0.35);
  --text-white: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-subtle: #71717a;
  --neon-cyan: #00e5ff;
  --neon-cyan-glow: rgba(0, 229, 255, 0.2);
  --neon-green: #1ed67a;
  --neon-green-glow: rgba(30, 214, 122, 0.2);
  --neon-red: #ff5252;
  --neon-amber: #f59e0b;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --container-max: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  color-scheme: dark;
  overflow-x: clip;
}

body {
  background-color: var(--bg-base);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--neon-cyan);
  color: #000;
  font-weight: 700;
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

/* Background Gradients & Glow */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100vw, 1200px);
  max-width: 100%;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(30, 214, 122, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 20px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 70%), #15151c;
  border: 1px solid var(--neon-cyan);
  border-radius: 8px;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
  line-height: 1.2;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-white);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 6px;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

/* Typography & Section Styles */
.section {
  position: relative;
  padding-block: clamp(60px, 8vw, 100px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-tag span {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 18px;
}

.section-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 740px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #fff;
  background: linear-gradient(135deg, #fff 40%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 32px;
  background: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  border-radius: 8px;
  color: #09090b;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.35);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface-2);
}

.price-pill {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.price-pill strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.price-pill small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-green);
  text-transform: uppercase;
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  flex-wrap: wrap;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.proof-strip li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-strip li::before {
  content: "✓";
  color: var(--neon-green);
  font-weight: 800;
}

/* COCKPIT VIEWER (Interactive Software Mockup) */
.cockpit-wrapper {
  max-width: 1140px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}

.cockpit-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 229, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.cockpit-window:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.cockpit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #0d0d12;
  border-bottom: 1px solid var(--border-subtle);
  gap: 16px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.cockpit-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cockpit-breadcrumb span {
  color: var(--neon-cyan);
}

.cockpit-tabs {
  display: flex;
  background: #09090c;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.cockpit-tabs::-webkit-scrollbar {
  display: none;
}

.cockpit-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-right: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
}

.cockpit-tab:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.02);
}

.cockpit-tab.active {
  color: var(--neon-cyan);
  background: var(--bg-surface);
  font-weight: 700;
}

.cockpit-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.tab-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.cockpit-screen {
  position: relative;
  background: #060608;
  min-height: 480px;
  overflow: hidden;
}

.cockpit-view {
  display: none;
  animation: fadeInView 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cockpit-view.active {
  display: block;
}

@keyframes fadeInView {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cockpit-view img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}

.cockpit-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #0d0d12;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  gap: 12px;
}

.caption-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.caption-tag {
  color: var(--neon-cyan);
  font-weight: 700;
}

.caption-right {
  color: var(--neon-green);
  font-weight: 600;
}

/* FAIXA DE CONFIANÇA / VALUE STRIP */
.trust-strip {
  border-block: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding-block: 28px;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid var(--border-subtle);
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item strong .icon-check {
  color: var(--neon-green);
}

.trust-item strong .icon-cross {
  color: var(--neon-red);
}

.trust-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* O GARGALO REAL (Problem Section) */
.problem-section {
  background: radial-gradient(circle at 10% 50%, rgba(255, 82, 82, 0.04), transparent 50%), var(--bg-base);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.comparison-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-card {
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-bad {
  background: rgba(255, 82, 82, 0.05);
  border: 1px solid rgba(255, 82, 82, 0.15);
}

.card-bad strong {
  color: #ff7676;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-bad p {
  color: #d1d5db;
  font-size: 14px;
}

.card-good {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.card-good strong {
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-good p {
  color: var(--text-white);
  font-size: 14px;
}

/* SHOWROOM DOS 18 SISTEMAS (Catalog Section) */
.systems-section {
  background: var(--bg-base);
}

.systems-header {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 8px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: var(--text-white);
  border-color: var(--border-hover);
}

.filter-btn.active {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.system-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 229, 255, 0.08);
}

.card-media {
  position: relative;
  height: 220px;
  background: #07070a;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.system-card:hover .card-media img {
  transform: scale(1.04);
}

.card-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.badge-anchor {
  background: rgba(30, 214, 122, 0.15);
  color: var(--neon-green);
  border: 1px solid rgba(30, 214, 122, 0.35);
}

.badge-n8n {
  background: rgba(255, 82, 82, 0.15);
  color: #ff7676;
  border: 1px solid rgba(255, 82, 82, 0.35);
}

.badge-offline {
  background: rgba(0, 229, 255, 0.15);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-pillar {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.card-specs {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spec-label {
  color: var(--text-subtle);
  text-transform: uppercase;
}

.spec-val {
  color: var(--text-white);
  font-weight: 600;
  text-align: right;
}

/* ACELERADORES PRO SECTION (Order Bumps) */
.accelerators-section {
  background: var(--bg-surface);
  border-block: 1px solid var(--border-subtle);
}

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

.accelerator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.accelerator-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.accel-media {
  height: 200px;
  background: #08080c;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.accel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.accel-pill {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.accel-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 10px;
}

.accel-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.accel-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
}

.accel-footer strong {
  color: var(--neon-green);
  font-size: 15px;
}

.accel-footer span {
  color: var(--text-subtle);
}

/* TERMINAL DE OFERTA & PREÇO */
.offer-section {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 60%), var(--bg-base);
}

.offer-card {
  max-width: 880px;
  margin-inline: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 229, 255, 0.12);
  overflow: hidden;
}

.offer-header {
  padding: 36px 40px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.offer-header .section-tag {
  justify-content: center;
}

.offer-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 12px;
}

.offer-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin-inline: auto;
}

.offer-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.offer-includes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-white);
}

.offer-item .icon {
  color: var(--neon-green);
  font-weight: 800;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.4;
}

.offer-item small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing-panel {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-strike {
  font-size: 15px;
  color: var(--text-subtle);
  text-decoration: line-through;
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.price-main {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.price-terms {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.btn-checkout {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  background: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  border-radius: 8px;
  color: #000;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
  transition: all 0.25s ease;
  animation: pulse-cta 2.5s infinite;
}

@keyframes pulse-cta {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5), 0 0 25px rgba(0, 229, 255, 0.3); }
  70% { box-shadow: 0 0 0 14px rgba(0, 229, 255, 0), 0 0 40px rgba(0, 229, 255, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0), 0 0 25px rgba(0, 229, 255, 0.3); }
}

.btn-checkout:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-subtle);
  margin-top: 14px;
  text-transform: uppercase;
}

/* GARANTIA */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(30, 214, 122, 0.04);
  border: 1px solid rgba(30, 214, 122, 0.2);
  border-radius: 12px;
  max-width: 880px;
  margin: 32px auto 0;
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(30, 214, 122, 0.12);
  border: 1px solid var(--neon-green);
  display: grid;
  place-items: center;
  color: var(--neon-green);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ SECTION */
.faq-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  gap: 16px;
}

.faq-icon {
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SMART FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: rgba(16, 16, 21, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--neon-cyan);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px var(--neon-cyan-glow);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta-info {
  display: flex;
  flex-direction: column;
}

.floating-cta-info strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.2;
}

.floating-cta-info small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-green);
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--neon-cyan);
  border-radius: 999px;
  color: #000;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.floating-btn:hover {
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
}

/* FOOTER */
.site-footer {
  padding-block: 40px;
  background: #060608;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-backlink a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-backlink a:hover {
  color: #fff;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(32px, 5vw, 54px); }
  .problem-grid { grid-template-columns: 1fr; }
  .accelerator-grid { grid-template-columns: 1fr; }
  .offer-body { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .header-nav { display: none; }
}

@media (max-width: 768px) {
  .container { width: 100%; max-width: 100%; padding-inline: 16px; margin-inline: auto; }
  .site-header { width: 100%; overflow: hidden; }
  .header-inner { padding-block: 10px; gap: 8px; justify-content: space-between; }
  .header-status { display: none; }
  .brand-sub { display: none; }
  .brand-name { font-size: 13px; white-space: nowrap; }
  .cta-full { display: none; }
  .header-cta-btn { padding: 6px 10px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }
  .hero-section { padding-top: 20px; padding-bottom: 40px; width: 100%; overflow: hidden; }
  .hero-content { margin-bottom: 28px; width: 100%; }
  .hero-kicker { font-size: 9px; padding: 6px 10px; display: inline-block; white-space: normal; line-height: 1.4; text-align: center; max-width: 100%; }
  .hero-title { font-size: clamp(22px, 6vw, 32px); letter-spacing: -0.04em; line-height: 1.15; word-wrap: break-word; overflow-wrap: break-word; }
  .hero-lead { font-size: 14px; margin-bottom: 20px; line-height: 1.5; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .btn-primary { flex-direction: column; padding: 12px 14px; text-align: center; gap: 4px; min-height: 50px; }
  .price-pill { align-items: center; text-align: center; }
  .price-pill strong { font-size: 17px; }
  .proof-strip { font-size: 9px; gap: 6px 10px; justify-content: flex-start; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-bottom: 14px; padding-right: 0; }
  .trust-item:last-child { border-bottom: none; }
  .systems-grid { grid-template-columns: 1fr; }
  .cockpit-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cockpit-caption { flex-direction: column; align-items: flex-start; gap: 8px; }
  .offer-header { padding: 20px 16px; }
  .offer-body { padding: 20px 16px; gap: 24px; }
  .guarantee-box { flex-direction: column; align-items: flex-start; padding: 18px 16px; gap: 12px; }
  .floating-cta { left: 12px; right: 12px; bottom: 12px; justify-content: space-between; padding: 8px 12px; }
  .floating-cta-info strong { font-size: 12px; }
  .floating-cta-info small { font-size: 9px; }
  .floating-btn { font-size: 11px; padding: 6px 10px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 21px; }
  .btn-primary { padding: 10px 12px; font-size: 13px; }
  .header-cta-btn { font-size: 10px; padding: 5px 8px; }
}

