/* hero layout */
.hero {
  padding: 2rem 0 1.5rem;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;

  gap: clamp(22px, 4vw, 48px);
}

.hero__left {
  max-width: 680px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero__kickerIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}

.hero__kickerText {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(11, 18, 32, 0.72);
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--c-text);
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(11, 18, 32, 0.66);
  max-width: 56ch;
}

.hero__right {
  max-width: 520px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
}

.hero__copy {
  margin: 45px 0 25px; 
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.70);
}

.hero__checks {
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero__check {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(11, 18, 32, 0.78);
}

.hero__checkIcon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--g-brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.12), 0 10px 24px rgba(255, 106, 138, 0.10);
  flex: 0 0 auto;
}

/* =========================================
   Hero actions (2 CTAs)
   ========================================= */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.hero__btn {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .hero__actions {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .hero__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }
}

.btn--whatsapp {
  background: #22c55e;
  border: 0;
  color: #ffffff;
  box-shadow: 0 16px 46px rgba(34, 197, 94, 0.28), 0 12px 38px rgba(11, 18, 32, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-weight: 700;
}

.btn--whatsapp i,
.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.btn--whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(34, 197, 94, 0.36), 0 14px 40px rgba(11, 18, 32, 0.16);
  background: #16a34a;
  filter: brightness(1.02) saturate(1.05);
}

.btn--whatsapp:active {
  transform: translateY(0);
}

.hero__orb {
  position: absolute;
  top: 18%;
  left: 56%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--g-brand);
  box-shadow: 0 18px 46px rgba(47, 107, 255, 0.22), 0 14px 42px rgba(255, 106, 138, 0.18);
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

/* responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .hero__right {
    justify-self: start;
  }

  .hero__orb {
    left: 78%;
    top: 10%;
  }

  .hero__kickerIcon {
    font-size: 10px;
  }

  .hero__kickerText {
    font-size: 10px;
  }

  .hero {
    padding-top: 10px;
  }
}

@media (max-width: 820px) {
  .hero__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero__left {
    order: 1 !important;
  }

  .hero__right {
    display: contents !important;
  }

  .hero__title {
    margin-bottom: 6px !important; 
  }

  .hero__actions {
    order: 3 !important;
    margin-top: 20px !important;
  }

  .hero__copy {
    order: 2 !important;
    margin: 0;
  }

  .hero__checks {
    order: 4 !important;
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
