:root {
  --bg: #f2f4f7;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --surface-dark: #13161b;
  --text: #111418;
  --muted: #5e6773;
  --line: rgba(17, 20, 24, 0.1);
  --line-dark: rgba(255, 255, 255, 0.08);
  --accent: #d84f18;
  --accent-dark: #b43f10;
  --success: #1fa855;
  --shadow: 0 18px 48px rgba(8, 15, 28, 0.08);
  --shadow-strong: 0 24px 60px rgba(8, 15, 28, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #eef1f5 0%, #f7f8fa 26%, #f2f4f7 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(17, 20, 24, 0.06);
  backdrop-filter: blur(18px);
  background: rgba(242, 244, 247, 0.86);
}

.topbar__content,
.footer__content,
.hero__actions,
.hero__highlights {
  display: flex;
  gap: 18px;
}

.topbar__content,
.footer__content {
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Barlow", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover,
.footer__link:hover,
.hero-card__link:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(216, 79, 24, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button--small {
  min-height: 46px;
  padding: 0 18px;
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(17, 20, 24, 0.04);
}

.button--wide {
  width: 100%;
}

.hero {
  padding: 36px 0 24px;
}

.hero__shell {
  padding: 32px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 250, 0.95)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content {
  padding: 16px 8px 8px 4px;
}

.eyebrow,
.section-label,
.hero-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 79, 24, 0.09);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta h2 {
  margin: 18px 0 16px;
  font-family: "Barlow", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3rem, 6vw, 5rem);
}

.hero__lead,
.section-heading p,
.card p,
.step p,
.faq-item p,
.cta p,
.footer p,
.issue-item p,
.proof-item span,
.trust-pill span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}

.proof-item {
  padding: 18px 18px 16px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

.proof-item strong,
.trust-pill strong,
.hero-card__title {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero__actions {
  margin: 28px 0 22px;
  flex-wrap: wrap;
}

.hero__highlights {
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 20, 24, 0.08);
  font-weight: 800;
}

.hero-card,
.card,
.step,
.cta__box,
.faq-item,
.trust-pill {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, #171b22, #0f1217);
  box-shadow: var(--shadow-strong);
}

.hero-card__top h2 {
  margin: 16px 0 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.issue-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.issue-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.issue-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.issue-item p,
.hero-card__footer strong {
  color: rgba(255, 255, 255, 0.74);
}

.issue-item__bullet {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216, 79, 24, 0.16);
}

.hero-card__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.hero-card__link {
  font-weight: 800;
  color: #fff;
}

.trust {
  padding: 10px 0 0;
}

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

.trust-pill {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 20, 24, 0.06);
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards,
.steps,
.faq-list {
  display: grid;
  gap: 20px;
}

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

.card {
  padding: 28px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.card h3,
.step h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-family: "Barlow", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(216, 79, 24, 0.18), transparent 24%),
    linear-gradient(180deg, #15191f 0%, #101318 100%);
}

.section-heading--light .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: #ffb99d;
}

.section-heading--light p,
.step p {
  color: rgba(255, 255, 255, 0.74);
}

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

.step {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(216, 79, 24, 0.14);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 235, 0.98));
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: min(100%, 320px);
}

.cta__note {
  margin: 0;
  font-size: 0.94rem;
}

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

.faq-item {
  padding: 28px;
  border: 1px solid rgba(17, 20, 24, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.footer {
  padding: 10px 0 28px;
}

.brand--footer {
  display: inline-block;
  margin-bottom: 10px;
}

.footer__link {
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(31, 168, 85, 0.25);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1040px) {
  .hero__grid,
  .trust__grid,
  .steps,
  .faq-list,
  .cards,
  .hero__proof,
  .cta__box {
    grid-template-columns: 1fr;
  }

  .cta__box,
  .footer__content,
  .topbar__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta__actions {
    min-width: 100%;
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
  }

  .nav,
  .button--small {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__shell,
  .hero-card,
  .card,
  .step,
  .faq-item,
  .trust-pill,
  .cta__box {
    padding: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding-right: 16px;
  }

  .whatsapp-float__label {
    display: none;
  }
}
