/* ==========================================================================
   Arbeitsschutzkurse — Marketing Design System
   Prefix: as-mkt-  ·  Wrapper: body.as-marketing / .as-mkt
   Applies globally to header/footer when body has class: as-mkt-site
   ========================================================================== */

:root {
  --mk-red: #B12227;
  --mk-red-hover: #99191E;
  --mk-black: #111111;
  --mk-text: #111111;
  --mk-muted: #5A5A5A;
  --mk-tertiary: #8A8A8A;
  --mk-bg: #FAFAFA;
  --mk-bg2: #F5F5F5;
  --mk-border: #ECECEC;
  --mk-green: #0F7B4F;
  --mk-green-bg: #E7F3EC;
  /* Keep in sync with --as-max / --as-content-max (theme CI) */
  --mk-max: var(--as-max, 1200px);

  --mk-font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mk-font-mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --mk-radius-sm: 8px;
  --mk-radius: 12px;
  --mk-radius-lg: 20px;
  --mk-radius-pill: 999px;

  --mk-shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.05);
  --mk-shadow: 0 4px 20px rgba(17, 17, 17, 0.06);
  --mk-shadow-lg: 0 16px 48px rgba(17, 17, 17, 0.12);
  --mk-shadow-hover: 0 12px 32px rgba(17, 17, 17, 0.1);

  --mk-header-h: 68px;
}

/* ── Reset / base (scoped) ─────────────────────────────────────────────── */

body.as-mkt-site,
body.as-mkt-site button,
body.as-mkt-site input,
body.as-mkt-site select,
body.as-mkt-site textarea,
.as-mkt,
body.as-marketing {
  font-family: var(--mk-font) !important;
  color: var(--mk-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.as-mkt,
body.as-marketing {
  background: #fff;
}

body.as-mkt-site h1,
body.as-mkt-site h2,
body.as-mkt-site h3,
body.as-mkt-site h4,
body.as-mkt-site h5,
body.as-mkt-site h6,
body.as-mkt-site strong,
body.as-mkt-site b,
.as-mkt h1,
.as-mkt h2,
.as-mkt h3,
.as-mkt h4,
.as-mkt strong,
.as-mkt-team-card__body strong,
.as-mkt-testimonial-card__author strong,
.as-access-gate__title {
  font-family: var(--mk-font) !important;
}

/* as-mkt-site covers global chrome (header/footer) on dashboard too —
   without it Elementor/Hello leave content-box and min-height + padding inflate the bar. */
.as-mkt *,
.as-mkt *::before,
.as-mkt *::after,
body.as-marketing *,
body.as-marketing *::before,
body.as-marketing *::after,
body.as-mkt-site *,
body.as-mkt-site *::before,
body.as-mkt-site *::after {
  box-sizing: border-box;
}

.as-mkt img {
  max-width: 100%;
  display: block;
}

.as-mkt a {
  color: inherit;
  text-decoration: none;
}

.as-mkt a:hover {
  text-decoration: none;
}

.as-mkt h1, .as-mkt h2, .as-mkt h3, .as-mkt h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--mk-black);
}

.as-mkt p {
  margin: 0;
  color: var(--mk-muted);
  line-height: 1.6;
}

.as-mkt-container {
  max-width: var(--mk-max);
  margin: 0 auto;
  padding: 0 var(--as-content-pad-x, 24px);
}

.as-mkt-section {
  padding: 96px 0;
}

.as-mkt-section--tight {
  padding: 72px 0;
}

.as-mkt-section--bg {
  background: var(--mk-bg);
}

.as-mkt-section--bg2 {
  background: var(--mk-bg2);
}

.as-mkt-section--dark {
  background: var(--mk-black);
  color: #fff;
}

.as-mkt-section--border-top {
  border-top: 1px solid var(--mk-border);
}

/* ── Eyebrow / section head ────────────────────────────────────────────── */

.as-mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--mk-radius-pill);
  background: rgba(177, 34, 39, 0.08);
  color: var(--mk-red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.as-mkt-section--dark .as-mkt-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.as-mkt-section-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.as-mkt-section-head--left {
  margin: 0 0 48px;
  text-align: left;
}

.as-mkt-section-title {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 16px;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
}

.as-mkt-section-lede {
  font-size: 17px;
  color: var(--mk-muted);
}

.as-mkt-section--dark .as-mkt-section-lede {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.as-mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.as-mkt-btn--primary {
  background: var(--mk-red);
  color: #fff !important;
}

.as-mkt-btn--primary:hover {
  background: var(--mk-red-hover);
  color: #fff !important;
}

.as-mkt-header a.as-mkt-cta,
.as-mkt-header .as-mkt-cta {
  color: #fff !important;
}

.as-mkt-btn--lg {
  padding: 16px 30px;
  font-size: 16px;
  border-radius: 10px;
}

.as-mkt-btn--secondary {
  background: #fff;
  color: var(--mk-text);
  border-color: var(--mk-border);
}

.as-mkt-btn--secondary:hover {
  border-color: #d8d8d8;
  background: var(--mk-bg2);
}

.as-mkt-btn--dark {
  background: #fff;
  color: var(--mk-black);
}

.as-mkt-btn--dark:hover {
  background: rgba(255, 255, 255, 0.88);
}

.as-mkt-btn--ghost-dark {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.as-mkt-btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff !important;
}

.as-mkt-cta-dark .as-mkt-btn--ghost-dark {
  color: #fff !important;
}

.as-mkt-pricing-card__hint {
  margin: -8px 0 18px;
  font-size: 13px;
  color: var(--mk-tertiary);
  line-height: 1.45;
}

.as-mkt-pricing-bar {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid var(--mk-border);
  border-radius: 14px;
  background: var(--mk-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.as-mkt-pricing-bar strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.as-mkt-pricing-bar p {
  margin: 0;
  font-size: 14px;
  color: var(--mk-muted);
  max-width: 640px;
}

.as-mkt-btn--block {
  width: 100%;
}

.as-mkt-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 8px;
}

/* ── Card hover (shared) ────────────────────────────────────────────────── */

.as-mkt-card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

/* ==========================================================================
   HEADER
   ========================================================================== */

body.as-mkt-site {
  font-family: var(--mk-font);
}

.as-mkt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--mk-border);
  box-shadow: none;
}

/* Override as-ci `.as-site-header` so dashboard & marketing share one chrome. */
.as-site-header.as-mkt-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--mk-border);
  box-shadow: none;
}

.as-site-header.as-mkt-header .as-mkt-header__inner.as-header-inner {
  max-width: var(--mk-max);
  margin: 0 auto;
  box-sizing: border-box;
  height: var(--mk-header-h);
  min-height: var(--mk-header-h);
  padding: 10px var(--as-content-pad-x, 24px);
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 16px;
}

.as-site-header.as-mkt-header .as-brand img,
.as-site-header.as-mkt-header .as-brand .as-custom-logo,
.as-site-header.as-mkt-header .as-mkt-brand .as-custom-logo,
.as-site-header.as-mkt-header .as-mkt-brand .as-mkt-brand__mark-img {
  height: 44px;
  max-height: 44px;
  max-width: 160px;
}

.as-mkt-header__inner {
  max-width: var(--mk-max);
  margin: 0 auto;
  min-height: var(--mk-header-h);
  padding: 10px var(--as-content-pad-x, 24px);
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 16px;
}

.as-mkt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--mk-black);
  flex-shrink: 0;
  justify-self: start;
}

.as-mkt-brand .as-custom-logo,
.as-mkt-brand .as-mkt-brand__mark-img {
  width: auto;
  height: 44px;
  max-height: 44px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.as-mkt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 2;
}

.as-mkt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  justify-self: end;
  grid-column: 3;
  position: relative;
  z-index: 50;
  overflow: visible;
}

.as-mkt-nav-toggle {
  grid-column: 3;
  justify-self: end;
}

.as-mkt-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--mk-red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.as-mkt-brand__text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.as-mkt-nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.as-mkt-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--mk-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.as-mkt-header.is-nav-open .as-mkt-nav-toggle span:nth-child(1),
.as-mkt-header.is-open .as-mkt-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.as-mkt-header.is-nav-open .as-mkt-nav-toggle span:nth-child(2) ,
.as-mkt-header.is-open .as-mkt-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.as-mkt-header.is-nav-open .as-mkt-nav-toggle span:nth-child(3) ,
.as-mkt-header.is-open .as-mkt-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.as-mkt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 2;
}

.as-mkt-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.as-mkt-menu a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--mk-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.as-mkt-menu a:hover,
.as-mkt-menu a.is-active {
  color: var(--mk-black);
  background: var(--mk-bg2);
}

.as-mkt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.as-mkt-header-actions--guest {
  display: none;
  align-items: center;
  gap: 10px;
}

.as-mkt-header-actions--user {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Demo toggle: add class "is-guest" to .as-mkt-header to preview logged-out state */
.as-mkt-header.is-guest .as-mkt-header-actions--user {
  display: none;
}

.as-mkt-header.is-guest .as-mkt-header-actions--guest {
  display: flex;
}

.as-mkt-auth-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--mk-text);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.as-mkt-auth-link:hover {
  background: var(--mk-bg2);
}

.as-mkt-header a.as-mkt-cta,
.as-mkt-header button.as-mkt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 9px;
  background: var(--mk-red);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.as-mkt-header a.as-mkt-cta:hover,
.as-mkt-header button.as-mkt-cta:hover {
  background: var(--mk-red-hover);
}

/* ── Header widgets: keep compatible with existing site classes ──────────
   .as-lang-switcher / .as-notify-btn / .as-user-menu__toggle already exist
   theme-wide (see as-ci.css). We restyle them here, scoped to the marketing
   header, without renaming so the theme can adopt the markup verbatim. */

.as-mkt-header .as-lang-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 70;
  flex-shrink: 0;
}

.as-mkt-header-actions {
  gap: 8px;
}

.as-mkt-nav-backdrop {
  display: none;
}

.as-mkt-nav__drawer {
  display: contents;
}

.as-mkt-nav__drawer-head,
.as-mkt-nav__drawer-foot,
.as-mkt-nav__close {
  display: none;
}

/* Guard: Elementor kit paints every <button> red — close must stay neutral. */
.as-mkt-header button.as-mkt-nav__close,
.as-mkt-nav__drawer button.as-mkt-nav__close {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--mk-bg2) !important;
  background-color: #f3f3f1 !important;
  color: #111 !important;
  box-shadow: none !important;
  text-transform: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  cursor: pointer;
}

.as-mkt-header button.as-mkt-nav__close svg,
.as-mkt-nav__drawer button.as-mkt-nav__close svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  stroke: #111 !important;
  color: #111 !important;
  fill: none !important;
}

.as-mkt-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: var(--mk-radius-pill);
  border: 1px solid var(--mk-border);
  background: #fff;
  color: var(--mk-text);
  font-family: var(--mk-font);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.as-mkt-lang-btn:hover {
  border-color: #d8d8d8;
  background: var(--mk-bg2);
}

.as-mkt-lang-btn .as-mkt-chev {
  font-size: 10px;
  color: var(--mk-tertiary);
  font-style: normal;
}

.as-mkt-header .as-notify-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--mk-border);
  background: #fff;
  color: var(--mk-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.as-mkt-header .as-notify-btn:hover {
  border-color: #d8d8d8;
  color: var(--mk-black);
  background: var(--mk-bg2);
}

.as-mkt-header .as-notify-btn svg {
  width: 17px;
  height: 17px;
}

.as-mkt-header .as-notify-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--mk-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  border: 2px solid #fff;
}

.as-mkt-header .as-user-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  border-radius: var(--mk-radius-pill);
  border: 1px solid var(--mk-border);
  background: #fff;
  color: var(--mk-text);
  font-family: var(--mk-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.as-mkt-header .as-user-menu__toggle:hover {
  border-color: #d8d8d8;
  box-shadow: var(--mk-shadow-sm);
}

.as-mkt-header .as-user-menu__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mk-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.as-mkt-header .as-user-menu__chev {
  font-size: 9px;
  color: var(--mk-tertiary);
  font-style: normal;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.as-mkt-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
  background:
    radial-gradient(760px 420px at 14% -10%, rgba(177, 34, 39, 0.08), transparent 60%),
    radial-gradient(700px 460px at 100% 0%, rgba(177, 34, 39, 0.05), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--mk-bg) 100%);
}

.as-mkt-hero__grid {
  display: flex;
  align-items: center;
  gap: 64px;
}

.as-mkt-hero__col {
  flex: 1 1 0;
  min-width: 0;
}

.as-mkt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: var(--mk-radius-pill);
  background: #fff;
  border: 1px solid var(--mk-border);
  box-shadow: var(--mk-shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--mk-text);
  margin-bottom: 24px;
}

.as-mkt-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mk-green);
  flex-shrink: 0;
}

.as-mkt-hero__title {
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.12;
  margin-bottom: 22px;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
}

.as-mkt-hero__title em {
  font-style: normal;
  color: var(--mk-red);
}

.as-mkt-hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mk-muted);
  max-width: 520px;
  margin: 0 0 48px;
}

.as-mkt p.as-mkt-hero__lede {
  margin: 0 0 48px;
}

.as-mkt-hero .as-mkt-btn-row {
  margin: 0 0 8px;
}

.as-mkt-hero__checklist {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.as-mkt-hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--mk-text);
  font-weight: 500;
}

.as-mkt-hero__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mk-green-bg);
  color: var(--mk-green);
  flex-shrink: 0;
  margin-top: 1px;
}

.as-mkt-hero__check-icon svg {
  width: 12px;
  height: 12px;
}

/* ── Dashboard mockup ─────────────────────────────────────────────────── */

.as-mkt-mockup {
  border-radius: var(--mk-radius-lg);
  background: #fff;
  border: 1px solid var(--mk-border);
  box-shadow: var(--mk-shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.as-mkt-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--mk-bg2);
  border-bottom: 1px solid var(--mk-border);
}

.as-mkt-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.as-mkt-mockup__dot--red { background: #ED6A5E; }
.as-mkt-mockup__dot--yellow { background: #F4BF4F; }
.as-mkt-mockup__dot--green { background: #61C554; }

.as-mkt-mockup__url {
  margin-left: 10px;
  flex: 1;
  padding: 5px 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--mk-border);
  font-family: var(--mk-font-mono);
  font-size: 11.5px;
  color: var(--mk-tertiary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.as-mkt-mockup__body {
  padding: 22px;
}

.as-mkt-mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.as-mkt-mockup__head h4 {
  font-size: 15px;
  margin: 0;
}

.as-mkt-mockup__head span {
  font-size: 11.5px;
  color: var(--mk-tertiary);
}

.as-mkt-mockup__kpis {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.as-mkt-kpi {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  background: var(--mk-bg2);
  border: 1px solid var(--mk-border);
}

.as-mkt-kpi__label {
  font-size: 11px;
  color: var(--mk-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.as-mkt-kpi__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--mk-black);
  letter-spacing: -0.02em;
}

.as-mkt-kpi__delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mk-green);
}

.as-mkt-mockup__bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.as-mkt-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.as-mkt-bar-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mk-text);
}

.as-mkt-bar-row__top span:last-child {
  color: var(--mk-tertiary);
  font-weight: 500;
}

.as-mkt-bar-track {
  height: 8px;
  border-radius: 999px;
  background: var(--mk-bg2);
  overflow: hidden;
}

.as-mkt-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--mk-red);
}

.as-mkt-bar-fill--green { background: var(--mk-green); }
.as-mkt-bar-fill--black { background: var(--mk-black); }

.as-mkt-mockup__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: 12px;
  box-shadow: var(--mk-shadow-lg);
  font-size: 12.5px;
  font-weight: 600;
}

.as-mkt-mockup__float--cert {
  bottom: -18px;
  left: -24px;
}

.as-mkt-mockup__float-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mk-green-bg);
  color: var(--mk-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.as-mkt-mockup__float-icon svg { width: 15px; height: 15px; }

.as-mkt-hero__mockup-wrap {
  position: relative;
  padding-bottom: 24px;
}

/* ==========================================================================
   TRUST STATS
   ========================================================================== */

.as-mkt-trust {
  padding: 44px 0;
  border-top: 1px solid var(--mk-border);
  border-bottom: 1px solid var(--mk-border);
  background: #fff;
}

.as-mkt-trust__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.as-mkt-trust__item {
  flex: 1 1 0;
  min-width: 160px;
  text-align: center;
}

.as-mkt-trust__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--mk-black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.as-mkt-trust__value span {
  color: var(--mk-red);
}

.as-mkt-trust__label {
  font-size: 13.5px;
  color: var(--mk-muted);
  font-weight: 500;
}

/* ==========================================================================
   PROBLEM (4 cards)
   ========================================================================== */

.as-mkt-problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.as-mkt-problem-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
}

.as-mkt-problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(177, 34, 39, 0.08);
  color: var(--mk-red);
  margin-bottom: 18px;
}

.as-mkt-problem-card__icon svg { width: 20px; height: 20px; }

.as-mkt-problem-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.as-mkt-problem-card p {
  font-size: 14.5px;
}

/* ==========================================================================
   SOLUTION (dark, 5 steps)
   ========================================================================== */

.as-mkt-solution-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.as-mkt-solution-step {
  flex: 1 1 calc(20% - 16px);
  min-width: 190px;
  padding: 26px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mk-radius);
  position: relative;
}

.as-mkt-solution-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--mk-red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.as-mkt-solution-step h3 {
  color: #fff;
  font-size: 15.5px;
  margin-bottom: 8px;
}

.as-mkt-solution-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
}

.as-mkt-solution-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -20px;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.as-mkt-solution-step:last-child::after {
  display: none;
}

/* ==========================================================================
   HOW IT WORKS (3 steps)
   ========================================================================== */

.as-mkt-how-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.as-mkt-how-step {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 220px;
  text-align: center;
  padding: 0 12px;
}

.as-mkt-how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--mk-red);
  color: var(--mk-red);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.as-mkt-how-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.as-mkt-how-step p {
  font-size: 14.5px;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   FEATURES (6 cards)
   ========================================================================== */

.as-mkt-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.as-mkt-feature-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
}

a.as-mkt-feature-card {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

a.as-mkt-feature-card:hover,
a.as-mkt-feature-card:focus-visible {
  text-decoration: none !important;
}

a.as-mkt-feature-card h3 {
  text-decoration: none;
}

a.as-mkt-feature-card:hover h3,
a.as-mkt-feature-card:focus-visible h3 {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a.as-mkt-feature-card p {
  text-decoration: none !important;
}

.as-mkt-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mk-black);
  color: #fff;
  margin-bottom: 20px;
}

.as-mkt-feature-card__icon svg { width: 21px; height: 21px; }

.as-mkt-feature-card--accent .as-mkt-feature-card__icon {
  background: var(--mk-red);
}

.as-mkt-feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.as-mkt-feature-card p {
  font-size: 14.5px;
}

/* ==========================================================================
   COURSES (tags + industries)
   ========================================================================== */

.as-mkt-courses {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.as-mkt-courses__col {
  flex: 1 1 0;
  min-width: 0;
}

.as-mkt-courses__col h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mk-tertiary);
  margin-bottom: 20px;
  font-weight: 700;
}

.as-mkt-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.as-mkt-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--mk-radius-pill);
  background: #fff;
  border: 1px solid var(--mk-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--mk-text);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.as-mkt-tag:hover {
  border-color: var(--mk-red);
  color: var(--mk-red);
  background: rgba(177, 34, 39, 0.04);
}

.as-mkt-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mk-green);
  flex-shrink: 0;
}

.as-mkt-industry-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.as-mkt-industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--mk-border);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.15s ease;
}

.as-mkt-industry-item:hover {
  color: var(--mk-red);
}

.as-mkt-industry-item:last-child {
  border-bottom: none;
}

.as-mkt-industry-item span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--mk-tertiary);
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.as-mkt-compare-wrap {
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  box-shadow: var(--mk-shadow);
}

.as-mkt-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.as-mkt-compare th,
.as-mkt-compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--mk-border);
}

.as-mkt-compare thead th {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mk-tertiary);
  font-weight: 700;
  background: var(--mk-bg2);
}

.as-mkt-compare thead th.as-mkt-compare__hl {
  background: var(--mk-black);
  color: #fff;
}

.as-mkt-compare tbody th {
  font-weight: 600;
  color: var(--mk-text);
  background: #fff;
}

.as-mkt-compare tbody td {
  color: var(--mk-muted);
}

.as-mkt-compare tbody tr:last-child th,
.as-mkt-compare tbody tr:last-child td {
  border-bottom: none;
}

.as-mkt-compare td.as-mkt-compare__hl {
  background: var(--mk-black);
  font-weight: 600;
  color: #fff;
}

.as-mkt-compare td.as-mkt-compare__hl .as-mkt-yes {
  color: #fff;
  font-weight: 700;
}

.as-mkt-compare .as-mkt-yes {
  color: var(--mk-green);
  font-weight: 700;
}

.as-mkt-compare .as-mkt-no {
  color: var(--mk-tertiary);
}

.as-mkt-compare .as-mkt-no {
  color: var(--mk-tertiary);
}

/* Mobile-only stacked compare (desktop table stays) */
.as-mkt-compare-mobile {
  display: none;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.as-mkt-testimonial-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.as-mkt-testimonial-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  display: flex;
  flex-direction: column;
}

.as-mkt-testimonial-card__stars {
  color: var(--mk-red);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.as-mkt-testimonial-card p {
  color: var(--mk-text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.as-mkt-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.as-mkt-testimonial-card__author img,
.as-mkt-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: var(--mk-bg2);
}

.as-mkt-avatar-stripe {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mk-font);
}

.as-mkt-testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--mk-black);
  font-family: var(--mk-font) !important;
}

.as-mkt-testimonial-card__author span {
  display: block;
  font-size: 12.5px;
  color: var(--mk-tertiary);
  font-family: var(--mk-font) !important;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.as-mkt-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.as-mkt-faq-item {
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  overflow: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.as-mkt-faq-item.is-open {
  border-color: rgba(177, 34, 39, 0.28);
  box-shadow: var(--mk-shadow-sm);
}

.as-mkt-faq-item__q {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  background: #fff !important;
  background-color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left;
  font-family: var(--mk-font);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.45 !important;
  color: var(--mk-black) !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  white-space: normal !important;
  text-overflow: clip !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.as-mkt-faq-item__q-text {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.as-mkt-faq-item__q:hover,
.as-mkt-faq-item__q:focus,
.as-mkt-faq-item__q:focus-visible,
.as-mkt-faq-item.is-open .as-mkt-faq-item__q {
  background: #fff !important;
  background-color: #fff !important;
  color: var(--mk-black) !important;
  outline: none;
}

.as-mkt-faq-item.is-open .as-mkt-faq-item__q {
  color: var(--mk-red) !important;
}

.as-mkt-faq-item__icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--mk-bg2);
  color: var(--mk-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.as-mkt-faq-item.is-open .as-mkt-faq-item__icon {
  transform: rotate(45deg);
  background: var(--mk-red);
  color: #fff;
}

.as-mkt-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.as-mkt-faq-item__a-inner {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--mk-muted);
  line-height: 1.65;
}

.as-mkt-faq-item__a-inner a {
  color: var(--mk-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.as-mkt-faq-item.is-open .as-mkt-faq-item__a {
  max-height: 480px;
}

/* Extra breathing room before dark CTA */
.as-mkt-section:has(.as-mkt-faq) {
  padding-bottom: 112px;
}

/* ==========================================================================
   DARK CTA
   ========================================================================== */

.as-mkt-cta-dark {
  padding: 84px 0;
  background: var(--mk-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.as-mkt-cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(177, 34, 39, 0.25), transparent 70%);
  pointer-events: none;
}

.as-mkt-cta-dark__inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.as-mkt-cta-dark h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 16px;
}

.as-mkt-cta-dark p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-bottom: 32px;
}

.as-mkt-cta-dark .as-mkt-btn-row {
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.as-mkt-footer {
  background: var(--mk-black);
  color: rgba(255, 255, 255, 0.6);
}

.as-mkt-footer__inner {
  max-width: var(--mk-max);
  margin: 0 auto;
  padding: 72px var(--as-content-pad-x, 24px) 40px;
}

.as-mkt-footer__grid {
  display: flex;
  gap: 48px;
  padding-bottom: 48px;
}

.as-mkt-footer__col {
  flex: 1 1 0;
  min-width: 0;
}

.as-mkt-footer__brand {
  flex: 1.4 1 0;
}

.as-mkt-footer .as-mkt-brand {
  color: #fff;
}

.as-mkt-footer .as-mkt-brand__text {
  color: #fff;
}

.as-mkt-footer__desc {
  margin: 18px 0 24px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.55);
}

.as-mkt-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.as-mkt-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--mk-radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.as-mkt-footer__col h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.as-mkt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.as-mkt-footer__links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.as-mkt-footer__links a:hover {
  color: #fff;
}

.as-mkt-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.as-mkt-footer__contact-item svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
}

.as-mkt-footer__contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.as-mkt-footer__contact-item a:hover {
  color: #fff;
}

.as-mkt-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.as-mkt-footer__bottom-inner {
  max-width: var(--mk-max);
  margin: 0 auto;
  padding: 22px var(--as-content-pad-x, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.as-mkt-footer__legal {
  display: flex;
  gap: 20px;
}

.as-mkt-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.as-mkt-footer__legal a:hover {
  color: #fff;
}

/* ==========================================================================
   PLATFORM PAGE — module rows
   ========================================================================== */

.as-mkt-page-hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, var(--mk-bg) 100%);
  text-align: center;
}

.as-mkt-page-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.as-mkt-page-hero h1 {
  font-size: 44px;
  margin-bottom: 18px;
}

.as-mkt-page-hero p {
  font-size: 17px;
}

/* ── Legal documents (Impressum / Datenschutz / AGB) ─────────────────────── */

.as-legal {
  background: var(--mk-bg);
}

.as-legal__section {
  padding: 56px 0 96px;
}

.as-legal-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  box-shadow: var(--mk-shadow-sm);
  overflow: hidden;
}

.as-legal-card__head {
  padding: 32px 40px 28px;
  border-bottom: 1px solid var(--mk-border);
  background: linear-gradient(180deg, #fff 0%, var(--mk-bg) 100%);
}

.as-legal-card__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--mk-black);
}

.as-legal-card__body {
  padding: 32px 40px 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mk-muted);
}

.as-legal-card__body > *:first-child {
  margin-top: 0;
}

.as-legal-card__body > *:last-child {
  margin-bottom: 0;
}

.as-legal-card__body h1,
.as-legal-card__body h2,
.as-legal-card__body h3,
.as-legal-card__body h4 {
  color: var(--mk-black);
  line-height: 1.3;
  margin: 1.6em 0 0.55em;
}

.as-legal-card__body h1 { font-size: 1.5rem; }
.as-legal-card__body h2 { font-size: 1.25rem; }
.as-legal-card__body h3 { font-size: 1.1rem; }

.as-legal-card__body p {
  margin: 0 0 1em;
  color: var(--mk-muted);
}

.as-legal-card__body ul,
.as-legal-card__body ol {
  margin: 0 0 1.1em;
  padding-left: 1.35em;
  display: flex;
  flex-direction: column;
  gap: 0.45em;
}

.as-legal-card__body li {
  color: var(--mk-muted);
}

.as-legal-card__body a {
  color: var(--mk-red);
  font-weight: 600;
  text-decoration: none;
}

.as-legal-card__body a:hover {
  text-decoration: underline;
}

.as-legal-card__body strong,
.as-legal-card__body b {
  color: var(--mk-black);
  font-weight: 650;
}

@media (max-width: 640px) {
  .as-legal__section {
    padding: 28px 0 64px;
  }

  .as-legal-card__head {
    padding: 24px 20px 20px;
  }

  .as-legal-card__title {
    font-size: 26px;
  }

  .as-legal-card__body {
    padding: 24px 20px 28px;
  }

  .as-legal-card {
    border-radius: var(--mk-radius);
  }
}

.as-mkt-module-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--mk-border);
}

.as-mkt-module-row:last-child {
  border-bottom: none;
}

.as-mkt-module-row--reverse {
  flex-direction: row-reverse;
}

.as-mkt-module-row__text {
  flex: 1 1 0;
  min-width: 0;
}

.as-mkt-module-row__visual {
  flex: 1 1 0;
  min-width: 0;
}

.as-mkt-module-row__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mk-font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mk-tertiary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.as-mkt-module-row h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.as-mkt-module-row p {
  font-size: 15.5px;
  margin-bottom: 22px;
}

.as-mkt-module-row__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.as-mkt-module-row__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mk-text);
}

.as-mkt-module-visual-card {
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  box-shadow: var(--mk-shadow);
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.as-mkt-module-visual-card--dark {
  background: var(--mk-black);
  border-color: var(--mk-black);
}

.as-mkt-module-visual-card--dark .as-mkt-bar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

.as-mkt-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  font-size: 14px;
  font-weight: 600;
}

.as-mkt-pricing-switch {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--mk-black);
  position: relative;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.as-mkt-pricing-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.as-mkt-pricing-switch.is-annual::after {
  transform: translateX(20px);
}

.as-mkt-pricing-save {
  color: var(--mk-green);
  background: var(--mk-green-bg);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
}

.as-mkt-pricing-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.as-mkt-pricing-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  padding: 34px 28px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  display: flex;
  flex-direction: column;
}

.as-mkt-pricing-card--highlight {
  background: var(--mk-black);
  border-color: var(--mk-black);
  transform: scale(1.03);
  box-shadow: var(--mk-shadow-lg);
}

.as-mkt-pricing-card--highlight * {
  color: #fff;
}

.as-mkt-pricing-card--highlight .as-mkt-pricing-card__tagline,
.as-mkt-pricing-card--highlight .as-mkt-pricing-card__hint,
.as-mkt-pricing-card--highlight .as-mkt-pricing-card__price span {
  color: rgba(255, 255, 255, 0.65);
}

.as-mkt-pricing-card--highlight .as-mkt-pricing-card__price strong {
  color: #fff;
}

.as-mkt-pricing-card--highlight .as-mkt-pricing-card__feature-list li {
  color: rgba(255, 255, 255, 0.85);
}

.as-mkt-pricing-card__badge {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--mk-red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.as-mkt-pricing-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.as-mkt-pricing-card__tagline {
  font-size: 13.5px;
  color: var(--mk-muted);
  margin-bottom: 22px;
}

.as-mkt-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 26px;
}

.as-mkt-pricing-card__price strong {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mk-black);
}

.as-mkt-pricing-card__price span {
  font-size: 13.5px;
  color: var(--mk-tertiary);
}

.as-mkt-pricing-card__feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.as-mkt-pricing-card__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mk-text);
}

.as-mkt-pricing-card__feature-list svg {
  width: 15px;
  height: 15px;
  color: var(--mk-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.as-mkt-pricing-faq {
  max-width: 800px;
  margin: 64px auto 0;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.as-mkt-values-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.as-mkt-value-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: left;
}

.as-mkt-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mk-bg2);
  color: var(--mk-red);
  margin-bottom: 16px;
}

.as-mkt-value-card__icon svg { width: 20px; height: 20px; }

.as-mkt-value-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.as-mkt-value-card p {
  font-size: 14px;
}

.as-mkt-story {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.as-mkt-story__text {
  flex: 1.1 1 0;
}

.as-mkt-story__text p + p {
  margin-top: 16px;
}

.as-mkt-story__stats {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.as-mkt-story__stat {
  flex: 1 1 calc(50% - 8px);
  min-width: 130px;
  padding: 22px;
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
}

.as-mkt-story__stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--mk-black);
  margin-bottom: 4px;
}

.as-mkt-story__stat span {
  font-size: 13px;
  color: var(--mk-muted);
}

.as-mkt-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.as-mkt-team-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.as-mkt-team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 280px;
  background: var(--mk-bg2);
  overflow: hidden;
}

.as-mkt-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.as-mkt-team-card__initials {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--mk-black);
  font-family: var(--mk-font);
}

.as-mkt-team-card__body {
  padding: 16px 18px 20px;
  flex: 1 1 auto;
}

.as-mkt-team-card__body strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--mk-black);
  margin-bottom: 4px;
  font-family: var(--mk-font) !important;
  letter-spacing: -0.01em;
}

.as-mkt-team-card__body span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--mk-tertiary);
  font-family: var(--mk-font) !important;
}

/* Stripe placeholder color variants (testimonials / fallbacks) */
.as-mkt-stripe--1 { background: linear-gradient(135deg, #B12227, #7c1418); }
.as-mkt-stripe--2 { background: linear-gradient(135deg, #111111, #3a3a3a); }
.as-mkt-stripe--3 { background: linear-gradient(135deg, #5A5A5A, #2b2b2b); }
.as-mkt-stripe--4 { background: linear-gradient(135deg, #0F7B4F, #0a5636); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.as-mkt-contact-grid {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.as-mkt-contact-grid__form {
  flex: 1.3 1 0;
  min-width: 0;
}

.as-mkt-contact-grid__side {
  flex: 1 1 0;
  min-width: 0;
}

.as-mkt-form-card {
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  box-shadow: var(--mk-shadow);
  padding: 36px;
}

.as-mkt-form-row {
  display: flex;
  gap: 16px;
}

.as-mkt-form-field {
  flex: 1 1 0;
  margin-bottom: 20px;
}

.as-mkt-form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mk-text);
  margin-bottom: 8px;
}

.as-mkt-form-field input,
.as-mkt-form-field select,
.as-mkt-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--mk-border);
  background: var(--mk-bg);
  font-family: var(--mk-font);
  font-size: 14.5px;
  color: var(--mk-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.as-mkt-form-field input:focus,
.as-mkt-form-field select:focus,
.as-mkt-form-field textarea:focus {
  outline: none;
  border-color: var(--mk-red);
  background: #fff;
}

.as-mkt-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.as-mkt-form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--mk-tertiary);
  text-align: center;
}

.as-mkt-contact-info-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
}

.as-mkt-problem-card__icon,
.as-mkt-feature-card__icon,
.as-mkt-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.as-mkt-contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  color: var(--mk-red);
  line-height: 0;
}

.as-mkt-problem-card__icon svg,
.as-mkt-feature-card__icon svg,
.as-mkt-value-card__icon svg {
  display: block;
  flex-shrink: 0;
  margin: 0;
}

.as-mkt-contact-info-card__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
}

.as-mkt-contact-info-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.as-mkt-contact-info-card__body strong {
  display: block;
  font-size: 14.5px;
  color: var(--mk-black);
  margin: 0 0 2px;
  line-height: 1.3;
}

.as-mkt-contact-info-card__body span,
.as-mkt-contact-info-card__body a {
  display: block;
  font-size: 13.5px;
  color: var(--mk-muted);
  text-decoration: none;
  line-height: 1.45;
}

.as-mkt-contact-info-card__body a:hover {
  color: var(--mk-red);
}

/* Gravity Forms inside marketing contact card.
   Keep GF foundation 12-col grid + gfield--width-half (span 6). */
.as-mkt-form-card .gform_wrapper,
.as-mkt-form-card .gform-theme {
  margin: 0;
}

.as-mkt-form-card .gform_required_legend {
  display: none !important;
}

.as-mkt-form-card .gform_wrapper,
.as-mkt-form-card .gform-theme--orbital,
.as-mkt-form-card .gform-theme--foundation,
.as-mkt-form-card [data-form-theme="orbital"] {
  --gf-ctrl-border-radius: 10px;
  --gf-ctrl-border-color: var(--mk-border);
  --gf-ctrl-bg-color: var(--mk-bg);
  --gf-label-space-y-secondary: 0;
  --gf-field-space-y: 14px;
  --gf-form-gap-x: 16px;
  --gf-color-primary: var(--mk-red);
  --gf-color-primary-rgb: 177, 34, 39;
}

.as-mkt-form-card .gform_fields {
  margin: 0 !important;
  padding: 0 !important;
  row-gap: 14px !important;
  column-gap: 16px !important;
}

.as-mkt-form-card .gform_fields > .gfield {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  max-width: none !important;
}

/* Half fields: trust GF span 6; never force auto (breaks 12-col). */
.as-mkt-form-card .gfield.gfield--width-half,
.as-mkt-form-card .gfield.as-mkt-gf-half {
  grid-column: span 6 !important;
  width: auto !important;
}

.as-mkt-form-card .gform_fields > .gfield--type-textarea,
.as-mkt-form-card .gform_fields > .gfield--type-checkbox,
.as-mkt-form-card .gform_fields > .gfield--type-consent,
.as-mkt-form-card .gform_fields > .gfield--type-choice,
.as-mkt-form-card .gform_fields > .gfield.gfield--width-full,
.as-mkt-form-card .gform_fields > .gfield.as-mkt-gf-full {
  grid-column: 1 / -1 !important;
}

.as-mkt-form-card .gfield_label,
.as-mkt-form-card .gform-field-label {
  display: flex !important;
  align-items: baseline;
  gap: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--mk-text) !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  letter-spacing: 0 !important;
}

.as-mkt-form-card .gfield_required,
.as-mkt-form-card .gfield_required_asterisk,
.as-mkt-form-card .gform-field-label__required,
.as-mkt-form-card .gfield_label .gfield_required {
  color: var(--mk-red) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-left: 2px !important;
  font-style: normal !important;
}

/* Beat `.gfield_label .gfield_required { font-size: 13px }` so text indicators collapse. */
.as-mkt-form-card .gfield_label .gfield_required.gfield_required_text,
.as-mkt-form-card legend.gfield_label .gfield_required.gfield_required_text,
.as-mkt-form-card .gfield_required.gfield_required_text {
  font-size: 0 !important;
  color: transparent !important;
  letter-spacing: 0 !important;
  font-style: normal !important;
}

.as-mkt-form-card .gfield_label .gfield_required.gfield_required_text::before,
.as-mkt-form-card legend.gfield_label .gfield_required.gfield_required_text::before,
.as-mkt-form-card .gfield_required.gfield_required_text::before {
  content: "*";
  font-size: 13px;
  font-weight: 700;
  color: var(--mk-red);
  font-style: normal;
}

.as-mkt-form-card .gfield_description,
.as-mkt-form-card .gform-field-label--type-sub {
  font-size: 12px !important;
  color: var(--mk-tertiary) !important;
  margin-top: 4px !important;
}

.as-mkt-form-card .ginput_container {
  margin: 0 !important;
}

.as-mkt-form-card input[type="text"],
.as-mkt-form-card input[type="email"],
.as-mkt-form-card input[type="tel"],
.as-mkt-form-card input[type="phone"],
.as-mkt-form-card select,
.as-mkt-form-card textarea {
  width: 100% !important;
  min-height: 46px !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  border: 1px solid var(--mk-border) !important;
  background: var(--mk-bg) !important;
  font-family: var(--mk-font) !important;
  font-size: 14.5px !important;
  color: var(--mk-text) !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
}

.as-mkt-form-card input:focus,
.as-mkt-form-card select:focus,
.as-mkt-form-card textarea:focus {
  outline: none !important;
  border-color: var(--mk-red) !important;
  background: #fff !important;
}

.as-mkt-form-card textarea {
  min-height: 110px !important;
  resize: vertical;
}

.as-mkt-form-card .gform_footer,
.as-mkt-form-card .gform_page_footer {
  margin: 6px 0 0 !important;
  padding: 0 !important;
  grid-column: 1 / -1;
}

.as-mkt-form-card .gform_button,
.as-mkt-form-card input[type="submit"] {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 22px !important;
  border: none !important;
  border-radius: var(--mk-radius-pill) !important;
  background: var(--mk-red) !important;
  color: #fff !important;
  font-family: var(--mk-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: none !important;
}

.as-mkt-form-card .gform_button:hover,
.as-mkt-form-card input[type="submit"]:hover {
  filter: brightness(0.95);
}

.as-mkt-form-card .gfield_description,
.as-mkt-form-card .gform_confirmation_message {
  font-size: 13px;
  color: var(--mk-muted);
}

.as-mkt-form-card .gfield_consent_label {
  font-size: 13px !important;
  color: var(--mk-muted) !important;
}

@media (max-width: 640px) {
  .as-mkt-form-card .gfield.gfield--width-half,
  .as-mkt-form-card .gfield.as-mkt-gf-half {
    grid-column: 1 / -1 !important;
  }
}

.as-mkt-map-placeholder {
  height: 160px;
  border-radius: var(--mk-radius);
  border: 1px solid var(--mk-border);
  background:
    linear-gradient(rgba(177, 34, 39, 0.05), rgba(177, 34, 39, 0.05)),
    repeating-linear-gradient(0deg, #eee 0px, #eee 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, #eee 0px, #eee 1px, transparent 1px, transparent 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mk-tertiary);
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .as-mkt-hero__title { font-size: 42px; }
  .as-mkt-problem-card,
  .as-mkt-feature-card,
  .as-mkt-testimonial-card { flex: 1 1 calc(50% - 12px); }
  .as-mkt-solution-step { flex: 1 1 calc(33.333% - 14px); }
  .as-mkt-value-card { flex: 1 1 calc(50% - 12px); }
  .as-mkt-team-card { flex: 1 1 calc(50% - 12px); }
}

@media (max-width: 900px) {
  .as-mkt-hero__grid { flex-direction: column; }
  .as-mkt-hero__col { width: 100%; }
  .as-mkt-hero__lede { max-width: none; }
  .as-mkt-module-row,
  .as-mkt-module-row--reverse { flex-direction: column; }
  .as-mkt-story { flex-direction: column; gap: 32px; }
  .as-mkt-courses { flex-direction: column; gap: 40px; }
  .as-mkt-contact-grid { flex-direction: column; }
  .as-mkt-mockup { transform: none; }
}

@media (max-width: 860px) {
  .as-mkt-header__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  .as-mkt-brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .as-mkt-nav {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    height: auto !important;
    z-index: 10040 !important;
    pointer-events: none;
    visibility: hidden;
    grid-column: auto;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .as-mkt-nav__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 360px);
    height: 100%;
    height: 100dvh;
    background: #fff;
    box-shadow: -16px 0 48px rgba(17, 17, 17, 0.14);
    display: flex;
    flex-direction: column;
    padding: 18px 20px 28px;
    transform: translateX(104%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-bar .as-mkt-nav__drawer {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  @media (min-width: 783px) {
    .admin-bar .as-mkt-nav__drawer {
      top: 32px;
      height: calc(100dvh - 32px);
    }
  }

  /*
   * Sticky + backdrop-filter make position:fixed children (drawer) use the
   * header as containing block. Opening the menu locks body overflow, sticky
   * unsticks, and the whole bar (plus drawer) jumps off-screen with scroll.
   * Pin the header to the viewport while open.
   */
  .as-mkt-header.is-nav-open,
  .as-mkt-header.is-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10050 !important;
  }

  .admin-bar .as-mkt-header.is-nav-open,
  .admin-bar .as-mkt-header.is-open {
    top: 46px !important;
  }

  @media (min-width: 783px) {
    .admin-bar .as-mkt-header.is-nav-open,
    .admin-bar .as-mkt-header.is-open {
      top: 32px !important;
    }
  }

  .as-mkt-header.is-nav-open .as-mkt-nav,
  .as-mkt-header.is-open .as-mkt-nav {
    pointer-events: auto;
    visibility: visible;
    top: 0 !important;
    height: 100% !important;
    height: 100dvh !important;
  }

  .as-mkt-header.is-nav-open .as-mkt-nav__drawer,
  .as-mkt-header.is-open .as-mkt-nav__drawer {
    transform: translateX(0);
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    height: 100dvh !important;
  }

  .admin-bar .as-mkt-header.is-nav-open .as-mkt-nav__drawer,
  .admin-bar .as-mkt-header.is-open .as-mkt-nav__drawer {
    top: 46px !important;
    height: calc(100dvh - 46px) !important;
  }

  @media (min-width: 783px) {
    .admin-bar .as-mkt-header.is-nav-open .as-mkt-nav__drawer,
    .admin-bar .as-mkt-header.is-open .as-mkt-nav__drawer {
      top: 32px !important;
      height: calc(100dvh - 32px) !important;
    }
  }

  .as-mkt-nav__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mk-border);
  }

  .as-mkt-nav__drawer-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mk-tertiary);
  }

  .as-mkt-nav__close {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  /* Burger/CTA sit in the same corner as the drawer close — hide while open. */
  .as-mkt-header.is-nav-open .as-mkt-nav-toggle,
  .as-mkt-header.is-open .as-mkt-nav-toggle,
  .as-mkt-header.is-nav-open .as-mkt-header-actions .as-mkt-cta,
  .as-mkt-header.is-open .as-mkt-header-actions .as-mkt-cta {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .as-mkt-nav__links {
    flex: 0 1 auto;
    margin: 4px 0 12px;
    width: 100%;
  }

  .as-mkt-menu,
  .as-mkt-nav__links .as-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 2px !important;
    width: 100%;
    text-align: left;
  }

  .as-mkt-menu > li,
  .as-mkt-nav__links .as-menu > li {
    width: 100%;
    margin: 0;
    list-style: none;
  }

  .as-mkt-menu a,
  .as-mkt-nav__links .as-menu a {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--mk-black);
    border-radius: 12px;
    text-align: left;
    justify-content: flex-start;
  }

  .as-mkt-menu a:hover,
  .as-mkt-menu a:focus,
  .as-mkt-nav__links .as-menu a:hover,
  .as-mkt-nav__links .as-menu a:focus {
    background: var(--mk-bg);
    color: var(--mk-black);
  }

  .as-mkt-nav__drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--mk-border);
    width: 100%;
  }

  .as-mkt-nav__auth {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .as-mkt-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10030;
    background: rgba(17, 17, 17, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .as-mkt-nav-backdrop[hidden] {
    display: none !important;
  }

  html.as-nav-lock,
  body.as-nav-lock {
    overflow: hidden;
  }

  .as-mkt-header-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .as-mkt-header-actions .as-lang-switcher {
    display: inline-flex !important;
  }

  .as-mkt-header-actions__account--desktop {
    display: none !important;
  }

  .as-mkt-header-actions__account--guest-desktop {
    display: none !important;
  }

  .as-mkt-header .as-mkt-cta {
    padding: 8px 12px;
    font-size: 13px;
  }

  .as-mkt-nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .as-mkt-section { padding: 64px 0; }
  .as-mkt-section--tight { padding: 48px 0; }
  .as-mkt-container { padding: 0 var(--as-content-pad-x, 18px); }
  .as-mkt-header__inner { padding: 10px var(--as-content-pad-x, 18px); }
  .as-mkt-hero { padding: 48px 0 64px; }
  .as-mkt-hero__title { font-size: 30px; }
  .as-mkt-hero__lede { font-size: 16px; }
  .as-mkt-section-title { font-size: 26px; }
  .as-mkt-page-hero h1 { font-size: 30px; }

  .as-mkt-problem-card,
  .as-mkt-feature-card,
  .as-mkt-testimonial-card,
  .as-mkt-solution-step,
  .as-mkt-value-card,
  .as-mkt-team-card,
  .as-mkt-pricing-card {
    flex: 1 1 100%;
  }

  .as-mkt-solution-step::after { display: none; }

  .as-mkt-how-grid { flex-direction: column; gap: 40px; }
  .as-mkt-how-step { max-width: none; }

  .as-mkt-trust__grid { justify-content: flex-start; }
  .as-mkt-trust__item { flex: 1 1 calc(50% - 12px); min-width: 0; }

  .as-mkt-pricing-grid { flex-direction: column; }
  .as-mkt-pricing-card--highlight { transform: none; order: -1; }

  .as-mkt-compare-wrap {
    display: none;
  }

  .as-mkt-compare-mobile {
    display: grid;
    gap: 16px;
  }

  .as-mkt-compare-mobile__us {
    background: var(--mk-black);
    color: #fff;
    border-radius: var(--mk-radius-lg);
    padding: 22px 20px 8px;
    box-shadow: var(--mk-shadow);
  }

  .as-mkt-compare-mobile__eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  .as-mkt-compare-mobile__us .as-mkt-compare-mobile__eyebrow {
    color: rgba(255, 255, 255, 0.55);
  }

  .as-mkt-compare-mobile__title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .as-mkt-compare-mobile__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .as-mkt-compare-mobile__list li {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .as-mkt-compare-mobile__list li span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
  }

  .as-mkt-compare-mobile__list li strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
  }

  .as-mkt-compare-mobile__others {
    display: grid;
    gap: 12px;
  }

  .as-mkt-compare-mobile__others > .as-mkt-compare-mobile__eyebrow {
    margin: 4px 0 0;
    color: var(--mk-tertiary);
  }

  .as-mkt-compare-mobile__alt {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: var(--mk-radius);
    padding: 16px 18px 6px;
  }

  .as-mkt-compare-mobile__alt h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--mk-black);
  }

  .as-mkt-compare-mobile__alt ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .as-mkt-compare-mobile__alt li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--mk-border);
    font-size: 13.5px;
    color: var(--mk-muted);
    line-height: 1.4;
  }

  .as-mkt-compare-mobile__alt li span {
    flex: 0 0 38%;
    font-weight: 600;
    color: var(--mk-tertiary);
    font-size: 12.5px;
  }

  .as-mkt-faq-item__q {
    padding: 16px 14px;
    font-size: 14.5px;
  }

  .as-mkt-faq-item__a-inner {
    padding: 0 14px 16px;
  }

  .as-mkt-form-row { flex-direction: column; gap: 0; }

  .as-mkt-footer__grid { flex-wrap: wrap; gap: 32px; }
  .as-mkt-footer__col { flex: 1 1 calc(50% - 16px); }
  .as-mkt-footer__brand { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .as-mkt-header .as-mkt-cta {
    display: none;
  }

  .as-mkt-auth-link {
    padding: 8px 10px;
  }

  .as-mkt-hero__title { font-size: 28px; }
  .as-mkt-btn-row { flex-direction: column; align-items: stretch; }
  .as-mkt-btn-row .as-mkt-btn { width: 100%; }
  .as-mkt-trust__item { flex: 1 1 100%; }
  .as-mkt-footer__col { flex: 1 1 100%; }
  .as-mkt-mockup__kpis { flex-direction: column; }
}

.as-mkt-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ==========================================================================
   ONBOARDING SUCCESS
   ========================================================================== */

.as-onboarding__hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 1px 1px, rgba(17, 17, 17, 0.05) 1px, transparent 0) 0 0 / 22px 22px,
    var(--mk-bg);
}

.as-onboarding__inner {
  max-width: 640px;
}

.as-onboarding__card {
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  box-shadow: var(--mk-shadow);
  padding: 40px 36px;
  text-align: center;
}

.as-onboarding__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(177, 34, 39, 0.08);
  color: var(--mk-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.as-onboarding__title {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--mk-black);
}

.as-onboarding__lede {
  margin: 0 auto 28px;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mk-muted);
}

.as-onboarding__points {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 420px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.as-onboarding__points li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--mk-text);
  line-height: 1.45;
}

.as-onboarding__points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mk-red);
  transform: translateY(-50%);
}

.as-onboarding__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 640px) {
  .as-onboarding__card { padding: 28px 20px; }
  .as-onboarding__actions { flex-direction: column; }
  .as-onboarding__actions .as-mkt-btn { width: 100%; }
}

/* ==========================================================================
   BRANDSCHUTZ PRACTICAL
   ========================================================================== */

.as-practical__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.as-practical__card,
.as-practical__cal-card {
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  box-shadow: var(--mk-shadow-sm);
}

.as-practical__card {
  padding: 28px 26px;
}

.as-practical__card h2 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.as-practical__steps {
  margin: 0 0 22px;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
  color: var(--mk-muted);
  font-size: 15px;
  line-height: 1.5;
}

.as-practical__figure {
  margin: 0 0 18px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--mk-border);
  background: var(--mk-bg);
}

.as-practical__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.as-practical__note {
  margin: 0;
  font-size: 13.5px;
  color: var(--mk-tertiary);
  line-height: 1.5;
}

.as-practical__note a {
  color: var(--mk-red);
  text-decoration: none;
  font-weight: 600;
}

.as-practical__cal-card {
  padding: 8px;
  overflow: hidden;
}

.as-practical__cal-card .calendly-inline-widget {
  min-width: 0 !important;
}

/* ========== SEO article / guide layout ========== */

a.as-mkt-tag {
  text-decoration: none;
  cursor: pointer;
}

.as-mkt-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--mk-tertiary);
}

.as-mkt-crumbs a {
  color: var(--mk-secondary);
  text-decoration: none;
  font-weight: 500;
}

.as-mkt-crumbs a:hover {
  color: var(--mk-red);
}

.as-mkt-article {
  max-width: 760px;
  margin: 0 auto;
}

.as-mkt-prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--mk-secondary);
}

.as-mkt-prose h2 {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.3;
  color: var(--mk-text);
}

.as-mkt-prose h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.35;
  color: var(--mk-text);
}

.as-mkt-prose p {
  margin: 0;
}

.as-mkt-prose a {
  color: var(--mk-red);
  font-weight: 600;
  text-decoration: none;
}

.as-mkt-prose a:hover {
  text-decoration: underline;
}

.as-mkt-prose ul,
.as-mkt-prose ol {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.as-mkt-toc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  margin: 0 0 28px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: 12px;
}

.as-mkt-toc__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mk-tertiary);
}

.as-mkt-toc ol {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.as-mkt-toc a {
  color: var(--mk-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.as-mkt-toc a:hover {
  color: var(--mk-red);
}

.as-mkt-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.as-mkt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mk-secondary);
}

.as-mkt-checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(34, 140, 86, 0.12);
  box-shadow: inset 0 0 0 2px var(--mk-green);
}

.as-mkt-related {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.as-mkt-related a,
.as-mkt-related__card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.as-mkt-related a:hover,
.as-mkt-related__card:hover {
  border-color: var(--mk-red);
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
  text-decoration: none;
}

.as-mkt-related a:hover strong,
.as-mkt-related__card:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.as-mkt-related strong {
  font-size: 16px;
  color: var(--mk-text);
}

.as-mkt-related span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mk-secondary);
}

.as-mkt-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 0;
}

.as-mkt-course-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mk-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--mk-secondary);
}

.as-mkt-page-hero--left,
.as-mkt-page-hero--left .as-mkt-page-hero__inner {
  text-align: left;
  max-width: none;
}

.as-mkt-page-hero--left .as-mkt-crumbs {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .as-mkt-prose h2 { font-size: 24px; }
  .as-mkt-prose { font-size: 16px; }
}

@media (max-width: 900px) {
  .as-practical__grid {
    grid-template-columns: 1fr;
  }

  .as-practical__cal-card .calendly-inline-widget {
    height: 680px !important;
  }
}

/* ==========================================================================
   SAVINGS CALCULATOR
   ========================================================================== */

.as-mkt-calc {
  max-width: 820px;
  margin: 0 auto;
}

.as-mkt-calc__intro {
  margin-bottom: 28px;
}

.as-mkt-calc__lede {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--mk-muted);
}

.as-mkt-calc__controls {
  display: grid;
  gap: 22px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg) var(--mk-radius-lg) 0 0;
  box-shadow: var(--mk-shadow-sm);
}

.as-mkt-calc__field {
  display: grid;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.as-mkt-calc__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mk-black);
  line-height: 1.35;
}

.as-mkt-calc__value {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--mk-red);
  font-variant-numeric: tabular-nums;
}

.as-mkt-calc__field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.as-mkt-calc__field input[type="range"]:focus {
  outline: none;
}

.as-mkt-calc__field input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(177, 34, 39, 0.25);
}

.as-mkt-calc__field input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: var(--mk-bg2);
}

.as-mkt-calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -11px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--mk-red);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.2);
}

.as-mkt-calc__field input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--mk-bg2);
}

.as-mkt-calc__field input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--mk-red);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.2);
}

.as-mkt-calc__result {
  background: var(--mk-black);
  color: #fff;
  border-radius: 0 0 var(--mk-radius-lg) var(--mk-radius-lg);
  padding: 32px 24px 28px;
}

/* Beat global `.as-mkt p { color: var(--mk-muted) }` on the dark result panel. */
.as-mkt-calc__result p {
  color: rgba(255, 255, 255, 0.72);
}

.as-mkt-calc__result-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.as-mkt-calc__result-value {
  margin: 0 0 12px;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.as-mkt-calc__result-note {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.as-mkt-calc__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.as-mkt-calc__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.as-mkt-calc__metric span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

.as-mkt-calc__metric strong {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.as-mkt-calc__cta {
  margin-top: 4px;
  padding: 22px 20px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(177, 34, 39, 0.35), transparent 55%),
    #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.as-mkt-calc__cta-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mk-red);
}

.as-mkt-calc__cta-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.as-mkt-calc__cta-text strong {
  color: #fff;
  font-weight: 700;
}

.as-mkt-calc__assumptions {
  margin-top: 18px;
  text-align: center;
}

.as-mkt-calc__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  font-family: var(--mk-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--mk-red);
  cursor: pointer;
}

.as-mkt-calc__toggle:hover,
.as-mkt-calc__toggle:focus-visible {
  text-decoration: underline;
  outline: none;
}

.as-mkt-calc__assumptions-panel {
  margin-top: 8px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  overflow: hidden;
}

.as-mkt-calc__assumptions-list {
  list-style: none;
  margin: 0;
  padding: 4px 18px;
}

.as-mkt-calc__assumptions-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mk-border);
  font-size: 13.5px;
  line-height: 1.4;
}

.as-mkt-calc__assumptions-list li:last-child {
  border-bottom: 0;
}

.as-mkt-calc__assumptions-list li span {
  color: var(--mk-muted);
}

.as-mkt-calc__assumptions-list li strong {
  flex-shrink: 0;
  color: var(--mk-black);
  font-weight: 700;
  text-align: right;
}

@media (min-width: 720px) {
  .as-mkt-calc__controls {
    padding: 28px 28px 24px;
  }

  .as-mkt-calc__result {
    padding: 36px 32px 32px;
  }

  .as-mkt-calc__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
  }

  .as-mkt-calc__metric {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-height: 88px;
  }

  .as-mkt-calc__metric strong {
    font-size: 20px;
  }

  .as-mkt-calc__cta {
    padding: 22px 24px;
  }

  .as-mkt-calc__cta .as-mkt-btn {
    width: auto;
    display: inline-flex;
  }
}
