:root {
  --bg: #081120;
  --bg-soft: #0d1728;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --card: #ffffff;
  --text: #f4f7fb;
  --text-dark: #0f172a;
  --muted: #a8b3c7;
  --muted-dark: #64748b;
  --primary: #16a34a;
  --primary-hover: #15803d;
  --secondary: #1d4ed8;
  --secondary-hover: #1e40af;
  --accent: #22c55e;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 30px 80px rgba(2, 6, 23, 0.35);
  --shadow-lg: 0 20px 45px rgba(2, 6, 23, 0.22);
  --shadow-md: 0 12px 28px rgba(2, 6, 23, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --topbar-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.16), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #0a1322 42%, #eef4fb 42%, #eef4fb 100%);
  color: var(--text);
  min-height: 100vh;
}

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

button,
input {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-content {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
}

.brand-text {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

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

.nav a {
  color: rgba(244, 247, 251, 0.88);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.3rem;
  border: 1px solid var(--border);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: min(100%, calc(var(--container)));
  margin: 0 auto 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(8, 17, 32, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-menu a {
  color: #f8fafc;
  padding: 6px 2px;
  font-weight: 500;
}

.mobile-menu.open {
  display: flex;
}

.mobile-btn {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), #16a34a);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  color: #f8fafc;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.26);
}

.btn-lg {
  min-height: 56px;
  padding: 0 26px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 52px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bbf7d0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 720px;
}

.hero-copy h1 span {
  color: #86efac;
}

.hero-description {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  width: min(100%, 520px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #ffffff);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.dashboard-main {
  transform: rotate(-2deg);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.dot-green {
  background: #22c55e;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-red {
  background: #ef4444;
}

.dashboard-body {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-stat {
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.dashboard-stat .stat-label {
  display: block;
  color: var(--muted-dark);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.dashboard-stat strong {
  color: var(--text-dark);
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.mini-table {
  margin: 0 20px 20px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0f172a, #111f36);
  color: #ffffff;
}

.mini-table-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #dbeafe;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.mini-row span {
  color: #dbeafe;
}

.mini-row strong {
  color: #86efac;
}

.floating-card {
  position: absolute;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.floating-title {
  display: block;
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.floating-card small {
  color: #86efac;
  font-size: 0.88rem;
  font-weight: 700;
}

.card-left {
  left: -10px;
  bottom: 28px;
}

.card-right {
  right: -10px;
  top: 42px;
}

/* Trust strip */
.trust-strip {
  padding: 0 0 42px;
}

.trust-strip-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip-content span {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  text-align: center;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Sections */
.section {
  padding: 90px 0;
  color: var(--text-dark);
}

.section-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.section-head p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  background: linear-gradient(135deg, #dcfce7, #dbeafe);
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #0f172a;
}

.feature-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.72;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--secondary), #2563eb);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  color: #0f172a;
}

.step-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* Pricing */
.pricing-section {
  background: linear-gradient(180deg, #edf4fb 0%, #eef4fb 100%);
}

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 32px;
  padding: 42px 28px;
  box-shadow: var(--shadow-lg);
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  letter-spacing: -0.04em;
}

.price-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.currency {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 800;
  transform: translateY(-10px);
}

.price-line strong {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #0f172a;
}

.period {
  color: var(--muted-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-description {
  max-width: 520px;
  margin: 0 auto 26px;
  color: var(--muted-dark);
  line-height: 1.75;
  font-size: 1.02rem;
}

.pricing-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 0 auto 28px;
}

.pricing-includes div {
  padding: 15px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-weight: 700;
}

.pricing-btn {
  min-width: 280px;
}

/* Access */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.access-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.access-copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.75;
  font-size: 1.02rem;
}

.access-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted-dark);
  text-align: center;
  font-size: 0.96rem;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 500;
}

.modal-header {
  padding-right: 50px;
  margin-bottom: 24px;
}

.modal-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.modal-header p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.field input:focus {
  border-color: rgba(22, 163, 74, 0.45);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.feedback {
  grid-column: 1 / -1;
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.feedback.success {
  color: #15803d;
}

.feedback.error {
  color: #dc2626;
}

.after-contract {
  grid-column: 1 / -1;
}

.hidden {
  display: none !important;
}

.success-box {
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.success-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.success-box p {
  margin: 0;
  line-height: 1.65;
}

/* Utilities */
[aria-hidden="true"] {
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 10px;
  }

  .dashboard-main {
    transform: none;
  }

  .card-left {
    left: 8px;
    bottom: 12px;
  }

  .card-right {
    right: 8px;
    top: 18px;
  }

  .trust-strip-content,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav,
  .topbar-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-section {
    padding: 32px 0 58px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-description {
    max-width: none;
  }

  .pricing-includes,
  .form-grid,
  .trust-strip-content,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-visual {
    display: block;
  }

  .dashboard-card {
    width: 100%;
  }

  .section,
  .pricing-section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 76px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-lg,
  .btn,
  .btn-full {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .dashboard-body {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }

  .dashboard-stat {
    padding: 14px;
  }

  .dashboard-stat strong {
    font-size: 1.5rem;
  }

  .mini-table {
    margin: 0 16px 16px;
    padding: 16px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .feature-card,
  .step-card,
  .access-card,
  .pricing-card,
  .modal-card {
    border-radius: 22px;
  }

  .feature-card,
  .step-card,
  .access-card,
  .pricing-card {
    padding: 22px;
  }

  .modal-card {
    padding: 22px 18px;
  }

  .modal-header {
    padding-right: 42px;
  }

  .field input {
    min-height: 50px;
  }

  .pricing-btn {
    min-width: 0;
  }

  .price-line strong {
    font-size: clamp(2.6rem, 18vw, 4rem);
  }
}

@media (max-width: 420px) {
  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .topbar-content {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .hero-highlights li,
  .trust-strip-content span,
  .pricing-includes div {
    font-size: 0.92rem;
  }
}