:root {
  --bg: #e8e8e8;
  --text: #17181b;
  --muted: #66686c;
  --line: #959595;
}

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

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.landing {
  width: min(840px, 100% - 1.3rem);
  margin: 1.5rem auto 1.8rem;
}

.visual-panel {
  background: #ededed;
  border-radius: 24px;
  padding: clamp(1.2rem, 4.8vw, 2.1rem);
  display: grid;
  place-items: center;
}

.gift-card-image {
  width: min(720px, 100%);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  display: block;
}

.offer-pill {
  width: fit-content;
  margin: 1.35rem auto 0;
  background: #151518;
  color: #f5f5f5;
  padding: 0.52rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
}

.headline h1 {
  margin: 1.25rem auto 0;
  max-width: 15ch;
  text-align: center;
  font-size: clamp(2.1rem, 7vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.steps-card {
  margin-top: 1.3rem;
  border: 4px solid var(--line);
  border-radius: 42px;
  background: #ececec;
  padding: clamp(1.1rem, 3.8vw, 2rem);
}

.steps-card h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 5.4vw, 3.35rem);
  letter-spacing: -0.02em;
}

.steps-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.78rem;
}

.steps-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.05rem, 3.1vw, 2rem);
}

.num {
  width: clamp(2.65rem, 8vw, 4rem);
  height: clamp(2.65rem, 8vw, 4rem);
  border-radius: 999px;
  border: 2px solid #d6d6d6;
  background: #e6e6e6;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95em;
  flex: 0 0 auto;
}

.cta {
  display: block;
  margin: 1.25rem auto 0;
  width: min(92%, 640px);
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  padding: clamp(1rem, 2.8vw, 1.35rem) 1rem;
  border-radius: 999px;
  background: linear-gradient(110deg, #101113 0%, #1a1b1f 36%, #3a3b3f 100%);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.micro {
  text-align: center;
  margin: 0.88rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.4vw, 1.18rem);
}

.trust {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.trust p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 2.4vw, 1.07rem);
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.icon {
  font-weight: 700;
}

.icon.green { color: #38c36f; }
.icon.blue { color: #4a97ff; }
.icon.purple { color: #ae6aff; }

@media (min-width: 980px) {
  .landing {
    margin-top: 2rem;
  }
}

.s1-footer {
  background: #020306;
  margin-top: 1.6rem;
  padding: 2rem 1rem;
}

.s1-footer p {
  margin: 0 auto;
  max-width: 920px;
  color: #9aa2b0;
  font-size: 0.9rem;
  line-height: 1.52;
  text-align: center;
}

@media (max-width: 760px) {
  .s1-footer {
    margin-top: 1.2rem;
    padding: 1.5rem 0.85rem;
  }

  .s1-footer p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}
