.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
}

.hero__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__decor--a {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -120px;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.10) 0%, rgba(47, 111, 237, 0) 70%);
}

.hero__decor--b {
  width: 520px;
  height: 520px;
  top: 40px;
  right: -180px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.10) 0%, rgba(20, 184, 166, 0) 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
}

/* content = left column, visual = right column, fixed regardless of dir=rtl.
   min-width:0 overrides the grid item default of min-width:auto - without
   it, unbreakable intrinsic content (a button's text, the badge pill)
   can force the track wider than its 1fr share instead of wrapping,
   pushing the whole grid past the viewport on narrow screens. */
.hero__content { grid-column: 1; min-width: 0; }
.hero__visual { grid-column: 2; min-width: 0; }

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}

.hero__title {
  font-size: 54px;
  line-height: 1.18;
  font-weight: 900;
  color: var(--color-ink);
  margin-bottom: 22px;
}

.hero__title-accent {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__dot {
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
}

.hero__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-body);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__cta .btn--primary svg {
  transform: scaleX(-1);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-body);
}

.hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.14);
  color: var(--color-teal);
  flex: none;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__value {
  font-size: 30px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-muted);
}

/* ---- Visual column: mockup image + callouts ---- */

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  height: auto;
}

.hero__callout {
  position: absolute;
  z-index: 5;
}

.hero__callout--top {
  top: -54px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.hero__callout-arrow {
  margin-bottom: 6px;
}

.hero__callout-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero__callout-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
}

.hero__callout-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(47, 111, 237, 0.12);
  color: var(--color-primary);
  flex: none;
}

.hero__callout--bottom {
  left: -30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 10px;
  box-shadow: var(--shadow-md);
}

.hero__callout-badge--solid {
  background: var(--gradient-brand);
  color: #fff;
  width: 34px;
  height: 34px;
}

.hero__callout--bottom p {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  white-space: nowrap;
}

/* ---- Channel icons strip ---- */

.hero__channels {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.6);
}

.hero__channels-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 26px 24px;
}

.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.channel-icon--whatsapp { background: var(--color-whatsapp); }
.channel-icon--instagram { background: var(--gradient-instagram); }
.channel-icon--messenger { background: var(--color-messenger); }
.channel-icon--mail { background: var(--color-mail); }

.channel-icon--more {
  background: #fff;
  border: 1.5px dashed var(--color-border);
  color: var(--color-muted);
  box-shadow: none;
}

/* ---- Features row ---- */

.features {
  padding: 60px 0 50px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 4px;
}

.feature__icon--blue {
  background: rgba(47, 111, 237, 0.1);
  color: var(--color-primary);
}

.feature__icon--teal {
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-teal);
}

.feature h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
}

.feature p {
  font-size: 12.5px;
  color: var(--color-body);
  line-height: 1.5;
}

/* ---- Tagline strip ---- */

.tagline {
  padding: 10px 0 70px;
}

.tagline__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tagline__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.tagline__inner p {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-body);
}
