:root {
  --bg: #07110f;
  --bg-soft: #0c1a17;
  --card: rgba(255, 255, 255, 0.06);
  --card-solid: #fbf7ed;
  --text: #fbf7ed;
  --ink: #101714;
  --muted: #a8b7b0;
  --muted-dark: #5f6e68;
  --gold: #d9ad55;
  --green: #34d399;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(16, 23, 20, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 173, 85, 0.18), transparent 22rem),
    radial-gradient(circle at 90% 5%, rgba(52, 211, 153, 0.14), transparent 24rem),
    linear-gradient(145deg, var(--bg), #040807 72%);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px min(34px, 5vw);
  background: rgba(7, 17, 15, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f3d68d);
  box-shadow: 0 18px 42px rgba(217, 173, 85, 0.22);
}

.btn-soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.copy,
.lead-panel {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  width: fit-content;
  padding: 0.36rem 0.78rem;
  color: var(--gold);
  background: rgba(217, 173, 85, 0.08);
  border: 1px solid rgba(217, 173, 85, 0.22);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #fff2c9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.55rem, 7vw, 5.25rem);
  line-height: 0.93;
  letter-spacing: -0.08em;
}

h2 {
  max-width: 760px;
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.55rem;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.offer-box {
  max-width: 650px;
  margin: 30px 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.offer-label {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-box strong {
  display: block;
  font-size: 1.25rem;
}

.offer-box p,
.benefits p,
.panel-head p,
.footer,
.faq p,
.process p,
.process span,
.final-card p {
  color: var(--muted);
}

.benefits {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.benefits span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border-radius: 12px;
  font-weight: 950;
}

.benefits p {
  margin: 0;
}

.lead-panel {
  padding: 24px;
  color: var(--ink);
  background: var(--card-solid);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--dark-line);
}

.panel-head p {
  margin: 0.2rem 0 0;
  color: var(--muted-dark);
}

.pulse {
  width: 13px;
  height: 13px;
  margin-top: 6px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(52, 211, 153, 0.16);
}

label {
  display: block;
  margin: 14px 0 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

label span {
  color: var(--muted-dark);
  font-weight: 500;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0.84rem 0.92rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 23, 20, 0.16);
  border-radius: 14px;
}

input:focus {
  outline: 3px solid rgba(217, 173, 85, 0.25);
  border-color: var(--gold);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.lead-form .btn {
  width: 100%;
}

.whatsapp-link {
  width: 100%;
  margin-top: 12px;
  padding: 0.4rem;
  color: #17633f;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
}

.section {
  padding: 78px 0;
}

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

.use-card,
.final-card,
.faq details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.use-card {
  min-height: 180px;
  padding: 22px;
  border-radius: 22px;
}

.use-card p {
  color: var(--muted);
}

.dark {
  background: rgba(255, 255, 255, 0.04);
  border-block: 1px solid var(--line);
}

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

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

.process li {
  padding: 18px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.process strong,
.process span {
  display: block;
}

.narrow {
  max-width: 830px;
}

.faq details {
  margin-top: 12px;
  padding: 18px 20px;
  border-radius: 18px;
}

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

.faq p {
  margin: 0.8rem 0 0;
}

.final-cta {
  padding: 24px 0 82px;
}

.final-card {
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
  border-radius: 34px;
}

.final-card .eyebrow,
.final-card h2,
.final-card p {
  margin-left: auto;
  margin-right: auto;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 8, 7, 0.84);
  backdrop-filter: blur(14px);
}

.success-modal[hidden] {
  display: none;
}

.success-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  color: var(--ink);
  background: var(--card-solid);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 950;
}

.success-card p {
  color: var(--muted-dark);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--muted-dark);
  background: #fff;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  padding: 28px 20px;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .process {
    grid-template-columns: 1fr;
  }

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

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

  .topbar {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .topbar .btn {
    max-width: calc(100vw - 84px);
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 50px 0 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 15vw, 3.65rem);
  }

  .use-grid {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .btn {
    width: 100%;
  }
}
