:root {
  --black: #050505;
  --dark: #111111;
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --whatsapp: #25D366;
  --white: #FFFFFF;
  --gray: #B8B8B8;
  --border-gold: rgba(212, 175, 55, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  padding-bottom: 5.5rem;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--gold-light);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2.5rem, 70rem);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  max-width: 13rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
}

.header-cta,
.cta-button,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 215, 110, 0.52);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 1), rgba(17, 130, 80, 1)),
    var(--whatsapp);
  box-shadow:
    0 18px 46px rgba(37, 211, 102, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta {
  min-height: 2.5rem;
  padding: 0.62rem 0.9rem;
  font-size: 0.9rem;
}

.cta-button {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1.2rem;
  font-size: 0.95rem;
}

.header-cta:hover,
.header-cta:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow:
    0 26px 58px rgba(37, 211, 102, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-section {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 6.6rem 0 3rem;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.72) 52%, rgba(5, 5, 5, 0.32)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), var(--black));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-content {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 850;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.07;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: 2.55rem;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.trust-line {
  margin: 0.8rem 0 0;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 3.7rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.benefit-grid {
  display: grid;
  gap: 0.85rem;
}

.info-card {
  min-height: 12rem;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.2rem;
  background:
    linear-gradient(160deg, rgba(245, 215, 110, 0.1), transparent 38%),
    rgba(17, 17, 17, 0.95);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 215, 110, 0.52);
}

.info-card p {
  margin-bottom: 0;
  color: var(--gray);
}

.card-icon {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(245, 215, 110, 0.42);
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.steps-section {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(5, 5, 5, 0.96));
}

.split-layout {
  display: grid;
  gap: 1rem;
}

.steps-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(5, 5, 5, 0.6);
  font-weight: 760;
}

.steps-list span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.trust-card,
.final-card {
  border: 1px solid rgba(245, 215, 110, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(245, 215, 110, 0.12), transparent 42%),
    rgba(17, 17, 17, 0.94);
  box-shadow: var(--shadow);
}

.trust-card p,
.final-card p {
  color: var(--gray);
}

.trust-card strong {
  color: var(--gold-light);
}

.final-cta-section {
  padding-top: 1rem;
}

.final-card {
  text-align: center;
}

.final-card p {
  max-width: 36rem;
  margin-inline: auto;
}

.site-footer {
  display: grid;
  gap: 0.25rem;
  padding: 1.8rem 1.25rem 5.4rem;
  color: var(--gray);
  text-align: center;
}

.site-footer strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  min-height: 3.35rem;
  padding: 0.86rem 1.1rem;
  font-size: 0.9rem;
  box-shadow:
    0 18px 46px rgba(37, 211, 102, 0.34),
    0 0 0 6px rgba(5, 5, 5, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (min-width: 34rem) {
  .cta-button {
    width: auto;
    min-width: 18rem;
  }
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 1rem 2rem;
  }

  .brand {
    max-width: none;
    font-size: 1.08rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-section {
    min-height: 86svh;
    padding: 8rem 0 4.2rem;
  }

  .section {
    padding: 4.8rem 0;
  }

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

  .split-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

  .steps-list li {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 8rem;
  }

  .trust-card,
  .final-card {
    padding: 2.5rem;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .floating-cta {
    right: 1.6rem;
    bottom: 1.6rem;
    min-width: 10.5rem;
  }
}
