/* HeroAgent marketing — brand blues from logo */
:root {
  --brand-blue: #0088e8;
  --brand-sky: #00a3ff;
  --brand-cyan: #3dd6ff;
  --brand-indigo: #1a2b6b;
  --brand-navy: #0c1a3a;
  --brand-soft: #e8f6ff;
  --brand-mist: #f4f9fc;
  --text: #12203a;
  --muted: #5a6b85;
  --border: rgba(18, 48, 90, 0.1);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow: 0 12px 40px rgba(12, 40, 100, 0.1);
  --shadow-sm: 0 4px 16px rgba(12, 40, 100, 0.06);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mkt {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.mkt-container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Nav */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
}

.mkt-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.mkt-brand:hover {
  text-decoration: none;
  color: var(--brand-indigo);
}

.mkt-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 163, 255, 0.35);
}

.mkt-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
}

.mkt-brand__name {
  font-weight: 700;
}

.mkt-brand__tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  max-width: 14rem;
}

.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mkt-nav__links a:not(.mkt-btn) {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.mkt-nav__links a:not(.mkt-btn):hover {
  color: var(--brand-blue);
}

/* Buttons */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mkt-btn:active {
  transform: translateY(1px);
}

.mkt-btn--primary {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue) 55%, #0066cc);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 136, 232, 0.35);
}

.mkt-btn--primary:hover {
  box-shadow: 0 10px 28px rgba(0, 136, 232, 0.45);
}

.mkt-btn--ghost {
  background: #fff;
  color: var(--brand-indigo) !important;
  border-color: rgba(0, 136, 232, 0.35);
}

.mkt-btn--ghost:hover {
  background: var(--brand-soft);
}

.mkt-btn--lg {
  padding: 0.9rem 1.55rem;
  font-size: 1.02rem;
}

.mkt-btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
}

/* Hero */
.mkt-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(0, 163, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(61, 214, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--brand-mist) 0%, #fff 70%);
}

.mkt-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.mkt-eyebrow,
.mkt-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.1);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.mkt-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}

.mkt-hero h1 span {
  background: linear-gradient(120deg, var(--brand-sky), var(--brand-indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34rem;
}

.mkt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mkt-hero__meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.mkt-hero__meta a {
  font-weight: 600;
}

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

.mkt-hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.35), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.mkt-hero__logo {
  position: relative;
  z-index: 1;
  width: min(340px, 100%);
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(0, 100, 200, 0.25));
}

/* Sections */
.mkt-section {
  padding: 4.5rem 0;
}

.mkt-section--soft {
  background: var(--brand-mist);
}

.mkt-section__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.mkt-section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.025em;
  color: var(--brand-navy);
}

.mkt-section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Value cards */
.mkt-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.mkt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mkt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mkt-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand-soft), #d6efff);
  color: var(--brand-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.mkt-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--brand-navy);
}

.mkt-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Branches */
.mkt-branches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.mkt-branch {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

a.mkt-branch {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.mkt-branch:hover {
  border-color: color-mix(in srgb, var(--brand-sky) 45%, var(--border));
  box-shadow: var(--shadow-md, 0 8px 24px rgba(15, 23, 42, 0.08));
  transform: translateY(-1px);
}

.mkt-branch__mark {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-sky), var(--brand-indigo));
  margin-top: 0.1rem;
}

.mkt-branch__mark svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.mkt-branch__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.mkt-branch__label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-navy);
  line-height: 1.25;
}

.mkt-branch__sub {
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 400;
}

.mkt-branch__cta {
  font-size: 0.68rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 0.05rem;
}

/* Steps */
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.mkt-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mkt-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.mkt-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  color: var(--brand-navy);
}

.mkt-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Widget types */
.mkt-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.mkt-widget {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mkt-widget__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.mkt-widget h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--brand-navy);
}

.mkt-widget p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.mkt-widget__preview {
  margin-top: 0.5rem;
  height: 88px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #eef7ff, #dcefff 40%, #c8e6ff);
  border: 1px solid rgba(0, 136, 232, 0.15);
  position: relative;
  overflow: hidden;
}

.mkt-widget__preview--chat,
.mkt-widget__preview--steps,
.mkt-widget__preview--hero {
  height: 182px;
}

.mkt-widget__preview--chat {
  height: 210px;
  padding: 0.45rem 0.45rem 0.38rem;
}

.mkt-chat-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.28rem;
}

.mkt-chat-preview__log {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.22rem;
  overflow: hidden;
  padding: 0.05rem 0.1rem 0;
}

.mkt-chat-preview__bubble {
  max-width: 90%;
  max-height: 0;
  overflow: hidden;
  padding: 0 0.46rem;
  border-radius: 10px;
  font-size: 0.62rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 4px rgba(12, 40, 100, 0.08);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  flex-shrink: 0;
}

.mkt-chat-preview__bubble--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.92);
  color: #1a2b3c;
  border-bottom-left-radius: 3px;
}

.mkt-chat-preview__bubble--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: #fff;
  border-bottom-right-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 136, 232, 0.28);
}

.mkt-chat-preview__bubble--1 {
  animation: mkt-chat-bubble-1 16s ease-in-out infinite;
}

.mkt-chat-preview__bubble--2 {
  animation: mkt-chat-bubble-2 16s ease-in-out infinite;
}

.mkt-chat-preview__bubble--3 {
  animation: mkt-chat-bubble-3 16s ease-in-out infinite;
}

.mkt-chat-preview__bubble--4 {
  animation: mkt-chat-bubble-4 16s ease-in-out infinite;
}

.mkt-chat-preview__bubble--5 {
  animation: mkt-chat-bubble-5 16s ease-in-out infinite;
}

.mkt-chat-preview__bubble--6 {
  animation: mkt-chat-bubble-6 16s ease-in-out infinite;
}

.mkt-chat-preview__typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  max-height: 0;
  overflow: hidden;
  padding: 0 0.42rem;
  border-radius: 10px;
  border-bottom-left-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 4px rgba(12, 40, 100, 0.08);
  opacity: 0;
  transform: scale(0.92);
  flex-shrink: 0;
}

.mkt-chat-preview__typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8a9bb0;
  animation: mkt-chat-dot 0.9s ease-in-out infinite;
}

.mkt-chat-preview__typing span:nth-child(2) { animation-delay: 0.12s; }
.mkt-chat-preview__typing span:nth-child(3) { animation-delay: 0.24s; }

.mkt-chat-preview__typing--1 {
  animation: mkt-chat-typing-1 16s ease-in-out infinite;
}

.mkt-chat-preview__typing--2 {
  animation: mkt-chat-typing-2 16s ease-in-out infinite;
}

.mkt-chat-preview__typing--3 {
  animation: mkt-chat-typing-3 16s ease-in-out infinite;
}

.mkt-chat-preview__typing--4 {
  animation: mkt-chat-typing-4 16s ease-in-out infinite;
}

.mkt-chat-preview__composer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.24rem 0.24rem 0.24rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 136, 232, 0.18);
  box-shadow: 0 2px 8px rgba(12, 40, 100, 0.06);
}

.mkt-chat-preview__input {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  font-size: 0.62rem;
  color: #8a9bb0;
  min-height: 1em;
}

.mkt-chat-preview__typed::after {
  content: "Typ je bericht…";
  opacity: 0.45;
}

.mkt-chat-preview__caret {
  width: 1px;
  height: 0.75em;
  margin-left: 1px;
  background: var(--brand-blue);
  animation: mkt-chat-caret 1s step-end infinite;
}

.mkt-chat-preview__send {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: default;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  box-shadow: 0 3px 10px rgba(0, 136, 232, 0.38);
  animation: mkt-chat-send-pulse 16s ease-in-out infinite;
}

.mkt-chat-preview__send svg {
  display: block;
  margin-left: 1px;
}

@keyframes mkt-chat-bubble-1 {
  0%, 3% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(6px) scale(0.98); }
  6%, 94% { opacity: 1; max-height: 3rem; padding-block: 0.3rem; transform: translateY(0) scale(1); }
  98%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px) scale(0.98); }
}

@keyframes mkt-chat-bubble-2 {
  0%, 12% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(6px) scale(0.98); }
  15%, 94% { opacity: 1; max-height: 3rem; padding-block: 0.3rem; transform: translateY(0) scale(1); }
  98%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px) scale(0.98); }
}

@keyframes mkt-chat-bubble-3 {
  0%, 24% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(6px) scale(0.98); }
  27%, 94% { opacity: 1; max-height: 3rem; padding-block: 0.3rem; transform: translateY(0) scale(1); }
  98%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px) scale(0.98); }
}

@keyframes mkt-chat-bubble-4 {
  0%, 36% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(6px) scale(0.98); }
  39%, 94% { opacity: 1; max-height: 3.5rem; padding-block: 0.3rem; transform: translateY(0) scale(1); }
  98%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px) scale(0.98); }
}

@keyframes mkt-chat-bubble-5 {
  0%, 52% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(6px) scale(0.98); }
  55%, 94% { opacity: 1; max-height: 4.5rem; padding-block: 0.3rem; transform: translateY(0) scale(1); }
  98%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px) scale(0.98); }
}

@keyframes mkt-chat-bubble-6 {
  0%, 72% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(6px) scale(0.98); }
  75%, 94% { opacity: 1; max-height: 3rem; padding-block: 0.3rem; transform: translateY(0) scale(1); }
  98%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px) scale(0.98); }
}

@keyframes mkt-chat-typing-1 {
  0%, 7% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  9%, 13% { opacity: 1; max-height: 1.4rem; padding-block: 0.28rem; transform: scale(1); }
  15%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-chat-typing-2 {
  0%, 19% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  21%, 25% { opacity: 1; max-height: 1.4rem; padding-block: 0.28rem; transform: scale(1); }
  27%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-chat-typing-3 {
  0%, 43% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  45%, 49% { opacity: 1; max-height: 1.4rem; padding-block: 0.28rem; transform: scale(1); }
  51%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-chat-typing-4 {
  0%, 63% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  65%, 69% { opacity: 1; max-height: 1.4rem; padding-block: 0.28rem; transform: scale(1); }
  71%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-chat-dot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes mkt-chat-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes mkt-chat-send-pulse {
  0%, 78% { transform: scale(1); }
  81% { transform: scale(1.08); }
  84%, 100% { transform: scale(1); }
}

.mkt-widget__preview--steps {
  padding: 0.45rem;
}

.mkt-steps-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.45rem;
}

.mkt-steps-preview__screen {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.72rem 0.65rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 136, 232, 0.14);
  box-shadow: 0 2px 8px rgba(12, 40, 100, 0.05);
  overflow: hidden;
}

.mkt-steps-preview__step-label {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.42rem;
  flex-shrink: 0;
}

.mkt-steps-preview__step-icons {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mkt-steps-preview__step-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(3px) scale(0.92);
  color: var(--brand-blue);
}

.mkt-steps-preview__step-icon svg {
  display: block;
}

.mkt-steps-preview__step-icon--1 {
  animation: mkt-steps-num-1 8s ease-in-out infinite;
}

.mkt-steps-preview__step-icon--2 {
  animation: mkt-steps-num-2 8s ease-in-out infinite;
}

.mkt-steps-preview__step-icon--3 {
  animation: mkt-steps-num-3 8s ease-in-out infinite;
}

.mkt-steps-preview__step-nums {
  position: relative;
  width: 0.55rem;
  height: 1em;
}

.mkt-steps-preview__step-n {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(4px);
}

.mkt-steps-preview__step-n--1 {
  animation: mkt-steps-num-1 8s ease-in-out infinite;
}

.mkt-steps-preview__step-n--2 {
  animation: mkt-steps-num-2 8s ease-in-out infinite;
}

.mkt-steps-preview__step-n--3 {
  animation: mkt-steps-num-3 8s ease-in-out infinite;
}

.mkt-steps-preview__stack {
  position: relative;
  flex: 1;
  min-height: 0;
}

.mkt-steps-preview__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  opacity: 0;
  transform: translateY(5px);
  padding-top: 0.08rem;
}

.mkt-steps-preview__step--1 {
  animation: mkt-steps-panel-1 8s ease-in-out infinite;
}

.mkt-steps-preview__step--2 {
  animation: mkt-steps-panel-2 8s ease-in-out infinite;
}

.mkt-steps-preview__step--3 {
  animation: mkt-steps-panel-3 8s ease-in-out infinite;
}

.mkt-steps-preview__question {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.32rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1a2b3c;
}

.mkt-steps-preview__q-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 0.02rem;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(0, 136, 232, 0.12), rgba(61, 168, 138, 0.14));
  color: var(--brand-blue);
  box-shadow: inset 0 0 0 1px rgba(0, 136, 232, 0.12);
}

.mkt-steps-preview__q-icon svg {
  display: block;
}

.mkt-steps-preview__input {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  width: 100%;
  padding: 0.34rem 0.48rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 136, 232, 0.22);
  background: #fff;
  font-size: 0.64rem;
  line-height: 1.3;
  color: #5a6b85;
  box-shadow: inset 0 1px 2px rgba(12, 40, 100, 0.04);
}

.mkt-steps-preview__input-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  opacity: 0.72;
}

.mkt-steps-preview__input-icon svg {
  display: block;
}

.mkt-steps-preview__bars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.mkt-steps-preview__bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 136, 232, 0.2);
  transform-origin: left center;
}

.mkt-steps-preview__bar:nth-child(1) {
  animation: mkt-steps-bar-1 8s ease-in-out infinite;
}

.mkt-steps-preview__bar:nth-child(2) {
  animation: mkt-steps-bar-2 8s ease-in-out infinite;
}

.mkt-steps-preview__bar:nth-child(3) {
  animation: mkt-steps-bar-3 8s ease-in-out infinite;
}

@keyframes mkt-steps-num-1 {
  0%, 6% { opacity: 0; transform: translateY(4px); }
  10%, 30% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes mkt-steps-num-2 {
  0%, 32% { opacity: 0; transform: translateY(4px); }
  36%, 56% { opacity: 1; transform: translateY(0); }
  60%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes mkt-steps-num-3 {
  0%, 58% { opacity: 0; transform: translateY(4px); }
  62%, 82% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes mkt-steps-panel-1 {
  0%, 6% { opacity: 0; transform: translateY(5px); }
  10%, 30% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes mkt-steps-panel-2 {
  0%, 32% { opacity: 0; transform: translateY(5px); }
  36%, 56% { opacity: 1; transform: translateY(0); }
  60%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes mkt-steps-panel-3 {
  0%, 58% { opacity: 0; transform: translateY(5px); }
  62%, 82% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes mkt-steps-bar-1 {
  0%, 6% {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 136, 232, 0.2);
    box-shadow: none;
    transform: scaleX(0.72);
  }
  10%, 84% {
    background: linear-gradient(90deg, var(--brand-sky), var(--brand-blue));
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0, 136, 232, 0.35);
    transform: scaleX(1);
  }
  90%, 100% {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 136, 232, 0.2);
    box-shadow: none;
    transform: scaleX(0.72);
  }
}

@keyframes mkt-steps-bar-2 {
  0%, 32% {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 136, 232, 0.2);
    box-shadow: none;
    transform: scaleX(0.72);
  }
  36%, 84% {
    background: linear-gradient(90deg, var(--brand-sky), var(--brand-blue));
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0, 136, 232, 0.35);
    transform: scaleX(1);
  }
  90%, 100% {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 136, 232, 0.2);
    box-shadow: none;
    transform: scaleX(0.72);
  }
}

@keyframes mkt-steps-bar-3 {
  0%, 58% {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 136, 232, 0.2);
    box-shadow: none;
    transform: scaleX(0.72);
  }
  62%, 84% {
    background: linear-gradient(90deg, var(--brand-sky), var(--brand-blue));
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0, 136, 232, 0.35);
    transform: scaleX(1);
  }
  90%, 100% {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 136, 232, 0.2);
    box-shadow: none;
    transform: scaleX(0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-chat-preview__bubble,
  .mkt-chat-preview__typing,
  .mkt-chat-preview__send {
    animation: none;
  }

  .mkt-chat-preview__bubble--1,
  .mkt-chat-preview__bubble--2,
  .mkt-chat-preview__bubble--3,
  .mkt-chat-preview__bubble--4,
  .mkt-chat-preview__bubble--5,
  .mkt-chat-preview__bubble--6 {
    opacity: 1;
    max-height: 4.5rem;
    padding-block: 0.3rem;
    transform: none;
  }
  .mkt-steps-preview__bar,
  .mkt-steps-preview__step,
  .mkt-steps-preview__step-n,
  .mkt-steps-preview__step-icon {
    animation: none;
    transform: none;
  }

  .mkt-steps-preview__step-icon--1 {
    opacity: 1;
  }

  .mkt-steps-preview__bar:nth-child(1) {
    background: linear-gradient(90deg, var(--brand-sky), var(--brand-blue));
    border-color: var(--brand-blue);
  }

  .mkt-steps-preview__step--1,
  .mkt-steps-preview__step-n--1 {
    opacity: 1;
  }
}

.mkt-widget__preview--hero {
  height: 210px;
  padding: 0;
  background: linear-gradient(160deg, #eef7ff, #dcefff 40%, #c8e6ff);
}

.mkt-hero-preview {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.mkt-hero-preview__bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.12rem;
  padding: 0.85rem 0.5rem 0.5rem;
  background:
    radial-gradient(ellipse 90% 70% at 50% 10%, rgba(61, 168, 138, 0.35), transparent 55%),
    linear-gradient(165deg, #0c1a3a 0%, #1a2b6b 42%, #0088e8 100%);
  color: #fff;
  overflow: hidden;
}

.mkt-hero-preview__eyebrow {
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.mkt-hero-preview__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-hero-preview__shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 58%
  );
  animation: mkt-hero-shine 14s ease-in-out infinite;
  pointer-events: none;
}

.mkt-hero-preview__panel {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-height: 78%;
  padding: 0.34rem 0.34rem 0.3rem;
  border-radius: 10px 10px 0 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(61, 168, 138, 0.22), transparent 55%),
    linear-gradient(165deg, #163024 0%, #1f3d28 55%, #244a32 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  box-shadow: 0 -8px 24px rgba(12, 26, 58, 0.28);
  transform: translateY(100%);
  animation: mkt-hero-swipe 14s cubic-bezier(0.34, 1.05, 0.48, 1) infinite;
}

.mkt-hero-preview__log {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.18rem;
  overflow: hidden;
  margin-bottom: 0.24rem;
}

.mkt-hero-preview__bubble {
  max-width: 88%;
  max-height: 0;
  overflow: hidden;
  padding: 0 0.36rem;
  border-radius: 8px;
  font-size: 0.54rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.mkt-hero-preview__bubble--bot {
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(244, 247, 245, 0.95);
}

.mkt-hero-preview__bubble--user {
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  background: linear-gradient(135deg, rgba(0, 136, 232, 0.85), rgba(61, 168, 138, 0.75));
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.mkt-hero-preview__bubble--1 {
  animation: mkt-hero-bubble-1 14s ease-in-out infinite;
}

.mkt-hero-preview__bubble--2 {
  animation: mkt-hero-bubble-2 14s ease-in-out infinite;
}

.mkt-hero-preview__bubble--3 {
  animation: mkt-hero-bubble-3 14s ease-in-out infinite;
}

.mkt-hero-preview__bubble--4 {
  animation: mkt-hero-bubble-4 14s ease-in-out infinite;
}

.mkt-hero-preview__bubble--5 {
  animation: mkt-hero-bubble-5 14s ease-in-out infinite;
}

.mkt-hero-preview__typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  padding: 0 0.32rem;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scale(0.92);
  flex-shrink: 0;
}

.mkt-hero-preview__typing span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(244, 247, 245, 0.55);
  animation: mkt-hero-dot 0.9s ease-in-out infinite;
}

.mkt-hero-preview__typing span:nth-child(2) { animation-delay: 0.12s; }
.mkt-hero-preview__typing span:nth-child(3) { animation-delay: 0.24s; }

.mkt-hero-preview__typing--1 {
  animation: mkt-hero-typing-1 14s ease-in-out infinite;
}

.mkt-hero-preview__typing--2 {
  animation: mkt-hero-typing-2 14s ease-in-out infinite;
}

.mkt-hero-preview__typing--3 {
  animation: mkt-hero-typing-3 14s ease-in-out infinite;
}

.mkt-hero-preview__composer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0.16rem 0.16rem 0.16rem 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.5rem;
  color: rgba(244, 247, 245, 0.55);
}

.mkt-hero-preview__send {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 136, 232, 0.35);
}

.mkt-hero-preview__send svg {
  display: block;
  margin-left: 0.5px;
}

@keyframes mkt-hero-swipe {
  0%, 14% {
    transform: translateY(100%);
    opacity: 0.35;
  }
  20%, 82% {
    transform: translateY(0);
    opacity: 1;
  }
  88%, 100% {
    transform: translateY(100%);
    opacity: 0.35;
  }
}

@keyframes mkt-hero-shine {
  0%, 18% {
    transform: translateX(-28%) translateY(0);
    opacity: 0;
  }
  28%, 52% {
    transform: translateX(28%) translateY(0);
    opacity: 1;
  }
  62%, 100% {
    transform: translateX(55%) translateY(0);
    opacity: 0;
  }
}

@keyframes mkt-hero-bubble-1 {
  0%, 20% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px); }
  23%, 90% { opacity: 1; max-height: 2.5rem; padding-block: 0.24rem; transform: translateY(0); }
  94%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(2px); }
}

@keyframes mkt-hero-bubble-2 {
  0%, 32% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px); }
  35%, 90% { opacity: 1; max-height: 2.5rem; padding-block: 0.24rem; transform: translateY(0); }
  94%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(2px); }
}

@keyframes mkt-hero-bubble-3 {
  0%, 46% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px); }
  49%, 90% { opacity: 1; max-height: 2.5rem; padding-block: 0.24rem; transform: translateY(0); }
  94%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(2px); }
}

@keyframes mkt-hero-bubble-4 {
  0%, 58% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px); }
  61%, 90% { opacity: 1; max-height: 2rem; padding-block: 0.24rem; transform: translateY(0); }
  94%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(2px); }
}

@keyframes mkt-hero-bubble-5 {
  0%, 72% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(4px); }
  75%, 90% { opacity: 1; max-height: 2.5rem; padding-block: 0.24rem; transform: translateY(0); }
  94%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: translateY(2px); }
}

@keyframes mkt-hero-typing-1 {
  0%, 26% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  28%, 32% { opacity: 1; max-height: 1.1rem; padding-block: 0.2rem; transform: scale(1); }
  34%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-hero-typing-2 {
  0%, 40% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  42%, 46% { opacity: 1; max-height: 1.1rem; padding-block: 0.2rem; transform: scale(1); }
  48%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-hero-typing-3 {
  0%, 66% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
  68%, 72% { opacity: 1; max-height: 1.1rem; padding-block: 0.2rem; transform: scale(1); }
  74%, 100% { opacity: 0; max-height: 0; padding-block: 0; transform: scale(0.92); }
}

@keyframes mkt-hero-dot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-hero-preview__panel,
  .mkt-hero-preview__shine,
  .mkt-hero-preview__bubble,
  .mkt-hero-preview__typing {
    animation: none;
  }

  .mkt-hero-preview__panel {
    transform: translateY(0);
    opacity: 1;
  }

  .mkt-hero-preview__bubble--1,
  .mkt-hero-preview__bubble--2,
  .mkt-hero-preview__bubble--3,
  .mkt-hero-preview__bubble--4,
  .mkt-hero-preview__bubble--5 {
    opacity: 1;
    max-height: 2.5rem;
    padding-block: 0.24rem;
    transform: none;
  }
}

/* Trust */
.mkt-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  text-align: center;
}

.mkt-trust__item {
  padding: 0.85rem 1.25rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.mkt-trust__item strong {
  color: var(--brand-navy);
}

/* Final CTA */
.mkt-cta {
  padding: 4rem 0 4.5rem;
}

.mkt-cta__box {
  text-align: center;
  padding: 3rem 1.75rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background:
    radial-gradient(ellipse at 70% 20%, rgba(61, 214, 255, 0.25), transparent 50%),
    linear-gradient(135deg, var(--brand-navy), #153a8a 50%, var(--brand-blue));
  color: #fff;
  box-shadow: var(--shadow);
}

.mkt-cta__box h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.mkt-cta__box p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  opacity: 0.9;
}

.mkt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.mkt-cta .mkt-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.mkt-cta .mkt-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.mkt-cta .mkt-btn--primary {
  background: #fff;
  color: var(--brand-indigo) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.mkt-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mkt-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mkt-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.mkt-footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.mkt-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.mkt-footer__name {
  font-weight: 600;
}

.mkt-footer__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.mkt-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.mkt-footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.mkt-footer__links a:hover {
  color: var(--brand-blue);
}

.mkt-footer__copy {
  width: 100%;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #8a97ad;
}

/* Responsive */
@media (max-width: 960px) {
  .mkt-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mkt-hero__lead {
    margin-inline: auto;
  }

  .mkt-hero__cta {
    justify-content: center;
  }

  .mkt-hero__visual {
    order: -1;
  }

  .mkt-hero__logo {
    width: min(240px, 70vw);
  }

  .mkt-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .mkt-branches {
    grid-template-columns: repeat(2, 1fr);
  }

  .mkt-branch {
    padding: 0.75rem 0.85rem;
    gap: 0.6rem;
  }

  .mkt-branch__label {
    font-size: 0.88rem;
  }

  .mkt-steps,
  .mkt-widgets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mkt-container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .mkt-brand__tagline {
    display: none;
  }

  .mkt-nav__links a:not(.mkt-btn):not(.mkt-nav__login) {
    display: none;
  }

  .mkt-cards,
  .mkt-branches {
    grid-template-columns: 1fr;
  }

  .mkt-branch {
    align-items: flex-start;
    padding: 0.8rem 0.9rem;
  }

  .mkt-branch__mark {
    margin-top: 0.05rem;
  }

  .mkt-section {
    padding: 3.25rem 0;
  }
}
