:root {
  --primary: #16a34a;
  --dark-green: #15803d;
  --light-green: #dcfce7;
  --page-bg: #f8fafc;
  --text: #1f2937;
  --secondary-text: #6b7280;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.avatar {
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 999px;
  object-fit: cover;
}

.dot-grid {
  background-image: radial-gradient(circle, rgba(22, 163, 74, .22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.btn-whatsapp {
  background: var(--primary);
}

.hero-header {
  position: relative;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
}

.hero-heading {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: normal;
}

.hero-heading-icon {
  display: grid;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  place-items: center;
  margin-top: .08em;
  color: #facc15;
}

.hero-heading-icon svg {
  width: .88em;
  height: .88em;
  fill: rgba(253, 224, 71, .4);
}

.hero-heading-copy {
  display: grid;
  min-width: 0;
  row-gap: .12em;
}

.hero-heading-copy > span {
  display: block;
  line-height: 1.35;
  white-space: nowrap;
}

.footer-link {
  color: var(--text);
  transition: color 200ms ease;
}

.footer-link:hover {
  color: var(--primary);
}

.cta-animate {
  animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 32px rgba(22, 163, 74, .24);
  }

  50% {
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 22px 42px rgba(22, 163, 74, .34);
  }
}

.check-line,
.mini-check {
  position: relative;
  padding-left: 26px;
}

.check-line::before,
.mini-check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--primary);
}

.check-line::after,
.mini-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 4px);
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.mini-check {
  padding-left: 18px;
}

.mini-check::before {
  width: 13px;
  height: 13px;
}

.mini-check::after {
  left: 4px;
  top: calc(50% - 3px);
  width: 6px;
  height: 4px;
  border-width: 1.5px;
}

.phone-mock {
  position: relative;
  width: 256px;
  height: 462px;
  padding: 11px;
  border-radius: 36px;
  background: #0b1115;
  box-shadow: 0 28px 60px rgba(31, 41, 55, .28);
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #0b1115;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #ecdfd1;
}

.wa-head,
.wa-mini-head {
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(180deg, #087d57, #006b46);
  color: #fff;
}

.wa-head {
  height: 76px;
  padding: 24px 13px 10px;
  font-size: 11px;
  font-weight: 700;
}

.wa-head small {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
  font-weight: 500;
}

.chat-card {
  position: relative;
  width: 194px;
  margin: 24px auto;
  padding: 15px 14px 28px;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 10px;
  line-height: 1.72;
  box-shadow: 0 8px 20px rgba(31, 41, 55, .14);
}

.chat-card strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #111827;
  font-weight: 800;
}

.chat-card strong svg {
  width: 14px;
  height: 14px;
  color: #f5b400;
  fill: rgba(250, 204, 21, .35);
}

.chat-card b {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.chat-card ul {
  margin: 7px 0 0;
  padding-left: 14px;
}

.chat-card p {
  margin: 8px 0 0;
  font-weight: 700;
}

.chat-card a {
  display: inline-block;
  margin-top: 4px;
  color: #2563eb;
  font-weight: 700;
}

.chat-card time,
.wa-preview time {
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: #9ca3af;
  font-size: 8px;
}

.section-title {
  position: relative;
  margin: 0 0 28px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.ui-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(31, 41, 55, .08);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.ui-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 163, 74, .2);
  box-shadow: 0 22px 48px rgba(31, 41, 55, .12);
}

.icon-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-inline: auto;
  border-radius: 999px;
  color: #fff;
}

.icon-badge svg {
  width: 21px;
  height: 21px;
}

.feature-card {
  display: grid;
  min-height: 104px;
  align-content: center;
  padding: 16px 12px;
  text-align: center;
}

.feature-card h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.feature-card p {
  display: none;
  margin: 8px 0 0;
  color: var(--secondary-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.category-card {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
}

.category-card svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.category-card b {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.category-card span {
  display: none;
}

.audience-card {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px 6px;
  text-align: center;
}

.audience-card svg {
  width: 25px;
  height: 25px;
}

.audience-card b {
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
}

.slider-wrap {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  padding: 3px 24px 5px;
}

.slider-track {
  display: flex;
  gap: 0;
  transition: transform 450ms ease;
}

.wa-preview {
  position: relative;
  min-width: 100%;
  overflow: hidden;
  padding: 58px 18px 36px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.65;
}

.wa-mini-head {
  position: absolute;
  inset: 0 0 auto;
  height: 46px;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 700;
}

.wa-preview b,
.wa-preview strong {
  display: block;
  color: #111827;
  font-weight: 800;
}

.wa-preview p {
  margin: 10px 0 0;
}

.wa-preview strong {
  margin-top: 10px;
}

.wa-preview a {
  color: #2563eb;
  font-weight: 700;
}

.slider-btn {
  position: absolute;
  top: 44%;
  z-index: 5;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 22px rgba(22, 163, 74, .24);
  cursor: pointer;
}

.slider-prev {
  left: -2px;
}

.slider-next {
  right: -2px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease;
}

.slider-dots button.active {
  width: 26px;
  background: var(--primary);
}

.stat-card {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-align: center;
}

.stat-card:nth-child(2n) {
  border-right: 0;
}

.stat-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stat-card svg {
  width: 28px;
  height: 28px;
  color: #bbf7d0;
}

.stat-card b {
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.stat-card span {
  font-size: 10px;
  font-weight: 600;
}

.benefit-card {
  min-height: 90px;
  padding: 14px 8px;
  text-align: center;
}

.benefit-card svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
}

.benefit-card b {
  display: block;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.benefit-card p {
  display: none;
  margin: 8px 0 0;
  color: var(--secondary-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 14px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.faq-item button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 250ms ease;
}

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--secondary-text);
  font-size: 11px;
  line-height: 1.7;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.question-art {
  position: relative;
  height: 280px;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, #bbf7d0 0 35%, #f0fdf4 36% 68%, transparent 69%);
  color: var(--primary);
}

.question-art > svg {
  width: 124px;
  height: 124px;
  filter: drop-shadow(0 14px 16px rgba(22, 163, 74, .2));
}

.question-art span {
  position: absolute;
  right: 58px;
  bottom: 64px;
  color: #f59e0b;
}

.question-art span svg {
  width: 54px;
  height: 54px;
}

.mobile-sticky-join {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 50;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(22, 163, 74, .32);
}

.mobile-sticky-join svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.mobile-sticky-join span {
  white-space: nowrap;
}

@media (min-width: 640px) {
  .section-title {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .feature-card p,
  .benefit-card p {
    display: block;
  }
}

@media (min-width: 768px) {
  .slider-viewport {
    padding-inline: 48px;
  }

  .slider-track {
    gap: 24px;
  }

  .wa-preview {
    min-width: calc((100% - 48px) / 3);
    padding: 62px 22px 38px;
    font-size: 13px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slider-prev {
    left: 0;
  }

  .slider-next {
    right: 0;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-heading-copy {
    row-gap: .18em;
  }

  .hero-heading-copy > span {
    line-height: 1.38;
  }

  .section-title {
    margin-bottom: 36px;
    font-size: 32px;
  }

  .icon-badge {
    width: 58px;
    height: 58px;
  }

  .icon-badge svg {
    width: 28px;
    height: 28px;
  }

  .feature-card {
    min-height: 186px;
    padding: 28px 22px;
  }

  .feature-card h3 {
    margin-top: 18px;
    font-size: 18px;
  }

  .category-card {
    display: grid;
    min-height: 150px;
    place-items: center;
    padding: 24px;
    text-align: center;
  }

  .category-card svg {
    width: 44px;
    height: 44px;
  }

  .category-card b {
    font-size: 16px;
  }

  .category-card span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
  }

  .audience-card {
    min-height: 104px;
    padding: 18px 10px;
  }

  .audience-card svg {
    width: 32px;
    height: 32px;
  }

  .audience-card b {
    font-size: 13px;
  }

  .stat-card {
    min-height: 158px;
    padding: 24px 16px;
  }

  .stat-card,
  .stat-card:nth-child(2n),
  .stat-card:nth-last-child(-n + 2) {
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 0;
  }

  .stat-card:last-child {
    border-right: 0;
  }

  .stat-card svg {
    width: 44px;
    height: 44px;
  }

  .stat-card b {
    font-size: 32px;
  }

  .stat-card span {
    font-size: 14px;
  }

  .benefit-card {
    min-height: 156px;
    padding: 26px 18px;
  }

  .benefit-card svg {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .benefit-card b {
    font-size: 16px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item button {
    padding: 18px 22px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 22px 18px;
    font-size: 13px;
  }
}
