/* ── RESET & BASE ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0A1628;
    --navy2: #111E35;
    --navy3: #162040;
    --blue: #2563EB;
    --blue2: #3B82F6;
    --ice: #93C5FD;
    --light: #CADCFC;
    --muted: #94a3b8;
    --white: #F8FAFF;
    --card-base: #F8FCFF;
    --border: rgba(93,140,200,0.15);
    --radius: 12px;
    --nav-height: 66px;
    --section-header-max: 920px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    overflow-x: hidden;
    max-width: 100%;
}

html.matrix-home-scroll-pending,
html.matrix-home-restoring-scroll {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    font-size: 14px;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* H2 accent bar — site-wide section headings */
h2:not(.accordion-header):not(.st-title)::after {
    content: '';
    display: block;
    height: 2px;
    min-height: 2px;
    width: 32px;
    border-radius: 1px;
    background: linear-gradient(90deg, #5C7EAD 0%, rgba(92, 124, 173, 0.4) 100%);
    margin: 10px auto 0;
    flex-shrink: 0;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    min-height: 56px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transition: background .3s;
    box-sizing: border-box;
}

nav > .container {
    width: 100%;
    max-width: 1320px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
    margin-left: 35px;
}

.nav-logo img {
    height: 51px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 32px;
    list-style: none;
    min-width: 0;
}

    .nav-links a {
        font-size: 15px;
        font-weight: 600;
        color: #374151;
        text-decoration: none;
        transition: color .2s;
        letter-spacing: .01em;
    }

        .nav-links a:hover {
            color: #0A1628;
        }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    padding: 11px 22px;
    transition: all .2s;
    cursor: pointer;
    border: none;
    letter-spacing: .01em;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--blue2);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(37,99,235,.35);
    }

nav .btn.btn-primary {
    flex-shrink: 0;
    margin-right: 35px;
    font-size: 15px;
    padding: 10px 16px;
    gap: 6px;
}

.mobile-menu .btn.btn-primary {
    font-size: 16px;
    padding: 12px 24px;
    gap: 8px;
}

nav .btn.btn-primary .arrow-icon {
    width: 16px;
    height: 16px;
}

.btn-mbw {
    background: linear-gradient(135deg, #1a56db 0%, #2563EB 60%, #3b82f6 100%);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(37,99,235,.4);
}

    .btn-mbw:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(37,99,235,.5);
    }

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

    .btn-ghost:hover {
        color: var(--white);
        border-color: rgba(93,140,200,.4);
        background: rgba(255,255,255,.04);
    }

/* hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #374151;
        margin: 5px 0;
        border-radius: 2px;
        transition: .3s;
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 20px 28px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a:not(.btn) {
        color: #374151;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
    }

/* ── HERO ── */
.hero {
    padding: 150px 0 68px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    /* subtle grid background */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    }

.hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    }

.hero-wave {
    position: absolute;
    bottom: -18%;
    right: -6%;
    height: 110%;
    width: auto;
    max-width: 99%;
    pointer-events: none;
    z-index: 1;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.18;
    mix-blend-mode: screen;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 48%, black 55%, transparent 88%),
        linear-gradient(to bottom, transparent 0%, black 32%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,  transparent 0%, black 48%, black 55%, transparent 88%),
        linear-gradient(to bottom, transparent 0%, black 32%, black 100%);
    mask-composite: intersect;
}

@media (max-width: 768px) {
    .hero-wave { display: none; }
    .hero-ctas .btn-mbw { margin-bottom: 15px; }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .hero-wave { bottom: -18%; right: -12%; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto 20px;
    padding: 6px 10px 6px 11px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(147, 197, 253, 0.35);
    border-radius: 999px;
    line-height: 1.35;
    width: max-content;
    max-width: calc(100% - 24px);
    box-sizing: border-box;
}

.hero-badge-dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #93c5fd;
}

.hero-badge-text {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
}

.hero-heading {
    font-family: 'Fraunces', serif;
    font-size: 43px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
}

.hero-heading-wrap {
    display: block;
}

.hero-heading-br-tablet {
    display: none;
}

@media (max-width: 900px) and (min-width: 600px) {
    .hero-heading {
        font-size: 38px;
        line-height: 1.12;
        margin-bottom: 20px;
    }

    .hero-heading-br-tablet {
    display: block;
    }

    .hero-lead {
        font-size: 28px;
    }
}

@media (max-width: 599px) {
    .hero-heading {
        font-size: 32px;
    }
}

.hero-lead {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #93C5FD;
    line-height: 1.45;
    margin: 0 0 32px;
    padding-top: 18px;
    max-width: 720px;
    text-align: center;
}

.hero-lead-text {
    display: inline-block;
}

.hero-lead-strong {
    font-weight: 500;
}

.hero-lead-emphasis {
    font-weight: 700;
}

.hero-body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #94A3B8;
    line-height: 1.65;
    margin: 0 0 72px;
    max-width: 720px;
    text-align: center;
}

.hero-body-lines--mobile {
    display: block;
}

.hero-body-line {
    display: block;
}

.hero-body-line + .hero-body-line {
    margin-top: 0.5em;
}

.hero-body-wrap {
    display: none;
}

@media (min-width: 769px) {
    .hero {
        padding: 118px 0 20px;
    }

    .hero-heading {
        margin-top: 0;
    }

    .hero-content {
        max-width: 840px;
    }

    .hero-lead {
        max-width: 840px;
    }

    .hero-body {
        max-width: 840px;
    }
}

@media (min-width: 901px) {
    .hero-heading {
        font-size: 52px;
        margin-bottom: 28px;
    }

    .hero-heading-wrap {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 11.5px;
        padding: 7px 12px 7px 12px;
        gap: 6px;
        margin-bottom: 40px;
    }

    .hero-body-lines--mobile {
        display: none;
    }

    .hero-body-wrap {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-ctas .btn-ghost {
    font-size: 16px;
    border-width: 2px;
    border-color: rgba(147, 197, 253, 0.4);
}

    .hero-ctas .btn-ghost:hover {
        border-color: rgba(147, 197, 253, 0.7);
    }

/* ── DIVIDER LINE ── */
.divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    margin: 0 auto;
}

/* ── STORY SECTION ── */
.story {
    padding: 60px 0 75px;
}

#process.story {
    scroll-margin-top: var(--nav-height);
}

#process .story-intro h2 {
    font-size: clamp(24px, 5.5vw, 30px);
}

@media (min-width: 769px) {
    #process .story-intro h2 {
        font-size: 38px;
    }
}

#process .process-timeline-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    justify-content: center;
    align-items: start;
    max-width: 720px;
    margin: 0 auto;
}

#process .process-timeline-aside {
    display: none;
}

#process .process-timeline-icon {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

#process .process-timeline-icon--exploration {
    top: 37px;
}

#process .process-timeline-icon-stack {
    position: relative;
    display: inline-block;
    width: 210px;
    height: 151px;
    transform: scale(0.9);
    transform-origin: top right;
}

#process .process-timeline-icon-stack img {
    position: absolute;
    left: 10px;
    top: 0;
    z-index: 1;
    display: block;
    width: 151px;
    height: auto;
}

#process .process-timeline-icon--build .process-timeline-icon-stack img {
    left: 26px;
    top: 16px;
    width: 120px;
    height: 120px;
}

#process .process-timeline-magnifier {
    position: absolute;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    width: 65px;
    height: 65px;
    transform: rotate(10deg);
    transform-origin: center center;
    pointer-events: none;
}

#process .process-timeline-magnifier path {
    fill: #F3F4F6;
    stroke: #F3F4F6;
    stroke-width: 0.35;
    stroke-linejoin: round;
    stroke-linecap: round;
    paint-order: stroke fill;
}

.section-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c7ead;
    margin-bottom: 16px;
    max-width: var(--section-header-max);
}

.problem-eyebrow,
.sync-header .eyebrow,
.sync-header .section-label,
.st-eyebrow,
.workflow-combinations .section-header .eyebrow,
.workflow-combinations .section-header .section-label,
.wm-eyebrow,
.why-matrix-wrap > .wm-eyebrow,
.ps-eyebrow,
.ps-platform-eyebrow,
.integrations .qb-base-card > .section-label,
.integrations .mbw-inner > .section-label,
.contact-left > .section-label {
    font-weight: 600;
}

/* Section eyebrows & header blocks — shared max measure */
.problem-header,
.problem-eyebrow,
.problem-h1,
.problem-h2,
.story-intro,
.gap-header,
.sync-header,
.sync-header .eyebrow,
.sync-header .section-label,
.sync-header h2,
.sync-subheading,
.st-header,
.st-eyebrow,
.st-title,
.workflow-combinations .section-header.workflow-combinations-header,
.workflow-combinations .section-header .eyebrow,
.workflow-combinations .section-header .section-label,
.workflow-combinations .section-header h2,
.workflow-combinations .section-subtitle,
.why-matrix-wrap > .wm-eyebrow,
.why-matrix-wrap > .wm-h1,
.why-matrix-wrap > .wm-sub,
.ps-header,
.ps-eyebrow,
.ps-headline,
.ps-subtext,
.ps-platform-eyebrow,
.ps-platform-h2,
.integrations .qb-base-card > .section-label,
.integrations .qb-base-card > h2,
.integrations .qb-base-card > p,
.contact-left > .section-label,
.contact-left > h2,
#platform-html .pb-block-header,
#platform-html .pb-ai-header {
    max-width: var(--section-header-max);
}

.problem-header,
.story-intro,
.gap-header,
.sync-header,
.st-header,
.workflow-combinations .section-header.workflow-combinations-header,
.ps-header,
.why-matrix-wrap > .wm-eyebrow,
.why-matrix-wrap > .wm-h1,
.why-matrix-wrap > .wm-sub,
.integrations .qb-base-card > .section-label,
.integrations .qb-base-card > h2,
.integrations .qb-base-card > p,
#platform-html .pb-block-header,
#platform-html .pb-ai-header {
    margin-left: auto;
    margin-right: auto;
}

.story-intro {
    margin: 0 auto 54px;
    text-align: center;
}

    .story-intro h2 {
        font-family: 'Fraunces', serif;
        font-size: clamp(21px, 2.6vw, 34px);
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -.015em;
    }

    .story-intro p {
        color: var(--muted);
        font-size: 16px;
        font-weight: 300;
        line-height: 1.8;
    }

/* timeline */
.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 8px;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, var(--blue) 0%, var(--border) 60%, transparent 100%);
    }

.tl-item {
    display: flex;
    gap: 36px;
    margin-bottom: 42px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease;
}

    .tl-item.animate-ready {
        opacity: 0;
        transform: translateY(20px);
    }

    .tl-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

.tl-dot-wrap {
    flex-shrink: 0;
    width: 48px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    border: 2px solid var(--navy);
    box-shadow: 0 0 0 3px rgba(37,99,235,.25);
    position: relative;
    z-index: 1;
}

    .tl-dot.final {
        background: var(--ice);
        box-shadow: 0 0 0 4px rgba(147,197,253,.25), 0 0 16px rgba(147,197,253,.3);
    }

.tl-body {
    flex: 1;
}

.tl-era {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue2);
    margin-bottom: 8px;
}

#process .tl-era {
    font-size: 13px;
    color: #5C7EAD;
}

#process .timeline::before {
    left: 23px;
    width: 2px;
    background: linear-gradient(to bottom, #5C7EAD 0%, #5C7EAD 75%, rgba(92, 124, 173, 0.2) 100%);
    z-index: 0;
}

#process .tl-dot-wrap {
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

#process .tl-dot:not(.final) {
    background-color: #5C7EAD;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(92, 124, 173, 0.45);
}

#process .tl-dot.final {
    background-color: #93C5FD;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.45), 0 0 24px rgba(147, 197, 253, 0.55);
}

#process .tl-body {
    position: relative;
    background: #0f1f32;
    border: 1px solid rgba(220, 230, 248, 0.34);
    border-radius: 12px;
    padding: 20px 24px;
    overflow: hidden;
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(0, 0, 0, 0.55),
        0 0 48px 16px rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

#process .tl-body::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.42),
        inset -2px 0 0 rgba(255, 255, 255, 0.22),
        inset 0 -2px 0 rgba(0, 0, 0, 0.42),
        inset 2px 0 0 rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset -3px -3px 10px rgba(0, 0, 0, 0.14);
}

#process .tl-body > * {
    position: relative;
    z-index: 1;
}

#process .tl-item:hover .tl-body {
    border-color: rgba(220, 230, 248, 0.48);
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(0, 0, 0, 0.55),
        0 0 48px 20px rgba(255, 255, 255, 0.06);
}

#process .process-intro-em,
#process .process-outro-em {
    display: inline;
}

@media (min-width: 698px) {
    #process .process-intro-em,
    #process .process-outro-em {
        display: none;
    }
}

#process .process-outro {
    margin-top: 16px;
    margin-bottom: 0;
    text-align: center;
}

#process .process-outro-cta {
    margin-top: 44px;
}

@media (max-width: 768px) {
    .bridge-zone--post-platform {
        padding-bottom: 64px;
    }

    .bridge-zone--post-platform .bridge-mark-wrap--bottom {
        margin-top: 20px;
    }

    #process.story {
        padding-top: 32px;
    }

    #process .story-intro {
        margin-bottom: 36px;
    }

    #process .process-timeline-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        max-width: 720px;
    }

    #process .tl-item {
        gap: 16px;
    }
    #process .tl-dot-wrap {
        width: 28px;
    }
    #process .timeline::before {
        left: 13px;
    }
}

.tl-body h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.tl-body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px;
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tl-tag {
    font-size: 12px;
    color: var(--light);
    background: rgba(37,99,235,.1);
    border: 1px solid rgba(37,99,235,.2);
    border-radius: 100px;
    padding: 4px 12px;
}

.tl-callout {
    background: rgba(37,99,235,.08);
    border-left: 2px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--light);
    line-height: 1.7;
    font-style: italic;
}

.tl-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.tl-result {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tl-result-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.tl-result-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 300;
}

/* ── INTEGRATIONS SECTION ── */
.integrations {
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(37, 99, 235, 0.12), transparent 35%),
        linear-gradient(180deg, #04101D 0%, #071526 50%, #05111F 100%);
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#integrations.integrations {
    scroll-margin-top: var(--nav-height);
    }

.mbw-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.integrations h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2.55vw, 34px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

    .integrations h2 .accent {
    display: block;
    margin-top: 15px;
    margin-bottom: 0;
    padding-bottom: 5px;
        color: var(--ice);
        font-style: italic;
    }

/* Full rule — global h2::after wins on specificity if only margin-top is set */
#integrations h2.qb-heading::after {
    content: '';
    display: block;
    height: 2px;
    min-height: 2px;
    width: 32px;
    border-radius: 1px;
    background: linear-gradient(90deg, #5C7EAD 0%, rgba(92, 124, 173, 0.4) 100%);
    margin: 20px auto 0;
    flex-shrink: 0;
}

.integrations .mbw-inner {
    max-width: min(1180px, 100%);
    z-index: 1;
}

.integrations .qb-base-card {
    background: #E6EDF5;
    border: 1px solid #E3ECF6;
    border-radius: 26px;
    padding: 48px 40px 20px;
    box-shadow: 0 12px 48px rgba(8, 22, 40, 0.18), 0 2px 8px rgba(8, 22, 40, 0.06);
    text-align: center;
}

.integrations .qb-base-card.reveal.animate-ready {
    opacity: 0;
    transform: translateY(28px);
}

.integrations .qb-base-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.integrations .qb-base-card .section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #5C7EAD;
    margin-bottom: 14px;
}

.integrations .qb-base-card h2 {
    font-family: 'Poppins', sans-serif;
    color: #10233E;
    font-weight: 600;
    margin-bottom: 16px;
}

.integrations .qb-base-card h2 .accent {
    color: #2563eb;
    font-weight: 500;
    font-style: italic;
    margin-top: 10px;
    padding-bottom: 2px;
}

#integrations .qb-base-card h2.qb-heading::after {
    margin: 12px auto 0;
}

.integrations .qb-base-card .qb-intro {
    font-size: clamp(16px, 1.5vw, 18px);
    color: rgba(16, 35, 62, 0.68);
    line-height: 1.65;
    font-weight: 400;
    margin: 0 auto 22px;
    max-width: 640px;
}

.integrations .qb-base-card .qb-intro-break {
    display: block;
    margin-top: 5px;
}

.integrations .qb-base-card .qb-sync-grid {
    margin-top: 0;
}

.integrations .qb-base-card .qb-footer p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #5A7196;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0;
}

.integrations .qb-base-card .qb-sync-body {
    margin-top: 0;
}

.integrations .qb-base-card .qb-footer {
    margin-top: 26px;
    margin-bottom: 10px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.integrations .qb-base-card .qb-footer::before {
    display: none;
}

.mbw-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 52px;
    text-align: left;
}

.mbw-feature {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color .2s, background .2s;
}

    .mbw-feature:hover {
        border-color: rgba(37,99,235,.35);
        background: rgba(37,99,235,.06);
    }

.mbw-feature-icon {
    font-size: 22px;
    margin-bottom: 12px;
}

.mbw-feature h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: .01em;
}

.mbw-feature p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.mbw-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* arrow svg */
.arrow-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.why-different {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: left;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.4;
}

.why-item p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── GAP SECTION (80/20 — hidden) ── */
.gap-section {
    display: none;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.gap-inner {
    max-width: 860px;
    margin: 0 auto;
}

.gap-header {
    text-align: center;
    margin-bottom: 48px;
}

    .gap-header h2 {
        font-family: 'Fraunces', serif;
        font-size: clamp(18px, 2.25vw, 28px);
        font-weight: 600;
        letter-spacing: -.015em;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .gap-header p {
        color: #94a3b8;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.75;
    }

.gap-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.gap-path {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.gap-path-icon {
    font-size: 24px;
    margin-bottom: 14px;
}

.gap-path h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.gap-path p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 16px;
}

.gap-verdict {
    font-size: 13px;
    font-weight: 700;
    color: #ef4444;
}

.gap-pivot {
    text-align: center;
    padding: 32px;
    background: rgba(37,99,235,.06);
    border: 1px solid rgba(37,99,235,.2);
    border-radius: 14px;
    position: relative;
}

    .gap-pivot::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--blue), transparent);
        border-radius: 14px 14px 0 0;
    }

    .gap-pivot p {
        font-family: 'Fraunces', serif;
        font-size: clamp(18px, 2.2vw, 26px);
        font-weight: 700;
        color: var(--white);
        line-height: 1.4;
        letter-spacing: -.01em;
        margin: 0;
    }

@media (max-width: 640px) {
    .gap-paths {
        grid-template-columns: 1fr;
    }
}

/* ── WHO THIS IS FOR ── */
.who-for {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

#platform.ps-section {
  padding-top: 56px;
  border-top: none;
}

/* ── BRIDGE ZONE (Compare → Platform) ── */
.bridge-zone {
  background: var(--navy);
  padding: 90px 24px;
}

#platform.bridge-zone {
  scroll-margin-top: var(--nav-height);
}

/* First bridge (compare → platform) */
#compare.why-matrix-section + .bridge-zone {
  padding-top: 12px;
  padding-bottom: 25px;
}

#compare.why-matrix-section + .bridge-zone .bridge-mark-wrap {
  margin-bottom: 20px;
}

#compare.why-matrix-section + .bridge-zone .bridge-mark-wrap--bottom {
  margin-top: 20px;
}

.platform-scroll-anchor {
  height: 1px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Second bridge (platform → process) */
.bridge-zone--post-platform {
  padding: 10px 24px 64px;
}

.bridge-zone--post-platform .bridge-statement-intro {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: #f8faff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0;
}

.bridge-zone--post-platform .bridge-statement-lead {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5px;
}

.bridge-zone--post-platform .bridge-statement-custom {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
}

.bridge-zone--post-platform .bridge-statement-ai {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #93c5fd;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
}

.bridge-zone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.bridge-mark-wrap {
  width: min(100%, 960px);
  margin: 0 auto 36px;
}

.bridge-mark-wrap--bottom {
  margin: 40px auto 0;
}

.bridge-mark-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  width: 100%;
}

.bridge-mark-line {
  flex: 1 1 auto;
  height: 1px;
  max-width: min(440px, 46vw);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(92, 126, 173, 0.14) 12%,
    rgba(108, 149, 204, 0.32) 50%,
    rgba(92, 126, 173, 0.14) 88%,
    transparent 100%
  );
}

.bridge-grid {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
}

.bridge-grid::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.22) 0%,
    rgba(37, 99, 235, 0.08) 45%,
    transparent 72%
  );
  pointer-events: none;
  animation: bridge-grid-glow 6s ease-in-out infinite;
}

.bridge-grid-svg {
  position: relative;
  z-index: 1;
  display: block;
  overflow: visible;
}

.bridge-grid-dot {
  fill: #b8d4fa;
  animation: bridge-grid-dot-breathe 6s ease-in-out infinite;
}

.bridge-grid-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.bridge-grid-dot:nth-child(3) {
  animation-delay: 0.3s;
}

.bridge-grid-dot:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes bridge-grid-glow {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06);
  }
}

@keyframes bridge-grid-dot-breathe {
  0%, 100% {
    fill: #a8c8f5;
    opacity: 0.82;
  }
  50% {
    fill: #dbeafe;
    opacity: 1;
  }
}

.bridge-statement {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  max-width: 900px;
}

.bridge-zone:not(.bridge-zone--post-platform) .bridge-statement p {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  color: #f8faff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0;
}

.bridge-em {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  color: #93c5fd;
  font-style: italic;
  white-space: nowrap;
}

.bridge-em-punct {
  font-style: normal;
}

.bridge-br-structure {
  display: none;
}
.bridge-br-mobile {
  display: none;
}
.bridge-sent {
  display: inline;
}

@media (min-width: 698px) {
  .bridge-br-structure {
    display: block;
  }
}

@media (max-width: 697px) {
  .bridge-br-mobile {
    display: block;
  }
  .bridge-sent {
    display: block;
  }
  .bridge-sent + .bridge-sent {
    margin-top: 0.65em;
  }
  .bridge-em {
    white-space: normal;
  }
}

.bridge-zone.bridge-animate-ready .bridge-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.bridge-zone.is-visible .bridge-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.bridge-zone.is-visible .bridge-mark-wrap:not(.bridge-mark-wrap--bottom) {
  transition-delay: 0s;
}

.bridge-zone.is-visible .bridge-statement.bridge-reveal {
  transition-delay: 0.28s;
}

.bridge-zone--post-platform.is-visible .bridge-statement-intro.bridge-reveal {
  transition-delay: 0.28s;
}

.bridge-zone--post-platform.is-visible .bridge-statement-ai.bridge-reveal {
  transition-delay: 0.72s;
}

.bridge-zone.is-visible .bridge-mark-wrap--bottom {
  transition-delay: 0.48s;
}

.bridge-zone--post-platform.is-visible .bridge-mark-wrap--bottom {
  transition-delay: 1.05s;
}

.reveal-platform-card.animate-ready {
  transition-duration: 0.85s;
  transition-delay: 0.55s;
}

#platform-html .pb-stack.reveal.animate-ready {
  transition-duration: 0.75s;
  transition-delay: 0.08s;
}

@media (max-width: 900px) {
  .bridge-zone:not(.bridge-zone--post-platform) {
    padding: 32px 20px;
  }

  #compare.why-matrix-section + .bridge-zone {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .bridge-zone--post-platform {
    padding: 10px 20px 64px;
  }

  .bridge-zone--post-platform .bridge-statement-lead {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 10px;
  }

  .bridge-zone--post-platform .bridge-statement-custom {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .bridge-zone--post-platform .bridge-statement-ai {
    font-size: clamp(22px, 5.5vw, 32px);
    margin-top: 20px;
  }

  .bridge-mark-wrap {
    margin-bottom: 28px;
  }
  .bridge-mark-wrap--bottom {
    margin-top: 32px;
  }
  .bridge-mark-line {
    max-width: min(168px, 34vw);
  }

  .bridge-zone:not(.bridge-zone--post-platform) .bridge-statement p {
    line-height: 1.42;
  }

  @media (max-width: 768px) {
    .bridge-zone:not(.bridge-zone--post-platform) .bridge-statement p {
      font-size: 32px;
    }
  }

  #platform-html.ps-section {
    padding-top: 0;
    padding-bottom: 24px;
  }

  #platform.ps-section {
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bridge-grid::before,
  .bridge-grid-dot {
    animation: none;
  }
  .bridge-zone.bridge-animate-ready .bridge-reveal,
  .bridge-zone.is-visible .bridge-reveal,
  .bridge-zone--post-platform.bridge-animate-ready .bridge-statement-intro,
  .bridge-zone--post-platform.bridge-animate-ready .bridge-statement-ai,
  .bridge-zone--post-platform.is-visible .bridge-statement-intro,
  .bridge-zone--post-platform.is-visible .bridge-statement-ai {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-platform-card.animate-ready,
  #platform-html .pb-stack.reveal.animate-ready {
    transition-delay: 0s;
    }
}

/* ── TWO PATHS SIMPLIFIED ── */
.two-paths-simple {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.two-paths-simple-left h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(18px, 2.1vw, 27px);
    font-weight: 600;
    letter-spacing: -.015em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.two-paths-simple-left p {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 12px;
}

.two-paths-simple-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paths-simple-card {
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border);
}

    .paths-simple-card.primary {
        background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, var(--navy2) 100%);
        border-color: rgba(37,99,235,.35);
        position: relative;
        overflow: hidden;
    }

        .paths-simple-card.primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue), transparent);
        }

    .paths-simple-card.secondary {
        background: var(--navy2);
    }

    .paths-simple-card h3 {
        font-family: 'Fraunces', serif;
        font-size: 18px;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 8px;
        letter-spacing: -.01em;
    }

    .paths-simple-card p {
        font-size: 13.5px;
        color: #94a3b8;
        line-height: 1.7;
        font-weight: 300;
    }

@media (max-width: 768px) {
    .two-paths-simple {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── WORKFLOW COMBINATIONS ── */
.workflow-combinations {
    --workflow-screenshot-aspect: 16 / 9;
    --workflow-screenshot-column-min: 360px;
    --workflow-feature-desc-max-width: 300px;
    --workflow-screenshot-shadow:
        0 0 0 1px rgba(15, 31, 61, 0.08),
        0 2px 8px rgba(8, 22, 40, 0.1),
        0 6px 18px rgba(8, 22, 40, 0.08);
    padding: 48px 0 60px;
    background: #0A1628;
    border-top: none;
    font-family: 'Poppins', sans-serif;
}

#workflow-combinations {
    scroll-margin-top: var(--nav-height);
}

.workflow-combinations .workflow-combo-wrap {
    max-width: 1400px;
}

.workflow-combinations .workflow-base-card {
    background: #E6EDF5;
    border: 1px solid #E3ECF6;
    border-radius: 26px;
    padding: 48px 40px 0;
    box-shadow: 0 12px 48px rgba(8, 22, 40, 0.18), 0 2px 8px rgba(8, 22, 40, 0.06);
}

.workflow-combinations .section-header.workflow-combinations-header {
    text-align: center;
    margin-bottom: 36px;
}

.workflow-combinations .section-header .eyebrow,
.workflow-combinations .section-header .section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5C7EAD;
    margin: 0 0 14px;
}

.workflow-combinations .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: #0F1F3D;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
    white-space: nowrap;
}

.workflow-combinations .section-header h2::after {
    content: '';
    display: block;
    height: 2px;
    width: 32px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3a7bbf 0%, rgba(58, 123, 191, 0.4) 100%);
    margin: 16px auto 0;
}

.workflow-combinations .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 400;
    color: #5A7196;
    margin: 0 auto;
    line-height: 1.65;
}

.workflow-combinations .workflow-combo {
    --workflow-surface: #F8FAFF;
    --workflow-radius: 14px;
    --workflow-tab-track: #E9EFF6;
    --workflow-tab-shoulder: clamp(24px, 4vw, 86px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 1380px;
    margin-inline: auto;
}

.workflow-combinations .workflow-tab-rail {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    margin-bottom: -1px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    padding-bottom: 0;
}

.workflow-combinations .workflow-tab-shoulder {
    flex: 0 0 var(--workflow-tab-shoulder);
    width: var(--workflow-tab-shoulder);
    min-width: 0;
    max-width: var(--workflow-tab-shoulder);
    background: transparent;
    border: none;
    box-sizing: border-box;
}

.workflow-combinations .workflow-tab-shoulder--start,
.workflow-combinations .workflow-tab-shoulder--end {
    border-radius: 0;
    position: relative;
    z-index: 0;
}

.workflow-combinations .workflow-tabs {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: flex-end;
    gap: 0;
    margin: 0 auto;
    padding: 8px 16px 0 10px;
    width: max-content;
    max-width: 100%;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline-end: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: transparent;
}

.workflow-combinations .workflow-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.workflow-combinations .workflow-tab {
    --workflow-tab-overlap: 7px;
    --workflow-tab-pad-left: 14px;
    --workflow-tab-pad-right: 6px;
    --workflow-tab-height: 114px;
    --workflow-tab-pad-top: 10px;
    --workflow-tab-pad-bottom: 10px;
    --workflow-tab-grid-pull: calc(6px - var(--workflow-tab-pad-top));
    --workflow-tab-label-nudge: 4px;
    --workflow-tab-icon-size: 45px;
    --workflow-tab-icon-row: 45px;
    --workflow-tab-label-h: 34px;
    --workflow-tab-accent-h: 6px;
    --workflow-tab-gap: 5px;
    flex: 0 0 auto;
    width: 204px;
    min-width: 204px;
    min-height: var(--workflow-tab-height);
    height: var(--workflow-tab-height);
    display: grid;
    grid-template-rows: var(--workflow-tab-icon-row) var(--workflow-tab-label-h) var(--workflow-tab-accent-h);
    align-content: start;
    justify-items: center;
    gap: var(--workflow-tab-gap);
    padding: var(--workflow-tab-pad-top) calc(var(--workflow-tab-pad-right) + var(--workflow-tab-overlap)) var(--workflow-tab-pad-bottom) var(--workflow-tab-pad-left);
    margin: 0 calc(-1 * var(--workflow-tab-overlap)) 1px 0;
    background: #F8FAFF;
    border: 1px solid #E1E8F0;
    border-bottom: 1px solid #E1E8F0;
    border-radius: var(--workflow-radius) var(--workflow-radius) 0 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #0F1F3D;
    box-shadow: -2px 2px 10px rgba(15, 31, 61, 0.08), -4px 6px 18px rgba(15, 31, 61, 0.07);
    transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s, z-index 0.2s;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.workflow-combinations .workflow-tab:last-child {
    margin-right: 0;
    padding-right: var(--workflow-tab-pad-right);
    z-index: 7;
}

/* Earlier tabs on top: right edge tucks under the next tab; left edge stays visible */
.workflow-combinations .workflow-tab:nth-child(1) { z-index: 6; }
.workflow-combinations .workflow-tab:nth-child(2) { z-index: 5; }
.workflow-combinations .workflow-tab:nth-child(3) { z-index: 4; }
.workflow-combinations .workflow-tab:nth-child(4) { z-index: 3; }
.workflow-combinations .workflow-tab:nth-child(5) { z-index: 2; }
.workflow-combinations .workflow-tab:nth-child(6) { z-index: 1; }

.workflow-combinations .workflow-tab:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: -2px;
}

.workflow-combinations .workflow-tab.is-active {
    border-color: #2563EB;
    border-bottom-color: var(--workflow-surface);
    border-radius: var(--workflow-radius) var(--workflow-radius) 0 0;
    color: #2563EB;
    background: var(--workflow-surface);
    overflow: visible;
    z-index: 10;
    box-shadow: -2px 2px 16px rgba(37, 99, 235, 0.14), -4px 4px 24px rgba(15, 31, 61, 0.1);
}

/* Bridge active tab into panel — covers any seam under the tab */
.workflow-combinations .workflow-tab.is-active::after {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -3px;
    height: 4px;
    background: var(--workflow-surface);
    z-index: 2;
    pointer-events: none;
}

/* Underline sits in the reserved accent row below the label */
.workflow-combinations .workflow-tab.is-active .workflow-tab-label::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: calc(var(--workflow-tab-pad-bottom) + 2px);
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: #2563EB;
    margin: 0;
    flex-shrink: 0;
    z-index: 3;
    pointer-events: none;
}

.workflow-combinations .workflow-tab-icon {
    width: var(--workflow-tab-icon-size);
    height: var(--workflow-tab-icon-size);
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: start;
}

.workflow-combinations .workflow-tab-icon svg {
    width: var(--workflow-tab-icon-size);
    height: var(--workflow-tab-icon-size);
}

.workflow-combinations #workflow-tab-inventory .workflow-tab-icon svg {
    transform: translateY(calc(var(--workflow-tab-icon-size) * 0.067));
}

.workflow-combinations .workflow-events-star {
    fill: #d45f78;
}

.workflow-combinations .workflow-inventory-label {
    fill: #e9d5ff;
    stroke: #a855f7;
}

.workflow-combinations .workflow-professional-clasp {
    fill: #d4a853;
}

.workflow-combinations .workflow-id-card-strip {
    fill: #fef08a;
}

.workflow-combinations .workflow-cart-wheel {
    fill: #fb923c;
}

.workflow-combinations .workflow-calendar-strip,
.workflow-combinations .workflow-jobs-clock-fill,
.workflow-combinations .workflow-jobs-clock-face {
    fill: #7ec96e;
}

.workflow-combinations .workflow-tab-label {
    grid-row: 2;
    margin-top: calc(var(--workflow-tab-grid-pull) + var(--workflow-tab-label-nudge));
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    height: var(--workflow-tab-label-h);
    min-height: var(--workflow-tab-label-h);
    max-height: var(--workflow-tab-label-h);
    padding: 0 2px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
}

.workflow-combinations .workflow-panel {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    background: var(--workflow-surface);
    border: 1px solid #E3ECF6;
    border-radius: var(--workflow-radius);
    padding: 32px 24px 28px 32px;
    box-shadow: 0 16px 40px rgba(15, 31, 61, 0.1), 0 4px 12px rgba(15, 31, 61, 0.05);
    margin-top: 0;
    overflow: hidden;
}

.workflow-combinations .workflow-panel-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 16px;
    align-items: start;
}

.workflow-combinations .workflow-panel-main {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(var(--workflow-screenshot-column-min), 1fr);
    column-gap: 15px;
    align-items: start;
}

.workflow-combinations .workflow-copy {
    display: contents;
}

.workflow-combinations .workflow-copy h3 {
    grid-column: 1 / -1;
    grid-row: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #0F1F3D;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    align-self: start;
}

.workflow-combinations .workflow-description {
    grid-column: 1 / -1;
    grid-row: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #5A7196;
    line-height: 1.65;
    margin: 0 0 24px;
    text-align: center;
    width: 100%;
    max-width: none;
    align-self: start;
}

.workflow-combinations .workflow-panel-main .feature-grid {
    grid-column: 1;
    align-self: start;
    margin-left: -10px;
}

.workflow-combinations .feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    justify-items: stretch;
    width: var(--workflow-feature-content-width, max-content);
    max-width: 100%;
}

.workflow-combinations .workflow-feature-width-sandbox {
    position: absolute;
    left: -9999px;
    top: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    width: max-content;
}

.workflow-combinations .workflow-feature-width-sandbox .feature-copy h4 {
    white-space: nowrap;
}

.workflow-combinations .workflow-feature-width-sandbox .feature-copy-desc,
.workflow-combinations .workflow-jobs-row-sandbox .feature-copy-desc {
    max-width: var(--workflow-feature-desc-max-width);
}

.workflow-combinations .workflow-jobs-row-sandbox .feature-item {
    align-items: start;
}

.workflow-combinations .workflow-panel .feature-item {
    grid-template-rows: 1fr auto;
    align-items: center;
    box-sizing: border-box;
}

.workflow-combinations .workflow-panel .feature-item:first-child {
    align-items: start;
}

.workflow-combinations .workflow-panel .feature-item::after {
    align-self: end;
}

.workflow-combinations .workflow-panel .feature-icon {
    align-self: center;
}

.workflow-combinations .workflow-panel .feature-item:first-child .feature-icon,
.workflow-combinations .workflow-panel .feature-item:first-child .feature-copy {
    align-self: start;
}

.workflow-combinations .workflow-panel .feature-copy {
    align-self: center;
    min-width: 0;
}

.workflow-combinations .workflow-panel .feature-copy-desc {
    max-width: var(--workflow-feature-desc-max-width);
}

.workflow-combinations .feature-copy-desc {
    max-width: 100%;
    min-width: 0;
}

.workflow-combinations .feature-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px 0 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.workflow-combinations .feature-item:not(:last-child)::after {
    content: '';
    grid-column: 1 / -1;
    width: calc(100% - 10px);
    border-bottom: 1px solid rgba(227, 236, 246, 0.95);
    margin-top: 4px;
}

.workflow-combinations .feature-item:last-child {
    padding-bottom: 10px;
}

.workflow-combinations .feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workflow-combinations .feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.workflow-combinations .feature-icon--ticket svg {
    width: 20px;
    height: 22px;
    transform: translateY(-2px);
}

.workflow-combinations .feature-icon--award svg {
    width: 24px;
    height: 24px;
}

.workflow-combinations .feature-icon--folder svg {
    width: 17px;
    height: 17px;
}

.workflow-combinations .feature-icon--clock svg {
    width: 22px;
    height: 22px;
}

.workflow-combinations .feature-icon--box svg {
    width: 26px;
    height: 26px;
}

.workflow-combinations .feature-icon--truck svg {
    width: 24px;
    height: 24px;
}

.workflow-combinations .feature-icon--membership svg {
    width: 22px;
    height: 22px;
}

.workflow-combinations .feature-icon--lineChart svg {
    width: 22px;
    height: 22px;
}

.workflow-combinations .feature-icon--tag svg {
    width: 24px;
    height: 24px;
}

.workflow-combinations .feature-icon--receipt svg {
    width: 24px;
    height: 24px;
}

.workflow-combinations .feature-copy h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0F1F3D;
    margin: 0 0 6px;
    line-height: 1.35;
}

.workflow-combinations .feature-copy-desc p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #445769;
    line-height: 1.55;
    margin: 0;
    white-space: normal;
}

.workflow-combinations .workflow-panel-main .workflow-image-frame {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
}

@media (min-width: 901px) {
    .workflow-combinations .workflow-panel-main {
        --workflow-screenshot-align-offset: 12px;
    }

    .workflow-combinations .workflow-panel-main .workflow-image-frame {
        margin-top: var(--workflow-screenshot-align-offset);
    }
}

.workflow-combinations .workflow-panel .screenshot-placeholder {
    position: relative;
    flex: none;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: var(--workflow-screenshot-aspect);
    border-radius: var(--workflow-radius);
    background: linear-gradient(145deg, #EDE6DC 0%, #E8DFD3 45%, #DDD4C8 100%);
    border: 1px solid rgba(227, 236, 246, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--workflow-screenshot-shadow);
    padding: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.workflow-combinations .workflow-panel .screenshot-placeholder--image {
    padding: 0;
}

.workflow-combinations .screenshot-placeholder-mock {
    position: absolute;
    inset: 10px 10px 30px 10px;
    background: rgba(248, 252, 255, 0.92);
    border-radius: 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: 1fr;
    gap: 12px;
    border: 1px solid rgba(227, 236, 246, 0.9);
}

.workflow-combinations .screenshot-placeholder-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.workflow-combinations .screenshot-placeholder-nav {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(15, 31, 61, 0.1);
    width: 100%;
}

.workflow-combinations .screenshot-placeholder-nav--short {
    width: 70%;
    margin-top: auto;
}

.workflow-combinations .screenshot-placeholder-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
}

.workflow-combinations .screenshot-placeholder-bar {
    display: block;
    height: 10px;
    border-radius: 6px;
    background: rgba(15, 31, 61, 0.12);
    width: 100%;
    flex-shrink: 0;
}

.workflow-combinations .screenshot-placeholder-bar--short {
    width: 55%;
}

.workflow-combinations .screenshot-placeholder-block {
    display: block;
    flex: 1;
    min-height: 48px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.04) 55%, rgba(15, 31, 61, 0.06) 100%);
}

.workflow-combinations .screenshot-placeholder-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #5A7196;
    letter-spacing: 0.01em;
    text-align: center;
    pointer-events: none;
}

.workflow-combinations .screenshot-placeholder-mock-mobile {
    position: absolute;
    inset: 10px 10px 30px 10px;
    background: rgba(248, 252, 255, 0.96);
    border-radius: 18px;
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(227, 236, 246, 0.9);
    overflow: hidden;
}

.workflow-combinations .screenshot-placeholder-mobile-notch {
    display: block;
    width: 36%;
    max-width: 72px;
    height: 5px;
    margin: 0 auto 2px;
    border-radius: 999px;
    background: rgba(15, 31, 61, 0.14);
    flex-shrink: 0;
}

.workflow-combinations .screenshot-placeholder-mobile-status {
    display: block;
    width: 42%;
    height: 6px;
    border-radius: 4px;
    background: rgba(15, 31, 61, 0.08);
    flex-shrink: 0;
}

.workflow-combinations .screenshot-placeholder-mobile-header {
    display: block;
    width: 68%;
    height: 10px;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.18);
    flex-shrink: 0;
}

.workflow-combinations .screenshot-placeholder-mobile-row {
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(15, 31, 61, 0.1);
    flex-shrink: 0;
}

.workflow-combinations .screenshot-placeholder-mobile-row--short {
    width: 72%;
}

.workflow-combinations .screenshot-placeholder-mobile-card {
    display: block;
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0.05) 55%, rgba(15, 31, 61, 0.06) 100%);
    flex: 1;
}

.workflow-combinations .screenshot-placeholder-mobile-card--short {
    min-height: 32px;
    flex: 0 0 auto;
}

.workflow-combinations .screenshot-placeholder-mobile-nav {
    display: block;
    width: 100%;
    height: 10px;
    margin-top: auto;
    border-radius: 8px;
    background: rgba(15, 31, 61, 0.12);
    flex-shrink: 0;
}

.workflow-combinations .screenshot-placeholder--image {
    background: #fff;
    border: 1px solid rgba(227, 236, 246, 0.95);
    box-shadow: var(--workflow-screenshot-shadow);
}

.workflow-combinations .workflow-screenshot-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--workflow-screenshot-object-position, center);
    border-radius: calc(var(--workflow-radius) - 1px);
}

.workflow-combinations .workflow-panel-content {
    transition: opacity 0.22s ease;
}

.workflow-combinations .workflow-panel.is-fading .workflow-panel-content {
    opacity: 0.35;
}

.workflow-combinations .workflow-note {
    margin-top: 16px;
    padding: 0;
    border-top: 1px solid #E3ECF6;
    text-align: center;
    flex: 0 0 auto;
    width: 100%;
}

.workflow-combinations .workflow-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #5A7196;
    line-height: 1.65;
    margin: 0;
    padding: 16px 0 28px;
    max-width: none;
    white-space: nowrap;
}

.workflow-combinations .workflow-note-break {
    display: none;
}

/* Mobile accordion — hidden on desktop */
.workflow-combinations .workflow-mobile-accordion {
    display: none;
}

@media (max-width: 768px) {
    .workflow-combinations {
        --workflow-note-spacing: 12px;
        --workflow-note-padding-bottom: 20px;
    }

    .workflow-combinations .workflow-base-card {
        padding-bottom: 0;
    }

    .workflow-combinations .workflow-tab-rail,
    .workflow-combinations .workflow-panel {
        display: none !important;
    }

    .workflow-combinations .workflow-mobile-accordion {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        border: none;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        background: transparent;
    }

    .workflow-combinations .workflow-accordion-item {
        --workflow-accordion-overlap: 10px;
        position: relative;
        width: 100%;
        margin-top: calc(-1 * var(--workflow-accordion-overlap));
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
        transition: z-index 0s;
    }

    .workflow-combinations .workflow-accordion-item:first-child {
        margin-top: 0;
    }

    .workflow-combinations .workflow-accordion-item:nth-child(1) { z-index: 6; }
    .workflow-combinations .workflow-accordion-item:nth-child(2) { z-index: 5; }
    .workflow-combinations .workflow-accordion-item:nth-child(3) { z-index: 4; }
    .workflow-combinations .workflow-accordion-item:nth-child(4) { z-index: 3; }
    .workflow-combinations .workflow-accordion-item:nth-child(5) { z-index: 2; }
    .workflow-combinations .workflow-accordion-item:nth-child(6) { z-index: 1; }

    .workflow-combinations .workflow-accordion-item.is-open {
        z-index: 10;
    }

    .workflow-combinations .workflow-accordion-item.is-open .workflow-accordion-panel-inner {
        padding-bottom: 10px;
    }

    .workflow-combinations .workflow-accordion-trigger {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        min-height: 0;
        padding: 10px 16px;
        border: 1px solid #E1E8F0;
        border-radius: 14px;
        background: #F8FAFF;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.25;
        color: #0F1F3D;
        text-align: left;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
        box-shadow: -2px 2px 10px rgba(15, 31, 61, 0.08), -4px 6px 18px rgba(15, 31, 61, 0.07);
        transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s, border-radius 0.2s;
    }

    .workflow-combinations .workflow-accordion-item.is-open .workflow-accordion-trigger {
        background: var(--workflow-surface, #F8FAFF);
        color: #2563EB;
        border-color: #2563EB;
        border-bottom-color: #E3ECF6;
        border-radius: 14px 14px 0 0;
        box-shadow: -2px 2px 16px rgba(37, 99, 235, 0.14), -4px 4px 24px rgba(15, 31, 61, 0.1);
    }

    .workflow-combinations .workflow-accordion-trigger:focus-visible {
        outline: 2px solid #2563EB;
        outline-offset: -2px;
    }

    .workflow-combinations .workflow-accordion-icon {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .workflow-combinations .workflow-accordion-icon svg {
        width: 32px;
        height: 32px;
    }

    .workflow-combinations .workflow-accordion-item[data-tab="inventory"] .workflow-accordion-icon svg {
        transform: translateY(2px);
    }

    .workflow-combinations .workflow-accordion-label {
        flex: 1;
        min-width: 0;
    }

    .workflow-combinations .workflow-accordion-panel {
        background: var(--workflow-surface, #F8FAFF);
        overflow: visible;
        border: 1px solid #2563EB;
        border-top: none;
        border-radius: 0 0 14px 14px;
        margin-top: -1px;
        box-shadow: -2px 6px 16px rgba(37, 99, 235, 0.12), -4px 10px 24px rgba(15, 31, 61, 0.08);
    }

    .workflow-combinations .workflow-accordion-panel-inner {
        padding: 4px 16px 12px;
        overflow: visible;
    }

    .workflow-combinations .workflow-accordion-panel .feature-grid {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .workflow-combinations .workflow-accordion-panel .feature-item {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 12px 0 0;
    }

    .workflow-combinations .workflow-accordion-divider {
        height: 1px;
        background: #E3ECF6;
        margin: 16px 0;
    }

    .workflow-combinations .workflow-accordion-panel .workflow-accordion-divider,
    .workflow-combinations .workflow-accordion-panel .workflow-image-frame {
        display: none !important;
    }

    .workflow-combinations {
        --workflow-screenshot-mobile-max-width: min(100%, 360px);
    }

    .workflow-combinations .workflow-accordion-panel .workflow-image-frame {
        grid-column: unset;
        grid-row: unset;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        margin: 0;
        height: auto;
        min-height: unset;
        padding: 0 0 20px;
        box-sizing: border-box;
    }

    .workflow-combinations .workflow-accordion-panel .workflow-image-frame:empty,
    .workflow-combinations .workflow-accordion-panel .screenshot-placeholder--mobile-frame:not(.screenshot-placeholder--image) {
        display: none;
    }

    .workflow-combinations .workflow-accordion-panel .screenshot-placeholder--mobile-frame {
        position: relative;
        display: block;
        width: var(--workflow-screenshot-mobile-max-width);
        height: auto;
        min-height: 0;
        aspect-ratio: 9 / 16;
        max-width: var(--workflow-screenshot-mobile-max-width);
        max-height: none;
        flex: none;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 8px;
        border-radius: 22px;
        background: linear-gradient(145deg, #EDE6DC 0%, #E8DFD3 45%, #DDD4C8 100%);
        border: 1px solid rgba(227, 236, 246, 0.9);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--workflow-screenshot-shadow);
    }

    .workflow-combinations .workflow-accordion-panel .screenshot-placeholder--mobile-frame.screenshot-placeholder--image {
        padding: 0;
        border-radius: 22px;
    }

    .workflow-combinations .workflow-accordion-panel .screenshot-placeholder--mobile-frame .workflow-screenshot-img {
        border-radius: 22px;
        object-fit: cover;
        object-position: top center;
    }

    .workflow-combinations .workflow-accordion-panel .screenshot-placeholder-mock-mobile {
        inset: 8px 8px 28px 8px;
        border-radius: 16px;
    }

    .workflow-combinations .workflow-note {
        margin-top: var(--workflow-note-spacing);
        margin-bottom: 0;
        padding: 0;
    }

    .workflow-combinations .workflow-note p {
        padding: var(--workflow-note-spacing) 11px var(--workflow-note-padding-bottom);
        white-space: normal;
    }

    .workflow-combinations .workflow-note-break {
        display: block;
    }
}

@media (max-width: 1100px) {
    .workflow-combinations .section-header h2 {
        white-space: normal;
    }

    .workflow-combinations .workflow-tab {
        width: 194px;
        min-width: 194px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .workflow-combinations .section-header .eyebrow,
    .workflow-combinations .section-header .section-label {
        font-size: 14px;
    }

    .workflow-combinations .workflow-base-card {
        padding: 36px 24px 0;
        border-radius: 20px;
    }

    .workflow-combinations .workflow-tab-shoulder {
        --workflow-tab-shoulder: clamp(24px, 5vw, 60px);
    }

    .workflow-combinations .workflow-tabs {
        padding: 8px 14px 0 8px;
    }

    .workflow-combinations .workflow-tab {
        --workflow-tab-overlap: 7px;
        --workflow-tab-pad-left: 12px;
        --workflow-tab-pad-right: 6px;
        --workflow-tab-height: 90px;
        --workflow-tab-pad-top: 6px;
        --workflow-tab-pad-bottom: 10px;
        --workflow-tab-icon-size: 32px;
        --workflow-tab-icon-row: 32px;
        --workflow-tab-label-h: 30px;
        --workflow-tab-accent-h: 6px;
        --workflow-tab-gap: 4px;
        width: 184px;
        min-width: 184px;
    }

    .workflow-combinations .workflow-panel {
        padding: 28px 16px 22px 24px;
        box-shadow: 0 12px 32px rgba(15, 31, 61, 0.1), 0 4px 10px rgba(15, 31, 0.05);
    }

    .workflow-combinations .workflow-panel-body {
        grid-template-rows: auto auto auto;
        row-gap: 15px;
    }

    .workflow-combinations .workflow-panel-main {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        row-gap: 15px;
    }

    .workflow-combinations .workflow-panel-main .feature-grid {
        grid-column: 1;
        grid-row: 1;
        margin-left: 0;
    }

    .workflow-combinations .workflow-panel-main .workflow-image-frame {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        height: auto;
        justify-content: center;
        margin-top: 0;
    }

    .workflow-combinations .workflow-panel .screenshot-placeholder:not(.screenshot-placeholder--mobile-frame) {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: var(--workflow-screenshot-aspect);
    }
}

@media (max-width: 640px) {
    .workflow-combinations {
        padding: 36px 0 48px;
    }

    .workflow-combinations .workflow-base-card {
        padding: 28px 16px 0;
    }

    .workflow-combinations .workflow-tabs {
        padding: 6px 12px 0 6px;
    }

    .workflow-combinations .workflow-tab {
        --workflow-tab-overlap: 7px;
        --workflow-tab-pad-left: 10px;
        --workflow-tab-pad-right: 6px;
        --workflow-tab-height: 86px;
        --workflow-tab-pad-top: 6px;
        --workflow-tab-pad-bottom: 10px;
        --workflow-tab-icon-size: 28px;
        --workflow-tab-icon-row: 28px;
        --workflow-tab-label-h: 26px;
        --workflow-tab-accent-h: 6px;
        --workflow-tab-gap: 4px;
        width: 168px;
        min-width: 168px;
    }

    .workflow-combinations .workflow-tab-shoulder {
        --workflow-tab-shoulder: clamp(16px, 5vw, 36px);
    }

    .workflow-combinations .workflow-panel {
        padding: 24px 12px 18px 16px;
        box-shadow: 0 10px 28px rgba(15, 31, 61, 0.1), 0 3px 8px rgba(15, 31, 61, 0.05);
    }

    .workflow-combinations {
        --workflow-screenshot-mobile-max-width: min(100%, 340px);
        --workflow-note-spacing: 12px;
    }

    .workflow-combinations .screenshot-placeholder-mock {
        inset: 12px 12px 32px 12px;
        grid-template-columns: 48px 1fr;
    }
}

/* ── EVERYONE STAYS IN SYNC ── */
.sync-section {
    --sync-green: #2E7D50;
    --sync-purple: #7A5AC8;
    --sync-blue: #2E78FF;
    --sync-orange: #F28A2E;
    --sync-card-title: #10233E;
    --sync-card-muted: rgba(16, 35, 62, 0.68);
    --sync-header-muted: #8FA3BE;
    --sync-ai-text: rgba(255, 255, 255, 0.94);
    --sync-ai-muted: rgba(255, 255, 255, 0.7);
    padding: 88px 0 80px;
    background:
        radial-gradient(circle at top center, rgba(37, 99, 235, 0.12), transparent 35%),
        linear-gradient(180deg, #04101D 0%, #071526 50%, #05111F 100%);
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#everyone-stays-in-sync {
    scroll-margin-top: var(--nav-height);
}

.sync-container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 28px;
}

.sync-header {
    text-align: center;
    max-width: min(960px, 94vw);
    margin: 0 auto 56px;
}

.sync-header .eyebrow,
.sync-header .section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5C7EAD;
    margin: 0 0 14px;
}

.sync-header h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F4F8FC;
}

.sync-subheading {
    margin: 0 auto;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.65;
    font-weight: 400;
    color: var(--sync-header-muted);
}

.sync-layout {
    --sync-ai-nudge: 0px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 280px) minmax(0, 1.2fr) minmax(220px, 245px);
    grid-template-rows: auto auto;
    gap: 40px 18px;
    align-items: stretch;
    margin-bottom: 36px;
}

.sync-cards {
    display: flex;
        flex-direction: column;
    justify-content: space-between;
    gap: 0;
    align-self: stretch;
    min-height: 400px;
    padding: 4px 0;
    z-index: 2;
}

.sync-cards-left {
    grid-column: 1;
    grid-row: 1 / -1;
    align-items: flex-end;
    width: 100%;
    min-width: 0;
    padding-right: 0;
}

.sync-center {
    position: relative;
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    z-index: 1;
}

.sync-cards-right {
    grid-column: 3;
    grid-row: 1 / -1;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
}

.sync-cards .sync-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.sync-cards-left .sync-card--green,
.sync-cards-left .sync-card--purple {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 56px minmax(0, 1fr);
}

.sync-cards-left .sync-card--green .sync-card-head,
.sync-cards-left .sync-card--purple .sync-card-head,
.sync-cards-left .sync-card--green .sync-card-desc,
.sync-cards-left .sync-card--purple .sync-card-desc {
    white-space: normal;
}

.sync-cards-right .sync-card--blue,
.sync-cards-right .sync-card--orange {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 56px minmax(0, 1fr);
}

.sync-cards-right .sync-card--blue .sync-card-head,
.sync-cards-right .sync-card--orange .sync-card-head,
.sync-cards-right .sync-card--blue .sync-card-desc,
.sync-cards-right .sync-card--orange .sync-card-desc {
    white-space: normal;
}

@media (min-width: 1101px) and (max-width: 1399px) {
    .sync-layout {
        grid-template-columns: minmax(0, 1fr) minmax(228px, 268px) minmax(0, 1fr) minmax(190px, 228px);
        gap: 36px 16px;
    }

    .sync-card {
        padding: 16px 18px 20px;
    }

    .sync-card-desc {
        font-size: 12.5px;
        line-height: 1.5;
    }
}

@media (min-width: 1400px) {
    .sync-layout {
        grid-template-columns: minmax(285px, 1.2fr) minmax(260px, 280px) minmax(285px, 1.2fr) minmax(220px, 245px);
    }
}

.sync-ai-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.sync-ai {
    grid-column: 4;
    grid-row: 1 / -1;
    align-self: stretch;
    justify-self: start;
    width: 100%;
    max-width: 245px;
    margin-left: var(--sync-ai-nudge);
    z-index: 2;
}

.sync-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 10px;
    align-items: start;
    min-width: 0;
    min-height: 168px;
    padding: 18px 22px 24px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sync-card:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.sync-card--green {
    background: linear-gradient(135deg, #EEF7F1 0%, #F5FBF7 100%);
    border: 1px solid rgba(83, 143, 102, 0.18);
}

.sync-card--purple {
    background: linear-gradient(135deg, #F3EEFB 0%, #FAF7FF 100%);
    border: 1px solid rgba(126, 94, 196, 0.18);
}

.sync-card--blue {
    background: linear-gradient(135deg, #EEF5FF 0%, #F7FAFF 100%);
    border: 1px solid rgba(74, 131, 255, 0.18);
}

.sync-card--orange {
    background: linear-gradient(135deg, #FFF4EA 0%, #FFFAF5 100%);
    border: 1px solid rgba(255, 153, 51, 0.18);
}

.sync-card-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.sync-card-icon svg {
    width: 36px;
    height: 36px;
}

.sync-card--green .sync-card-icon-svg--customers {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.sync-card--green .sync-card-icon-svg--customers [stroke] {
    stroke-width: 1.5;
}

.sync-card--purple .sync-card-icon-svg--vendor {
    transform: translateY(-3px);
}

.sync-card--orange .sync-card-icon-svg--management {
    width: 38px;
    height: 38px;
    transform: translateY(3px);
}

.sync-card--orange .sync-card-icon-svg--management [stroke] {
    stroke-width: 1.15;
}

.sync-card--blue .sync-card-icon-svg--staff {
    width: 40px;
    height: 40px;
    stroke-width: 1.15;
    transform: translateY(-3px);
}

.sync-card--blue .sync-card-icon-svg--staff > g,
.sync-card--blue .sync-card-icon-svg--staff > g [stroke]:not([stroke="none"]) {
    stroke-width: 0.85;
}

.sync-card-head {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
        gap: 10px;
    width: 100%;
    min-width: 0;
    margin-right: 0;
    text-align: left;
}

.sync-card--green .sync-card-icon {
    background: rgba(46, 125, 80, 0.12);
    color: var(--sync-green);
}

.sync-card--purple .sync-card-icon {
    background: rgba(122, 90, 200, 0.12);
    color: var(--sync-purple);
}

.sync-card--blue .sync-card-icon {
    background: rgba(46, 120, 255, 0.12);
    color: var(--sync-blue);
}

.sync-card--orange .sync-card-icon {
    background: rgba(242, 138, 46, 0.14);
    color: var(--sync-orange);
}

.sync-card-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.sync-card--green .sync-card-head h3 { color: var(--sync-green); }
.sync-card--purple .sync-card-head h3 { color: var(--sync-purple); }
.sync-card--blue .sync-card-head h3 { color: var(--sync-blue); }
.sync-card--orange .sync-card-head h3 { color: var(--sync-orange); }

.sync-card-head h4 {
    --sync-h4-bullet-offset: 0.48em;
    position: relative;
    display: block;
    padding-left: 14px;
    width: 100%;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--sync-card-muted);
    white-space: normal;
}

.sync-card-h4-mobile {
    display: none;
}

.sync-hub-text-mobile {
    display: none;
}

.sync-heading-mobile {
    display: none;
}

.sync-subheading-br-mobile {
    display: none;
}

.sync-card-head h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: var(--sync-h4-bullet-offset);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.sync-card--green .sync-card-head h4::before {
    background: var(--sync-green);
}

.sync-card--purple .sync-card-head h4::before {
    background: var(--sync-purple);
}

.sync-card--blue .sync-card-head h4::before {
    background: var(--sync-blue);
}

.sync-card--orange .sync-card-head h4::before {
    background: var(--sync-orange);
}

.sync-card-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 12px 0 0;
    min-width: 0;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--sync-card-muted);
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sync-rings {
    --sync-ring-inset-1: 26px;
    --sync-ring-inset-2: 6px;
    --sync-ring-inset-3: -22px;
    --sync-ring-inset-4: -56px;
    --sync-ring-inset-5: -98px;
    position: absolute;
    inset: 50%;
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    pointer-events: none;
}

.sync-rings::before,
.sync-rings::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(111, 164, 255, 0.22);
}

.sync-rings::before {
    inset: var(--sync-ring-inset-1);
}

.sync-rings::after {
    inset: var(--sync-ring-inset-2);
    border-color: rgba(111, 164, 255, 0.13);
}

.sync-ring-outer,
.sync-ring-4,
.sync-ring-5 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(111, 164, 255, 0.08);
    pointer-events: none;
}

.sync-ring-outer {
    inset: var(--sync-ring-inset-3);
}

.sync-ring-4 {
    inset: var(--sync-ring-inset-4);
    border-color: rgba(111, 164, 255, 0.055);
}

.sync-ring-5 {
    inset: var(--sync-ring-inset-5);
    border-color: rgba(111, 164, 255, 0.04);
}

.sync-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.sync-line {
    opacity: 0.9;
}

.sync-hub {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 22px 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, rgba(46, 120, 255, 0.22) 0%, #122845 52%, #0B1A30 100%);
    border: 1px solid rgba(111, 164, 255, 0.28);
    box-shadow:
        0 0 18px 3px rgba(46, 120, 255, 0.1),
        0 12px 36px rgba(0, 0, 0, 0.28);
}

.sync-hub > .sync-hub-icon,
.sync-hub > .sync-hub-label,
.sync-hub > .sync-hub-text {
    transform: translateY(-6px);
}

.sync-hub-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 10px;
    color: #6FA4FF;
}

.sync-hub-icon [stroke] {
    stroke-width: 0.75;
}

.sync-hub-label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.sync-hub-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
}

.sync-ai {
    padding: 18px 0;
    background: linear-gradient(180deg, #17335A 0%, #0E223C 100%);
    border: 1px solid rgba(111, 164, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.sync-ai-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0 0 0 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    font-style: italic;
    font-synthesis: none;
    color: var(--sync-ai-text);
}

.sync-ai-title-text {
    line-height: 1.3;
    font-family: inherit;
    font-weight: 300;
    font-style: italic;
}

@media (min-width: 1101px) {
    .sync-ai-title {
        padding: 0 0 0 28px;
    }
}

.sync-ai-spark {
    width: 28px;
    height: 28px;
    color: #8FB8FF;
    flex-shrink: 0;
}

.sync-ai-prompts {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0 16px 9px;
}

.sync-ai-prompt {
    margin: 0;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--sync-ai-muted);
    background: rgba(4, 14, 28, 0.45);
    border: 1px solid rgba(111, 164, 255, 0.14);
    border-radius: 12px;
}

.sync-footer-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 16px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.sync-footer-item--lead {
    flex: 0 1 auto;
    min-width: 0;
}

.sync-footer-divider {
    flex: 0 0 61px;
    width: 61px;
    box-sizing: border-box;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-self: stretch;
    margin: 0;
}

.sync-footer-divider:first-of-type {
    flex: 0 0 59px;
    width: 59px;
    padding-left: 28px;
    padding-right: 30px;
}

.sync-footer-divider::before {
    content: "";
    width: 1px;
    height: 100%;
    min-height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.sync-footer-strip > .sync-footer-item:nth-child(3),
.sync-footer-strip > .sync-footer-item:nth-child(5) {
    flex: 0 0 auto;
    align-self: center;
    align-items: center;
}

.sync-footer-strip > .sync-footer-item:last-child {
    flex: 0 0 auto;
}

.sync-footer-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sync-footer-item.sync-footer-item--lead {
    align-items: center;
}

.sync-footer-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(111, 164, 255, 0.12);
    color: #8FB8FF;
}

.sync-footer-strip > .sync-footer-item:nth-child(3) .sync-footer-icon,
.sync-footer-strip > .sync-footer-item:nth-child(5) .sync-footer-icon {
    width: 50px;
    height: 50px;
}

.sync-footer-icon svg {
    width: 26px;
    height: 26px;
}

.sync-footer-icon-svg--devices {
    width: 34px;
    height: 34px;
    overflow: visible;
    transform: translateY(3px);
}

.sync-footer-strip > .sync-footer-item:nth-child(5) .sync-footer-icon svg {
    width: 29px;
    height: 29px;
}

.sync-footer-icon-svg--devices .sync-device-phone {
    fill: #172d4d;
    stroke: currentColor;
}

.sync-footer-item--lead .sync-footer-icon {
    width: 60px;
    height: 60px;
}

.sync-footer-item--lead .sync-footer-icon svg {
    width: 48px;
    height: 48px;
}

.sync-footer-item--lead p {
    max-width: none;
}

.sync-footer-item:nth-child(3) p {
    max-width: 16em;
}

.sync-footer-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: #EEF4FB;
}

.sync-footer-item p {
    margin: 0;
    max-width: 400px;
    font-size: 13px;
    line-height: 1.55;
    color: #8FA3BE;
}

@media (max-width: 1100px) {
    .sync-layout {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 260px) minmax(0, 1fr);
        gap: 32px 28px;
    }

    .sync-cards {
        min-height: 340px;
    }

    .sync-cards-left {
        align-items: flex-start;
        padding-right: 12px;
    }

    .sync-cards-right {
        align-items: flex-end;
        padding-left: 12px;
    }

    .sync-cards .sync-card,
    .sync-cards-left .sync-card--green,
    .sync-cards-left .sync-card--purple,
    .sync-cards-right .sync-card--blue,
    .sync-cards-right .sync-card--orange {
        width: 100%;
        max-width: 100%;
    }

    .sync-cards-left .sync-card--green .sync-card-head,
    .sync-cards-left .sync-card--purple .sync-card-head,
    .sync-cards-left .sync-card--green .sync-card-desc,
    .sync-cards-left .sync-card--purple .sync-card-desc,
    .sync-cards-right .sync-card--blue .sync-card-head,
    .sync-cards-right .sync-card--orange .sync-card-head,
    .sync-cards-right .sync-card--blue .sync-card-desc,
    .sync-cards-right .sync-card--orange .sync-card-desc {
        white-space: normal;
    }

    .sync-center {
        min-height: 340px;
    }

    .sync-ai {
        grid-column: 1 / -1;
        grid-row: auto;
        max-width: 480px;
        margin: 8px auto 0;
    }

    .sync-ai-connectors {
        display: none;
    }

    .sync-center {
        min-height: 280px;
    }

    .sync-hub {
        width: 200px;
        height: 200px;
    }

    .sync-hub-icon {
        width: 56px;
        height: 56px;
    }

    .sync-rings {
        --sync-ring-inset-1: 22px;
        --sync-ring-inset-2: 2px;
        --sync-ring-inset-3: -26px;
        --sync-ring-inset-4: -50px;
        --sync-ring-inset-5: -88px;
        width: 272px;
        height: 272px;
        margin: -136px 0 0 -136px;
    }
}

@media (max-width: 900px) {
    .sync-section {
        padding: 64px 0 72px;
    }

    .sync-container {
        padding: 0 18px;
    }

    .sync-header {
        margin-bottom: 36px;
    }

    .sync-heading-full {
        display: none;
    }

    .sync-heading-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }

    .sync-heading-line {
        display: block;
    }

    .sync-subheading-br-mobile {
        display: block;
    }

    .sync-layout {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "card-tl card-tr"
            "hub hub"
            "card-bl card-br"
            "ai ai";
        row-gap: 28px;
        column-gap: 18px;
        justify-items: stretch;
        margin-bottom: 36px;
    }

    .sync-cards {
        display: contents;
        min-height: 0;
        padding: 0;
    }

    .sync-cards .sync-card,
    .sync-cards-left .sync-card--green,
    .sync-cards-left .sync-card--purple,
    .sync-cards-right .sync-card--blue,
    .sync-cards-right .sync-card--orange {
        width: min(100%, 188px);
        max-width: 188px;
        margin-inline: 0;
        grid-template-columns: 40px 1fr;
    }

    .sync-cards-left .sync-card--green,
    .sync-cards-left .sync-card--purple {
        grid-template-columns: 40px 1fr;
    }

    .sync-cards-left .sync-card--green .sync-card-head,
    .sync-cards-left .sync-card--purple .sync-card-head,
    .sync-cards-left .sync-card--green .sync-card-desc,
    .sync-cards-left .sync-card--purple .sync-card-desc {
        white-space: normal;
    }

    .sync-cards-right .sync-card--blue,
    .sync-cards-right .sync-card--orange {
        grid-template-columns: 40px 1fr;
    }

    .sync-cards-right .sync-card--blue .sync-card-head,
    .sync-cards-right .sync-card--orange .sync-card-head,
    .sync-cards-right .sync-card--blue .sync-card-desc,
    .sync-cards-right .sync-card--orange .sync-card-desc {
        white-space: normal;
    }

    .sync-cards-left,
    .sync-cards-right {
        align-items: stretch;
    }

    .sync-cards-left .sync-card:first-child {
        grid-area: card-tl;
        justify-self: end;
    }

    .sync-cards-left .sync-card:last-child {
        grid-area: card-bl;
        justify-self: end;
    }

    .sync-cards-right .sync-card:first-child {
        grid-area: card-tr;
        justify-self: start;
    }

    .sync-cards-right .sync-card:last-child {
        grid-area: card-br;
        justify-self: start;
    }

    .sync-center {
        grid-area: hub;
        justify-self: stretch;
        width: 100%;
        min-height: 248px;
        margin: 12px 0 16px;
        z-index: 0;
    }

    .sync-rings {
        z-index: 0;
    }

    .sync-cards-left .sync-card:last-child,
    .sync-cards-right .sync-card:last-child {
        margin-bottom: 6px;
    }

    .sync-ai {
        grid-area: ai;
        width: max-content;
        max-width: 100%;
        justify-self: center;
        margin: 16px auto 0;
    }

    .sync-ai-title {
        width: 100%;
        padding: 0;
        justify-content: center;
        transform: translateX(-6px);
    }

    .sync-ai-prompts {
        align-items: center;
        padding: 0 20px 9px;
    }

    .sync-ai-prompt {
        width: max-content;
        max-width: 100%;
        padding: 10px 14px;
        text-align: center;
    }

    .sync-lines {
        display: block;
        z-index: 1;
    }

    .sync-ai-connectors {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 100%;
        transform: none;
        z-index: 1;
        pointer-events: none;
        overflow: visible;
    }

    .sync-ai-connector {
        opacity: 0.9;
    }

    .sync-line {
        opacity: 0.95;
    }

    .sync-card {
        position: relative;
        z-index: 3;
    }

    .sync-ai {
        position: relative;
        z-index: 2;
    }

    .sync-hub {
        z-index: 2;
    }

    .sync-card {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 10px;
        row-gap: 0;
        align-items: start;
        aspect-ratio: 1 / 1;
        min-height: 0;
        height: auto;
        box-sizing: border-box;
        padding: 20px 10px 6px 15px;
    }

    .sync-card-head {
        display: contents;
        margin-right: 0;
    }

    .sync-card-head h3 {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: -12px;
        font-size: 16px;
        line-height: 1;
        text-align: center;
    }

    .sync-card-icon {
        grid-column: 1;
        grid-row: 2;
        align-self: center;
        margin-top: -10px;
        width: 40px;
        height: 40px;
    }

    .sync-card-head h4 {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin-top: -6px;
        font-size: 14.5px;
        line-height: 1.25;
        --sync-h4-bullet-offset: 0.42em;
    }

    .sync-card-h4-full {
        display: none;
    }

    .sync-card-h4-mobile {
        display: inline;
    }

    .sync-card-desc {
        grid-row: 3;
        margin: 2px 0 0;
        font-size: 14px;
        line-height: 1.35;
    }

    .sync-card-icon svg {
        width: 30px;
        height: 30px;
    }

    .sync-card--green .sync-card-icon-svg--customers,
    .sync-card--green .sync-card-icon-svg--customers [stroke] {
        width: 30px;
        height: 30px;
        stroke-width: 1.5;
    }

    .sync-card--blue .sync-card-icon-svg--staff {
        width: 32px;
        height: 32px;
        stroke-width: 1.15;
    }

    .sync-card--blue .sync-card-icon-svg--staff > g,
    .sync-card--blue .sync-card-icon-svg--staff > g [stroke]:not([stroke="none"]) {
        stroke-width: 0.85;
    }

    .sync-card--orange .sync-card-icon-svg--management {
        width: 32px;
        height: 32px;
        transform: translateY(2px);
    }

    .sync-card--orange .sync-card-icon-svg--management [stroke] {
        stroke-width: 1.15;
    }

    .sync-card-head h3 {
        font-size: 15px;
    }

    .sync-hub {
        width: 184px;
        height: 184px;
    }

    .sync-hub-label {
        font-size: 14px;
    }

    .sync-hub-text {
        font-size: 13px;
    }

    .sync-hub-text-full {
        display: none;
    }

    .sync-hub-text-mobile {
        display: block;
    }

    .sync-footer-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 22px 18px;
    }

    .sync-footer-divider {
        display: none;
    }

    .sync-footer-item,
    .sync-footer-item.sync-footer-item--lead,
    .sync-footer-strip > .sync-footer-item:nth-child(3),
    .sync-footer-strip > .sync-footer-item:nth-child(5) {
        display: grid;
        grid-template-columns: 60px 1fr;
        column-gap: 16px;
        align-self: stretch;
        align-items: start;
        width: 100%;
    }

    .sync-footer-icon {
        justify-self: end;
    }

    .sync-footer-item.sync-footer-item--lead {
        align-items: center;
    }

    .sync-footer-strip > .sync-footer-item:last-child {
        margin-left: 0;
    }
}

@media (max-width: 900px) and (min-width: 600px) {
    .sync-container {
        padding: 0 22px;
    }

    .sync-footer-strip {
        max-width: 480px;
    }

    .sync-layout {
        row-gap: 14px;
        column-gap: clamp(40px, 8vw, 64px);
        overflow: visible;
    }

    .sync-ai-connectors {
        display: block;
        z-index: 4;
    }

    .sync-lines {
        z-index: 1;
    }

    .sync-center {
        min-height: 230px;
        margin: 2px 0 4px;
        z-index: 0;
    }

    .sync-rings {
        z-index: 0;
    }

    .sync-hub {
        z-index: 2;
    }

    .sync-card {
        position: relative;
        z-index: 3;
    }

    .sync-cards-left .sync-card:first-child,
    .sync-cards-right .sync-card:first-child {
        margin-bottom: -12px;
    }

    .sync-cards-left .sync-card:last-child,
    .sync-cards-right .sync-card:last-child {
        margin-top: -12px;
        margin-bottom: 8px;
    }

    .sync-cards-left .sync-card:first-child,
    .sync-cards-left .sync-card:last-child {
        transform: translateX(clamp(4px, 1vw, 10px));
    }

    .sync-cards-right .sync-card:first-child,
    .sync-cards-right .sync-card:last-child {
        transform: translateX(clamp(-10px, -1vw, -4px));
    }

    .sync-ai {
        margin-top: 22px;
    }

    .sync-hub {
        width: 198px;
        height: 198px;
    }

    .sync-hub-icon {
        width: 58px;
        height: 58px;
    }

    .sync-rings {
        --sync-ring-inset-1: 24px;
        --sync-ring-inset-2: 4px;
        --sync-ring-inset-3: -24px;
        --sync-ring-inset-4: -48px;
        --sync-ring-inset-5: -84px;
        width: 292px;
        height: 292px;
        margin: -146px 0 0 -146px;
    }
}

/* Tablet: wide user cards from 651px up (600–650px keeps square layout from mobile rules) */
@media (max-width: 900px) and (min-width: 651px) {
    .sync-cards .sync-card,
    .sync-cards-left .sync-card--green,
    .sync-cards-left .sync-card--purple,
    .sync-cards-right .sync-card--blue,
    .sync-cards-right .sync-card--orange {
        width: min(88%, 268px);
        max-width: min(88%, 268px);
    }

    .sync-cards-left .sync-card:first-child,
    .sync-cards-left .sync-card:last-child {
        justify-self: end;
    }

    .sync-cards-right .sync-card:first-child,
    .sync-cards-right .sync-card:last-child {
        justify-self: start;
    }

    .sync-card {
        aspect-ratio: 16 / 10;
        min-height: 136px;
        padding: 22px 18px 14px 20px;
        column-gap: 12px;
    }

    .sync-card-head h3 {
        margin-bottom: -8px;
    }

    .sync-card-head h4 {
        font-size: 13.5px;
        line-height: 1.2;
        --sync-h4-bullet-offset: 0.4em;
    }

    .sync-card-desc {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Phone: layout, hub scale, card typography, responsive column gap */
@media (max-width: 599px) {
    .sync-layout {
        --sync-mobile-col-gap: clamp(32px, 10vw, 72px);
        row-gap: 12px;
        column-gap: var(--sync-mobile-col-gap);
    }

    .sync-center {
        min-height: 218px;
        margin: 2px 0 4px;
    }

    .sync-hub {
        width: 196px;
        height: 196px;
    }

    .sync-hub-icon {
        width: 56px;
        height: 56px;
    }

    .sync-rings {
        --sync-ring-inset-1: 24px;
        --sync-ring-inset-2: 4px;
        --sync-ring-inset-3: -24px;
        --sync-ring-inset-4: -48px;
        --sync-ring-inset-5: -86px;
        width: 294px;
        height: 294px;
        margin: -147px 0 0 -147px;
    }

    .sync-cards-left .sync-card:first-child,
    .sync-cards-right .sync-card:first-child {
        margin-bottom: -8px;
    }

    .sync-cards-left .sync-card:last-child,
    .sync-cards-right .sync-card:last-child {
        margin-top: 0;
        margin-bottom: 6px;
    }

    .sync-ai {
        margin-top: 22px;
    }

    .sync-layout {
        margin-bottom: 28px;
    }

    .sync-card-head h4 {
        font-size: 13.5px;
        --sync-h4-bullet-offset: 0.4em;
    }

    .sync-card-desc {
        font-size: 13px;
    }

    .sync-lines {
        z-index: 1;
    }

    .sync-center {
        z-index: 0;
    }

    .sync-rings {
        z-index: 0;
    }

    .sync-hub {
        z-index: 2;
    }

    .sync-card {
        z-index: 3;
        isolation: isolate;
    }
}

@media (max-width: 480px) {
    .sync-header h2 {
        font-size: 26px;
    }

    .sync-subheading {
        font-size: 15px;
    }
}

.pattern-conclusion {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, var(--navy2) 100%);
    border: 1px solid rgba(37,99,235,.3);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

    .pattern-conclusion::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }

.pattern-conclusion-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: stretch;
}

.pattern-conclusion-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
}

.pattern-conclusion-left h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(17px, 1.9vw, 24px);
    font-weight: 500;
    color: var(--white);
    margin: 0 0 28px;
    letter-spacing: -.015em;
}

.pattern-conclusion-left p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px;
    max-width: 560px;
}

    .pattern-conclusion-left p:last-child {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-size: 18px;
        color: var(--ice);
        margin-bottom: 0;
    }

.pattern-conclusion-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    min-width: 220px;
}

    .pattern-conclusion-right p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 4px;
    }

@media (max-width: 768px) {
    .pattern-conclusion-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pattern-conclusion-right {
        text-align: center;
    }

    .pattern-conclusion-right .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .pattern-conclusion {
        padding: 32px 24px;
    }

    .pattern-conclusion-left {
        padding-left: 25px;
    }

    .pattern-conclusion-left h3 {
        font-size: 21px;
    }
}

/* ── TWO PATHS ── */
.two-paths {
    padding: 60px 0 75px;
    border-top: 1px solid var(--border);
}

.two-paths-header {
    text-align: center;
    margin-bottom: 39px;
}

    .two-paths-header h2 {
        font-family: 'Fraunces', serif;
        font-size: clamp(20px, 2.25vw, 30px);
        font-weight: 600;
        letter-spacing: -.015em;
        margin-bottom: 14px;
    }

    .two-paths-header p {
        color: var(--muted);
        font-size: 16px;
        font-weight: 300;
        max-width: 480px;
        margin: 0 auto;
    }

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.path-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    background: var(--navy2);
    position: relative;
    overflow: hidden;
    transition: border-color .2s;
}

    .path-card:hover {
        border-color: rgba(37,99,235,.4);
    }

    .path-card.featured {
        border-color: rgba(37,99,235,.4);
        background: linear-gradient(135deg, rgba(37,99,235,.08) 0%, var(--navy2) 100%);
    }

        .path-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue), transparent);
        }

.path-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(37,99,235,.15);
    border: 1px solid rgba(37,99,235,.3);
    color: var(--ice);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

.path-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.path-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
}

.path-list {
    list-style: none;
    margin-bottom: 28px;
}

    .path-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13.5px;
        color: var(--light);
        margin-bottom: 10px;
        line-height: 1.6;
    }

        .path-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--blue2);
            flex-shrink: 0;
            margin-top: 7px;
        }

/* ── CONTACT / FOOTER ── */
.contact-section {
    --contact-surface-gradient: linear-gradient(165deg, rgba(59, 130, 246, 0.14) 0%, #1a3352 40%, #172d45 100%);
    --contact-surface-border: 1px solid rgba(59, 130, 246, 0.28);
    --contact-surface-shadow:
        0 0 0 1px rgba(147, 197, 253, 0.06),
        0 8px 32px rgba(8, 14, 24, 0.45),
        0 20px 48px rgba(10, 22, 40, 0.35),
        0 0 40px rgba(37, 99, 235, 0.12);
    padding: 75px 0;
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2.25vw, 28px);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -.015em;
}

.contact-left p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
}

@media (max-width: 1100px) and (min-width: 601px) {
    .contact-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-left h2 {
        font-size: 30px;
    }

    .contact-left > p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-demo-callout {
        max-width: 560px;
        width: 100%;
        margin: 24px auto;
        box-sizing: border-box;
    }

    .contact-form-wrap {
        max-width: 560px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-details--mobile { display: none; }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--light);
}

    .contact-detail a {
        font-size: 13px;
        color: var(--light);
        text-decoration: none;
        transition: color .2s;
    }

        .contact-detail a:hover {
            color: var(--white);
        }

.contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(37,99,235,.1);
    border: 1px solid rgba(37,99,235,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue2);
}

.icon-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue2);
    flex-shrink: 0;
}

.icon-calendar svg {
    width: 22px;
    height: 22px;
    display: block;
}

.contact-demo-callout {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(165deg, rgba(59, 130, 246, 0.11) 0%, #172e4a 40%, #152738 100%);
    border: var(--contact-surface-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--contact-surface-shadow);
}

.contact-demo-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue2) 20%, var(--blue) 50%, var(--blue2) 80%, transparent);
    opacity: 0.9;
}

.contact-demo-callout-copy {
    flex: 1;
    min-width: 0;
}

.contact-demo-callout-copy h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.contact-demo-callout-copy p {
    margin: 0;
    font-size: 15px;
    color: #b8c9e0;
    line-height: 1.5;
}

.contact-demo-callout .contact-demo-icon.icon-calendar {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    margin-right: 25px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    box-shadow:
        0 0 0 1px rgba(147, 197, 253, 0.18),
        0 0 12px 3px rgba(59, 130, 246, 0.22);
}

.contact-demo-callout .contact-demo-icon.icon-calendar svg {
    width: 44px;
    height: 44px;
}

.op-data-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--muted);
}

.op-data-row .icon-calendar svg {
    width: 18px;
    height: 18px;
}

.qb-sync-tile .mbw-feature-icon.icon-calendar {
    margin-bottom: 0;
}

.contact-form-wrap {
    --contact-form-field: #111e35;
    background: var(--contact-surface-gradient);
    border: var(--contact-surface-border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--contact-surface-shadow);
}

.contact-form-wrap input,
.contact-form-wrap textarea {
    background: var(--contact-form-field);
    border-color: var(--border);
}

.contact-form-wrap label {
    color: #b8c9e0;
    font-weight: 400;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: rgba(186, 201, 220, 0.88);
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    background: #0f1a2e;
    border-color: rgba(37, 99, 235, 0.45);
}

.contact-form-wrap .btn-primary {
    border: 1px solid rgba(147, 197, 253, 0.42);
    box-shadow:
        0 0 0 1px rgba(15, 26, 40, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -2px 0 rgba(15, 31, 61, 0.32),
        0 4px 16px rgba(37, 99, 235, 0.32);
}

.contact-form-wrap .btn-primary:hover {
    border-color: rgba(191, 219, 254, 0.5);
    box-shadow:
        0 0 0 1px rgba(15, 26, 40, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 -2px 0 rgba(15, 31, 61, 0.28),
        0 8px 24px rgba(37, 99, 235, 0.4);
}

    .contact-form-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--blue2) 20%, var(--blue) 50%, var(--blue2) 80%, transparent);
        opacity: 0.9;
    }

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
}

input, textarea {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, background .2s;
}

    input:focus, textarea:focus {
        border-color: rgba(37,99,235,.5);
        background: rgba(37,99,235,.05);
    }

textarea {
    resize: vertical;
}

    input::placeholder, textarea::placeholder {
        color: var(--muted);
    }

.form-note {
    font-size: 11.5px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin-top: 12px;
}

    .form-note a {
        color: var(--blue2);
        text-decoration: none;
    }

footer {
    background: rgba(0,0,0,.3);
    border-top: 1px solid var(--border);
    padding: 48px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-inner > div:first-child {
    align-self: center;
}

.footer-brand {
    margin: 0;
    padding: 0;
}

.footer-brand img {
    height: calc(85px - 16px - 1px);
    width: auto;
    object-fit: contain;
}

.footer-brand a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 18px;
    margin: 0;
}

.footer-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 280px;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

    .footer-contact-links a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

        .footer-contact-links a:hover {
            color: var(--white);
        }

.footer-col h5,
.footer-nav h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.2;
}

.footer-col ul,
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}

    .footer-col ul li a,
    .footer-nav ul li a {
        font-size: 13.5px;
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

        .footer-col ul li a:hover,
        .footer-nav ul li a:hover {
            color: var(--white);
        }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 8px;
}

    .footer-bottom span, .footer-bottom a {
        font-size: 12.5px;
        color: var(--muted);
        text-decoration: none;
    }

/* ── ANIMATIONS ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .65s ease, transform .65s ease;
}

    .reveal.animate-ready {
        opacity: 0;
        transform: translateY(24px);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

.reveal-d4 {
    transition-delay: .45s;
}

.reveal.wm-cta-reveal.visible {
    transition-delay: 0.34s;
    transition-duration: 0.65s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .section-label {
        font-size: 14px;
    }

    nav > .container {
        padding: 0 40px;
    }

    .nav-links {
        display: none;
    }

    nav .btn.btn-primary {
        display: none;
    }

    .nav-logo img {
        height: 44px;
        max-width: 180px;
    }

    .hamburger {
        display: block !important;
        flex-shrink: 0;
    }

    .mbw-features {
        grid-template-columns: 1fr;
    }

    .paths-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-left .section-label,
    .contact-left h2 {
        text-align: center;
    }

    .contact-details--desktop { display: none; }
    .contact-details--mobile { display: flex; margin-top: 24px; }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-inner > div:first-child {
        align-self: auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-brand img {
        height: 48px;
    }

    .footer-brand a {
        padding: 10px 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .trust-stats {
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 104px 0 20px;
    }

    .hero-badge {
        margin: 0 auto 30px;
        max-width: calc(100% - 24px);
    }

    .hero-heading {
        margin-top: 0;
        margin-bottom: 14px;
    }

    /* Problem section: keep all cards inside the white base card, single column stack */
    .problem-section {
        overflow-x: hidden;
    }
    .problem-card {
        background: #F8FCFF;
        padding: 32px 24px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 960px;
        box-sizing: border-box;
    }
    .problem-header {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }
    .problem-grid {
        width: 100%;
        min-width: 0;
    }
    #problem .problem-eyebrow {
        font-size: 16px;
        letter-spacing: 0.12em;
        color: #5c7ead;
    }
    .problem-h1   { font-size: 24px; color: #0A1628; }
    .problem-h2   { font-size: 17px; color: #5b6472; }
    .pcard-ending { font-size: 15px; color: #0f1729; }
    .pcard-body   { color: #3f4a56; line-height: 1.72; }
    .problem-tagline-below {
        margin-top: 32px;
    }
}

/* Tablet: footer logo left; Explore (2 cols) + Legal (3rd col) on one row */
@media (max-width: 1100px) and (min-width: 601px) {
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px 32px;
        align-items: start;
    }

    .footer-inner > div:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: auto;
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-brand {
        display: flex;
        justify-content: flex-start;
        width: auto;
    }

    .footer-brand a {
        justify-content: flex-start;
    }

    .footer-nav {
        display: contents;
    }

    .footer-nav-columns {
        display: contents;
    }

    .footer-nav h5 {
        grid-column: 1 / 3;
        grid-row: 2;
        margin-bottom: 12px;
    }

    .footer-nav .footer-nav-columns ul:nth-child(1) {
        grid-column: 1;
        grid-row: 3;
    }

    .footer-nav .footer-nav-columns ul:nth-child(2) {
        grid-column: 2;
        grid-row: 3;
    }

    .footer-col {
        grid-column: 3;
        grid-row: 2 / 4;
        align-self: start;
    }
}

@media (min-width: 901px) {
    .section-label {
        font-size: 16px;
    }

    .pcard-body {
        font-size: 15px;
    }
}

/* ── PROBLEM SECTION (outgrown tools) ── */
.problem-card {
  background: #F8FCFF;
  border-radius: 32px;
  padding: 42px 48px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
}

.problem-card.problem-card-animate-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.problem-card.problem-card-animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

#problem.problem-section {
  scroll-margin-top: var(--nav-height);
}

.problem-header {
  text-align: center;
  margin: 0 auto 36px;
}
.problem-eyebrow {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5c7ead;
  margin-bottom: 12px;
}
.problem-h1 {
  font-size: 30px;
  font-weight: 600;
  color: #0A1628;
  line-height: 1.2;
  margin-bottom: 6px;
}
.problem-h2 {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: #6B7280;
  line-height: 1.4;
}

.problem-tagline-below {
  text-align: center;
  max-width: 620px;
  margin: 36px auto 0;
}

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.problem-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.pcard {
  background: #FBFBFB;
  border: 0.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 22px 22px 26px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.28s ease;
  cursor: default;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.pcard.red:hover    { box-shadow: 0 0 28px 8px rgba(220,38,38,0.13), 0 4px 16px rgba(0,0,0,0.07); }
.pcard.green:hover  { box-shadow: 0 0 28px 8px rgba(22,163,74,0.13), 0 4px 16px rgba(0,0,0,0.07); }
.pcard.orange:hover { box-shadow: 0 0 28px 8px rgba(249,115,22,0.13), 0 4px 16px rgba(0,0,0,0.07); }
.pcard.blue:hover   { box-shadow: 0 0 28px 8px rgba(37,99,232,0.13), 0 4px 16px rgba(0,0,0,0.07); }

.pcard-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  min-width: 0;
}
.pcard-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pcard-icon svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.icon-red    { background: #FEF2F2; }
.icon-green  { background: #F0FDF4; }
.icon-orange { background: #FFF7ED; }
.icon-blue   { background: #EBF2FE; }

.pcard-ending {
  font-size: 16px;
  font-weight: 500;
  color: #0A1628;
  line-height: 1.35;
  min-width: 0;
}
.em-red    { color: #DC2626; font-style: italic; font-weight: 600; }
.em-green  { color: #16A34A; font-style: italic; font-weight: 600; }
.em-orange { color: #F97316; font-style: italic; font-weight: 600; }
.em-blue   { color: #2563E8; font-style: italic; font-weight: 600; }

.pdivider {
  width: 80%;
  height: 1.5px;
  border-radius: 2px;
  margin: 0 auto 14px;
  opacity: 0.3;
}
.red-div    { background: #DC2626; }
.green-div  { background: #16A34A; }
.orange-div { background: #F97316; }
.blue-div   { background: #2563E8; }

.pcard-body {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
}

.animate-header,
.row-1,
.row-2 {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-header {
  transform: translateY(24px);
}
.animate-header.visible,
.row-1.visible,
.row-2.visible {
  opacity: 1;
  transform: translateY(0);
}
.row-2 {
  transition: opacity 0.55s ease 0.18s, transform 0.55s ease 0.18s;
}

/* ── PROBLEM SECTION — laptop (short screen, not mobile) ── */
@media (max-height: 800px) and (min-width: 769px) {
  .problem-section {
    padding: 48px 24px !important;
  }
  .problem-card {
    background: #F8FCFF;
    padding: 32px 36px;
    border-radius: 24px;
  }
  .problem-header {
    margin: 0 auto 24px;
  }
  .problem-eyebrow {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .problem-h1 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .problem-h2 {
    font-size: 16px;
  }
  .problem-grid {
    gap: 10px;
  }
  .problem-row {
    gap: 10px;
  }
  .pcard {
    padding: 14px 16px 18px;
  }
  .pcard-top {
    gap: 10px;
    margin-bottom: 8px;
  }
  .pcard-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .pcard-ending {
    font-size: 13px;
  }
  .pcard-body {
    font-size: 12px;
    line-height: 1.65;
  }
  .problem-tagline-below {
    margin: 24px auto 0;
  }
}

/* ── WHY MATRIX SECTION — laptop (short screen, not mobile) ── */
@media (max-height: 800px) and (min-width: 769px) {
  #compare.why-matrix-section {
    padding: 20px 32px 28px;
  }
  .wm-eyebrow {
    margin-bottom: 6px;
  }
  .wm-h1 {
    margin-bottom: 6px;
  }
  .wm-sub {
    margin-bottom: 10px;
  }
  .wm-desktop {
    padding: 8px 0 0;
  }
  .wm-thead-side {
    padding: 10px 14px;
  }
  .wm-thead-mx {
    padding: 12px 14px 10px;
  }
  /* Matrix column cells — tighter but same column layout */
  .wm-cmx .wm-cell {
    padding: 10px 12px;
    gap: 4px;
    min-height: 62px;
  }
  .wm-concept {
    margin-bottom: 3px;
  }

  /* Side card cells — icon moves inline left of value text */
  .wm-cdim .wm-cell {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 6px;
    padding: 10px 10px;
    min-height: 62px;
  }
  .wm-cdim .wm-ghost {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .wm-cdim .wm-cell > svg {
    flex-shrink: 0;
  }
  .wm-cdim .wm-vdim {
    text-align: left;
    line-height: 1.3;
  }

  .wm-vwin {
    padding: 5px 18px;
  }
  .wm-vbad {
    padding: 6px 20px 8px;
  }
  .wm-vbadge {
    padding: 4px 10px;
  }
  .wm-cta-outer {
    padding: 28px 0 0;
  }

  #compare .wm-cta-section {
    padding: 28px 0 8px;
  }
}

/* ── WHY MATRIX SECTION ── */
#compare.why-matrix-section {
  background: #0a1628;
  padding: 32px 32px 16px;
  font-family: 'Poppins', sans-serif;
  scroll-margin-top: var(--nav-height);
}

@media (min-width: 901px) {
  #compare.why-matrix-section {
    padding-top: 90px;
  }
}

#compare.why-matrix-section .wm-h1,
#compare.why-matrix-section .wm-sub {
  text-align: center;
}

.wm-desktop {
  display: block;
  padding: 16px 0 0;
}

.why-matrix-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.why-matrix-wrap > .wm-eyebrow,
.why-matrix-wrap > .wm-h1,
.why-matrix-wrap > .wm-sub {
  text-align: center;
}

.wm-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c7ead;
  margin-bottom: 12px;
  text-align: center;
}
.wm-h1 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.wm-h1::after {
  height: 2px;
  min-height: 2px;
  width: 32px;
  border-radius: 1px;
  margin: 10px auto 0;
  flex-shrink: 0;
  transform: translateZ(0);
}

@media (min-width: 769px) {
  .why-matrix-wrap {
    max-width: 1000px;
  }

  #compare.why-matrix-section .wm-h1 {
    font-size: 32px;
    max-width: none;
  }

  #compare.why-matrix-section .wm-sub {
    font-size: 16px;
    color: #94A3B8;
    margin-bottom: 28px;
  }
}

.wm-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  #compare.why-matrix-section .wm-h1 {
    font-size: 24px;
  }
  #compare.why-matrix-section .wm-sub {
    margin-bottom: 28px;
  }
  #compare.why-matrix-section .wm-eyebrow {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  #compare.why-matrix-section {
    padding: 40px 16px 40px;
    overflow-x: hidden;
  }
  /* Compare glow fades into bridge zone — no hard divider before platform */
  #platform.ps-section {
    border-top: none;
  }
  .section-divider-block {
    margin-top: 80px;
  }
  .problem-row {
    flex-direction: column;
  }
  .problem-section {
    padding: 48px 15px !important;
  }
  .problem-card {
    background: #F8FCFF;
    padding: 32px 12px;
    border-radius: 18px;
  }
  .pcard {
    padding: 16px 16px 20px;
  }
  .problem-grid {
    gap: 12px;
  }
}

.wm-table-outer {
  position: relative;
  border-radius: 26px;
  overflow: visible;
  border: 1px solid rgba(220, 230, 248, 0.34);
  perspective: 1400px;
  perspective-origin: 50% 45%;
  transform-style: preserve-3d;
  box-shadow:
    0 28px 72px -14px rgba(0, 0, 0, 0.68),
    0 10px 28px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 0 48px 20px rgba(255, 255, 255, 0.08),
    0 0 96px 44px rgba(130, 170, 230, 0.06);
}

/* Base chassis rim — masked so the center column is left open for the raised Matrix stack */
.wm-table-outer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 9;
  pointer-events: none;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    inset -2px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.42),
    inset 2px 0 0 rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset -3px -3px 10px rgba(0, 0, 0, 0.14);
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(26% - 1px),
    transparent calc(26% + 2px),
    transparent calc(74% - 2px),
    #000 calc(74% + 1px),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(26% - 1px),
    transparent calc(26% + 2px),
    transparent calc(74% - 2px),
    #000 calc(74% + 1px),
    #000 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Raised Matrix “screen” stack: flush to card top/bottom so rounded corners stay clean */
.wm-mx-stack {
  position: absolute;
  left: 26%;
  width: 48%;
  top: -8px;
  bottom: 0;
  z-index: 14;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: 22px;
  border: 5px solid rgba(230, 238, 252, 0.95);
  box-shadow:
    0 -14px 36px rgba(0, 0, 0, 0.38),
    0 18px 44px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 0 28px 10px rgba(80, 140, 255, 0.12),
    inset 0 3px 0 rgba(255, 255, 255, 0.72),
    inset -3px 0 0 rgba(255, 255, 255, 0.42),
    inset 3px 0 0 rgba(0, 0, 0, 0.32),
    inset 0 -3px 0 rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out;
}

.wm-table-outer:has(.wm-col-matrix:hover) .wm-mx-stack,
.wm-table-outer:has(.wm-col-matrix:hover) td.wm-col-matrix,
.wm-table-outer:has(.wm-col-matrix:hover) td.wm-cmx,
.wm-table-outer:has(.wm-col-matrix:hover) .wm-vwin,
.wm-table-outer:has(.wm-cmx:hover) .wm-mx-stack,
.wm-table-outer:has(.wm-cmx:hover) td.wm-col-matrix,
.wm-table-outer:has(.wm-cmx:hover) td.wm-cmx,
.wm-table-outer:has(.wm-cmx:hover) .wm-vwin,
.wm-table-outer:has(.wm-vwin:hover) .wm-mx-stack,
.wm-table-outer:has(.wm-vwin:hover) td.wm-col-matrix,
.wm-table-outer:has(.wm-vwin:hover) td.wm-cmx,
.wm-table-outer:has(.wm-vwin:hover) .wm-vwin,
.wm-table-outer:has(.wm-col-matrix:hover) .wm-glow,
.wm-table-outer:has(.wm-cmx:hover) .wm-glow,
.wm-table-outer:has(.wm-vwin:hover) .wm-glow {
  transform: translate3d(0, 0, 22px);
}

.wm-glow {
  position: absolute;
  top: -8px;
  bottom: 0;
  left: 26%;
  width: 48%;
  height: auto;
  border-radius: 22px;
  pointer-events: none;
  box-shadow:
    0 0 0 1.5px rgba(37, 99, 232, 0.6),
    0 0 28px 8px rgba(37, 99, 232, 0.2),
    0 0 56px 18px rgba(37, 99, 232, 0.1);
  z-index: 3;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.wm-table {
  width: 100%;
  /* separate + 0 keeps row borders aligned when matrix cells use transform */
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  z-index: 4;
  table-layout: fixed;
}
.wm-col-side {
  width: 26%;
}
.wm-col-matrix {
  width: 48%;
  position: relative;
  z-index: 6;
  background: #1a3a9c;
  border-left: 0.5px solid rgba(37, 99, 232, 0.3);
  border-right: 0.5px solid rgba(37, 99, 232, 0.3);
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wm-thead-side {
  background: #111e35;
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
}
.wm-col-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.64);
}

.wm-table thead td.wm-col-side {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111e35;
  padding: 0;
  vertical-align: stretch;
}
.wm-table thead td.wm-col-side .wm-thead-side {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wm-table thead td.wm-col-side:first-child .wm-thead-side {
  border-radius: 22px 0 0 0;
}
.wm-table thead td.wm-col-side:last-child .wm-thead-side {
  border-radius: 0 22px 0 0;
}

.wm-table thead td.wm-col-matrix {
  vertical-align: middle;
  height: 100%;
  border-bottom: none;
  background: transparent;
  overflow: visible;
}

.wm-thead-mx {
  background: #1a3a9c;
  border-radius: 22px 22px 0 0;
  margin-top: -8px;
  padding: 20px 14px 16px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset -1px 0 0 rgba(255, 255, 255, 0.12),
    inset 1px 1px 0 rgba(0, 0, 0, 0.22);
}
.wm-thead-mx::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 85% 55% at 100% 100%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.03) 38%,
      transparent 62%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 72%,
      rgba(255, 255, 255, 0.05) 88%,
      rgba(255, 255, 255, 0.09) 100%
    ),
    linear-gradient(
      to left,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 14%,
      transparent 30%
    );
}
.wm-col-name-mx {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wm-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.wm-row td {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}
.wm-row:last-child td {
  border-bottom: none;
}
.wm-row:last-child td.wm-cmx-last {
  border-bottom: 0.5px solid rgba(37, 99, 232, 0.3);
}

.wm-cdim {
  text-align: center;
  background: #111e35;
}
.wm-cdim .wm-cell {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 6px;
}
.wm-cdim .wm-ghost {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.wm-cdim .wm-cell > svg {
  flex-shrink: 0;
  opacity: 0.66;
}
.wm-cdim .wm-vdim {
  text-align: left;
}
.wm-cmx {
  text-align: center;
  background: rgba(26, 58, 156, 0.2);
  border-left: 0.5px solid rgba(37, 99, 232, 0.3);
  border-right: 0.5px solid rgba(37, 99, 232, 0.3);
  position: relative;
  z-index: 6;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  vertical-align: top;
}
.wm-cmx .wm-cell {
  min-height: 40px;
  box-sizing: border-box;
  background: transparent;
}

.wm-table tbody tr.wm-row:first-child td.wm-cmx {
  border-top: none;
}

.wm-cell {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 72px;
}

.wm-ghost {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  margin-bottom: 4px;
  text-align: center;
  line-height: 1;
}
.wm-vdim {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  line-height: 1.4;
}
.wm-concept {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfdbfe;
  margin-bottom: 4px;
  text-align: center;
  line-height: 1;
}
.wm-val-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.wm-val-row .wm-check-icon {
  flex-shrink: 0;
  margin-top: 3px;
}
.wm-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.93);
  font-weight: 400;
  text-align: left;
  line-height: 1.55;
}

.wm-vrow {
  display: grid;
  grid-template-columns: 26% 48% 26%;
  position: relative;
  z-index: 4;
  align-items: stretch;
}
.wm-vbad {
  background: #111e35;
  padding: 10px 20px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wm-vrow .wm-vbad:first-child { border-radius: 0 0 0 22px; }
.wm-vrow .wm-vbad:last-child  { border-radius: 0 0 22px 0; }
.wm-vbadge {
  background: rgba(180, 30, 30, 0.14);
  border: 1px solid rgba(248, 113, 113, 0.38);
  border-radius: 8px;
  padding: 6px 10px;
  width: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 220, 0.2),
    0 0 0 1px rgba(127, 29, 29, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.35);
}
.wm-vwin-mobile { display: none; }

@media (max-width: 600px) {
  .wm-vwin-desktop { display: none; }
  .wm-vwin-mobile  { display: block; }
}

.wm-vbadge-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(248, 113, 113, 0.58);
  line-height: 1.5;
  text-align: center;
}
.wm-vwin {
  background: #1a3a9c;
  border-radius: 0 0 14px 14px;
  padding: 8px 18px;
  text-align: center;
  position: relative;
  z-index: 6;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    inset -1px 0 0 rgba(0, 0, 0, 0.28),
    inset 1px 0 0 rgba(255, 255, 255, 0.14);
}
.wm-vwin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 90% 70% at 100% 100%,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.025) 40%,
      transparent 65%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 78%,
      rgba(255, 255, 255, 0.045) 90%,
      rgba(255, 255, 255, 0.085) 100%
    ),
    linear-gradient(
      to left,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.025) 16%,
      transparent 34%
    );
}
.wm-vwin-text {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* CTA below compare table/cards — spacing only on wrapper; reveal on .wm-cta-inner */
.wm-cta-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 8px;
  margin: 0;
}

#compare .wm-cta-section {
  margin-top: 0;
}

@media (min-width: 601px) {
  .wm-cta-outer {
    padding: 28px 0 4px;
  }

  #compare .wm-cta-section {
    padding: 28px 0 0;
  }
}

/* Tablet: skip 3D compositing — perspective/transform layers blur table text */
@media (max-width: 1100px) {
  .wm-table-outer {
    perspective: none;
    transform-style: flat;
  }

  .wm-mx-stack,
  .wm-glow,
  .wm-col-matrix,
  .wm-cmx,
  .wm-vwin,
  .wm-table-outer:has(.wm-col-matrix:hover) .wm-mx-stack,
  .wm-table-outer:has(.wm-col-matrix:hover) td.wm-col-matrix,
  .wm-table-outer:has(.wm-col-matrix:hover) td.wm-cmx,
  .wm-table-outer:has(.wm-col-matrix:hover) .wm-vwin,
  .wm-table-outer:has(.wm-cmx:hover) .wm-mx-stack,
  .wm-table-outer:has(.wm-cmx:hover) td.wm-col-matrix,
  .wm-table-outer:has(.wm-cmx:hover) td.wm-cmx,
  .wm-table-outer:has(.wm-cmx:hover) .wm-vwin,
  .wm-table-outer:has(.wm-vwin:hover) .wm-mx-stack,
  .wm-table-outer:has(.wm-vwin:hover) td.wm-col-matrix,
  .wm-table-outer:has(.wm-vwin:hover) td.wm-cmx,
  .wm-table-outer:has(.wm-vwin:hover) .wm-vwin {
    transform: none;
  }

  .wm-mx-stack {
    transition: box-shadow 0.12s ease-out;
  }

  .wm-col-matrix,
  .wm-cmx,
  .wm-vwin {
    transition: background-color 0.22s ease, box-shadow 0.22s ease;
  }

  .wm-table-outer.reveal,
  .wm-table-outer.reveal.animate-ready,
  .wm-table-outer.reveal.visible,
  .wm-mobile.reveal,
  .wm-mobile.reveal.animate-ready,
  .wm-mobile.reveal.visible {
    transform: none;
  }

  .wm-table-outer.reveal,
  .wm-table-outer.reveal.animate-ready,
  .wm-mobile.reveal,
  .wm-mobile.reveal.animate-ready {
    transition: opacity 0.65s ease;
  }

  .wm-table-outer.reveal.visible,
  .wm-mobile.reveal.visible {
    transition: opacity 0.65s ease;
  }
}

.wm-cta-inner {
  width: auto;
}
.wm-btn-ghost,
a.wm-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563EB;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid #2563EB;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.32);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}
a.wm-btn-ghost {
  text-decoration: none;
}
.wm-btn-ghost:hover,
a.wm-btn-ghost:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* MOBILE */
.wm-mobile {
  display: none;
  position: relative;
}

@media (max-width: 600px) {
  .wm-desktop { display: none; }

  .wm-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 4px;
    position: relative;
  }
  .wm-mobile::before {
    content: "";
    position: absolute;
    inset: -4px -10px -9px -10px;
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 92% 80% at 50% 40%, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.035) 55%, transparent 76%);
    box-shadow: 0 0 40px 18px rgba(255,255,255,0.075), 0 0 80px 38px rgba(255,255,255,0.04);
  }
  .wm-mobile > * { position: relative; z-index: 1; }

  /* ── Card shell ── */
  .wm-mc { border-radius: 22px; position: relative; width: 100%; box-sizing: border-box; }

  /* ── Matrix card ── */
  .wm-mc--matrix {
    background: rgba(26,58,156,0.3);
    border: 5px solid rgba(230,238,252,0.95);
    overflow: hidden;
    box-shadow:
      0 -14px 36px rgba(0,0,0,0.34),
      0 20px 48px rgba(0,0,0,0.5),
      0 0 0 1px rgba(0,0,0,0.5),
      0 0 28px 12px rgba(80,140,255,0.12);
  }
  .wm-mc--matrix::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 8;
    pointer-events: none;
    box-shadow:
      inset 0 3px 0 rgba(255,255,255,0.68),
      inset -3px 0 0 rgba(255,255,255,0.4),
      inset 3px 0 0 rgba(0,0,0,0.3),
      inset 0 -3px 0 rgba(0,0,0,0.36),
      inset 0 0 0 1px rgba(255,255,255,0.16),
      inset -4px -4px 12px rgba(0,0,0,0.14);
  }

  /* Matrix card header */
  .wm-mc-hd {
    position: relative;
    background: #1a3a9c;
    padding: 18px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.26), inset -1px 0 0 rgba(255,255,255,0.1), inset 1px 1px 0 rgba(0,0,0,0.18);
  }
  .wm-mc-hd::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 85% 55% at 100% 100%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.025) 38%, transparent 62%),
      linear-gradient(to bottom, transparent 0%, transparent 68%, rgba(255,255,255,0.04) 88%, rgba(255,255,255,0.07) 100%),
      linear-gradient(to left, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 14%, transparent 30%);
  }
  .wm-mc-hd .wm-logo-img {
    height: 26px;
    width: auto;
  }
  .wm-mc-htitle {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 0;
  }

  /* Matrix rows */
  .wm-mc-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 12px;
  }
  .wm-mc-row:last-child, .wm-mc-row--last { border-bottom: none; }
  .wm-mc-concept {
    font-size: 11px;
    font-weight: 500;
    color: #bfdbfe;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding-top: 2px;
    width: 80px;
  }
  .wm-mc-mval {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    text-align: left;
    line-height: 1.5;
    flex: 1;
  }

  /* Matrix footer / verdict */
  .wm-mc-ft--win {
    position: relative;
    background: #1a3a9c;
    padding: 15px 18px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.32), inset -1px 0 0 rgba(0,0,0,0.26), inset 1px 0 0 rgba(255,255,255,0.12);
  }
  .wm-mc-ft--win::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 90% 70% at 100% 100%, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.025) 40%, transparent 65%),
      linear-gradient(to bottom, transparent 0%, transparent 76%, rgba(255,255,255,0.045) 90%, rgba(255,255,255,0.08) 100%),
      linear-gradient(to left, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 16%, transparent 34%);
  }
  .wm-mc-win-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 0;
  }
  .wm-mc-ft--standalone {
    border-radius: 16px;
    border: 2px solid rgba(230,238,252,0.95);
    box-shadow:
      0 14px 36px rgba(0,0,0,0.34),
      0 0 0 1px rgba(0,0,0,0.5),
      0 0 28px 12px rgba(80,140,255,0.12);
  }
  .wm-mc-ft--standalone::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 8;
    pointer-events: none;
    box-shadow:
      inset 0 3px 0 rgba(255,255,255,0.68),
      inset -3px 0 0 rgba(255,255,255,0.4),
      inset 3px 0 0 rgba(0,0,0,0.3),
      inset 0 -3px 0 rgba(0,0,0,0.36),
      inset 0 0 0 1px rgba(255,255,255,0.16);
  }

  /* ── Side cards (Generic + Custom Build) ── */
  .wm-mc--side {
    background: #111e35;
    border: 1px solid rgba(220,230,248,0.34);
    overflow: hidden;
    box-shadow:
      0 14px 44px rgba(0,0,0,0.58),
      0 0 0 1px rgba(0,0,0,0.55),
      0 0 48px 16px rgba(255,255,255,0.04);
  }
  .wm-mc--side::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 9;
    pointer-events: none;
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,0.42),
      inset -2px 0 0 rgba(255,255,255,0.22),
      inset 0 -2px 0 rgba(0,0,0,0.42),
      inset 2px 0 0 rgba(0,0,0,0.32),
      inset 0 0 0 1px rgba(255,255,255,0.1),
      inset -3px -3px 10px rgba(0,0,0,0.14);
  }

  /* Side card header */
  .wm-mc-hd--side {
    background: rgba(255,255,255,0.04);
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wm-mc-htitle--side {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.64);
    margin: 0;
  }

  /* Side rows */
  .wm-mc-srow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .wm-mc-srow--last { border-bottom: none; }
  .wm-mc-slabel {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    width: 80px;
    flex-shrink: 0;
    line-height: 1.3;
  }
  .wm-mc--side .wm-mc-icon {
    flex-shrink: 0;
    display: block;
    opacity: 0.66;
  }
  .wm-mc-row .wm-check-icon { flex-shrink: 0; display: block; margin-top: 2px; }
  .wm-mc-sval {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.66);
    flex: 1;
    line-height: 1.4;
  }

  /* Side card footer badge */
  .wm-mc-ft--bad {
    background: rgba(180, 30, 30, 0.14);
    border-top: 1px solid rgba(248, 113, 113, 0.22);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(248, 113, 113, 0.58);
    text-align: center;
    line-height: 1.4;
  }

  /* CTA — outside card stack on mobile */
  .wm-cta-outer { padding: 0 0 4px; margin: 0; }
  .wm-cta-inner { width: 100%; }
  #compare .wm-cta-section {
    display: flex;
    margin-top: 20px;
    padding: 16px 0 8px;
  }
  #platform.ps-section {
    padding-top: 40px;
    border-top: none;
  }
}

/* ── PLATFORM SECTION (ps-*) ── */
.ps-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  overflow-x: hidden;
}

#platform .ps-platform-eyebrow {
  margin-bottom: 14px;
}
.ps-platform-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #F8FAFF;
  text-align: center;
  margin: 0 0 30px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .ps-platform-h2 {
    font-size: 24px;
  }
}
.ps-platform-h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 32px;
  border-radius: 2px;
  background: linear-gradient(90deg, #3a7bbf 0%, rgba(58,123,191,0.4) 100%);
  margin: 10px auto 0;
}

/* Platform overview images — same rounded frame as .problem-card */
.ps-platform-visual {
  background: #F8FCFF;
  border-radius: 32px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.ps-platform-img {
  display: block;
  width: 100%;
  height: auto;
}
.ps-platform-img--mobile {
  display: none;
}

@media (max-width: 900px) {
  .ps-platform-visual {
    border-radius: 20px;
  }
  .ps-platform-img--desktop {
    display: none;
  }
  .ps-platform-img--mobile {
    display: block;
  }
}

@media (max-width: 600px) {
  .ps-platform-visual {
    border-radius: 18px;
  }
}

.ps-card {
  background: #F8FCFF;
  border-radius: 20px;
  padding: 52px 56px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.ps-header {
  text-align: center;
  margin-bottom: 40px;
}
.ps-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c7ead;
  margin-bottom: 12px;
}
.ps-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: #0f1f3d;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.ps-subtext {
  font-size: 15px;
  color: #4b6080;
  margin: 0 auto;
  line-height: 1.65;
}
.ps-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid #e2e8f0;
}
.ps-row-last {
  padding-bottom: 0;
}
.ps-left {
  width: 196px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ps-acc-btn {
  display: none;
}
.ps-acc-body {
  flex: 1;
  min-width: 0;
}
.ps-acc-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.ps-mid {
  flex: 1;
  min-width: 0;
}
.ps-right {
  width: 210px;
  flex-shrink: 0;
}
.ps-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.ps-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f1f3d;
  letter-spacing: -0.01em;
  margin: 0;
}
.ps-step-body {
  font-size: 13px;
  color: #5a7196;
  line-height: 1.6;
  margin: 0;
}
.ps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.ps-pills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ps-pills-grid .ps-pill {
  font-size: 0;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #f1f5fb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  white-space: normal;
  cursor: default;
  transition: none;
}
.ps-pills-grid .ps-pill svg { width: 36px; height: 36px; }
.ps-pills-grid .ps-pill:hover { transform: none; box-shadow: none; }
.ps-pills-grid .ps-pill-more { display: none; }
.ps-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 12.5px;
  color: #334155;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: default;
  white-space: nowrap;
}
.ps-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
.ps-pill-more {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb;
  font-weight: 700;
}

@media (min-width: 900px) {
  .ps-pills .ps-pill-more {
    flex-basis: 100%;
    width: fit-content;
    margin: 14px auto 0;
    padding: 6px 14px;
    background: transparent;
    border: 1.5px dashed rgba(37, 99, 235, 0.42);
    box-shadow: none;
  }
  .ps-pills .ps-pill-more:hover {
    transform: none;
    background: transparent;
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: none;
  }
}

.ps-pill-on {
  background: rgba(37, 99, 235, 0.09);
  border-color: rgba(37, 99, 235, 0.35);
  color: #1d4ed8;
  font-weight: 700;
}
.ps-pill-on:hover {
  background: rgba(37, 99, 235, 0.14);
}
.ps-pill-dim {
  background: #f8fafc;
  border-color: #e8edf3;
  color: #94a3b8;
}
.ps-mid-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 9px;
  display: block;
}
.ps-mid-label-dim {
  color: #94a3b8;
  margin-top: 14px;
}
.ps-benefit {
  background: #f0f7ff;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  padding: 18px 20px;
}
.ps-benefit-icon {
  margin-bottom: 10px;
}
.ps-benefit-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f1f3d;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.ps-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ps-benefit-list li {
  font-size: 12.5px;
  color: #3d5878;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}
.ps-benefit-list li::before {
  content: '\2713';
  color: #2563eb;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ps-arrow {
  display: none;
}
.ps-arrow-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  background: #fff;
  animation: ps-bounce 2.4s ease-in-out infinite;
}
@keyframes ps-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.ps-workflow {
  padding: 8px 0 0;
}
.ps-wf-stage {
  position: relative;
  padding-bottom: 4px;
}
.ps-wf-nodes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 0;
}
.ps-wf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  width: 52px;
}
.ps-wf-bridge {
  flex: 1 1 0;
  min-width: 10px;
  position: relative;
  align-self: flex-start;
  margin-top: 21px;
  height: 2px;
}
.ps-wf-bridge-line {
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #cbd5e1 0 4px, transparent 4px 9px);
  position: relative;
}
.ps-wf-bridge-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  z-index: 1;
}
.ps-wf-bridge--green .ps-wf-bridge-dot { background: #22c55e; }
.ps-wf-bridge--blue .ps-wf-bridge-dot { background: #3b82f6; }
.ps-wf-bridge--purple .ps-wf-bridge-dot { background: #a855f7; }
.ps-wf-bridge--amber .ps-wf-bridge-dot { background: #f59e0b; }
.ps-wf-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d1dce9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.ps-wf-node--lead .ps-wf-circle {
  background: #ecfdf5;
  border-color: #86efac;
  color: #16a34a;
}
.ps-wf-node--job .ps-wf-circle {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}
.ps-wf-node--invoice .ps-wf-circle {
  background: #f5f3ff;
  border-color: #c4b5fd;
  color: #7c3aed;
}
.ps-wf-node--payment .ps-wf-circle {
  background: #fff7ed;
  border-color: #fdba74;
  color: #ea580c;
}
.ps-wf-node--reports .ps-wf-circle {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}
.ps-wf-node:hover .ps-wf-circle {
  filter: brightness(0.97);
}
.ps-wf-label {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a5f;
  text-align: center;
  line-height: 1.3;
}
.ps-wf-loop {
  position: absolute;
  left: 0;
  right: 0;
  top: 81px;
  bottom: auto;
  height: 88px;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.ps-wf-loop-path {
  stroke: #93c5fd;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.ps-wf-caption-wrap {
  text-align: center;
  position: relative;
  margin-top: 78px;
  z-index: 3;
  padding-bottom: 16px;
}
.ps-wf-caption {
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 0.01em;
  padding: 6px 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 4px #fff;
}
@media (min-width: 900px) {
  .ps-wf-bridge { display: block; }
  .ps-wf-loop { display: block; }
}
@media (max-width: 899px) {
  .ps-wf-bridge,
  .ps-wf-loop { display: none; }
  .ps-wf-nodes {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .ps-wf-node { width: calc(33% - 8px); }
  .ps-wf-caption-wrap {
    margin-top: 20px;
  }
}
.ps-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.ps-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ps-trust-item svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.ps-trust-item strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.4;
}
.ps-trust-item span {
  display: block;
  font-size: 11.5px;
  color: #7a93b4;
  line-height: 1.4;
}
.ps-footer-line {
  text-align: center;
  margin-top: 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}
.ps-footer-line .accent {
  color: var(--ice);
  font-style: italic;
}
@keyframes ps-pill-in {
  from { opacity: 0; transform: scale(0.94) translateY(5px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (min-width: 900px) and (max-width: 1399px) {
  .ps-card { padding: 40px; }
  .ps-left { width: 170px; }
  .ps-right { width: 190px; }
  .ps-wf-circle { width: 40px; height: 40px; }
  .ps-wf-bridge { margin-top: 19px; }
}
@media (max-width: 899px) {
  /* ── Card shell ── */
  .ps-card {
    background: #F8FCFF;
    padding: 28px 16px 32px;
    border-radius: 20px;
  }

  /* ── Header ── */
  .ps-header {
    margin-bottom: 14px;
    text-align: center;
  }
  .ps-headline {
    font-size: clamp(26px, 7.5vw, 34px);
    font-weight: 800;
    color: #0f1f3d;
    line-height: 1.15;
  }
  .ps-subtext {
    font-size: 13.5px;
    color: #5a7196;
    line-height: 1.65;
    margin-top: 0;
  }

  /* ── Hide desktop-only columns ── */
  .ps-left  { display: none; }
  .ps-right { display: none; }

  /* ── Step cards (touching, each fully rounded) ── */
  .ps-row {
    display: block;
    padding: 0;
    border: 1px solid #dde5f0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
  }
  .ps-row ~ .ps-row {
    margin-top: -1px;
  }

  /* ── Accordion button (card header) ── */
  .ps-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--card-base);
    border: none;
    padding: 14px 10px;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
  }
  .ps-acc-btn[aria-expanded="true"] {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .ps-acc-btn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }
  .ps-num-badge {
    width: 32px;
    height: 32px;
    font-size: 14px;
    flex-shrink: 0;
    align-self: center;
  }
  .ps-acc-btn-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .ps-acc-btn-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f1f3d;
    line-height: 1.3;
  }
  .ps-acc-btn-desc {
    font-size: 12.5px;
    color: #5a7196;
    line-height: 1.5;
  }

  /* ── Plus/minus icon ── */
  .ps-acc-icon {
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
  .ps-plus-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
  }
  .ps-plus-v {
    position: absolute;
    width: 2px;
    height: 14px;
    top: 3px;
    left: 9px;
    background: #2563eb;
    border-radius: 1px;
    transform: rotate(0deg);
    transition: transform 0.18s ease 0s;
  }
  .ps-plus-h {
    position: absolute;
    width: 14px;
    height: 2px;
    top: 9px;
    left: 3px;
    background: #2563eb;
    border-radius: 1px;
    transition: width 0.18s ease 0.15s, left 0.18s ease 0.15s;
  }
  .ps-acc-btn[aria-expanded="true"] .ps-plus-h {
    width: 0;
    left: 10px;
    transition: width 0.18s ease 0s, left 0.18s ease 0s;
  }
  .ps-acc-btn[aria-expanded="true"] .ps-plus-v {
    transform: rotate(90deg);
    transition: transform 0.18s ease 0.15s;
  }

  /* ── Accordion body ── */
  .ps-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
    max-width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: none;
  }
  .ps-acc-body.open {
    grid-template-rows: 1fr;
    max-height: none;
  }
  .ps-acc-body > .ps-acc-inner {
    min-height: 0;
    overflow: hidden;
  }
  .ps-acc-inner {
    overflow: hidden;
    min-height: 0;
    display: block;
    padding: 0;
    max-width: 100%;
  }
  .ps-acc-body.open > .ps-acc-inner {
    padding: 0 10px 16px;
  }
  .ps-left {
    display: none !important;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .ps-mid {
    margin-bottom: 0;
    max-width: 100%;
    overflow: hidden;
  }

  /* ── Step 1: icon tile grid (3 col) ── */
  .ps-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .ps-pill {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    aspect-ratio: 1;
    background: #f1f5fb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    white-space: normal;
    cursor: default;
    transition: none;
  }
  .ps-pill svg { width: 34px; height: 34px; }
  .ps-pill:hover { transform: none; box-shadow: none; }
  .ps-pill-more {
    display: none;
  }

  /* ── Step 2: selected 4-col, muted 5-col ── */
  .ps-pills-sel {
    grid-template-columns: repeat(4, 1fr);
  }
  .ps-pill-on {
    background: #eff6ff;
    border-color: rgba(37,99,235,.25);
  }
  .ps-pill-on svg { color: #2563eb; width: 20px; height: 20px; }
  .ps-pill-dim {
    background: #f8fafc;
    border-color: #e8edf3;
    opacity: 0.55;
  }
  .ps-mid-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #2563eb;
    margin: 0 0 10px;
  }
  .ps-mid-label-dim {
    color: #94a3b8;
    margin-top: 16px;
  }

  /* ── Hide arrows between steps ── */
  .ps-arrow { display: none; }

  /* ── Trust bar: single-column rows ── */
  .ps-trust {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
    padding-top: 0;
    border-top: none;
  }
  .ps-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #e8edf3;
  }
  .ps-trust-item:first-child { border-top: 1px solid #e8edf3; }
  .ps-trust-item > div {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex: 1;
    flex-wrap: wrap;
  }
  .ps-trust-item strong {
    font-size: 13px;
    font-weight: 600;
    color: #0f1f3d;
    white-space: nowrap;
  }
  .ps-trust-item span {
    font-size: 12.5px;
    color: #7a93b4;
  }
  .ps-trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

  /* ── Footer tagline ── */
  .ps-footer-line {
    font-size: 15px;
    margin-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ps-arrow-dot { animation: none; }
  .ps-acc-body { transition: none; }
  .ps-plus-v, .ps-plus-h { transition: none; }
  .ps-pill { animation: none !important; }
}

/* -- PLATFORM SECTION (ps-*) -- */
.ps-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.ps-card {
  background: #F8FCFF;
  border-radius: 20px;
  padding: 52px 56px;
  box-shadow: 0 20px 64px rgba(0,0,0,.24);
}

.ps-header {
  text-align: center;
  margin-bottom: 40px;
}

.ps-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c7ead;
  margin-bottom: 12px;
}

.ps-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: #0f1f3d;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.ps-subtext {
  font-size: 15px;
  color: #4b6080;
  margin: 0 auto;
  line-height: 1.65;
}

.ps-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid #e2e8f0;
}

.ps-row-last {
  padding-bottom: 0;
}

.ps-left {
  width: 196px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-acc-btn {
  display: none;
}

.ps-acc-body {
  flex: 1;
  min-width: 0;
}

.ps-acc-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.ps-mid {
  flex: 1;
  min-width: 0;
}

.ps-right {
  width: 210px;
  flex-shrink: 0;
}

.ps-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2563EB;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.ps-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f1f3d;
  letter-spacing: -0.01em;
  margin: 0;
}

.ps-step-body {
  font-size: 13px;
  color: #5a7196;
  line-height: 1.6;
  margin: 0;
}

.ps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ps-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 12.5px;
  color: #334155;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: default;
  white-space: nowrap;
}

.ps-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37,99,235,.1);
}

.ps-pill-more {
  background: #eff6ff;
  border-color: rgba(37,99,235,.3);
  color: #2563EB;
  font-weight: 700;
}

.ps-pill-on {
  background: rgba(37,99,235,.09);
  border-color: rgba(37,99,235,.35);
  color: #1d4ed8;
  font-weight: 700;
}

.ps-pill-on:hover {
  background: rgba(37,99,235,.14);
}

.ps-pill-dim {
  background: #f8fafc;
  border-color: #e8edf3;
  color: #94a3b8;
}

.ps-mid-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563EB;
  margin: 0 0 9px;
  display: block;
}

.ps-mid-label-dim {
  color: #94a3b8;
  margin-top: 14px;
}

.ps-benefit {
  background: #f0f7ff;
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 12px;
  padding: 18px 20px;
}

.ps-benefit-icon {
  margin-bottom: 10px;
}

.ps-benefit-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f1f3d;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.ps-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ps-benefit-list li {
  font-size: 12.5px;
  color: #3d5878;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.ps-benefit-list li::before {
  content: '\2713';
  color: #2563EB;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-arrow {
  display: none;
}

.ps-arrow-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(37,99,235,.3);
  border-radius: 50%;
  background: #fff;
  animation: ps-bounce 2.4s ease-in-out infinite;
}

@keyframes ps-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.ps-workflow {
  padding: 8px 0 0;
}

.ps-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.ps-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ps-trust-item svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.ps-trust-item strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.4;
}

.ps-trust-item span {
  display: block;
  font-size: 11.5px;
  color: #7a93b4;
  line-height: 1.4;
}

.ps-footer-line {
  text-align: center;
  margin-top: 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

.ps-footer-line .accent {
  color: var(--ice);
  font-style: italic;
}

@keyframes ps-pill-in {
  from { opacity: 0; transform: scale(0.94) translateY(5px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

@media (min-width: 900px) and (max-width: 1399px) {
  .ps-card { padding: 40px 40px; }
  .ps-left { width: 170px; }
  .ps-right { width: 190px; }
  .ps-wf-circle { width: 40px; height: 40px; }
  .ps-wf-bridge { margin-top: 19px; }
}

@media (max-width: 899px) {
  .ps-card { background: #F8FCFF; padding: 28px 20px 24px; border-radius: 16px; }
  .ps-header { margin-bottom: 14px; }
  .ps-headline { font-size: clamp(22px, 6vw, 30px); }
  .ps-subtext { font-size: 13.5px; margin-bottom: 0; }
  .ps-left { display: none; }
  .ps-row { display: block; padding: 0; }
  .ps-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--card-base);
    border: none;
    padding: 14px 10px;
    cursor: pointer;
    text-align: left;
    gap: 10px;
  }
  .ps-acc-btn[aria-expanded="true"] {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .ps-acc-btn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }
  .ps-acc-btn-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .ps-acc-btn-title {
    font-size: 14.5px;
    font-weight: 600;
    color: #0f1f3d;
    line-height: 1.3;
  }
  .ps-acc-btn-desc {
    font-size: 12.5px;
    color: #5a7196;
    line-height: 1.45;
  }
  .ps-acc-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
  }
  .ps-acc-btn[aria-expanded="true"] .ps-acc-icon {
    transform: rotate(180deg);
  }
  .ps-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
  }
  .ps-acc-body.open {
    grid-template-rows: 1fr;
    max-height: none;
  }
  .ps-acc-body > .ps-acc-inner {
    min-height: 0;
    overflow: hidden;
  }
  .ps-acc-inner {
    overflow: hidden;
    display: block;
    padding: 0;
  }
  .ps-acc-body.open > .ps-acc-inner {
    padding: 0 10px 16px;
  }
  .ps-left {
    display: none !important;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .ps-mid { margin-bottom: 16px; }
  .ps-right { width: 100%; }
  .ps-arrow { display: none; }
  .ps-row {
    margin-bottom: 0;
    border: 1px solid #dde5f0;
    border-radius: 14px;
    position: relative;
  }
  .ps-row ~ .ps-row {
    margin-top: -1px;
  }
  .ps-trust { grid-template-columns: 1fr 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .ps-arrow-dot { animation: none; }
  .ps-acc-body { transition: none; }
  .ps-plus-v, .ps-plus-h { transition: none; }
  .ps-pill { animation: none !important; }
}

/* Our Story Timeline */
.st-section {
  --st-line-color: rgba(200, 212, 224, 0.28);
  --st-header-text: #E8EDF4;
  --st-connector-color: #5C7EAD;
  background: #0A1628;
  padding: 80px 24px;
  font-family: 'Poppins', sans-serif;
}
.st-wrap {
  position: relative;
  background: transparent;
  border: 1px solid rgba(220, 230, 248, 0.34);
  border-radius: 26px;
  overflow: hidden;
  padding: 42px 48px 90px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 0 48px 16px rgba(255, 255, 255, 0.04);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.65s ease;
}

.st-wrap.reveal.animate-ready {
  opacity: 0;
  transform: translateY(28px);
}

.st-wrap.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.st-wrap > * {
  position: relative;
  z-index: 2;
}

.st-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    inset -2px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.42),
    inset 2px 0 0 rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset -3px -3px 10px rgba(0, 0, 0, 0.14);
}

#story {
  scroll-margin-top: var(--nav-height);
}
.st-header {
  text-align: center;
  width: 100%;
  margin: 0 auto 28px;
  padding: 12px 24px 6px;
}
.st-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2F6FA;
  margin: 0 0 10px;
  text-shadow: 0 1px 3px rgba(8, 14, 24, 0.52);
}
.st-title {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 500;
  color: #E8EDF4;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  isolation: isolate;
  text-shadow: 0 1px 3px rgba(8, 14, 24, 0.52);
}
#story h2.st-title::after {
  content: '';
  display: block;
  height: 2px;
  min-height: 2px;
  width: 32px;
  border-radius: 1px;
  background: linear-gradient(90deg, #F2F6FA 0%, rgba(242, 246, 250, 0.35) 100%);
  margin: 20px auto 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(8, 14, 24, 0.52);
}
.st-timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.st-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  margin-top: 4px;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
  color: rgba(220, 230, 248, 0.45);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.st-connector.animate-ready {
  opacity: 0;
  transform: translateY(12px);
}

.st-connector.visible {
  opacity: 1;
  transform: translateY(0);
}

.st-connector svg {
  width: 28px;
  height: 56px;
  display: block;
}
.st-card {
  background: #E8EDF4;
  border-radius: 12px;
  border: 1px solid rgba(45,107,191,0.12);
  box-shadow: 0 2px 12px rgba(8, 14, 24, 0.18);
  padding: 22px 28px 24px;
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.25s, opacity 0.6s ease, transform 0.6s ease;
  cursor: default;
}
.st-card.animate-ready {
  opacity: 0;
  transform: translateY(20px);
}
.st-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.st-timeline > .st-card:hover {
  box-shadow: 0 0 28px 8px rgba(11, 35, 66, 0.44), 0 4px 16px rgba(0, 0, 0, 0.07);
}
.st-card-label {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.3;
}
.st-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0d1929;
  margin: 0 0 10px;
  line-height: 1.6;
}
.st-card-body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #283A48;
  line-height: 1.7;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(40, 58, 72, 0.22);
}
@media (max-width: 768px) {
  .st-section { padding: 48px 15px; }
  .st-wrap {
    padding: 32px 20px;
    border-radius: 22px;
    padding-bottom: 48px;
  }
  .st-eyebrow { font-size: 14px; }
  .st-title { font-size: 26px; }
  .st-card-label { font-size: 18px; }
  .st-card-title { font-size: 15px; }
  .st-card-body { font-size: 14px; }
  .st-connector {
    margin-top: 2px;
    margin-bottom: -5px;
  }

  .st-connector svg {
    width: 26px;
    height: 52px;
  }
}

/* ── Platform HTML build (#platform-html) — matches platformdesktop layout ── */
#platform-html.ps-section {
  padding-top: 0;
  padding-bottom: 24px;
  border-top: none;
}

#platform-html .pb-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  color: #334155;
}

#platform-html .pb-card {
  background: #f8fcff;
  border-radius: 32px;
  padding: 36px 40px 40px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

#platform-html .pb-card--ai {
  padding-bottom: 24px;
}

#platform-html .pb-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin: -6px 0;
  position: relative;
  z-index: 2;
}

#platform-html .pb-bridge-line {
  display: block;
  width: 0;
  height: 28px;
  border-left: 3px dashed rgba(37, 99, 235, 0.68);
}

#platform-html .pb-bridge-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  background: #fff;
  color: #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.14);
  flex-shrink: 0;
}

#platform-html .pb-bridge-node path {
  stroke-width: 2.5;
}

#platform-html .pb-block-header {
  text-align: center;
  margin-bottom: 28px;
}

#platform-html .pb-block-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: #0f1f3d;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

#platform-html .pb-block-header h2::after {
  display: none;
}

#platform-html .pb-block-header p {
  font-size: 15px;
  color: #5a7196;
  line-height: 1.6;
  margin: 0 auto;
}

#platform-html .pb-tools-layout {
  display: block;
}

#platform-html .pb-card--tools .pb-card-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
  gap: 24px;
  align-items: center;
}

#platform-html .pb-toggle-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

#platform-html .pb-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 20px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  min-height: 44px;
  max-width: 198px;
  box-sizing: border-box;
}

#platform-html .pb-toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

#platform-html .pb-toggle--off .pb-toggle-label {
  color: #94a3b8;
  font-weight: 500;
}

#platform-html .pb-toggle-switch {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #cbd5e1;
}

#platform-html .pb-toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
  transition: transform 0.15s ease;
}

#platform-html .pb-toggle--on .pb-toggle-switch {
  background: #2563eb;
}

#platform-html .pb-toggle--on .pb-toggle-switch::after {
  transform: translateX(16px);
}

#platform-html .pb-foundation {
  background: #eef4fc;
  border: 1px solid #d8e6f5;
  border-radius: 16px;
  padding: 20px 18px;
  align-self: center;
  height: fit-content;
  box-sizing: border-box;
}

@media (min-width: 1101px) {
  #platform-html .pb-card--tools .pb-toggle-grid {
    align-self: center;
  }

  #platform-html .pb-foundation {
    align-self: center;
    padding: 18px 16px;
  }

  #platform-html .pb-foundation-list {
    gap: 7px;
  }

  #platform-html .pb-foundation-lead {
    margin-bottom: 12px;
  }

  #platform-html .pb-foundation-foot {
    margin-top: 12px;
  }
}

#platform-html .pb-foundation h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0f1f3d;
  margin: 0 0 6px;
}

#platform-html .pb-foundation h3::after {
  display: none;
}

#platform-html .pb-foundation-lead {
  font-size: 12.5px;
  color: #5a7196;
  line-height: 1.5;
  margin: 0 0 14px;
}

#platform-html .pb-foundation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#platform-html .pb-foundation-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  line-height: 1.35;
}

#platform-html .pb-foundation-list li::before {
  content: '';
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background-color: #3b82f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.25 6.25L4.6 8.6 9.75 3.4' stroke='%23f8fafc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

#platform-html .pb-foundation-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #dce8f5;
  border: 1px solid #b8cfe8;
  font-size: 12.5px;
  font-weight: 500;
  color: #1d4ed8;
  line-height: 1.35;
  text-align: center;
}

#platform-html .pb-workflows-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(200px, 1fr);
  gap: 28px;
  align-items: start;
}

#platform-html .pb-workflows-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

#platform-html .pb-workflows-intro {
  text-align: center;
  margin-bottom: 20px;
}

#platform-html .pb-workflows-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: #0f1f3d;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

#platform-html .pb-workflows-intro h2::after {
  display: none;
}

#platform-html .pb-workflows-intro p {
  font-size: 14px;
  color: #5a7196;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 520px;
}

#platform-html .pb-workflow-figure,
#platform-html .pb-business-figure {
  margin: 0;
}

#platform-html .pb-workflow-figure {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
  overflow: hidden;
}

#platform-html .pb-workflow-figure img {
  display: block;
  width: 100%;
  max-width: 610px;
  height: auto;
  border-radius: 14px;
}

#platform-html .pb-business-figure img {
  display: block;
  width: 100%;
  max-width: 319px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

#platform-html .pb-workflows-summary {
  text-align: center;
  font-size: 14px;
  color: #4b6080;
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 100%;
}

#platform-html .pb-business-aside h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #0f1f3d;
  margin: 0 0 8px;
  line-height: 1.3;
}

#platform-html .pb-business-aside h3::after {
  display: none;
}

#platform-html .pb-business-aside > p {
  font-size: 13px;
  color: #5a7196;
  line-height: 1.55;
  margin: 0 0 14px;
}

#platform-html .pb-business-br-tablet {
  display: none;
}

@media (max-width: 900px) and (min-width: 600px) {
  #platform-html .pb-business-br-tablet {
    display: block;
  }
}

#platform-html .pb-benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#platform-html .pb-benefit {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

#platform-html .pb-benefit img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

#platform-html .pb-benefit h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #0f1f3d;
  margin: 0 0 4px;
  line-height: 1.35;
}

#platform-html .pb-benefit h3::after {
  display: none;
}

#platform-html .pb-benefit p {
  font-size: 12.5px;
  color: #5a7196;
  line-height: 1.5;
  margin: 0;
}

/* ── Platform card 3: AI enablement ── */
#platform-html .pb-ai-header {
  text-align: center;
  margin-bottom: 28px;
}

#platform-html .pb-ai-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: #0f1f3d;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

#platform-html .pb-ai-header h2::after {
  display: none;
}

#platform-html .pb-ai-header p {
  font-size: 15px;
  font-weight: 400;
  color: #5a7196;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 560px;
}

#platform-html .pb-ai-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#platform-html .pb-ai-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-width: 0;
  padding: 20px 18px;
  background: #f4f6fa;
  border: 1px solid #e8edf3;
  border-radius: 16px;
}

#platform-html .pb-ai-flow-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

#platform-html .pb-ai-flow-arrow {
  flex: 0 0 32px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  color: #2563eb;
  line-height: 0;
}

#platform-html .pb-ai-flow-arrow svg {
  display: block;
  width: 28px;
  height: auto;
}

#platform-html .pb-ai-flow-card--prompt {
  gap: 0;
}

#platform-html .pb-ai-flow-card--prompt .pb-ai-prompt {
  flex-shrink: 0;
}

#platform-html .pb-ai-prompt-head,
#platform-html .pb-ai-adapter-head,
#platform-html .pb-ai-actions-head {
  display: flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

#platform-html .pb-ai-card-head-rule {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: #e8edf3;
}

#platform-html .pb-ai-adapter-head {
  margin-bottom: 10px;
  margin-left: 10px;
}

#platform-html .pb-ai-prompt-head,
#platform-html .pb-ai-actions-head {
  gap: 8px;
}

#platform-html .pb-ai-prompt-head .pb-ai-actions-title,
#platform-html .pb-ai-actions-head .pb-ai-actions-title {
  margin: 0;
  min-height: 0;
}

#platform-html .pb-ai-actions-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  line-height: 0;
  background: #e07288;
}

#platform-html .pb-ai-actions-icon img {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

#platform-html .pb-ai-prompt-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#platform-html .pb-ai-prompt {
  margin: 10px 0 0;
  padding: 10px 0 18px;
  flex-shrink: 0;
}

#platform-html .pb-ai-prompt-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  line-height: 0;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

#platform-html .pb-ai-prompt-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
}

#platform-html .pb-ai-prompt p {
  font-size: 12.5px;
  font-weight: 600;
  font-style: italic;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 0 10px;
}

#platform-html .pb-ai-replies {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 0;
}

#platform-html .pb-ai-reply {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  background: #f1f5f9;
  border-radius: 8px;
  flex-shrink: 0;
}

#platform-html .pb-ai-reply p {
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

#platform-html .pb-ai-reply p strong {
  color: #0f1f3d;
  font-weight: 600;
}

#platform-html .pb-ai-job-ref,
#platform-html .pb-ai-data-actions li strong.pb-ai-job-ref {
  font-weight: 600;
}

#platform-html .pb-ai-reply-check {
  flex-shrink: 0;
  line-height: 0;
}

#platform-html .pb-ai-reply-check svg {
  display: block;
  width: 18px;
  height: 18px;
}

#platform-html .pb-ai-adapter-head {
  gap: 6px;
  flex-wrap: wrap;
}

#platform-html .pb-ai-adapter-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

#platform-html .pb-ai-adapter-logo img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

#platform-html .pb-ai-adapter-title {
  font-size: 14px;
  font-weight: 500;
  color: #0f1f3d;
}

#platform-html .pb-ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #2563eb;
  background: #eff6ff;
  border: 1.5px solid #60a5fa;
  border-radius: 50%;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  margin-left: auto;
}

#platform-html .pb-ai-flow-card--adapter .pb-ai-adapter-head {
  flex-shrink: 0;
  width: 100%;
}

#platform-html .pb-ai-adapter-flow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  min-height: 0;
}

#platform-html .pb-ai-flow-card--actions {
  padding: 14px 12px 8px;
}

#platform-html .pb-ai-actions-inner {
  display: contents;
}

@media (max-width: 900px) and (min-width: 600px) {
  #platform-html .pb-ai-actions-inner {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    max-width: min(350px, 96%);
    margin: 10px auto 0;
    padding: 8px 20px;
    background: #fbfcfe;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    box-sizing: border-box;
  }
}

#platform-html .pb-ai-flow-card--actions .pb-ai-actions-list {
  flex: 1 1 auto;
  justify-content: space-evenly;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  gap: 0;
}

#platform-html .pb-ai-flow-card--actions .pb-ai-actions-list li.pb-ai-actions-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  height: 32px;
  min-height: 32px;
  flex-grow: 0;
  flex-shrink: 0;
}

#platform-html .pb-ai-flow-card--actions .pb-ai-action-icon {
  align-self: center;
  justify-self: center;
}

#platform-html .pb-ai-flow-card--actions .pb-ai-action-label {
  display: block;
  align-self: center;
  line-height: 1;
  height: auto;
  margin: 0;
  padding: 0;
  transform: translateY(2px);
}

#platform-html .pb-ai-adapter-phase {
  padding: 10px;
  border-radius: 10px;
}

#platform-html .pb-ai-adapter-phase--read {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
}

#platform-html .pb-ai-adapter-phase--act {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
}

#platform-html .pb-ai-adapter-flow .pb-ai-adapter-phase--read,
#platform-html .pb-ai-adapter-flow .pb-ai-adapter-phase--act {
  width: 100%;
  max-width: min(350px, 96%);
  margin-left: auto;
  margin-right: auto;
}

#platform-html .pb-ai-phase-label {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 8px;
}

#platform-html .pb-ai-adapter-phase--read .pb-ai-phase-label {
  font-style: italic;
}

#platform-html .pb-ai-adapter-phase--act .pb-ai-phase-label {
  color: #2563eb;
  font-weight: 700;
  font-style: italic;
}

#platform-html .pb-ai-phase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

#platform-html .pb-ai-phase-icon--read {
  background: #e0f2fe;
  color: #0284c7;
}

#platform-html .pb-ai-phase-icon--act {
  background: #dbeafe;
  color: #2563eb;
}

#platform-html .pb-ai-data-reads,
#platform-html .pb-ai-data-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#platform-html .pb-ai-data-reads li {
  font-size: 11.5px;
  font-weight: 500;
  color: #475569;
  line-height: 1.4;
  padding-left: 0;
}

#platform-html .pb-ai-data-reads li span {
  display: inline-block;
  min-width: 4.5em;
  font-weight: 600;
  color: #334155;
}

#platform-html .pb-ai-data-actions li {
  font-size: 12.5px;
  font-weight: 500;
  color: #334155;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

#platform-html .pb-ai-data-actions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 1.5px #dbeafe;
}

#platform-html .pb-ai-data-actions li strong {
  color: #1d4ed8;
  font-weight: 600;
}

#platform-html .pb-ai-adapter-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

#platform-html .pb-ai-adapter-connector-line {
  flex: 1;
  height: 0;
  border-top: 1px dashed rgba(37, 99, 235, 0.35);
}

#platform-html .pb-ai-adapter-connector-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  flex-shrink: 0;
}

#platform-html .pb-ai-actions-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0f1f3d;
  margin: 0;
}

#platform-html .pb-ai-actions-title::after {
  display: none;
}

#platform-html .pb-ai-actions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

#platform-html .pb-ai-actions-list li.pb-ai-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  flex-shrink: 0;
}

#platform-html .pb-ai-actions-list li.pb-ai-actions-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 5px 0;
  box-sizing: content-box;
  background: #e8edf3;
  background-clip: content-box;
  flex-shrink: 0;
  list-style: none;
}

#platform-html .pb-ai-action-label {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  line-height: 1.4;
}

#platform-html .pb-ai-action-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

#platform-html .pb-ai-action-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

#platform-html .pb-ai-action-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

#platform-html .pb-ai-action-icon--green {
  background: #ecfdf5;
  color: #16a34a;
}

#platform-html .pb-ai-action-icon--orange {
  background: #fff7ed;
  color: #ea580c;
}

#platform-html .pb-ai-action-icon--purple {
  background: #f3e8ff;
  color: #9333ea;
}

#platform-html .pb-ai-features {
  padding-top: 0;
  margin-top: 30px;
}

#platform-html .pb-ai-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}

#platform-html .pb-ai-feature-list > li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#platform-html .pb-ai-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

#platform-html .pb-ai-feature-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

#platform-html .pb-ai-feature-icon--blue {
  background: #eff6ff;
}

#platform-html .pb-ai-feature-icon--green {
  background: #ecfdf5;
}

#platform-html .pb-ai-feature-icon--orange {
  background: #fff7ed;
}

#platform-html .pb-ai-feature-list h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0f1f3d;
  margin: 0 0 4px;
  line-height: 1.3;
}

#platform-html .pb-ai-feature-list h3::after {
  display: none;
}

#platform-html .pb-ai-feature-list p {
  font-size: 12.5px;
  color: #5a7196;
  line-height: 1.5;
  margin: 0;
}

#platform-html .pb-ai-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  padding: 16px 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  text-align: center;
}

#platform-html .pb-ai-foot-icon {
  flex-shrink: 0;
  line-height: 0;
}

#platform-html .pb-ai-foot-icon svg {
  display: block;
  width: 33px;
  height: 33px;
}

#platform-html .pb-ai-foot p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5a7196;
  text-align: center;
}

#platform-html .pb-ai-foot strong {
  color: #2563eb;
  font-weight: 600;
}

#platform-html .pb-card-content {
  width: 100%;
}

/* Tablet: constrain card body so feature bars / AI flow do not span full card width */
@media (max-width: 1100px) and (min-width: 601px) {
  #platform-html .pb-card {
    padding-top: 50px;
  }

  #platform-html .pb-card--tools .pb-block-header {
    margin-bottom: 44px;
  }

  #platform-html .pb-card--tools .pb-card-content {
    max-width: min(515px, 100%);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  #platform-html .pb-tools-toggles-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  #platform-html .pb-foundation {
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  #platform-html .pb-card--tools .pb-toggle-grid {
    grid-template-columns: repeat(3, 198px);
    justify-content: center;
    row-gap: 10px;
    column-gap: 28px;
    width: 100%;
  }

  #platform-html .pb-card--tools .pb-toggle {
    width: 100%;
    max-width: 198px;
    justify-self: stretch;
    box-sizing: border-box;
  }

  #platform-html .pb-foundation-foot {
    margin-top: 28px;
  }

  #platform-html .pb-foundation h3,
  #platform-html .pb-foundation-lead {
    text-align: center;
  }

  #platform-html .pb-foundation-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 60px;
    row-gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
    text-align: left;
  }

  #platform-html .pb-foundation-list li {
    justify-content: flex-start;
    text-align: left;
  }

  /* 901–1100px: centered toggle wrapper; nowrap labels; foundation in 3 columns */
  @media (min-width: 901px) {
    #platform-html .pb-card--tools .pb-card-content {
      max-width: min(615px, 100%);
    }

    #platform-html .pb-card--tools .pb-toggle-grid {
      column-gap: 18px;
    }

    #platform-html .pb-card--tools .pb-toggle,
    #platform-html .pb-card--tools .pb-toggle:nth-child(3n + 2) {
      width: 100%;
      justify-self: stretch;
    }

    #platform-html .pb-card--tools .pb-toggle-label {
      white-space: nowrap;
    }

    #platform-html .pb-foundation-list {
      grid-template-columns: repeat(3, max-content);
      column-gap: 36px 40px;
      row-gap: 8px;
    }
  }

  #platform-html .pb-card--ai .pb-card-content {
    max-width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  #platform-html .pb-card--ai .pb-ai-flow {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Mobile: foundation selected features in two columns */
@media (max-width: 600px) {
  #platform-html .pb-foundation h3,
  #platform-html .pb-foundation-lead {
    text-align: center;
  }

  #platform-html .pb-foundation-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 52px;
    row-gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
    text-align: left;
  }

  #platform-html .pb-foundation-list li {
    justify-content: flex-start;
    text-align: left;
  }

  #platform-html .pb-business-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #platform-html .pb-business-figure {
    display: block;
    width: fit-content;
    max-width: min(220px, 68%);
    margin-left: auto;
    margin-right: auto;
  }

  #platform-html .pb-business-figure img {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablet: stack AI flow vertically; cards grow to content (avoid equal-height collapse) */
@media (max-width: 1100px) {
  #platform-html .pb-card--ai {
    overflow: visible;
  }

  #platform-html .pb-ai-feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #platform-html .pb-ai-flow {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  #platform-html .pb-ai-flow-card {
    flex: 0 0 auto;
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }

  #platform-html .pb-ai-flow-arrow {
    flex: 0 0 auto;
    margin: 8px auto;
  }

  #platform-html .pb-ai-flow-arrow svg {
    transform: rotate(90deg);
    width: 24px;
  }

  #platform-html .pb-ai-replies {
    justify-content: flex-start;
    gap: 8px;
  }

  #platform-html .pb-ai-flow-card--actions .pb-ai-actions-list {
    justify-content: flex-start;
  }

  #platform-html .pb-ai-flow-card--actions .pb-ai-actions-list li.pb-ai-actions-row {
    height: auto;
    min-height: 32px;
  }

  #platform-html .pb-workflow-figure {
    max-width: min(540px, 88%);
    margin-left: auto;
    margin-right: auto;
  }

  #platform-html .pb-business-aside {
    text-align: center;
  }

  #platform-html .pb-business-aside h3,
  #platform-html .pb-business-aside > p {
    text-align: center;
  }
}

@media (max-width: 1100px) and (min-width: 601px) {
  #platform-html .pb-workflows-intro {
    margin-bottom: 36px;
  }

  #platform-html .pb-business-figure {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  #platform-html .pb-business-figure img {
    max-width: 260px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  #platform-html .pb-ai-flow-card--actions {
    width: 100%;
    max-width: min(400px, 86%);
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }

  #platform-html .pb-ai-adapter-flow .pb-ai-adapter-phase--read,
  #platform-html .pb-ai-adapter-flow .pb-ai-adapter-phase--act {
    max-width: min(330px, 92%);
  }
}

@media (max-width: 900px) {
  #platform-html .pb-card {
    border-radius: 20px;
    padding: 28px 20px 32px;
  }

  #platform-html .pb-card--ai {
    padding-bottom: 24px;
  }

  #platform-html .pb-bridge-line {
    height: 20px;
    border-left-width: 3px;
  }

  #platform-html .pb-card--tools .pb-card-content,
  #platform-html .pb-workflows-layout {
    grid-template-columns: 1fr;
  }

  #platform-html .pb-workflow-figure {
    max-width: min(480px, 94%);
  }

  #platform-html .pb-ai-flow-card--actions .pb-ai-actions-list {
    padding: 0;
  }

  #platform-html .pb-ai-flow-card--actions .pb-ai-actions-list li.pb-ai-actions-row {
    padding: 6px 0;
    box-sizing: border-box;
  }

  #platform-html .pb-ai-foot {
    padding: 16px 20px 16px 10px;
  }

  #platform-html .pb-card--tools .pb-toggle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  /* Mobile: swap columns on Scheduling/Quotes and Invoices/Dispatch rows */
  #platform-html .pb-card--tools .pb-toggle:nth-child(1) { order: 1; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(2) { order: 2; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(3) { order: 3; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(4) { order: 4; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(5) { order: 6; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(6) { order: 5; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(7) { order: 8; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(8) { order: 7; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(9) { order: 9; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(10) { order: 10; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(11) { order: 11; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(12) { order: 12; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(13) { order: 13; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(14) { order: 14; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(15) { order: 15; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(16) { order: 16; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(17) { order: 17; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(18) { order: 18; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(19) { order: 19; }
  #platform-html .pb-card--tools .pb-toggle:nth-child(20) { order: 20; }

  #platform-html .pb-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  }

/* Tablet (601–900px): center 2-column feature toggles in allowed width */
@media (max-width: 900px) and (min-width: 601px) {
  #platform-html .pb-card {
    padding-top: 50px;
  }

  #platform-html .pb-card--tools .pb-toggle-grid {
    grid-template-columns: repeat(2, 198px);
    justify-content: center;
    column-gap: 32px;
  }
}

@media (max-width: 768px) {
  #platform-html .pb-ai-prompt-icon,
  #platform-html .pb-ai-adapter-logo {
    margin-left: 10px;
  }

  #platform-html .pb-ai-badge {
    margin-right: 10px;
  }
}

@media (max-width: 560px) {
  #platform-html .pb-card--tools .pb-toggle {
    padding: 8px 10px 8px 20px;
    gap: 8px;
    min-height: 40px;
  }

  #platform-html .pb-card--tools .pb-toggle-label {
    font-size: 12px;
  }

  #platform-html .pb-card--tools .pb-toggle-switch {
    width: 30px;
    height: 16px;
  }

  #platform-html .pb-card--tools .pb-toggle-switch::after {
    width: 12px;
    height: 12px;
  }

  #platform-html .pb-card--tools .pb-toggle--on .pb-toggle-switch::after {
    transform: translateX(14px);
  }

  #platform-html .pb-benefits {
    grid-template-columns: 1fr;
  }

  #platform-html .pb-benefit {
    flex-direction: row;
  }
}

/* QuickBooks heading */
.qb-heading {
  font-family: 'Poppins', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
}

.qb-sync-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.qb-sync-icon svg {
  width: 22px;
  height: 22px;
}

.qb-sync-icon--billing {
  background: #F2F6FF;
  color: #2563eb;
}

.qb-base-card .qb-sync-tile:hover .qb-sync-icon--billing {
  background: #E8EFFC;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.qb-sync-icon--pos {
  background: #fff7ed;
  color: #ea580c;
}

.qb-base-card .qb-sync-tile:hover .qb-sync-icon--pos {
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.14);
}

.qb-sync-icon--recurring {
  background: #ecfdf5;
  color: #16a34a;
}

.qb-base-card .qb-sync-tile:hover .qb-sync-icon--recurring {
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.14);
}

.qb-sync-icon--calendar {
  background: #F7F4FC;
  color: #7A5AC8;
}

.qb-base-card .qb-sync-tile:hover .qb-sync-icon--calendar {
  box-shadow: inset 0 0 0 1px rgba(122, 90, 200, 0.14);
}

.qb-sync-icon--wallet {
  background: #EAF8EF;
  color: #16a34a;
}

.qb-sync-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 0.95fr) auto minmax(0, 1fr);
  gap: 16px 14px;
  align-items: center;
  margin-top: 40px;
}

.qb-sync-sources {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qb-sync-tile {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 20px !important;
}

.qb-sync-tile .mbw-feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.qb-sync-tile .qb-sync-icon {
  width: 48px;
  height: 48px;
}

.qb-sync-tile .qb-sync-icon svg {
  width: 24px;
  height: 24px;
}

.qb-sync-tile h4 {
  margin: 0 0 4px;
}

.qb-sync-tile p {
  margin: 0;
  font-size: 14px !important;
}

.qb-arrow {
  text-align: center;
  font-size: 28px;
  color: var(--blue2);
  line-height: 1;
  flex-shrink: 0;
}

.qb-card {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.qb-card--hub {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
}

.qb-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.qb-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--white);
}

.qb-card-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
}

.qb-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qb-card-list div {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}

.qb-base-card .qb-sync-tile {
  background: #F8FAFF;
  border: 1px solid #E3ECF6;
  text-align: left;
  box-shadow: 0 6px 20px rgba(8, 22, 40, 0.1), 0 2px 6px rgba(8, 22, 40, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.qb-base-card .qb-sync-tile:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: #F0F5FF;
  box-shadow: 0 10px 28px rgba(8, 22, 40, 0.14), 0 4px 10px rgba(8, 22, 40, 0.08);
}

.qb-base-card .qb-sync-tile h4 {
  color: #10233E;
  font-weight: 500;
}

.qb-base-card .qb-sync-tile p {
  color: rgba(16, 35, 62, 0.62);
}

.qb-base-card .qb-arrow {
  color: #5C7EAD;
}

.qb-base-card .qb-card {
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(8, 22, 40, 0.1), 0 2px 8px rgba(8, 22, 40, 0.05);
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qb-base-card .qb-card:hover {
  box-shadow: 0 12px 32px rgba(8, 22, 40, 0.12), 0 4px 12px rgba(8, 22, 40, 0.06);
}

.qb-base-card .qb-card--hub,
.qb-base-card .qb-card--quickbooks {
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
  border-color: rgba(22, 163, 74, 0.18);
  box-shadow:
    0 8px 24px rgba(8, 22, 40, 0.1),
    0 2px 8px rgba(8, 22, 40, 0.05),
    0 0 0 1px rgba(22, 163, 74, 0.08),
    0 0 14px rgba(22, 163, 74, 0.12),
    0 0 28px rgba(34, 197, 94, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.qb-base-card .qb-card--hub:hover,
.qb-base-card .qb-card--quickbooks:hover {
  border-color: rgba(21, 128, 61, 0.55);
  box-shadow:
    0 12px 32px rgba(8, 22, 40, 0.1),
    0 4px 12px rgba(8, 22, 40, 0.05),
    0 0 0 1px rgba(21, 128, 61, 0.22),
    0 0 22px rgba(22, 163, 74, 0.38),
    0 0 44px rgba(21, 128, 61, 0.22);
}

.qb-base-card .qb-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.qb-base-card .qb-card-head h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #10233E;
  margin: 0;
  flex: 1 1 auto;
  text-align: left;
}

.qb-base-card .qb-card-lead,
.qb-base-card .qb-card-list div {
  color: rgba(16, 35, 62, 0.68);
}

.qb-base-card .qb-card-lead-line {
  display: block;
}

.qb-base-card .qb-card-lead-line--spaced {
  margin-top: 10px;
}

.qb-base-card .qb-card-list {
  gap: 15px;
}

.qb-base-card .qb-card-lead-keep {
  white-space: nowrap;
}

.qb-base-card .qb-card--hub .qb-card-head {
  margin-bottom: 12px;
}

.qb-base-card .qb-card--hub .qb-card-lead {
  margin-top: 14px;
}

.qb-base-card .qb-card--hub .qb-card-icon.qb-sync-icon--hub,
.qb-base-card .qb-card--quickbooks .qb-card-logo-wrap {
  background: #EAF8EF;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  margin-bottom: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.qb-base-card .qb-card--hub .qb-card-icon.qb-sync-icon--hub {
  position: relative;
  transform: translateY(3px);
  color: #4a5568;
}

.qb-base-card .qb-card--hub .qb-hub-icon-composite {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-base-card .qb-card--hub .qb-hub-icon-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-base-card .qb-card--hub .qb-hub-icon-main svg {
  width: 48px;
  height: 48px;
}

.qb-base-card .qb-card--hub .qb-hub-icon-cycle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: auto;
  top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  pointer-events: none;
  z-index: 1;
}

.qb-base-card .qb-card--hub .qb-hub-icon-cycle svg {
  width: 19px;
  height: 19px;
  display: block;
}

.qb-base-card .qb-card--hub .qb-card-head h3 {
  order: -1;
  transform: translateX(3px);
}

.qb-base-card .qb-card--quickbooks .qb-card-head h3 {
  order: -1;
}

.qb-base-card .qb-card--quickbooks .qb-card-list div {
  font-size: 14px;
}

.qb-base-card .qb-card-logo-wrap .qb-card-logo {
  width: auto;
  max-width: 56px;
  object-fit: contain;
  margin: 0;
}

/* QuickBooks sync grid — mobile */
@media (max-width: 900px) {
  .qb-sync-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
  }

  .qb-arrow {
    transform: rotate(90deg);
    font-size: 22px !important;
    padding: 4px 0;
  }

  .qb-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Tablet: constrain & center source feature tiles slightly wider than payment block */
@media (max-width: 900px) and (min-width: 601px) {
  .integrations .qb-sync-sources {
    width: 100%;
    max-width: 436px;
    margin-left: auto;
    margin-right: auto;
  }

  .integrations .qb-sync-tile {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .contact-demo-callout-copy h4,
  .contact-form-wrap .btn-primary {
    font-weight: 500;
  }

  .qb-sync-tile {
    padding: 10px 12px !important;
  }

  .qb-arrow {
    font-size: 18px !important;
  }

  .qb-heading {
    font-size: 24px !important;
  }

  .integrations .qb-base-card h2 .accent,
  #integrations h2.qb-heading .accent {
    font-size: 22px;
  }

  .qb-card {
    padding: 14px !important;
  }

  .qb-base-card .qb-card--hub,
  .qb-base-card .qb-card--quickbooks {
    padding: 14px 14px 14px 19px !important;
  }

  .qb-base-card .qb-card--hub .qb-card-head .qb-card-icon,
  .qb-base-card .qb-card--quickbooks .qb-card-head .qb-card-logo-wrap {
    order: -1;
  }

  .qb-base-card .qb-card--hub .qb-card-head h3 {
    order: 0;
    transform: translateX(-3px);
  }

  .qb-base-card .qb-card--quickbooks .qb-card-head h3 {
    order: 0;
  }

  .integrations .qb-base-card {
    padding: 32px 20px 24px;
    border-radius: 20px;
  }

  .integrations .qb-base-card .qb-footer {
    margin-top: 26px;
    margin-bottom: 10px;
  }
}

/* One Platform grid — mobile */
@media (max-width: 768px) {
  .op-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 16px !important;
  }
}
