/* ==========================================================================
   MVN-X — Design Tokens
   ========================================================================== */
:root {
    --navy: #1A1A2E;
    --navy-soft: #22223A;
    --cyan: #00C0FB;
    --violet: #C20FFE;
    --deep-purple: #61087F;
    --slate: #666666;
    --offwhite: #F5F6FA;
    --white: #FFFFFF;
    --gradient: linear-gradient(90deg, #00C0FB 0%, #C20FFE 100%);

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Poppins", sans-serif;

    --wrap: 1160px;
    --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--slate); }

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

sup { font-size: 0.55em; top: -0.8em; }

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}

.wrap--narrow { max-width: 760px; }

.eyebrow, .section-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--violet);
    margin: 0 0 1em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
    background: var(--gradient);
    background-clip: padding-box;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.35);
}

.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(26, 26, 46, 0.45); }

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-mark-img {
    height: 30px;
    width: auto;
    display: block;
}

.logo-word {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
}

.site-nav a:hover { color: var(--cyan); }

.site-nav a.nav-current { color: var(--white); font-weight: 600; }

.site-nav__cta {
    background: var(--gradient);
    background-clip: padding-box;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 999px;
    overflow: hidden;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    display: block;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: 96px 0 88px;
}

.hero__wrap {
    position: relative;
}

.hero__pattern {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 280px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.hero__pattern svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Credibility strip
   ========================================================================== */
.credibility {
    background: var(--offwhite);
    padding: 28px 0;
}

.credibility p {
    margin: 0;
    text-align: center;
    font-size: 15px;
    color: var(--slate);
}

/* ==========================================================================
   What we do / card grid
   ========================================================================== */
.what-we-do {
    padding: 88px 0;
}

.what-we-do h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    border: 1px solid #E7E7EF;
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.card__label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 8px;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }

.card__link {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.card__link:hover { color: var(--cyan); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
    background: var(--gradient);
    padding: 56px 0;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-band h2 {
    color: var(--white);
    margin: 0;
    font-size: 26px;
}

.cta-band .btn--primary {
    background: var(--navy);
    box-shadow: none;
}

/* ==========================================================================
   Page hero (Solutions / Contact / generic pages)
   ========================================================================== */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 56px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
}

.page-feature-image {
    width: 100%;
    max-width: 640px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.page-hero__sub {
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    font-size: 16px;
}

.provided-by {
    display: inline-block;
    margin: 20px 0 0;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.external-link {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.external-link:hover { color: var(--cyan); }

.provided-by .external-link { color: rgba(255, 255, 255, 0.9); }
.provided-by .external-link:hover { color: var(--cyan); }

/* ==========================================================================
   Solutions
   ========================================================================== */
.solutions { padding: 72px 0 96px; }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    border: 1px solid #E7E7EF;
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.solution-card__label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-card h2 { font-size: 22px; }

.solution-card__disclosure {
    font-size: 13px;
    color: var(--slate);
    font-style: italic;
    margin-top: auto;
    margin-bottom: 20px;
}

.solution-card__disclosure .external-link { color: var(--violet); }
.solution-card__disclosure .external-link:hover { color: var(--cyan); }

.solution-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Solution / Service detail pages
   ========================================================================== */
.detail { padding: 40px 0 64px; }

.detail h2 {
    font-size: 22px;
    margin-top: 28px;
}

.detail h2:first-child { margin-top: 0; }

.detail-list {
    margin: 0 0 1em;
    padding-left: 20px;
    color: var(--slate);
}

.detail-list li { margin-bottom: 8px; }

.detail--tint {
    background: var(--offwhite);
}

.detail-section-sub {
    max-width: 640px;
    margin-bottom: 20px;
}

.engagement-heading { margin-top: 36px !important; }

.service-type-list {
    display: flex;
    flex-direction: column;
    max-width: 900px;
}

.service-type-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid #E7E7EF;
}

.service-type-row:first-child { padding-top: 0; }
.service-type-row:last-child { border-bottom: none; padding-bottom: 0; }

.service-type-row__head h3 {
    font-size: 18px;
    margin: 0;
}

.service-type-row__body p {
    font-size: 15px;
    margin-bottom: 0;
}

.service-type-row__tech {
    margin-top: 10px !important;
    font-size: 13px !important;
    font-style: italic;
    color: var(--violet) !important;
}

@media (max-width: 720px) {
    .service-type-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.detail-disclosure {
    font-size: 14px;
    font-style: italic;
    color: var(--slate);
}

.detail-cta { margin-top: 40px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding: 72px 0 96px; }

.contact__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.field input,
.field select,
.field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid #D8D8E4;
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 1px;
}

.contact-form .btn { align-self: flex-start; margin-top: 8px; }

.form-error {
    display: none;
    font-size: 14px;
    color: #E0245E;
    margin: -6px 0 0;
}

.form-error.is-visible { display: block; }

.form-success {
    display: none;
    text-align: center;
    padding: 56px 24px;
    border: 1.5px solid var(--cyan);
    background: rgba(0, 192, 251, 0.05);
    border-radius: var(--radius);
}

.form-success.is-visible { display: block; }

.form-success h2 { font-size: 22px; margin-bottom: 8px; }
.form-success p { margin: 0; }

.contact-direct {
    background: var(--offwhite);
    border-radius: var(--radius);
    padding: 28px;
}

.contact-direct p { margin-bottom: 6px; color: var(--slate); }

.contact-direct a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
}

.contact-direct a:hover { color: var(--cyan); }

/* ==========================================================================
   Generic page content (fallback)
   ========================================================================== */
.page-content { padding: 56px 0 96px; }

/* ==========================================================================
   Blog post (Insights, future use)
   ========================================================================== */
.post__header { padding-top: 64px; text-align: center; }
.post__meta { color: var(--slate); font-size: 14px; }
.post__content { padding: 40px 0 96px; }
.post__content img { max-width: 100%; border-radius: var(--radius); }

/* Koenig editor image width classes — required by Ghost so wide/full
   images in blog post content render correctly instead of unstyled. */
.kg-width-wide {
    width: 100%;
    max-width: calc(var(--wrap) + 160px);
    margin-left: 50%;
    transform: translateX(-50%);
}

.kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.kg-width-full img { border-radius: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 48px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand .logo-word { color: var(--white); }
.site-footer__brand p { margin: 6px 0 0; font-size: 13px; }

.site-footer__nav { display: flex; gap: 20px; }
.site-footer__nav a { color: rgba(255, 255, 255, 0.75); font-size: 14px; }
.site-footer__nav a:hover { color: var(--cyan); }

.site-footer__contact a { color: var(--cyan); font-weight: 600; }

.site-footer__legal {
    padding: 20px 24px 28px;
}

.site-footer__legal p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1020px) {
    .hero__pattern { width: 200px; opacity: 0.1; }
}

@media (max-width: 860px) {
    .hero__pattern { display: none; }

    .card-grid, .solution-grid { grid-template-columns: 1fr; }
    .contact__inner { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 24px 20px;
        display: none;
    }

    .site-nav.is-open { display: flex; }

    .site-nav a { padding: 12px 0; width: 100%; }
    .site-nav__cta { margin-top: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Layout upgrade — structure & rhythm borrowed from the Meridian Expat theme
   MVNX Link brand tokens (navy / cyan / violet / gradient) stay as-is.
   ========================================================================== */

.radius-l { border-radius: 20px; }

/* ---------- Section rhythm ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--offwhite); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 0.6em; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 0.4em; }
.section-head p { max-width: 56ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Header (restructured, same navy brand) ---------- */
.site-header__inner { position: relative; }
.btn-row-desktop { display: flex; align-items: center; gap: 10px; }
.nav-cta-mobile { display: none; }
.btn--sm { padding: 10px 20px; font-size: 14px; }

@media (max-width: 860px) {
    .btn-row-desktop { display: none; }
    .nav-cta-mobile { display: block; margin-top: 14px; }
    .nav-cta-mobile .btn { display: block; text-align: center; }
}

/* ---------- Hero, two-column with diagram ---------- */
.hero__wrap { position: relative; z-index: 1; }
.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    max-width: none;
}
.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.hero__visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.45));
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { order: -1; margin-bottom: 8px; }
    .hero__visual img { max-width: 340px; }
}

/* ---------- Split comparison cards ---------- */
.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 760px) { .split-cards { grid-template-columns: 1fr; } }

.split-card {
    border-radius: 16px;
    padding: 32px;
    border: 1.5px solid #E7E7EF;
}
.split-card .tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.split-card.tone-a { border-color: var(--cyan); background: rgba(0, 192, 251, 0.05); }
.split-card.tone-a .tag { background: var(--cyan); color: var(--navy); }
.split-card.tone-b { border-color: var(--violet); background: rgba(194, 15, 254, 0.05); }
.split-card.tone-b .tag { background: var(--violet); color: var(--white); }
.split-card h3 { font-size: 20px; margin-bottom: 0.5em; }
.split-card p { margin-bottom: 0; }

/* ---------- Feature card grid (icon + title + copy) ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: var(--white);
    border: 1px solid #E7E7EF;
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.feature-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.icon-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--offwhite);
    color: var(--violet);
    margin-bottom: 18px;
}
.icon-mark svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; margin-bottom: 0.4em; }
.feature-card p { font-size: 15px; margin-bottom: 0; }

/* ---------- Step rows (alternating, for "How You Work With Us") ---------- */
.step-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #E7E7EF;
}
.step-row:last-child { border-bottom: none; }
.step-row.reverse .step-visual { order: 2; }
.step-row.reverse .step-content { order: 1; }
.step-visual { display: flex; justify-content: center; }
.step-visual img { width: 100%; max-width: 380px; height: auto; filter: drop-shadow(0 14px 30px rgba(26, 26, 46, 0.16)); }
.step-content .card__label { margin-bottom: 10px; }
.step-content h3 { font-size: 22px; margin-bottom: 0.5em; }
.step-content p { font-size: 15px; margin-bottom: 0; }

@media (max-width: 760px) {
    .step-row, .step-row.reverse { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; }
    .step-row .step-visual, .step-row.reverse .step-visual { order: 1; }
    .step-row .step-content, .step-row.reverse .step-content { order: 2; }
    .step-visual img { max-width: 260px; }
}

/* ---------- CTA band, rounded card ---------- */
.cta-band {
    background: var(--gradient);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
}
.cta-band__inner { display: block; }
.cta-band h2 { margin-bottom: 20px; }
.cta-band .btn--primary { background: var(--navy); box-shadow: none; }

@media (max-width: 620px) {
    .cta-band { padding: 44px 28px; border-radius: 18px; }
}

/* ---------- Insights / post grid (used on home + insights pages) ---------- */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
    border: 1px solid #E7E7EF;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.post-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card .card__label { margin-bottom: 8px; }
.post-card h3 { font-size: 17px; margin-bottom: 8px; }
.post-card p { font-size: 14px; margin-bottom: 0; }
.post-card .read-more { margin-top: auto; padding-top: 14px; font-weight: 600; font-size: 14px; color: var(--navy); }
.post-card .read-more:hover { color: var(--cyan); }

/* ---------- Footer, multi-column ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-col-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.65); max-width: 34ch; margin-top: 12px; margin-bottom: 0; }
.footer-grid h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-grid a { color: rgba(255, 255, 255, 0.72); display: block; margin-bottom: 10px; font-size: 14px; }
.footer-grid a:hover { color: var(--cyan); }

.footer-bottom {
    padding: 22px 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__inner, .site-footer__legal { display: none; } /* superseded by footer-grid / footer-bottom */

/* ---------- Forms, restyled fields + inline ajax states ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid #D8D8E4;
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 1px;
}

.contact-direct-card {
    background: var(--offwhite);
    border-radius: var(--radius);
    padding: 28px;
}
.contact-direct-card p { margin-bottom: 6px; color: var(--slate); }
.contact-direct-card a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
}
.contact-direct-card a:hover { color: var(--cyan); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-center p, .wrap--narrow .section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Process timeline (Getting Started / prospect journey) ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #E7E7EF;
}
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 26px;
    padding-bottom: 46px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
}
.timeline-item.is-gate .timeline-marker {
    background: var(--gradient);
}
.timeline-content {
    background: var(--white);
    border: 1px solid #E7E7EF;
    border-radius: var(--radius);
    padding: 22px 26px;
}
.timeline-content h3 { font-size: 18px; margin-bottom: 6px; }
.timeline-content p { font-size: 15px; margin-bottom: 0; }
.timeline-content .card__label { margin-bottom: 6px; }

@media (max-width: 560px) {
    .timeline::before { left: 21px; }
    .timeline-item { grid-template-columns: 44px 1fr; gap: 18px; padding-bottom: 32px; }
    .timeline-marker { width: 44px; height: 44px; font-size: 16px; }
}
