/* Aligna marketing — 15Five-inspired structure, Aligna indigo/teal identity */

:root {
  --mkt-ink: #0b1220;
  --mkt-muted: #475569;
  --mkt-line: #e6ebf2;
  --mkt-paper: #f7f9fc;
  --mkt-white: #ffffff;
  --mkt-indigo: #4338ca;
  --mkt-indigo-deep: #312e81;
  --mkt-teal: #0f766e;
  --mkt-teal-bright: #14b8a6;
  --mkt-ok: #059669;
  --mkt-warn: #d97706;
  --mkt-radius: 18px;
  --mkt-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --mkt-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mkt-content: 1040px;
  --mkt-narrow: 720px;
}

*,
*::before,
*::after { box-sizing: border-box; }

.mkt-body {
  margin: 0;
  font-family: var(--mkt-font);
  color: var(--mkt-ink);
  background: var(--mkt-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mkt-body.mkt-nav-open { overflow: hidden; }
.mkt-body.mkt-float-visible { padding-bottom: 88px; }

.mkt-body :focus-visible {
  outline: 3px solid rgba(67, 56, 202, 0.5);
  outline-offset: 3px;
}

/* Keep marketing content centered and capped on wide screens */
.mkt-body .container {
  width: 100%;
  max-width: var(--mkt-content) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(16px, 4vw, 28px);
  padding-right: clamp(16px, 4vw, 28px);
}

.mkt-body a { color: var(--mkt-indigo); }
.mkt-body img { max-width: 100%; height: auto; }

/* Explicit centered page shell — avoids left-aligned narrow column */
.mkt-body main,
.mkt-body .mkt-header > .container,
.mkt-body .mkt-footer > .container,
.mkt-body .mkt-float-cta > .container {
  margin-left: auto;
  margin-right: auto;
}

/* ——— Header ——— */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.mkt-header.is-scrolled {
  border-bottom-color: var(--mkt-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
  width: 100%;
  max-width: var(--mkt-content);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.mkt-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--mkt-ink);
}
.mkt-wordmark {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}
.mkt-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mkt-indigo), var(--mkt-teal));
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}
.mkt-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: .35rem 1.25rem;
}
.mkt-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 0 .15rem;
}
.mkt-nav a:hover { color: var(--mkt-indigo); }
.mkt-header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.mkt-login {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
  padding: 0 .35rem;
}
.mkt-login:hover { color: var(--mkt-indigo); }

.mkt-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1.5px solid var(--mkt-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  color: var(--mkt-ink);
}
.mkt-burger:hover { border-color: var(--mkt-indigo); }
.mkt-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.mkt-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mkt-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mkt-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mkt-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15, 23, 42, 0.48);
}
.mkt-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(360px, 100%);
  height: 100%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: -16px 0 40px rgba(15, 23, 42, 0.16);
  padding: .75rem 1.25rem 2rem;
  overflow-y: auto;
}
.mkt-drawer[hidden],
.mkt-drawer-backdrop[hidden] { display: none !important; }
.mkt-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-bottom: .5rem;
}
.mkt-drawer-close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  color: var(--mkt-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mkt-drawer-close:hover { background: var(--mkt-paper); }
.mkt-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mkt-drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  color: var(--mkt-ink);
  font-weight: 700;
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-drawer-nav a:hover { color: var(--mkt-indigo); }
.mkt-drawer-nav .mkt-btn {
  margin-top: 1rem;
  width: 100%;
  border-bottom: 0;
}

/* ——— Buttons ——— */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 48px;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mkt-btn:hover { transform: translateY(-1px); }
.mkt-btn-sm { padding: .7rem 1.15rem; font-size: .9rem; }
.mkt-btn-lg { padding: .85rem 1.55rem; font-size: 1rem; }
.w-100 { width: 100%; }
.mkt-btn-primary {
  background: var(--mkt-indigo-deep);
  border-color: var(--mkt-indigo-deep);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(49, 46, 129, 0.25);
}
.mkt-btn-primary:hover {
  background: var(--mkt-indigo);
  border-color: var(--mkt-indigo);
  color: #fff !important;
}
.mkt-btn-ghost {
  background: #fff;
  border-color: #c7d0dc;
  color: var(--mkt-ink) !important;
}
.mkt-btn-ghost:hover {
  border-color: var(--mkt-indigo);
  color: var(--mkt-indigo) !important;
}
.mkt-btn-on-dark {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff !important;
}
.mkt-btn-on-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ——— Hero ——— */
.mkt-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(20, 184, 166, 0.16), transparent 60%),
    radial-gradient(700px 420px at 80% 20%, rgba(67, 56, 202, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6f8 0%, #f7f9fc 42%, #ffffff 100%);
}
.mkt-hero-inner {
  text-align: center;
  max-width: var(--mkt-narrow);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mkt-brand-signal {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.05em;
  margin: 0 0 .35rem;
  background: linear-gradient(120deg, var(--mkt-indigo-deep), var(--mkt-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: mktFadeUp .7s ease both;
}
.mkt-hero h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 0 auto .9rem;
  max-width: 16em;
  color: var(--mkt-ink);
  animation: mktFadeUp .7s ease .05s both;
}
.mkt-sub {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  font-weight: 500;
  animation: mktFadeUp .7s ease .1s both;
}
.mkt-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  animation: mktFadeUp .7s ease .15s both;
}
.mkt-hero-note {
  margin: 1rem 0 0;
  color: #475569;
  font-size: .9rem;
  animation: mktFadeUp .7s ease .2s both;
}
.mkt-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem .7rem;
  margin-top: 1.35rem;
  animation: mktFadeUp .7s ease .22s both;
}
.mkt-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--mkt-line);
  color: #334155;
  font-size: .85rem;
  font-weight: 600;
}
.mkt-proof strong {
  color: var(--mkt-indigo-deep);
  margin-right: .3rem;
}

.mkt-hero-stage {
  margin-top: 2.75rem;
  padding: 0 0 2.25rem;
  animation: mktFadeUp .8s ease .25s both;
}
.mkt-stage-shell {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 20px 20px 0 0;
  padding: 12px 12px 0;
  box-shadow: var(--mkt-shadow);
  transform: perspective(1200px) rotateX(3deg);
  transform-origin: center top;
}
.mkt-stage-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 12px;
}
.mkt-stage-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64748b;
}
.mkt-stage-chrome span:nth-child(1) { background: #f87171; }
.mkt-stage-chrome span:nth-child(2) { background: #fbbf24; }
.mkt-stage-chrome span:nth-child(3) { background: #34d399; }
.mkt-stage-chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: .75rem;
  color: #94a3b8;
}
.mkt-stage-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
  background: #f1f5f9;
  border-radius: 14px 14px 0 0;
  padding: 12px;
  min-height: 280px;
}
.mkt-widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mkt-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}
.mkt-widget-wide { grid-column: 1 / -1; }
.mkt-widget-grid9 { grid-row: span 1; }
.mkt-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .65rem;
  font-size: .82rem;
  color: #64748b;
}
.mkt-widget-head strong { color: var(--mkt-ink); font-weight: 700; }
.mkt-pill {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
}
.mkt-pill-ok { background: #d1fae5; color: #047857; }
.mkt-bars { display: grid; gap: .45rem; }
.mkt-bars > div { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: .5rem; }
.mkt-bars label { font-size: .75rem; color: #64748b; margin: 0; }
.mkt-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}
.mkt-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mkt-teal), var(--mkt-indigo));
  animation: mktGrow 1.2s ease both;
}
.mkt-score {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mkt-ink);
}
.mkt-score span { font-size: 1rem; color: #94a3b8; font-weight: 600; }
.mkt-spark { width: 100%; height: 40px; margin-top: .5rem; }
.mkt-donut {
  --p: 70;
  width: 64px;
  height: 64px;
  margin-top: .5rem;
  border-radius: 50%;
  background: conic-gradient(var(--mkt-teal) calc(var(--p) * 1%), #e2e8f0 0);
  display: grid;
  place-items: center;
}
.mkt-donut span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}
.mkt-mini-nine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.mkt-mini-nine div {
  aspect-ratio: 1;
  border-radius: 6px;
  background: #e2e8f0;
}
.mkt-mini-nine .lit {
  background: linear-gradient(135deg, var(--mkt-indigo), var(--mkt-teal));
}
.mkt-feed { list-style: none; padding: 0; margin: 0; font-size: .8rem; color: #475569; }
.mkt-feed li { padding: .35rem 0; border-bottom: 1px solid #f1f5f9; }
.mkt-feed b { color: var(--mkt-ink); }

/* ——— Workflow stepper ——— */
.mkt-workflow-section { background: linear-gradient(180deg, #fff 0%, var(--mkt-paper) 100%); }
.mkt-wf-shell {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.mkt-wf-stepper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.mkt-wf-step {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: .5rem .35rem;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  color: inherit;
  min-height: 48px;
  border-radius: 16px;
  transition: background .15s ease, transform .15s ease;
}
.mkt-wf-step:hover { background: var(--mkt-paper); }
.mkt-wf-step.is-active .mkt-wf-ring {
  background: linear-gradient(135deg, var(--mkt-indigo-deep), var(--mkt-teal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(49, 46, 129, 0.28);
}
.mkt-wf-step.is-done .mkt-wf-ring {
  background: #ecfdf5;
  color: var(--mkt-teal);
  border-color: #99f6e4;
}
.mkt-wf-ring {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto .65rem;
  border-radius: 16px;
  border: 2px solid var(--mkt-line);
  background: #fff;
  color: #64748b;
  transition: .2s ease;
}
.mkt-wf-meta {
  display: grid;
  gap: .15rem;
}
.mkt-wf-meta strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--mkt-ink);
  line-height: 1.25;
}
.mkt-wf-meta small {
  display: block;
  font-size: .72rem;
  color: var(--mkt-muted);
  line-height: 1.3;
}
.mkt-wf-step.is-active .mkt-wf-meta strong { color: var(--mkt-indigo-deep); }
.mkt-wf-connector {
  align-self: center;
  width: 100%;
  height: 3px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--mkt-line), #cbd5e1);
  border-radius: 999px;
}
.mkt-wf-progress {
  height: 6px;
  margin: 1.25rem 0 1.5rem;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}
.mkt-wf-progress > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mkt-indigo), var(--mkt-teal));
  transition: width .45s ease;
}
.mkt-wf-preview {
  position: relative;
  min-height: 240px;
}
.mkt-wf-pane {
  animation: mktFadeUp .35s ease both;
}
.mkt-wf-pane[hidden] { display: none !important; }
.mkt-wf-pane header { margin-bottom: 1rem; }
.mkt-wf-pane-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mkt-teal);
  margin-bottom: .45rem;
}
.mkt-wf-pane h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mkt-ink);
}
.mkt-wf-mock {
  background: linear-gradient(160deg, #0f172a, #1e293b);
  color: #e2e8f0;
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
}
.mkt-wf-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
}
.mkt-wf-mock-row:last-of-type { border-bottom: 0; }
.mkt-wf-mock-row b { font-weight: 700; color: #cbd5e1; white-space: nowrap; }
.mkt-wf-mock-row b.ok { color: #34d399; }
.mkt-wf-mock-row b.warn { color: #fbbf24; }
.mkt-wf-meter {
  margin-top: 1rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.mkt-wf-meter > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mkt-teal-bright), #818cf8);
  transition: width .45s ease;
}

/* ——— Trust ——— */
.mkt-trust {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-trust-label {
  text-align: center;
  color: #64748b;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.mkt-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2rem;
  margin-bottom: 2rem;
}
.mkt-trust-row span {
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .02em;
  font-size: .95rem;
}
.mkt-trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  max-width: 880px;
  margin: 0 auto;
}
.mkt-trust-metrics > div {
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
  background: var(--mkt-paper);
  border: 1px solid var(--mkt-line);
}
.mkt-trust-metrics strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mkt-indigo-deep);
}
.mkt-trust-metrics span {
  font-size: .8rem;
  color: var(--mkt-muted);
}

/* ——— Sections ——— */
.mkt-section { padding: clamp(64px, 8vw, 88px) 0; }
.mkt-section-soft { background: var(--mkt-paper); }
.mkt-section-head {
  text-align: center;
  max-width: var(--mkt-narrow);
  margin: 0 auto 2.25rem;
}
.mkt-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 .65rem;
}
.mkt-section-head p { color: var(--mkt-muted); margin: 0; font-size: 1.05rem; }
.mkt-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mkt-teal);
  margin-bottom: .5rem;
}
.mkt-kicker-light { color: #5eead4; }
.mkt-section[id],
.mkt-demo-section[id],
.mkt-hero { scroll-margin-top: 88px; }

/* Form / details resets inside marketing pages */
.mkt-body input,
.mkt-body textarea,
.mkt-body select,
.mkt-body button {
  font-family: inherit;
}
.mkt-body details { margin: 0; }
.mkt-body summary { list-style: none; cursor: pointer; }
.mkt-body summary::-webkit-details-marker { display: none; }
.mkt-body summary::marker { content: ""; }

/* Outcomes */
.mkt-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.mkt-outcome {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1.5rem 1.35rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mkt-outcome:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.mkt-outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(67,56,202,.12), rgba(15,118,110,.12));
  color: var(--mkt-indigo);
  margin-bottom: 1rem;
}
.mkt-outcome-icon svg { display: block; }
.mkt-outcome h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .5rem;
}
.mkt-outcome p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: .92rem;
}

/* Feature tabs */
.mkt-feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.mkt-feature-tabs button {
  border: 1px solid var(--mkt-line);
  background: #fff;
  color: #334155;
  font-family: inherit;
  font-weight: 700;
  font-size: .9rem;
  min-height: 48px;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: .15s ease;
}
.mkt-feature-tabs button.is-active,
.mkt-feature-tabs button:hover {
  background: var(--mkt-indigo-deep);
  border-color: var(--mkt-indigo-deep);
  color: #fff;
}
.mkt-feature-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  max-width: 960px;
  margin: 0 auto;
}
.mkt-feature-panel[hidden] { display: none !important; }
.mkt-feature-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 .75rem;
}
.mkt-feature-copy > p { color: var(--mkt-muted); margin-bottom: 1rem; }
.mkt-icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  color: #1e293b;
}
.mkt-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .55rem;
  min-height: 28px;
}
.mkt-icon-list svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--mkt-teal);
}
.mkt-text-link {
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.mkt-text-link:hover { gap: .55rem; }
.mkt-feature-visual { min-height: 220px; }
.mkt-viz-card {
  background: linear-gradient(160deg, #0f172a, #1e293b);
  color: #e2e8f0;
  border-radius: 18px;
  padding: 1.35rem;
  height: 100%;
  min-height: 240px;
}
.mkt-viz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
}
.mkt-viz-row b { font-weight: 700; color: #cbd5e1; }
.mkt-viz-row b.ok { color: #34d399; }
.mkt-viz-row b.warn { color: #fbbf24; }
.mkt-viz-meter {
  margin-top: 1rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.mkt-viz-meter i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mkt-teal-bright), #818cf8);
  border-radius: inherit;
}
.mkt-goal-tree { display: grid; gap: .65rem; }
.mkt-goal-tree > div {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .9rem;
}
.mkt-goal-tree .lvl1 { margin-left: 1rem; }
.mkt-goal-tree .lvl2 { margin-left: 2rem; }
.mkt-goal-tree .risk { color: #fbbf24; }
.mkt-big-nine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: .75rem;
}
.mkt-big-nine div {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}
.mkt-big-nine .mid { background: rgba(20, 184, 166, .35); }
.mkt-big-nine .hot { background: linear-gradient(135deg, #6366f1, #14b8a6); }
.mkt-viz-nine p { margin: 0; font-size: .8rem; color: #94a3b8; }
.mkt-praise .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #14b8a6;
  margin-bottom: .5rem;
}
.mkt-praise p { font-size: 1rem; line-height: 1.45; margin: 0 0 .75rem; }
.mkt-praise small { color: #94a3b8; }

/* ROI */
.mkt-roi {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  max-width: 920px;
  margin: 0 auto;
}
.mkt-roi-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 .65rem;
}
.mkt-roi-copy > p { color: var(--mkt-muted); }
.mkt-slider-label {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  margin-bottom: .35rem;
  font-weight: 600;
  font-size: .9rem;
}
.mkt-range {
  width: 100%;
  height: 48px;
  accent-color: var(--mkt-indigo);
  cursor: pointer;
}
.mkt-roi-results {
  background: linear-gradient(160deg, #0f172a, #1e293b 60%, #134e4a);
  color: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
  align-content: center;
}
.mkt-roi-results small {
  display: block;
  color: #94a3b8;
  font-size: .8rem;
  margin-bottom: .25rem;
}
.mkt-roi-results strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

/* Pricing */
.mkt-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  font-weight: 700;
  color: #64748b;
}
.mkt-billing-toggle .is-active { color: var(--mkt-ink); }
.mkt-billing-toggle em {
  font-style: normal;
  background: #d1fae5;
  color: #047857;
  font-size: .75rem;
  font-weight: 800;
  padding: .15rem .45rem;
  border-radius: 999px;
  margin-left: .25rem;
}
.mkt-billing-toggle .switch {
  position: relative;
  width: 52px;
  height: 48px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.mkt-billing-toggle .switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.mkt-billing-toggle .slider {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 28px;
  background: #cbd5e1;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: none;
}
.mkt-billing-toggle .slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.mkt-billing-toggle input:checked + .slider { background: var(--mkt-indigo); }
.mkt-billing-toggle input:checked + .slider::before { transform: translateX(20px); }

.mkt-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.mkt-price {
  position: relative;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.mkt-price.is-featured {
  border-color: var(--mkt-indigo);
  box-shadow: 0 18px 40px rgba(67, 56, 202, 0.14);
  transform: translateY(-6px);
}
.mkt-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mkt-indigo-deep);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.mkt-price h3 { font-weight: 800; margin: 0 0 .5rem; }
.mkt-price-amount {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0;
}
.mkt-price-amount small { font-size: .95rem; font-weight: 600; color: #64748b; }
.mkt-price-note { color: var(--mkt-muted); margin-bottom: 1rem; }
.mkt-price ul {
  list-style: none;
  padding: 0;
  color: #334155;
  margin: 0 0 1.5rem;
  flex: 1;
}
.mkt-price li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
  min-height: 28px;
}
.mkt-price li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: .2rem;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2.4'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Security */
.mkt-security {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.mkt-security h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 .65rem;
}
.mkt-security > div > p { color: var(--mkt-muted); }
.mkt-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.mkt-security-grid > div {
  background: var(--mkt-paper);
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  padding: 1.1rem;
}
.mkt-security-grid svg {
  display: block;
  width: 36px;
  height: 36px;
  padding: 8px;
  box-sizing: content-box;
  border-radius: 10px;
  background: #fff;
  color: var(--mkt-teal);
  margin-bottom: .55rem;
  border: 1px solid var(--mkt-line);
}
.mkt-security-grid strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.mkt-security-grid span { color: var(--mkt-muted); font-size: .85rem; }

/* Stories */
.mkt-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  max-width: 960px;
  margin: 0 auto;
}
.mkt-story {
  margin: 0;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.mkt-story p {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.45;
  margin: 0 0 1.25rem;
  color: var(--mkt-ink);
}
.mkt-story footer { display: grid; gap: .1rem; }
.mkt-story strong { font-size: .9rem; }
.mkt-story span { color: var(--mkt-muted); font-size: .82rem; }

/* FAQ */
.mkt-faq-section {
  background: var(--mkt-paper);
}
.mkt-faq-shell {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 22px;
  padding: .5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.mkt-faq-item {
  border: 0;
  border-bottom: 1px solid var(--mkt-line);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.mkt-faq-item:last-child { border-bottom: 0; }
.mkt-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  min-height: 56px;
  padding: 1rem 1.1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--mkt-ink);
  transition: background .15s ease, color .15s ease;
}
.mkt-faq-item summary:hover { background: #f8fafc; }
.mkt-faq-item[open] summary {
  background: linear-gradient(90deg, rgba(67,56,202,.06), rgba(20,184,166,.04));
  color: var(--mkt-indigo-deep);
}
.mkt-faq-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(67,56,202,.1), rgba(15,118,110,.1));
  color: var(--mkt-indigo);
  flex-shrink: 0;
}
.mkt-faq-q { text-align: left; line-height: 1.35; }
.mkt-faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1.5px solid #cbd5e1;
  flex-shrink: 0;
  transition: transform .2s ease, background .15s ease, border-color .15s ease;
}
.mkt-faq-toggle::before,
.mkt-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #64748b;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.mkt-faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.mkt-faq-item[open] .mkt-faq-toggle {
  background: var(--mkt-indigo-deep);
  border-color: var(--mkt-indigo-deep);
  transform: rotate(180deg);
}
.mkt-faq-item[open] .mkt-faq-toggle::before,
.mkt-faq-item[open] .mkt-faq-toggle::after { background: #fff; }
.mkt-faq-item[open] .mkt-faq-toggle::after { opacity: 0; }
.mkt-faq-answer {
  padding: 0 1.1rem 1.15rem 4.75rem;
  color: var(--mkt-muted);
  font-size: .95rem;
  line-height: 1.65;
  animation: mktFadeUp .25s ease both;
}
.mkt-faq-answer p { margin: 0; }

/* Demo CTA section */
.mkt-demo-section {
  position: relative;
  padding: clamp(72px, 9vw, 100px) 0;
  color: #fff;
  overflow: hidden;
}
.mkt-demo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 15% 0%, rgba(20,184,166,.28), transparent 60%),
    radial-gradient(600px 320px at 85% 100%, rgba(67,56,202,.22), transparent 55%),
    linear-gradient(135deg, #0b1220 0%, #1e293b 52%, #134e4a 100%);
  z-index: 0;
}
.mkt-demo-section > .container {
  position: relative;
  z-index: 1;
}
.mkt-demo-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.mkt-demo-copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 .85rem;
  color: #fff;
  line-height: 1.15;
}
.mkt-demo-copy > p {
  color: #e2e8f0;
  font-size: 1.08rem;
  margin: 0 0 1.35rem;
  line-height: 1.6;
}
.mkt-demo-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
}
.mkt-demo-points li {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  color: #f1f5f9;
  font-weight: 600;
  font-size: .98rem;
}
.mkt-demo-points svg { color: #5eead4; flex-shrink: 0; }
.mkt-demo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.mkt-demo-stats > div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: .85rem .75rem;
  text-align: center;
}
.mkt-demo-stats strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .15rem;
}
.mkt-demo-stats span {
  font-size: .72rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.mkt-demo-form-wrap { width: 100%; }
.mkt-demo-card {
  background: #fff;
  color: var(--mkt-ink);
  border-radius: 22px;
  padding: 0 0 1.5rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
}
.mkt-demo-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.45rem 1.15rem;
  background: linear-gradient(135deg, rgba(67,56,202,.08), rgba(20,184,166,.06));
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-demo-card-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mkt-indigo-deep), var(--mkt-teal));
  color: #fff;
  flex-shrink: 0;
}
.mkt-demo-card-head h3 {
  margin: 0 0 .2rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mkt-ink);
}
.mkt-demo-card-head p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: .88rem;
}
.mkt-demo-fields {
  padding: 1.25rem 1.45rem .25rem;
}
.mkt-demo-card > .mkt-alert {
  margin-left: 1.45rem;
  margin-right: 1.45rem;
}
.mkt-demo-submit {
  width: 100%;
  margin-top: .35rem;
  margin-bottom: .25rem;
  box-sizing: border-box;
}
.mkt-demo-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: 1rem 1.45rem 0;
  font-size: .82rem;
  color: #64748b;
  text-align: center;
}
.mkt-input-wrap {
  position: relative;
  display: block;
}
.mkt-input-wrap svg {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}
.mkt-field-icon .mkt-input-wrap input {
  padding-left: 2.65rem;
}

/* Math CAPTCHA on marketing forms */
.aligna-captcha--marketing {
  background: #f8fafc;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
}
.aligna-captcha--marketing > span {
  display: block;
  margin-bottom: .45rem;
}
.aligna-captcha--marketing .aligna-captcha-input {
  width: 100%;
  max-width: 140px;
  min-height: 48px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: .7rem .9rem;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  color: var(--mkt-ink);
  background: #fff;
  box-sizing: border-box;
}
.aligna-captcha--marketing .aligna-captcha-input:focus {
  outline: none;
  border-color: var(--mkt-indigo);
  box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.18);
}

.mkt-field {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
  text-align: left;
}
.mkt-field span {
  font-weight: 700;
  font-size: .85rem;
  color: #1e293b;
}
.mkt-field input,
.mkt-field textarea,
.mkt-field select,
.mkt-form-control {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: .7rem .9rem;
  font: inherit;
  color: var(--mkt-ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.mkt-field textarea { min-height: 96px; resize: vertical; }
.mkt-field input:hover,
.mkt-field textarea:hover,
.mkt-field select:hover,
.mkt-form-control:hover { border-color: #94a3b8; }
.mkt-field input:focus,
.mkt-field textarea:focus,
.mkt-field select:focus,
.mkt-form-control:focus {
  outline: none;
  border-color: var(--mkt-indigo);
  box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.18);
}
.mkt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.mkt-alert {
  border-radius: 12px;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font-size: .92rem;
  font-weight: 600;
}
.mkt-alert-ok { background: #d1fae5; color: #065f46; }
.mkt-alert-err { background: #fee2e2; color: #991b1b; }

/* Footer */
.mkt-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 64px 0 28px;
}
.mkt-footer .mkt-logo { color: #fff; margin-bottom: 1rem; }
.mkt-footer-brand p {
  max-width: 320px;
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}
.mkt-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mkt-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mkt-footer h6 {
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.mkt-footer-cols a,
.mkt-footer-linkbtn,
.mkt-footer-cols span {
  display: flex;
  align-items: center;
  color: #cbd5e1;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  min-height: 40px;
  margin-bottom: .15rem;
  font-size: .92rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.mkt-footer-cols a:hover,
.mkt-footer-linkbtn:hover { color: #fff; }
.mkt-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.25rem;
  font-size: .82rem;
}

/* Float CTA */
.mkt-float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: .85rem 0;
  transform: translateY(110%);
  transition: transform .28s ease;
}
.mkt-float-cta.is-visible { transform: translateY(0); }
.mkt-float-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mkt-float-inner p { margin: 0; font-weight: 600; color: #f8fafc; }

.mkt-signup-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: .9rem;
  color: var(--mkt-muted);
}

@keyframes mktFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mktGrow {
  from { width: 0; }
}

@media (max-width: 991px) {
  .mkt-hero { padding-top: 36px; }
  .mkt-hero h1 { max-width: none; }
  .mkt-stage-shell { transform: none; border-radius: 18px; padding-bottom: 14px; }
  .mkt-stage-body {
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
  }
  .mkt-widget-wide { grid-column: 1 / -1; }
  .mkt-trust-metrics,
  .mkt-outcome-grid,
  .mkt-price-grid,
  .mkt-story-grid { grid-template-columns: 1fr 1fr; }
  .mkt-feature-panel,
  .mkt-roi,
  .mkt-security,
  .mkt-footer-top,
  .mkt-demo-layout { grid-template-columns: 1fr; }
  .mkt-wf-stepper {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
  .mkt-wf-connector { display: none; }
  .mkt-wf-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .85rem;
    align-items: center;
    text-align: left;
    padding: .75rem .85rem;
    border: 1px solid var(--mkt-line);
    border-radius: 14px;
  }
  .mkt-wf-ring { margin: 0; width: 46px; height: 46px; }
  .mkt-faq-answer { padding-left: 1.1rem; }
  .mkt-price.is-featured { transform: none; }
}

@media (max-width: 767.98px) {
  .mkt-nav,
  .mkt-header-actions .mkt-login,
  .mkt-header-actions > .mkt-btn { display: none; }
  .mkt-burger { display: inline-flex; }
  .mkt-header-inner { min-height: 64px; }
  .mkt-hero-ctas .mkt-btn { width: 100%; }
}

@media (max-width: 575px) {
  .mkt-stage-body,
  .mkt-trust-metrics,
  .mkt-outcome-grid,
  .mkt-price-grid,
  .mkt-story-grid,
  .mkt-security-grid,
  .mkt-footer-cols,
  .mkt-field-row { grid-template-columns: 1fr; }
  .mkt-float-inner { flex-direction: column; text-align: center; }
  .mkt-footer-cols a,
  .mkt-footer-linkbtn { min-height: 48px; }
  .mkt-demo-stats { grid-template-columns: 1fr; }
}
