/* marketing.css -- public landing page (Vide Marketing).
 *
 * Layout + section patterns for the server-rendered marketing site.
 * Consumes tier-2 Vainio aliases only (see themes/vainio-light.css and
 * docs/design/design-system.md); no raw brand values here. Rendered with
 * data-theme="vainio-light" on <html>, always light.
 *
 * Class prefix: mkt-. Source design: Vide Marketing mockup (design-demo/, removed; see git history).
 */

/* ---- page root ------------------------------------------------------ */

/* marketing.css is loaded only by the marketing page, so a bare html
 * rule is page-scoped in practice */
html { scroll-behavior: smooth; }

.mkt {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

.mkt a { text-decoration: none; }

.mkt ::selection {
    background: var(--color-warning-bg);
    color: var(--color-text);
}

.mkt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.mkt-container-md { max-width: 1120px; }
.mkt-container-sm { max-width: 1000px; }

.mkt-section { padding: 104px 0; }

/* display type: headings use the display face with tight tracking */
.mkt h1, .mkt h2, .mkt h3 {
    font-family: var(--font-display);
    letter-spacing: var(--tracking-tight);
    color: var(--color-text);
    margin: 0;
}

.mkt-overline {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-warning-hover);
}

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

.mkt-section-head h2 {
    margin-top: var(--space-md);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    line-height: 1.1;
}

.mkt-section-lead {
    margin: var(--space-md) auto 0;
    max-width: 520px;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ---- pill buttons ---------------------------------------------------
 * Marketing CTAs reuse .btn variants from patterns.css; .mkt-pill just
 * rounds them to the Vainio full-pill shape and bumps padding. */

.mkt-pill {
    border-radius: var(--radius-full);
    font-weight: 600;
    padding-inline: 30px;
    min-height: 3rem;
}

.mkt-pill-sm {
    border-radius: var(--radius-full);
    font-weight: 600;
    padding-inline: 20px;
    min-height: 2.5rem;
}

/* tertiary: white pill w/ border (design-system.md 2.2) */
.mkt-btn-tertiary {
    background: var(--color-surface-1);
    color: var(--color-action-2);
    border: 1px solid var(--color-border);
}
.mkt-btn-tertiary:hover {
    border-color: var(--color-border-strong);
    background: var(--color-bg);
    color: var(--color-action-2);
}

/* outline pill on dark emphasis surfaces */
.mkt-btn-outline-dark {
    background: transparent;
    color: var(--color-on-action-2);
    border: 1px solid var(--color-action-2-line);
}
.mkt-btn-outline-dark:hover {
    border-color: var(--color-on-action-2-muted);
    background: var(--color-action-2-well);
    color: var(--color-on-action-2);
}

/* ---- nav ------------------------------------------------------------ */

.mkt-nav {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: color-mix(in oklab, var(--color-bg) 86%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.mkt-nav-inner {
    height: 70px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mkt-nav-logo { display: flex; align-items: center; }
.mkt-nav-logo img { height: 30px; mix-blend-mode: multiply; }

.mkt-nav-spacer { flex: 1; }

.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: var(--space-sm);
}

.mkt-nav-links a {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}
.mkt-nav-links a:hover { color: var(--color-warning-hover); }

.mkt-nav-login {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-action-2);
    padding: 9px 6px;
}
.mkt-nav-login:hover { color: var(--color-warning-hover); }

/* ---- hero ----------------------------------------------------------- */

.mkt-hero { position: relative; padding: 78px 0 0; }

.mkt-hero-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100vw);
    height: 520px;
    background: var(--color-gradient-hero);
    filter: blur(60px);
    opacity: 0.8;
    pointer-events: none;
}

.mkt-hero-inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
    text-align: center;
    animation: mkt-up 0.6s var(--motion-easing) both;
}

.mkt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-success-bg);
    border: 1px solid var(--vainio-green-line, var(--color-border));
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-action-2);
    margin-bottom: 26px;
}

.mkt-hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: var(--radius-full);
    background: var(--color-brand);
}

.mkt-h1 {
    font-size: var(--text-7xl);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.mkt-hero-lead {
    margin: var(--space-xl) auto 0;
    max-width: 620px;
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-text-muted);
    text-wrap: pretty;
}

.mkt-cta-row {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: 34px;
}

.mkt-hero-footnote {
    margin-top: var(--space-lg);
    font-size: 13px;
    font-weight: var(--weight-medium);
    color: var(--color-text-subtle);
}

/* product window under the hero */
.mkt-window-wrap {
    position: relative;
    max-width: 1120px;
    margin: 56px auto 0;
    padding: 0 var(--space-2xl);
    animation: mkt-up 0.8s var(--motion-easing) 0.1s both;
}

.mkt-window {
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--color-border);
    border-bottom: none;
    background: var(--color-surface-1);
    box-shadow: 0 40px 80px -24px var(--color-shadow-bloom),
                0 24px 48px -24px var(--color-shadow-bloom);
    overflow: hidden;
}

.mkt-window-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}

.mkt-window-dot {
    width: 11px;
    height: 11px;
    border-radius: var(--radius-full);
    background: var(--color-border);
}
.mkt-window-dot:nth-child(1) { background: var(--color-danger-bg, var(--color-border)); }
.mkt-window-dot:nth-child(2) { background: var(--color-warning-bg); }
.mkt-window-dot:nth-child(3) { background: var(--color-success-bg); }

.mkt-window-url {
    margin-left: var(--space-md);
    flex: 1;
    max-width: 280px;
    background: var(--color-surface-1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--color-text-subtle);
    text-align: center;
}

.mkt-window-body {
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

.mkt-window-body img { display: block; width: 100%; height: auto; }

.mkt-window-fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 130px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
}

/* ---- dark emphasis band (pain, final CTA) --------------------------- */

.mkt-dark {
    background: var(--color-action-2);
    color: var(--color-on-action-2);
}

.mkt-dark .mkt-overline { color: var(--color-on-action-2-accent); }

.mkt-quote {
    margin: 22px 0 0;
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--weight-bold);
    line-height: 1.12;
    letter-spacing: var(--tracking-tight);
    color: var(--color-on-action-2);
    text-wrap: balance;
}

.mkt-quote-by {
    margin-top: var(--space-lg);
    font-size: 15px;
    font-weight: var(--weight-medium);
    color: var(--color-on-action-2-muted);
}

.mkt-dark-lead {
    margin: 30px auto 0;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-on-action-2-muted);
    text-wrap: pretty;
}

.mkt-dark-cards {
    max-width: 1000px;
    margin: 56px auto 0;
    padding: 0 var(--space-2xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.mkt-dark-card {
    background: var(--color-action-2-well);
    border: 1px solid var(--color-action-2-line);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
}

.mkt-dark-card h3 {
    font-size: 17px;
    font-weight: var(--weight-bold);
    color: var(--color-on-action-2-accent);
    margin-bottom: var(--space-sm);
    letter-spacing: normal;
}

.mkt-dark-card p {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-on-action-2-muted);
}

/* ---- how it works --------------------------------------------------- */

.mkt-steps {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mkt-step-num {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--color-action-2);
    color: var(--color-on-action-2-accent);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
}

.mkt-step h3 {
    margin-top: var(--space-lg);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
}

.mkt-step p {
    margin: var(--space-sm) 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ---- feature deep dives --------------------------------------------- */

.mkt-dd-list {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.mkt-dd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.mkt-dd h3 {
    margin-top: var(--space-md);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    line-height: 1.14;
    text-wrap: balance;
}

.mkt-dd p {
    margin: var(--space-lg) 0 0;
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--color-text-muted);
}

.mkt-dd ul {
    margin: var(--space-lg) 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mkt-dd li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    font-weight: var(--weight-medium);
    color: var(--color-text);
}

.mkt-dd li::before {
    content: "\2713";
    color: var(--color-action-2);
    flex: none;
}

.mkt-dd-img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0 24px 50px -20px var(--color-shadow-bloom);
    max-height: 420px;
}

.mkt-dd-img img { display: block; width: 100%; height: auto; }

.mkt-dd-phone { display: flex; justify-content: center; }

.mkt-dd-phone img {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 50px var(--color-shadow-bloom));
}

/* ---- features grid band --------------------------------------------- */

.mkt-featband {
    background: var(--color-success-bg);
    border-top: 1px solid var(--vainio-green-line, var(--color-border));
    border-bottom: 1px solid var(--vainio-green-line, var(--color-border));
    padding: 100px 0;
}

.mkt-feat-grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mkt-feat-card {
    background: var(--color-surface-1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
}

.mkt-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.mkt-feat-icon svg { display: block; }

.mkt-feat-icon-gold  { background: var(--color-warning-bg); color: var(--color-warning-hover); }
.mkt-feat-icon-green { background: var(--color-success-bg); color: var(--color-action-2); }

.mkt-feat-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    letter-spacing: -0.01em;
}

.mkt-feat-card p {
    margin: var(--space-sm) 0 0;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ---- pricing -------------------------------------------------------- */

.mkt-billing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.mkt-billing-toggle {
    display: flex;
    gap: var(--space-xs);
    background: var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-xs);
}

.mkt-billing-toggle button {
    cursor: pointer;
    border: none;
    border-radius: var(--radius-full);
    padding: 9px 20px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    background: transparent;
    color: var(--color-text-muted);
}

.mkt-billing-toggle button[aria-pressed="true"] {
    background: var(--color-surface-1);
    color: var(--color-action-2);
}

.mkt-billing-toggle .mkt-discount { color: var(--color-warning-hover); }

.mkt-price-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}

.mkt-price-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface-1);
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 26px 22px;
}

.mkt-price-card .mkt-tier {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--color-action-2);
}

.mkt-price-card .mkt-range {
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--color-text-muted);
    min-height: 32px;
    margin-top: 2px;
}

.mkt-price-card .mkt-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-tight);
    color: var(--color-text);
}

.mkt-price-card .mkt-per {
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--color-text-subtle);
    min-height: 18px;
}

.mkt-price-card .mkt-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: var(--space-md) 0 18px;
    min-height: 40px;
}

.mkt-price-card .btn { margin-top: auto; }

/* featured tier (deep green card) */
.mkt-price-featured {
    position: relative;
    background: var(--color-action-2);
    border-color: var(--color-action-2);
    box-shadow: 0 22px 44px -18px var(--color-shadow-bloom);
}

.mkt-price-featured .mkt-tier  { color: var(--color-on-action-2-accent); }
.mkt-price-featured .mkt-range { color: var(--color-on-action-2-muted); }
.mkt-price-featured .mkt-price { color: var(--color-on-action-2); }
.mkt-price-featured .mkt-per   { color: var(--color-on-action-2-muted); }
.mkt-price-featured .mkt-desc  { color: var(--color-on-action-2-muted); }

.mkt-price-flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand);
    color: var(--color-text-on-brand);
    font-size: 11px;
    font-weight: var(--weight-bold);
    border-radius: var(--radius-full);
    padding: 4px 13px;
    white-space: nowrap;
}

.mkt-price-footnote {
    margin-top: 22px;
    text-align: center;
    font-size: 13.5px;
    font-weight: var(--weight-medium);
    color: var(--color-text-subtle);
}

/* ---- FAQ ------------------------------------------------------------ */

.mkt-faq {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.mkt-faq-list { border-top: 1px solid var(--color-border); }

.mkt-faq-item { border-bottom: 1px solid var(--color-border); }

.mkt-faq-q {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: none;
    border: none;
    padding: 22px var(--space-xs);
    text-align: left;
    font-family: inherit;
}

.mkt-faq-qt {
    flex: 1;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.mkt-faq-sign {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--color-success-bg);
    color: var(--color-action-2);
    display: grid;
    place-items: center;
    font-size: var(--text-lg);
    font-weight: 600;
}

.mkt-faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s var(--motion-easing);
}

.mkt-faq-item[data-open] .mkt-faq-a { max-height: 260px; }

.mkt-faq-a > div {
    padding: 0 var(--space-xs) var(--space-xl);
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 700px;
}

/* ---- final CTA ------------------------------------------------------ */

.mkt-cta-final h2 {
    font-size: var(--text-6xl);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    color: var(--color-on-action-2);
    text-wrap: balance;
}

.mkt-cta-final p {
    margin: 18px auto 0;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-on-action-2-muted);
}

/* ---- footer --------------------------------------------------------- */

.mkt-footer {
    background: var(--color-action-2-deep);
    padding: 64px 0 40px;
}

.mkt-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.mkt-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mkt-logo-chip {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 4px 8px;
    display: inline-flex;
}
.mkt-logo-chip img { height: 18px; }

.mkt-footer-brand strong {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: var(--weight-bold);
    letter-spacing: -0.01em;
    color: var(--color-on-action-2);
}

.mkt-footer-tagline {
    margin: var(--space-lg) 0 0;
    max-width: 280px;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-on-action-2-muted);
    opacity: 0.85;
}

.mkt-footer h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--weight-bold);
    color: var(--color-on-action-2-accent);
    margin-bottom: 14px;
    letter-spacing: normal;
}

.mkt-footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.mkt-footer-links a,
.mkt-footer-links span {
    font-size: var(--text-sm);
    color: var(--color-on-action-2-muted);
}
.mkt-footer-links a:hover { color: var(--color-on-action-2); }

.mkt-footer-legal {
    margin-top: 48px;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-action-2-line);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    font-size: 13px;
    color: var(--color-on-action-2-muted);
    opacity: 0.85;
}

.mkt-footer-legal .mkt-nav-spacer { flex: 1; }
.mkt-footer-legal a {
    color: inherit;
    text-decoration: underline;
}
.mkt-footer-legal a:hover { color: var(--color-on-action-2); }

.mkt-footer-lang {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}
.mkt-footer-lang a {
    text-decoration: none;
    opacity: 0.75;
}
.mkt-footer-lang a.is-active {
    color: var(--color-on-action-2);
    opacity: 1;
    text-decoration: underline;
}

/* ---- motion --------------------------------------------------------- */

@keyframes mkt-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .mkt-hero-inner,
    .mkt-window-wrap { animation: none; }
    .mkt-faq-a { transition: none; }
}

/* ---- responsive ----------------------------------------------------- */

@media (max-width: 980px) {
    .mkt-dd { grid-template-columns: 1fr; gap: 28px; }
    .mkt-dd-img, .mkt-dd-phone { order: 2; }
    .mkt-steps { grid-template-columns: 1fr; }
    .mkt-price-grid { grid-template-columns: repeat(2, 1fr); }
    .mkt-nav-links { display: none; }
    .mkt-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .mkt-feat-grid { grid-template-columns: 1fr; }
    .mkt-price-grid { grid-template-columns: 1fr; }
    .mkt-dark-cards { grid-template-columns: 1fr; }
    .mkt-h1 { font-size: 38px; }
    .mkt-section { padding: 64px 0; }
    .mkt-featband { padding: 64px 0; }
    .mkt-cta-row { flex-direction: column; align-items: stretch; }
}

/* ---- mobile touch-target floor (#99) -------------------------------- *
 * Every control the touch-target audit measures (see e2e/mobile.spec.js)
 * must be >= 44 x 44 CSS px at the touch widths (390 and 768). Scoped to
 * <=980px so the desktop nav / footer density is unchanged. Structural
 * sizing only; brand values stay in the theme file. Footer/nav links are
 * flex items, so min-height applies; each is centred so the label sits in
 * the middle of the taller tap box. Widths are already >=44, so no
 * min-width bump is needed (and .mkt keeps overflow-x:hidden). */
@media (max-width: 980px) {
    .mkt-nav-logo,
    .mkt-nav-login,
    .mkt-footer-links a,
    .mkt-footer-legal a {
        display: flex;
        align-items: center;
        min-height: 44px;
    }
    .mkt-pill-sm { min-height: 44px; }
    .mkt-billing-toggle button { min-height: 44px; }
}

/* ---- contact / lead form (#31) -------------------------------------- *
 * The .mkt-hp rule is the load-bearing bit: it hides the honeypot field
 * off-screen from humans while leaving it in the DOM for bots to fill.
 * Colors/borders reuse the shared alias tokens; no brand values here. */
.mkt-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.mkt-contact-inner { max-width: 640px; margin: 0 auto; }
.mkt-contact-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.mkt-contact-row { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.mkt-contact-row > label { flex: 1 1 200px; }
.mkt-contact-form label { display: flex; flex-direction: column; gap: var(--space-xs); }
.mkt-contact-lead { color: var(--color-text-muted); }
.mkt-contact-success,
.mkt-contact-error {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}
.mkt-contact-success {
    background: var(--color-success-bg);
    color: var(--color-success);
}
.mkt-contact-error {
    background: var(--color-danger-bg);
    color: var(--color-danger);
}
