/* ═══════════════════════════════════════
   TEMA (gold/teal)
   Padrão: `gold`
   Para trocar: body[data-theme="teal"] (botão no topo já alterna)
═══════════════════════════════════════ */
:root {
  --text:      #f0f0f0;
  --text-md:   #888;
  --text-dim:  #555;
  --text-dimmer: #333;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

:root,
body[data-theme='gold'] {
  --a1:       #8a6020;
  --a-mid:    #c9a84c;
  --a2:       #c9a84c;
  --a3:       #f5d680;
  --a-glow:   rgba(201,168,76,0.25);
  --a-bdr:    rgba(201,168,76,0.18);
  --a-bg:     rgba(201,168,76,0.07);
  --bg:       #0c0b08;
  --bg2:      #141209;
  --bg3:      #1a1710;
  --fog:      #f7f3e8;
  --k-text:   #0c0b08;
  --nav-bg:   rgba(12,11,8,0.85);
  --hero-accent-fog: rgba(138,96,32,0.06);
}

body[data-theme='teal'] {
  --a1:       #00dcb4;
  --a-mid:    #00a8e8;
  --a2:       #00dcb4;
  --a3:       #0066ff;
  --a-glow:   rgba(0,220,180,0.25);
  --a-bdr:    rgba(0,180,220,0.18);
  --a-bg:     rgba(0,220,180,0.07);
  --bg:       #060d14;
  --bg2:      #0a1520;
  --bg3:      #0d1c2a;
  --fog:      #e8f8f5;
  --k-text:   #ffffff;
  --nav-bg:   rgba(6,13,20,0.85);
  --hero-accent-fog: rgba(0,220,180,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILS ── */
.grad-text {
  background: linear-gradient(135deg, var(--a1) 0%, var(--a-mid) 50%, var(--a3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.section { padding: 112px 0; }
.section-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--a2); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 38px; letter-spacing: -1.5px; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}
.section-sub {
  font-size: 17px; color: var(--text-md); max-width: 560px; line-height: 1.75;
}

/* ── LOGO COMPONENT ── */
.logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  cursor: pointer;
}
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--a1) 0%, var(--a-mid) 50%, var(--a3) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--a-glow);
}
.logo-icon span {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 25px; color: var(--k-text); line-height: 1;
  position: relative; top: 0.025em; left: -0.03em;
}
.logo-word {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 22px; letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(135deg, var(--a1) 0%, var(--a-mid) 50%, var(--a3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BTN ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.3px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s ease;
}
.os-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.os-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.btn-dark .os-icon,
.btn-dark.alt .os-icon {
  width: 18px;
  height: 18px;
}
.btn-dark .os-icon svg,
.btn-dark.alt .os-icon svg {
  width: 18px;
  height: 18px;
}
.os-icon.os-mac svg {
  transform: scale(1.14);
  transform-origin: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--a1) 0%, var(--a-mid) 50%, var(--a3) 100%);
  color: var(--k-text);
  box-shadow: 0 4px 20px var(--a-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--a-glow); }

.btn-ghost {
  background: transparent; color: var(--text-md);
  border: 1px solid var(--a-bdr);
}
.btn-ghost:hover { color: var(--text); border-color: var(--a2); }

.btn-lg { padding: 18px 36px; font-size: 15px; border-radius: var(--radius-md); }

body.modal-open {
  overflow: hidden;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.trial-modal.open {
  display: flex;
}
.trial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}
.trial-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--a-bdr);
  background: var(--bg2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: 26px;
}
.trial-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--a-bdr);
  background: transparent;
  color: var(--text-md);
  font-size: 18px;
  cursor: pointer;
}
.trial-modal-close:hover {
  color: var(--text);
  border-color: var(--a2);
}
.trial-modal-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.trial-modal-sub {
  margin-top: 8px;
  color: var(--text-md);
  font-size: 14px;
}
.trial-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.trial-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trial-field input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--a-bdr);
  background: var(--bg3);
  color: var(--text);
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
}
.trial-field input:focus {
  outline: none;
  border-color: var(--a2);
  box-shadow: 0 0 0 3px var(--a-bg);
}
.trial-field-error {
  margin-top: 6px;
  min-height: 18px;
  color: #ff9f9f;
  font-size: 12px;
}
.trial-form-status {
  min-height: 20px;
  font-size: 13px;
  color: var(--text-md);
}
.trial-form-status.error {
  color: #ff9f9f;
}
.trial-form-status.success {
  color: #8cedc1;
}
.trial-form-actions {
  display: flex;
  gap: 10px;
}
.trial-form-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--a-bdr);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-dim);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--a2); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--a-bg);
  color: var(--a2);
  border: 1px solid var(--a-bdr);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.theme-toggle:hover { border-color: var(--a2); color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 68px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, var(--a-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, var(--hero-accent-fog) 0%, transparent 40%);
  pointer-events: none;
}

/* grid lines bg */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--a-bdr) 1px, transparent 1px),
    linear-gradient(90deg, var(--a-bdr) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--a-bg); border: 1px solid var(--a-bdr);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--a2); margin-bottom: 28px;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--a2); }

.hero-title {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 54px; letter-spacing: -2.5px; line-height: 1.05;
  color: var(--text); margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px; color: var(--text-md); line-height: 1.75;
  margin-bottom: 40px; max-width: 480px;
}

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

.hero-trust {
  margin-top: 52px;
  display: flex; align-items: center; gap: 16px;
}
.trust-label { font-size: 12px; color: var(--text-dimmer); }
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--a2);
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }

/* HERO CARD MOCK */
.hero-visual {
  position: relative; z-index: 1;
}
.mock-card {
  background: var(--bg2);
  border: 1px solid var(--a-bdr);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px var(--a-bdr);
}
.mock-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}
.mock-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.2px;
  max-width: 70%;
}
.mock-badge {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--a-bg); border: 1px solid var(--a-bdr);
  color: var(--a2); padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-inputs {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-chip {
  font-size: 10px;
  color: var(--text-dim);
  border: 1px solid var(--a-bdr);
  background: var(--bg3);
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.mock-col {
  background: var(--bg3); border-radius: var(--radius-md); padding: 20px;
  border: 1px solid var(--a-bdr);
}
.mock-col-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.mock-value {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: clamp(21px, 2.2vw, 28px);
  letter-spacing: -0.8px; line-height: 1;
  white-space: nowrap;
  margin-bottom: 4px;
}
.mock-value.win { background: linear-gradient(135deg, var(--a1), var(--a-mid), var(--a3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mock-value.loss { color: var(--text-dimmer); }
.mock-col-sub { font-size: 11px; color: var(--text-dim); line-height: 1.4; }

.mock-bar-wrap { margin-bottom: 20px; }
.mock-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.mock-bar-track { height: 6px; background: var(--bg3); border-radius: 100px; overflow: hidden; }
.mock-bar-fill  { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--a1), var(--a3)); }

.mock-result {
  background: var(--a-bg); border: 1px solid var(--a-bdr);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.mock-result-label { font-size: 12px; color: var(--text-md); }
.mock-result-value {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 18px; letter-spacing: -0.5px; white-space: nowrap;
}
.mock-note {
  margin-top: 10px;
  font-size: 9px;
  color: rgba(136, 136, 136, 0.7);
  line-height: 1.45;
}

/* ── HOW IT WORKS ── */
.how { background: var(--bg2); }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px;
}
.step {
  background: var(--bg3); border: 1px solid var(--a-bdr);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: var(--a2); transform: translateY(-4px); }
.step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a3));
  opacity: 0; transition: opacity 0.2s;
}
.step:hover::before { opacity: 1; }

.step-number {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 48px; letter-spacing: -2px; line-height: 1;
  background: linear-gradient(135deg, var(--a1), var(--a-mid), var(--a3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px; opacity: 0.4;
}
.step-title {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: -0.5px; color: var(--text);
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--text-md); line-height: 1.7; }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 64px;
}
.feat-card {
  background: var(--bg2); border: 1px solid var(--a-bdr);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--a2); transform: translateY(-3px); }
.feat-card.featured {
  background: var(--bg3);
  border-color: var(--a2);
  grid-column: span 2;
}

.feat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--a-bg); border: 1px solid var(--a-bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feat-title {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: -0.3px; color: var(--text);
  margin-bottom: 10px;
}
.feat-desc { font-size: 14px; color: var(--text-md); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg2); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 64px;
}
.testi-card {
  background: var(--bg3); border: 1px solid var(--a-bdr);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.testi-stars { color: var(--a2); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--text-md); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 14px; color: var(--k-text);
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-dim); margin-top: 1px; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 64px;
}
.pricing-switch {
  margin-top: 28px;
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: var(--bg2);
  border: 1px solid var(--a-bdr);
}
.switch-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-md);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.switch-btn:hover { color: var(--text); }
.switch-btn.active {
  color: var(--k-text);
  border-color: var(--a-bdr);
  background: linear-gradient(135deg, var(--a1), var(--a-mid), var(--a3));
}
.plan-card {
  background: var(--bg2); border: 1px solid var(--a-bdr);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--a2);
  background: var(--bg3);
}
.plan-card.popular::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--a1), var(--a3));
}
.plan-card.popular { padding-top: 56px; }
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--a1), var(--a-mid));
  color: var(--k-text); padding: 4px 10px; border-radius: 100px;
  font-weight: 700;
}
.plan-name {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 14px; letter-spacing: -0.3px; color: var(--a2);
  text-transform: uppercase; margin-bottom: 20px;
}
.plan-price {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 48px; letter-spacing: -2px; line-height: 1;
  color: var(--text); margin-bottom: 4px;
}
.plan-price span { font-size: 18px; color: var(--text-dim); font-weight: 400; vertical-align: super; }
.plan-period { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; }
.plan-total {
  font-size: 12px;
  color: var(--a2);
  margin-bottom: 20px;
}
.plan-divider { height: 1px; background: var(--a-bdr); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  font-size: 14px; color: var(--text-md);
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before {
  content: '✓'; color: var(--a2); font-weight: 700; flex-shrink: 0;
}
.plan-features li.off { color: var(--text-dimmer); }
.plan-features li.off::before { content: '—'; color: var(--text-dimmer); }
.plan-cta {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
  padding: 14px 12px;
  margin-top: auto;
}

/* ── LICENSE OFFLINE ── */
.license-strip {
  background: var(--bg2);
}
.license-steps {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.license-step {
  border: 1px solid var(--a-bdr);
  border-radius: var(--radius-lg);
  background: var(--bg3);
  padding: 28px 24px;
}
.license-step-k {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: var(--k-text);
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--a1), var(--a-mid), var(--a3));
}
.license-step h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.license-step p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-list { margin-top: 64px; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--a-bdr); padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--a-bdr); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-question {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -0.3px; color: var(--text);
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--a-bg); border: 1px solid var(--a-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--a2); font-size: 16px; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--a2); color: var(--k-text); }
.faq-answer {
  font-size: 14px; color: var(--text-md); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; padding-top: 16px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--a1) 0%, var(--a-mid) 50%, var(--a3) 100%);
  border-radius: var(--radius-xl); padding: 80px 72px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; margin: 0 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner-text { position: relative; z-index: 1; }
.cta-banner-title {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 36px; letter-spacing: -1.5px; color: var(--k-text);
  line-height: 1.1; margin-bottom: 12px;
}
.cta-banner-sub { font-size: 16px; color: rgba(12,11,8,0.65); max-width: 420px; line-height: 1.6; }
.cta-banner-action { position: relative; z-index: 1; flex-shrink: 0; }
.cta-banner-action { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-dark {
  background: var(--bg); color: var(--a2);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 15px; padding: 18px 36px; border-radius: var(--radius-md);
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.btn-dark.alt {
  background: rgba(12,11,8,0.12);
  color: var(--k-text);
  border: 1px solid rgba(12,11,8,0.35);
  box-shadow: none;
}
.btn-dark.alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--a-bdr);
  padding: 64px 40px 40px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px; color: var(--text); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--a2); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  border-top: 1px solid var(--a-bdr); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text-dimmer); }
.footer-domains { font-size: 11px; color: var(--text-dimmer); letter-spacing: 1px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow  { animation-delay: 0.0s; }
.hero-title    { animation-delay: 0.1s; }
.hero-sub      { animation-delay: 0.2s; }
.hero-ctas     { animation-delay: 0.3s; }
.hero-trust    { animation-delay: 0.4s; }
.hero-visual   { animation: fadeUp 0.9s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { gap: 44px; }
  .hero-title { font-size: 46px; }
  .license-steps { grid-template-columns: 1fr; }
  .steps,
  .testi-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card.featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .hero { min-height: auto; padding-top: 96px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: 38px; }
  .section { padding: 84px 0; }
  .nav-links { display: none; }
  .steps,
  .features-grid,
  .testi-grid,
  .pricing-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-switch { width: 100%; justify-content: space-between; }
  .switch-btn { flex: 1; text-align: center; }
  .feat-card.featured { grid-column: span 1; }
  .cta-banner {
    margin: 0 24px;
    padding: 44px 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner-title { font-size: 30px; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .nav-cta .btn { display: none; }
  .theme-toggle { font-size: 10px; padding: 10px 12px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .mock-card { padding: 20px; }
  .mock-compare { grid-template-columns: 1fr; }
  .section-title { font-size: 30px; letter-spacing: -1px; }
  .cta-banner { margin: 0 20px; padding: 36px 24px; }
  .cta-banner-title { font-size: 26px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
