:root {
  --ink: #14151f;
  --muted: #667085;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --line: #e5e8ef;
  --brand: #e53935;
  --brand-dark: #b71c1c;
  --brand-soft: #fff1f0;
  --blue: #2563eb;
  --amber: #f6b73c;
  --teal: #0f766e;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 21, 31, 0.88);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: flex;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 14px 28px rgba(229, 57, 53, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #991b1b, var(--brand-dark));
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 112px 0 84px;
  background: #14151f var(--hero-image) center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 21, 31, 0.94), rgba(55, 20, 25, 0.78) 48%, rgba(20, 21, 31, 0.36)),
    linear-gradient(180deg, rgba(20, 21, 31, 0.24), rgba(20, 21, 31, 0.78));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd0cc;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  margin-top: 14px;
  max-width: 820px;
  font-size: 4.25rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points,
.inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span,
.inline-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  font-size: 0.9rem;
}

.form-steps {
  counter-reset: form-steps;
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.form-steps li {
  counter-increment: form-steps;
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  line-height: 1.55;
}

.form-steps li::before {
  content: counter(form-steps);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.22);
}

.form-steps strong {
  color: var(--ink);
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: #f1f4f8;
}

.section-dark {
  color: #fff;
  background: #14151f;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark .section-head p,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(23, 42, 36, 0.06);
}

.icon-card {
  position: relative;
  padding-top: 66px;
}

.icon-card__icon {
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  font-size: 0.92rem;
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-metric {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-metric strong {
  display: block;
  color: var(--brand);
  font-size: 2.25rem;
  line-height: 1;
}

.proof-metric span,
.testimonial cite,
.badge-list span {
  color: var(--muted);
}

.testimonial {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 42, 36, 0.06);
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
}

.testimonial cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 800;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.demo-frame__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  background: #111827;
}

.demo-frame__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.demo-frame__bar span:nth-child(2) {
  background: #f59e0b;
}

.demo-frame__bar span:nth-child(3) {
  background: #10b981;
}

.demo-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pain-map {
  display: grid;
  gap: 14px;
}

.pain-map__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

.pain-map__cell {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pain-map__cell strong {
  display: block;
  margin-bottom: 6px;
}

.pain-map__arrow {
  display: grid;
  place-items: center;
  color: var(--brand);
  font-weight: 900;
}

.card p,
.feature-list li,
.article-body li {
  color: var(--muted);
}

.card-link {
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 57, 53, 0.32);
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: start;
  gap: 44px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.numbered {
  counter-reset: steps;
}

.numbered .card {
  position: relative;
  padding-top: 62px;
}

.numbered .card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  font-weight: 800;
}

.quote-band {
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-band strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.18;
}

.section-dark .quote-band {
  color: var(--ink);
}

.section-dark .quote-band p {
  color: var(--muted);
}

.site-register {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-register h2,
.site-register h3 {
  color: var(--ink);
  font-size: 1.55rem;
}

.site-register p {
  margin-top: 8px;
  color: var(--muted);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.register-grid .full,
.register-grid button {
  grid-column: 1 / -1;
}

.site-register input,
.site-register select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cddbd5;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.site-register input:focus,
.site-register select:focus {
  outline: 3px solid rgba(229, 57, 53, 0.16);
  border-color: var(--brand);
}

.site-register button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  font-weight: 900;
}

.site-register button:disabled {
  opacity: 0.74;
  cursor: wait;
}

.formStyle {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-message {
  min-height: 24px;
  margin-top: 12px;
  font-weight: 700;
}

.form-message.is-success {
  color: var(--teal);
}

.form-message.is-error {
  color: #b93425;
}

.referral-message {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  color: #0f5132;
  background: #ecfdf3;
  font-weight: 800;
}

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

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 34px;
  align-items: center;
}

.footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #11131d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
}

.footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin-top: 8px;
}

.footer img {
  width: 150px;
  margin-bottom: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #1fae6b;
  box-shadow: 0 16px 38px rgba(31, 174, 107, 0.34);
  font-weight: 900;
}

.sticky-conversion-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 49;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 21, 31, 0.94);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  transform: translateX(-50%);
}

.sticky-conversion-bar span {
  font-weight: 800;
  white-space: nowrap;
}

.sticky-conversion-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.sticky-conversion-bar a:last-child {
  background: #1fae6b;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

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

.trust-metric {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-metric strong {
  display: block;
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1;
}

.trust-metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.exit-lead {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.62);
}

.exit-lead__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.exit-lead__panel .eyebrow {
  color: var(--brand);
}

.exit-lead__panel h3 {
  margin-top: 12px;
  font-size: 1.9rem;
}

.exit-lead__panel p {
  margin-top: 12px;
  color: var(--muted);
}

.exit-lead__panel > button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f1f4f8;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-body {
  max-width: 860px;
}

.article-body p,
.article-body ul {
  margin-top: 18px;
}

.article-body ul {
  padding-left: 22px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .grid-3,
  .grid-4,
  .proof-grid,
  .proof-metrics,
  .split,
  .cta-band,
  .trust-strip,
  .trust-metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar-inner {
    min-height: 64px;
  }

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

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: #11131d;
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 78vh;
    padding: 84px 0 64px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(20, 21, 31, 0.95), rgba(55, 20, 25, 0.82)),
      linear-gradient(180deg, rgba(20, 21, 31, 0.26), rgba(20, 21, 31, 0.76));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 64px 0;
  }

  .grid-2,
  .register-grid {
    grid-template-columns: 1fr;
  }

  .pain-map__row {
    grid-template-columns: 1fr;
  }

  .pain-map__arrow {
    min-height: 24px;
  }

  .site-register,
  .quote-band,
  .exit-lead__panel {
    padding: 22px;
  }

  .sticky-conversion-bar {
    left: 14px;
    right: 14px;
    bottom: 14px;
    transform: none;
    justify-content: space-between;
  }

  .sticky-conversion-bar span {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }
}
