@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --grape: #703988;
  --page-bg: #f2f2f2;
  --card-bg: #f3f3f3;
  --text: #111827;
  --muted: #656b75;
  --green: #22c55e;
  --green-dark: #14a34a;
  --green-soft: rgba(34, 197, 94, 0.14);
  --border-soft: #d6d6d6;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.08);
  --shadow-green: 0 14px 28px rgba(34, 197, 94, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--grape);
  color: var(--text);
}

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

.page-wrap {
  min-height: 100vh;
  padding: 32px;
}

.hero-card {
  max-width: 740px;
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  background: var(--page-bg);
  padding: 86px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
}

.logo-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.hero-copy p {
  margin: 10px auto 0;
  max-width: 560px;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.benefits {
  width: 100%;
  max-width: 620px;
  margin-top: 82px;
  display: grid;
  gap: 18px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
  font-size: clamp(0.95rem, 2.1vw, 1.22rem);
  line-height: 1.35;
  font-weight: 700;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.45rem;
  background: linear-gradient(180deg, #45de79 0%, #20b95a 100%);
  color: white;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.25), 0 5px 12px rgba(34, 197, 94, 0.22);
}

.cta-area {
  width: 100%;
  margin-top: 34px;
}

.cta-button {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #fff8d9;
  background: linear-gradient(180deg, #2cda63 0%, #19be50 100%);
  min-height: 92px;
  border-radius: 999px;
  padding: 18px 28px;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 1.4rem);
  box-shadow: var(--shadow-green);
  border: 2px solid rgba(41, 161, 68, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.28);
  filter: brightness(1.02);
}

.cta-button:active {
  transform: translateY(0);
}

.whats-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
}

.whats-icon svg {
  width: 100%;
  height: 100%;
}

.proof-pill {
  margin-top: 30px;
  width: min(100%, 540px);
  min-height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(220,255,231,0.95), rgba(215,245,223,0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 26px;
  box-shadow: 0 12px 26px rgba(53, 171, 86, 0.15), inset 0 0 0 2px rgba(59, 201, 107, 0.12);
  color: #111;
}

.proof-pill strong {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
}

.proof-pill span {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mini-cards {
  width: 100%;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  min-height: 130px;
  padding: 20px 16px;
  background: #f7f7f7;
  border: 2px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mini-icon {
  font-size: 2rem;
  color: #60c878;
  line-height: 1;
}

.mini-card h2 {
  margin: 12px 0 0;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--muted);
  line-height: 1.18;
  font-weight: 800;
}

.footer-copy {
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  color: #737983;
}

@media (max-width: 640px) {
  .page-wrap {
    padding: 14px;
  }

  .hero-card {
    min-height: calc(100vh - 36px);
    padding: 56px 22px 34px;
  }

  .logo-wrap,
  .logo-img {
    width: 100px;
    height: 100px;
  }

  .logo-wrap {
    margin-bottom: 30px;
  }

  .benefits {
    margin-top: 40px;
    gap: 14px;
  }

  .benefit-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .cta-button {
    min-height: 74px;
    padding: 16px 18px;
    gap: 12px;
  }

  .whats-icon {
    width: 34px;
    height: 34px;
  }

  .proof-pill {
    gap: 10px;
    min-height: 86px;
    padding: 16px 18px;
  }

  .mini-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .mini-card {
    min-height: 104px;
    padding: 16px 8px;
    border-radius: 20px;
  }

  .mini-icon {
    font-size: 1.55rem;
  }
}

.cta-button {
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 460px) {
  .hero-copy h1 {
    font-size: 1.45rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .mini-card h2 {
    font-size: 0.78rem;
  }

  .footer-copy {
    font-size: 0.92rem;
  }
}
