/* Riddo marketing — web only. White, Inter, royal blue + gold. One container. */

:root {
    --mkt-ink: #0f172a;
    --mkt-muted: #4b5563;
    --mkt-paper: #ffffff;
    --mkt-sheet: #f5f7fb;
    --mkt-line: #e5e7eb;
    --mkt-blue: #0038a8;
    --mkt-blue-dark: #002970;
    --mkt-blue-soft: #e8eef9;
    --mkt-yellow: #ffb800;
    --mkt-green: #0038a8;
    --mkt-green-dark: #002970;
    --mkt-green-soft: #e8eef9;
    --mkt-navy: #0038a8;
    --mkt-header-h: 72px;
    --mkt-gutter: 20px;
    --mkt-container: 1180px;
    --mkt-section-y: 64px;
    --mkt-card-pad: 20px;
    --mkt-card-r: 14px;
    --mkt-gap: 16px;
    --mkt-tile-min: 148px;
}

@media (min-width: 768px) {
    :root {
        --mkt-header-h: 80px;
        --mkt-gutter: 32px;
        --mkt-section-y: 80px;
        --mkt-gap: 20px;
    }
}

@media (min-width: 1100px) {
    :root {
        --mkt-gutter: 40px;
        --mkt-section-y: 96px;
        --mkt-gap: 22px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body.mkt-body {
    margin: 0;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--mkt-ink);
    font-family: Inter, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.mkt-sans,
.mkt-wrap,
.mkt-h1,
.mkt-h2,
.mkt-h3,
.mkt-lead,
.mkt-copy,
.mkt-kicker,
.mkt-btn,
.mkt-nav a,
.mkt-tile,
.mkt-card,
.mkt-footer,
.mkt-svc,
.mkt-stat,
.mkt-tier,
.mkt-phone {
    font-family: Inter, "Segoe UI", Roboto, sans-serif;
}

.mkt-wrap,
.mkt-wrap--wide {
    width: min(var(--mkt-container), calc(100% - (var(--mkt-gutter) * 2)));
    margin-left: auto;
    margin-right: auto;
}

.mkt-em {
    color: var(--mkt-green);
}

.mkt-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #ffffff;
    border-bottom: 1px solid var(--mkt-line);
}

.mkt-header__bar {
    min-height: var(--mkt-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mkt-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
    flex: 0 1 auto;
}

.mkt-logo,
.mkt-brand__mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    background: var(--mkt-blue);
}

.mkt-logo-full {
    display: block;
    height: 48px;
    width: 180px;
    max-width: min(220px, 58vw);
    background: transparent;
    border-radius: 0;
    flex: 0 0 auto;
}

.mkt-logo-full--on-dark {
    height: 44px;
}

@media (max-width: 720px) {
    .mkt-logo-full {
        height: 40px;
    }
}

.mkt-brand__name {
    display: block;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    white-space: nowrap;
}

.mkt-brand__tag {
    display: none;
    color: var(--mkt-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
}

.mkt-nav {
    display: none;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.mkt-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: nowrap;
    color: #334155;
}

.mkt-nav a:hover {
    color: var(--mkt-green);
    background: var(--mkt-green-soft);
}

.mkt-nav a.is-on {
    color: var(--mkt-blue);
    background: transparent;
    box-shadow: inset 0 -3px 0 var(--mkt-yellow);
    border-radius: 0;
}

.mkt-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.mkt-login-link {
    display: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 8px 4px;
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.mkt-btn--ghost {
    background: #ffffff;
    border-color: #d1d5db;
    color: var(--mkt-ink);
}

.mkt-btn--navy,
.mkt-btn--green {
    background: var(--mkt-green);
    color: #fff;
}

.mkt-btn .mkt-btn__short {
    display: none;
}

@media (max-width: 720px) {
    .mkt-btn .mkt-btn__full {
        display: none;
    }

    .mkt-btn .mkt-btn__short {
        display: inline;
    }
}

.mkt-btn--navy:hover,
.mkt-btn--green:hover {
    background: var(--mkt-green-dark);
}

.mkt-btn--mustard {
    background: var(--mkt-yellow);
    color: var(--mkt-blue-dark);
    border-color: var(--mkt-yellow);
}

.mkt-menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--mkt-line);
    background: #fff;
    border-radius: 10px;
    font-weight: 700;
}

.mkt-drawer {
    display: none;
    border-top: 1px solid var(--mkt-line);
    background: #fff;
    padding: 8px 0 16px;
}

.mkt-drawer.is-open {
    display: block;
}

.mkt-drawer a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--mkt-line);
}

@media (max-width: 1099px) {
    .mkt-header__actions .mkt-login-link,
    .mkt-header__actions .mkt-btn--ghost {
        display: none;
    }
}

@media (min-width: 1100px) {
    .mkt-nav {
        display: flex;
    }

    .mkt-login-link {
        display: inline-flex;
    }

    .mkt-menu-btn,
    .mkt-drawer {
        display: none !important;
    }

    .mkt-brand__tag {
        display: block;
    }
}

.mkt-hello {
    background: var(--mkt-green-soft);
    border-bottom: 1px solid #d5def0;
    color: var(--mkt-green-dark);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 10px var(--mkt-gutter);
    line-height: 1.45;
    white-space: normal;
}

.mkt-hero {
    padding: 36px 0 48px;
}

.mkt-hero--home {
    padding-bottom: 64px;
}

.mkt-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.mkt-hero__copy {
    min-width: 0;
}

.mkt-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--mkt-green-soft);
    color: var(--mkt-green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.mkt-kicker {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mkt-green);
}

.mkt-h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4.6vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 800;
    max-width: 16ch;
}

.mkt-hero--page .mkt-h1 {
    max-width: 22ch;
}

.mkt-lead {
    margin: 0 0 22px;
    color: var(--mkt-muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 44ch;
}

.mkt-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.mkt-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.mkt-check {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: var(--mkt-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
}

.mkt-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mkt-stage {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: grid;
    justify-items: center;
}

.mkt-phone {
    width: min(280px, 100%);
    background: #111827;
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
    position: relative;
    z-index: 2;
}

.mkt-phone__screen {
    background: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
    min-height: 460px;
}

.mkt-app__top {
    background: linear-gradient(180deg, #0038a8 0%, #1a56c8 100%);
    color: #fff;
    padding: 18px 16px 22px;
}

.mkt-app__hello {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
}

.mkt-app__name {
    font-size: 16px;
    font-weight: 800;
    margin: 2px 0 14px;
}

.mkt-app__wallet {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 12px 14px;
}

.mkt-app__wallet span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
}

.mkt-app__wallet strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 2px;
}

.mkt-app__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 12px 20px;
}

.mkt-app__cell {
    display: grid;
    justify-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #334155;
    text-align: center;
}

.mkt-app__dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.mkt-floats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 16px;
}

.mkt-float {
    background: #fff;
    border: 1px solid var(--mkt-line);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    min-width: 0;
}

.mkt-float i {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 9px;
    background: var(--mkt-green-soft);
    color: var(--mkt-green);
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
}

.mkt-float strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.mkt-glow {
    display: none;
}

@media (min-width: 1024px) {
    .mkt-hero--home {
        padding: 48px 0 88px;
    }

    .mkt-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 48px;
        align-items: center;
    }

    .mkt-lead {
        font-size: 17px;
    }

    .mkt-stage {
        padding: 8px 0 0;
    }

    .mkt-glow {
        display: block;
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 56, 168, 0.2) 0%, rgba(0, 56, 168, 0) 70%);
        left: 50%;
        top: 42%;
        transform: translate(-50%, -50%);
        z-index: 0;
        pointer-events: none;
    }
}

@media (min-width: 1280px) {
    .mkt-stage {
        min-height: 540px;
        padding: 28px 0 8px;
    }

    .mkt-phone {
        width: 232px;
    }

    .mkt-floats {
        display: contents;
    }

    .mkt-float {
        position: absolute;
        z-index: 3;
        width: 136px;
    }

    .mkt-float--1 { top: 36px; left: 0; }
    .mkt-float--2 { top: 36px; right: 0; }
    .mkt-float--3 { bottom: 80px; left: 0; }
    .mkt-float--4 { bottom: 80px; right: 0; }
}

.mkt-section {
    padding: var(--mkt-section-y) 0;
}

.mkt-section--sheet {
    background: var(--mkt-sheet);
    border-top: 1px solid var(--mkt-line);
    border-bottom: 1px solid var(--mkt-line);
}

.mkt-section__head {
    display: grid;
    gap: 8px;
    margin: 0 0 32px;
    max-width: 40rem;
}

.mkt-section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-items: center;
}

.mkt-h2 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.22;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.mkt-h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.mkt-copy {
    margin: 0;
    color: var(--mkt-muted);
    font-size: 15px;
}

.mkt-svc,
.mkt-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--mkt-gap);
}

.mkt-svc article,
.mkt-tile {
    min-height: var(--mkt-tile-min);
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--mkt-line);
    border-radius: var(--mkt-card-r);
    padding: var(--mkt-card-pad);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mkt-tile__icon,
.mkt-svc__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.mkt-svc article strong,
.mkt-tile strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.mkt-svc article span,
.mkt-tile span {
    color: var(--mkt-muted);
    font-size: 13px;
    line-height: 1.4;
}

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

@media (min-width: 768px) {
    .mkt-svc,
    .mkt-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .mkt-svc {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .mkt-tiles {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.mkt-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--mkt-gap);
}

.mkt-card {
    background: #ffffff;
    border: 1px solid var(--mkt-line);
    border-radius: 16px;
    padding: var(--mkt-card-pad);
    min-width: 0;
}

.mkt-card img,
.mkt-media > img,
.mkt-split img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    border: 1px solid var(--mkt-line);
}

.mkt-card img {
    margin: 0 0 14px;
}

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

@media (min-width: 768px) {
    .mkt-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

.mkt-checks--stack {
    display: grid;
    gap: 12px;
    margin: 20px 0 24px;
}

@media (min-width: 900px) {
    .mkt-split {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.mkt-partner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

@media (min-width: 1100px) {
    .mkt-partner {
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
        gap: 40px;
    }
}

.mkt-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.mkt-tier {
    background: #fff;
    border: 1px solid var(--mkt-line);
    border-radius: 16px;
    padding: 22px 20px;
    min-width: 0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mkt-tier__art {
    width: 72px;
    height: 64px;
    margin-bottom: 14px;
}

.mkt-tier h3 {
    margin: 0 0 8px;
}

.mkt-tier ul {
    margin: 12px 0 0;
    padding: 0 0 0 16px;
    color: var(--mkt-muted);
    font-size: 13px;
    display: grid;
    gap: 6px;
}

@media (min-width: 900px) {
    .mkt-tiers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

.mkt-steps {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.mkt-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.mkt-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mkt-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
}

.mkt-stats {
    background: var(--mkt-sheet);
    border-top: 1px solid var(--mkt-line);
    border-bottom: 1px solid var(--mkt-line);
    padding: 28px 0;
}

.mkt-stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mkt-stat {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mkt-stat strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--mkt-green-dark);
}

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

.mkt-trust {
    padding: 40px 0 56px;
    text-align: center;
}

.mkt-marks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.mkt-marks span {
    border: 1px solid var(--mkt-line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

@media (min-width: 768px) {
    .mkt-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

.mkt-cta {
    padding: 0 0 var(--mkt-section-y);
}

.mkt-cta__box {
    background: var(--mkt-green);
    color: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    display: grid;
    gap: 20px;
    align-items: center;
}

.mkt-cta__people {
    display: flex;
    align-items: center;
}

.mkt-cta__people img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-left: -10px;
}

.mkt-cta__people img:first-child {
    margin-left: 0;
}

.mkt-cta__box h2,
.mkt-cta__box .mkt-h2 {
    color: #fff;
}

.mkt-cta__box .mkt-copy {
    color: #d6e4ff;
    margin: 8px 0 0;
    max-width: 40rem;
}

@media (min-width: 900px) {
    .mkt-cta__box {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 36px 40px;
        gap: 28px;
    }
}

.mkt-form {
    display: grid;
    gap: 14px;
    max-width: 520px;
}

.mkt-field {
    display: grid;
    gap: 6px;
}

.mkt-field label {
    font-size: 13px;
    font-weight: 600;
}

.mkt-field input,
.mkt-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--mkt-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px;
    font-family: Inter, "Segoe UI", Roboto, sans-serif;
    background: #fff;
}

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

.mkt-note {
    padding: 14px 16px;
    border-radius: 10px;
    background: #ecfdf3;
    color: #166534;
    font-weight: 600;
}

.mkt-footer {
    background: #0b1220;
    color: #e5e7eb;
    padding: 56px 0 24px;
}

.mkt-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.mkt-footer a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

.mkt-footer h4 {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
}

.mkt-footer p,
.mkt-footer li {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.mkt-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mkt-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mkt-footer__base {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid #1e293b;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

@media (min-width: 768px) {
    .mkt-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 28px;
    }

    .mkt-footer__base {
        text-align: left;
    }
}

.mkt-group + .mkt-group {
    margin-top: 40px;
}

.mkt-media {
    min-width: 0;
}

/* Feature highlight cards */
.mkt-feat-grid {
    display: grid;
    gap: var(--mkt-gap);
}

.mkt-feat-grid--hero {
    grid-template-columns: 1fr;
    margin-bottom: calc(var(--mkt-gap) + 8px);
}

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

.mkt-feat {
    background: #fff;
    border: 1px solid var(--mkt-line);
    border-radius: 18px;
    padding: 24px 22px;
    min-width: 0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.mkt-feat--blue {
    border-top: 4px solid var(--mkt-blue);
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 42%);
}

.mkt-feat--gold {
    border-top: 4px solid var(--mkt-yellow);
    background: linear-gradient(180deg, #fffbf0 0%, #ffffff 42%);
}

.mkt-feat--compact {
    padding: 20px 18px;
    border-top: none;
    background: #fff;
}

.mkt-feat--compact.mkt-feat--blue {
    border-left: 3px solid var(--mkt-blue);
}

.mkt-feat--compact.mkt-feat--gold {
    border-left: 3px solid var(--mkt-yellow);
}

.mkt-feat__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.mkt-feat__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 14px;
    background: var(--mkt-blue-soft);
    color: var(--mkt-blue);
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
}

.mkt-feat--gold .mkt-feat__icon {
    background: #fff4d6;
    color: #b45309;
}

.mkt-feat__icon--sm {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    font-size: 18px;
    margin-bottom: 12px;
}

.mkt-feat__badge {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--mkt-blue-soft);
    color: var(--mkt-blue-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mkt-feat__badge--gold {
    background: #fff4d6;
    color: #92400e;
}

.mkt-feat .mkt-h3 {
    margin-bottom: 8px;
}

.mkt-feat .mkt-copy {
    margin-bottom: 14px;
}

.mkt-feat__list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.mkt-feat__list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--mkt-muted);
    line-height: 1.45;
}

.mkt-feat__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--mkt-blue);
    font-weight: 800;
    font-size: 12px;
}

.mkt-feat--gold .mkt-feat__list li::before {
    color: #b45309;
}

.mkt-feat__list--compact {
    margin-bottom: 0;
    gap: 6px;
}

.mkt-feat__list--compact li {
    font-size: 13px;
}

.mkt-feat__link {
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    color: var(--mkt-blue);
    text-decoration: none;
}

.mkt-feat__link:hover {
    color: var(--mkt-blue-dark);
}

@media (min-width: 768px) {
    .mkt-feat-grid--hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

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

@media (min-width: 1100px) {
    .mkt-feat-grid--cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Step cards */
.mkt-steps-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--mkt-gap);
}

.mkt-step-card {
    background: #fff;
    border: 1px solid var(--mkt-line);
    border-radius: 16px;
    padding: 24px 22px;
    min-width: 0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mkt-step-card__num {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mkt-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
}

.mkt-step-card .mkt-h3 {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .mkt-steps-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

/* Lift cards with photos */
.mkt-card--lift {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mkt-card--lift:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.mkt-trust__lead {
    max-width: 36rem;
    margin: 8px auto 0;
    text-align: center;
}

