/* =========================================================
   MARKETING.CSS — Marketing service page (hero)
   ========================================================= */

/* ---- Hero: dark, centered ---- */
.mk-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1420 0%, #16203a 55%, #0e1420 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
}

/* Ambient gradient blobs */
.mk-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mk-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.mk-blob-a { background: #3f9b54; top: -140px; left: -120px; }
.mk-blob-b { background: #2563eb; bottom: -180px; right: -120px; }

.mk-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  color: #fff;
}

/* Social proof bar */
.mk-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.mk-proof-item strong {
  color: #fff;
  font-weight: 800;
}

.mk-proof-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7ee08f;
}

/* Title */
.mk-title {
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.2rem;
}

/* ===== Highlighter swipe (impactful marker effect) ===== */
.highlighter-text {
  display: inline-block;
  padding: 0.06em 0.4em;
  margin: 0.08em 0;
  border-radius: 0.3em;
  /* Bright green marker band, feathered at the edges like a real swipe */
  background-image: linear-gradient(100deg,
      rgba(126, 224, 143, 0) 1%,
      #7ee08f 3%,
      #9fe3a8 97%,
      rgba(126, 224, 143, 0) 99%);
  background-repeat: no-repeat;
  background-size: 100% 88%;
  background-position: 0 65%;
  color: #0e1420;
  -webkit-text-fill-color: #0e1420;
  box-shadow: 0 6px 26px rgba(126, 224, 143, 0.28);
  transform: rotate(-0.6deg);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  animation: mk-highlight 0.9s var(--ease) 0.35s both;
}

/* Marker swipe-in reveal */
@keyframes mk-highlight {
  from { background-size: 0% 88%; }
  to   { background-size: 100% 88%; }
}

@media (prefers-reduced-motion: reduce) {
  .highlighter-text { animation: none; }
}


/* Sub */
.mk-sub {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* Trust row */
.mk-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2.2rem;
  padding: 0;
}

.mk-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.mk-trust-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #7ee08f;
}

.mk-trust-icon [data-lucide] {
  width: 16px;
  height: 16px;
}

/* CTAs */
.mk-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.mk-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.mk-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Note */
.mk-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: #7ee08f;
}

/* Know More toggle (intro copy hidden until tapped) */
.mk-knowmore { margin-bottom: 1.6rem; }

.mk-knowmore-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.mk-knowmore-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.mk-knowmore-caret {
  width: 15px;
  height: 15px;
  color: #7ee08f;
  transition: transform 0.3s var(--ease);
}

.mk-knowmore-caret.open { transform: rotate(180deg); }

/* Spacing handled by .mk-knowmore, not the revealed copy */
.mk-knowmore .mk-sub { margin-bottom: 0; }

/* ===== Mobile: compact ===== */
@media (max-width: 640px) {
  .mk-hero {
    padding: 2.25rem 0 2rem;
  }

  /* Smaller, subtler blobs so they don't crowd the text */
  .mk-blob {
    width: 300px;
    height: 300px;
    filter: blur(70px);
    opacity: 0.2;
  }

  .mk-proof {
    gap: 0.55rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.68rem;
    margin-bottom: 1.1rem;
  }

  .mk-title {
    font-size: 1.45rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .mk-sub {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
  }

  .mk-trust {
    gap: 0.45rem;
    margin-bottom: 1.4rem;
  }

  .mk-trust li {
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.68rem;
  }

  .mk-trust-icon { width: 16px; height: 16px; }
  .mk-trust-icon [data-lucide] { width: 13px; height: 13px; }

  .mk-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
  }

  .mk-actions .btn {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
  }

  .mk-note {
    font-size: 0.68rem;
  }

  .mk-knowmore { margin-bottom: 1.1rem; }

  .mk-knowmore-toggle {
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
  }
}