html.lenis,
html.lenis body {
    height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
    overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
    overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.lenis.lenis-autoToggle {
    transition-property: overflow;
    transition-duration: 1ms;
    transition-behavior: allow-discrete;
}

/* split text */
.split-text {
  overflow: hidden;
}

.split-text .word {
  display: inline-block;
  /* margin-right: 8px; */
  opacity: 0;
  transform: translateY(60px);
}

.line-fill-text {
    overflow: hidden;
}

.line-fill-text .line-fill-line {
    display: block;
    opacity: 0.22;
    transform: translateY(10px);
    will-change: opacity, transform;
}

.line-fill-text .line-fill-word {
    display: inline-block;
}

.primary-text {
    color: var(--primary-color);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.primary-dark {
    background-color: var(--primary-dark);
}

.page-fade {
    background-color: var(--page-fade);
}

.page-dark {
    background-color: var(--page-dark);
}

.text-theme {
    color: var(--page-dark);
}

.text-grey {
    color: var(--text-grey);
}

.muted-text {
    color: var(--page-dark);
    opacity: 0.3;
}

/* Fonts */
.font-instrument {
    font-family: var(--font-instrument);
}

.font-serif {
    font-family: var(--font-serif);
}

.font-tight {
    font-family: var(--font-tight);
}

.font-vw {
    font-size: 9vw;
    line-height: 1;
    font-weight: 800;
    color: black;
}

h1,
.h1 {
    font-size: clamp(2.25rem, 0.2934rem + 4.0816vw, 4.375rem);
}

h2,
.h2 {
    font-size: clamp(2.125rem, 1.7797rem + 0.7203vw, 2.5rem);
}

h3,
.h3 {
    font-size: clamp(1.625rem, 1.3948rem + 0.4802vw, 1.875rem);
}

h4,
.h4 {
    font-size: clamp(1.375rem, 1.1448rem + 0.4802vw, 1.625rem);
}

h5,
.h5 {
    font-size: clamp(1.125rem, 0.8948rem + 0.4802vw, 1.375rem);
}

h6,
.h6 {
    font-size: clamp(1rem, 0.8849rem + 0.2401vw, 1.125rem);
}

.text-xl {
    font-size: clamp(2.125rem, -1.9421rem + 11.3171vw, 9.375rem);
}

.text-lg {
    font-size: clamp(2.125rem, 1.125rem + 5vw, 5.625rem);
}

a,
.text-md {
    font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
}

.text-sm {
    font-size: 0.875rem;
}

.w-bold {
    font-weight: 700 !important;
}

.spacer-xl {
    padding-block: 100px;
}

.mb-50 {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .spacer-xl {
        padding-block: 72px;
    }
}

@media (max-width: 767px) {
    .spacer-xl {
        padding-block: 52px;
    }
    .mb-50 {
        margin-bottom: 32px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 11px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button.lg {
    padding: 15px 25px;
    font-size: 16px;
}

.button.button-icon {
    padding: 0;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #f95200;
    color: #FFF;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), #e64600);
    box-shadow: 0 10px 24px rgba(255, 85, 0, 0.28);
}

.button-outline {
    color: #111451;
    background: #fff;
    border-color: rgba(17, 20, 81, 0.12);
    box-shadow: 0 8px 22px rgba(17, 20, 81, 0.07);
}

.button-outline:hover {
    border-color: rgba(255, 85, 0, 0.3);
}

.hero {
    padding-top: 180px;
    padding-bottom: 72px;
    position: relative;
    /* background-image: url(../images/agency-img/hero-bg.webp); */
    background-image: url(../images/landing-img/landing-bg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 56px;
    }
}

.tick-list li {
    font-size: 14px;
    align-items: start;
}

.tick-list li::before {
    width: 17px;
    height: 14px;
    background: url("../images/landing-img/tick.svg");
    flex-shrink: 0;
    display: flex;
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

.modern-card {
    background: linear-gradient(0deg, rgb(255 222 197), transparent 50%);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(255 222 197);
}

.card-image {
    border-radius: 10px;
    overflow: hidden;
}

/* ── Flow Network ─────────────────────────────── */
    .flow-area {
        padding: 26px 0 0;
        overflow: hidden;
        width: 100%;
    }

    .flow-network {
        position: relative;
        width: min(100%, 1220px);
        min-height: 620px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flow-network::before,
    .flow-network::after {
        content: "";
        position: absolute;
        inset: 10% 18%;
        border-radius: 50%;
        pointer-events: none;
    }

    .flow-network::before {
        background:
            radial-gradient(circle at center, rgba(249, 115, 22, 0.24), rgba(249, 115, 22, 0.09) 30%, rgba(249, 115, 22, 0) 72%);
        filter: blur(36px);
        opacity: 0.9;
    }

    .flow-network::after {
        inset: 16% 22%;
        border: 1px solid rgba(249, 115, 22, 0.08);
        filter: blur(1px);
    }

    .fn-center {
        position: relative;
        z-index: 4;
    }

    .fn-center-card {
        position: relative;
        width: min(100%, 340px);
        padding: 28px 34px;
        border-radius: 34px;
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(249, 115, 22, 0.16);
        backdrop-filter: blur(18px);
        box-shadow: 0 38px 80px rgba(249, 115, 22, 0.17), 0 12px 30px rgba(15, 23, 42, 0.08);
        opacity: 1;
        transform: translateY(0) scale(1) rotate(-4deg);
    }

    .fn-center-card::before,
    .fn-center-card::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 232, 0.86));
        box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
    }

    .fn-center-card::before {
        width: 62px;
        height: 62px;
        top: -24px;
        right: 22px;
        opacity: 0.72;
    }

    .fn-center-card::after {
        width: 88px;
        height: 18px;
        left: 28px;
        bottom: -12px;
        opacity: 0.52;
    }

    .fn-center-logo {
        width: min(100%, 232px);
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 12px 24px rgba(249, 115, 22, 0.18));
    }

    .fn-center-spark {
        position: absolute;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(255, 85, 0, 0.95), rgba(255, 180, 135, 0.88));
        box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.08), 0 12px 22px rgba(255, 85, 0, 0.22);
        z-index: 1;
    }

    .fn-center-spark.spark-top {
        width: 14px;
        height: 14px;
        left: 26px;
        top: 32px;
    }

    .fn-center-spark.spark-bottom {
        width: 10px;
        height: 10px;
        right: 32px;
        bottom: 28px;
    }

    .fn-brand {
        position: absolute;
        top: 50%;
        left: 50%;
        width: var(--size, 72px);
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 3;
        opacity: 1;
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--tilt, 0deg)) scale(1);
        will-change: transform, opacity;
        filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.08));
    }

    .fn-brand-badge {
        width: 100%;
        min-height: var(--size, 72px);
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 22px;
        background: var(--logo-bg, #ffffff);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
        position: relative;
    }

    .fn-brand-badge::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 28px;
        background: radial-gradient(circle, rgba(255, 150, 98, 0.18), rgba(255, 150, 98, 0));
        z-index: -1;
    }

    .fn-brand-logo {
        width: 100%;
        height: auto;
        max-width: calc(var(--size, 72px) - 20px);
        max-height: calc(var(--size, 72px) - 20px);
        object-fit: contain;
        display: block;
        animation: fnBrandFloat var(--float, 7s) ease-in-out infinite;
        animation-delay: var(--delay, 0s);
    }

    .fn-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        overflow: visible;
    }

    @keyframes fnBrandFloat {

        0%,
        100% {
            transform: translate3d(0, 0, 0) rotate(0deg);
        }

        50% {
            transform: translate3d(0, -10px, 0) rotate(2deg);
        }
    }

    @media (max-width: 1100px) {
        .flow-area {
            padding-bottom: 56px;
        }

        .flow-network {
            min-height: 540px;
            transform: scale(0.84);
            transform-origin: center top;
            margin-bottom: -86px; /* 540 × (1-0.84) = 86 */
        }
    }

    @media (max-width: 820px) {
        .flow-network {
            min-height: 450px;
            padding: 0;
            transform: scale(0.66);
            transform-origin: center top;
            margin-bottom: -153px; /* 450 × (1-0.66) = 153 */
        }
    }

    @media (max-width: 640px) {
        .flow-area {
            padding-bottom: 0;
        }

        .flow-network {
            min-height: 340px;
            transform: scale(0.5);
            transform-origin: center top;
            margin-bottom: -170px; /* 340 × (1-0.5) = 170 */
            overflow: hidden;
        }

        /* hide the 4 most extreme brands (x: ±420-474px) that clip on mobile */
        .flow-network > .fn-brand:nth-child(2),  /* Google   -420px */
        .flow-network > .fn-brand:nth-child(4),  /* SEMrush  -472px */
        .flow-network > .fn-brand:nth-child(7),  /* Slack    +432px */
        .flow-network > .fn-brand:nth-child(9) { /* Zapier   +474px */
            display: none;
        }

        .fn-center-card {
            padding: 24px 26px;
            border-radius: 28px;
        }
    }

    @media (max-width: 480px) {
        .flow-network {
            min-height: 300px;
            transform: scale(0.44);
            transform-origin: center top;
            margin-bottom: -168px; /* 300 × (1-0.44) = 168 */
        }

        /* hide borderline brands at ±348-356px too on very small screens */
        .flow-network > .fn-brand:nth-child(5),  /* Ahrefs   -348px */
        .flow-network > .fn-brand:nth-child(10) { /* Notion  +356px */
            display: none;
        }
    }

    .trusted-section,
    .bundle-section,
    .replace-tools-section,
    .workflow-scroll-section {
        min-height: 100svh;
    }

    .trusted-section {
        position: relative;
        overflow: hidden;
        /* padding-top: 36px; */
        padding-bottom: 120px;
    }

    .trusted-section::before {
        content: "";
        position: absolute;
        inset: 2% 4% auto;
        height: 92%;
        background:
            radial-gradient(circle at 68% 46%, rgba(255, 154, 79, 0.18), rgba(255, 154, 79, 0) 27%),
            radial-gradient(circle at 70% 94%, rgba(255, 166, 85, 0.22), rgba(255, 166, 85, 0) 24%),
            radial-gradient(circle at 22% 18%, rgba(255, 208, 182, 0.2), rgba(255, 208, 182, 0) 22%);
        pointer-events: none;
        filter: blur(42px);
        z-index: 0;
    }

    .trusted-copy,
    .trusted-visual {
        position: relative;
        z-index: 1;
    }

    .trusted-copy {
        padding-top: 46px;
    }

    .trusted-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(17, 24, 39, 0.64);
    }

    .trusted-label::before {
        content: "";
        width: 54px;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 85, 0, 0), rgba(255, 85, 0, 0.9));
    }

    .trusted-title {
        margin-bottom: 28px;
        font-size: clamp(2rem, 1.3145rem + 3.4277vw, 3.4375rem);
        line-height: 0.92;
        letter-spacing: -0.05em;
        font-family: 'Inter Tight', sans-serif;
        color: #111827;
    }

    .trusted-line {
        display: inline-block;
        overflow: hidden;
    }

    .trusted-line span {
        display: inline-block;
        transform: translateY(0);
    }

    .trusted-line.is-accent span {
        color: #ff6a00;
        text-shadow: 0 12px 28px rgba(255, 106, 0, 0.16);
    }

    .trusted-description {
        max-width: 470px;
        margin-bottom: 34px;
        font-size: 1.08rem;
        line-height: 1.8;
        color: rgba(17, 24, 39, 0.66);
    }

    .trusted-mini-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        /* max-width: 420px; */
    }

    .trusted-mini-card {
        padding: 18px 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 144, 88, 0.16);
        box-shadow: 0 16px 32px rgba(255, 146, 88, 0.09);
        backdrop-filter: blur(16px);
    }

    .trusted-mini-card strong {
        display: block;
        margin-bottom: 4px;
        font-size: 2.7rem;
        line-height: 1;
        color: #111827;
    }

    .trusted-mini-card span {
        font-size: 0.88rem;
        color: rgba(17, 24, 39, 0.58);
    }

    .trusted-visual {
        /* min-height: 790px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trusted-stage {
        position: relative;
        width: min(100%, 980px);
        aspect-ratio: 1 / 1;
        margin: 0 auto;
        cursor: grab;
        perspective: 1200px;
    }

    .trusted-stage:active {
        cursor: grabbing;
    }

    .trusted-stage::before {
        content: "";
        position: absolute;
        inset: 4%;
        border-radius: 50%;
        background:
            radial-gradient(circle at 50% 44%, rgba(255, 198, 152, 0.36), rgba(255, 198, 152, 0.12) 32%, rgba(255, 198, 152, 0) 65%),
            radial-gradient(circle at 50% 98%, rgba(255, 142, 54, 0.24), rgba(255, 142, 54, 0) 34%),
            radial-gradient(circle at 18% 18%, rgba(255, 228, 203, 0.22), rgba(255, 228, 203, 0) 18%);
        filter: blur(34px);
    }

    .trusted-stage::after {
        content: "";
        position: absolute;
        inset: 14% 12% 6%;
        border-radius: 50%;
        background:
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 26%),
            radial-gradient(circle at 50% 70%, rgba(255, 136, 46, 0.2), rgba(255, 136, 46, 0) 40%);
        filter: blur(44px);
        opacity: 0.9;
        pointer-events: none;
    }

    .trusted-globe-shell {
        position: absolute;
        inset: 2.8%;
        border-radius: 50%;
        overflow: visible;
        display: block;
        z-index: 1;
        background:
            radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 36%),
            radial-gradient(circle at 54% 64%, rgba(255, 163, 82, 0.1), rgba(255, 163, 82, 0) 58%);
    }

    .trusted-globe-shell::before {
        content: "";
        position: absolute;
        inset: 4%;
        border-radius: 50%;
        background:
            radial-gradient(circle at 50% 50%, rgba(255, 189, 148, 0.28), rgba(255, 189, 148, 0.12) 40%, rgba(255, 189, 148, 0) 72%);
        filter: blur(30px);
    }

    .trusted-globe-shell::after {
        content: "";
        position: absolute;
        inset: 5.5%;
        border-radius: 50%;
        border: 1px solid rgba(248, 173, 123, 0.14);
        box-shadow:
            inset 0 0 0 1px rgba(255, 230, 208, 0.18),
            0 0 0 16px rgba(255, 159, 80, 0.04);
    }

    .trusted-globe-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 2;
        filter: drop-shadow(0 42px 90px rgba(255, 162, 92, 0.22));
    }

    .trusted-stage-overlay {
        position: absolute;
        inset: 0;
        pointer-events: auto;
        z-index: 3;
    }

    .trusted-center-panel {
        position: absolute;
        top: 56%;
        left: 50%;
        width: 222px;
        padding: 28px 22px 22px;
        border-radius: 32px;
        text-align: center;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 172, 126, 0.24);
        backdrop-filter: blur(22px);
        box-shadow:
            0 28px 64px rgba(255, 160, 85, 0.16),
            0 0 0 1px rgba(255, 228, 206, 0.46);
        transform: translate(-50%, -50%);
        z-index: 4;
        pointer-events: auto;
    }

    .trusted-center-icon {
        width: 62px;
        height: 62px;
        margin: 0 auto 18px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, rgba(255, 115, 0, 0.08), rgba(255, 190, 149, 0.44));
        box-shadow: inset 0 0 0 1px rgba(255, 115, 0, 0.14), 0 10px 24px rgba(255, 162, 92, 0.12);
    }

    .trusted-center-icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .trusted-center-panel strong {
        display: block;
        margin-bottom: 8px;
        font-size: clamp(1.85rem, 1.45rem + 0.9vw, 2.9rem);
        line-height: 0.95;
        color: #111827;
    }

    .trusted-center-panel span {
        display: block;
        font-size: 1rem;
        line-height: 1.45;
        color: rgba(17, 24, 39, 0.72);
    }

    .trusted-stat-card {
        position: absolute;
        width: 156px;
        padding: 18px 16px 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 176, 134, 0.2);
        box-shadow:
            0 24px 44px rgba(255, 156, 77, 0.13),
            0 0 0 1px rgba(255, 236, 221, 0.48);
        backdrop-filter: blur(18px);
        pointer-events: auto;
        z-index: 4;
    }

    .trusted-stat-card small {
        display: block;
        margin-bottom: 8px;
        font-size: 0.76rem;
        font-weight: 700;
        color: rgba(17, 24, 39, 0.45);
    }

    .trusted-stat-card strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1.3rem;
        line-height: 1;
        color: #111827;
    }

    .trusted-stat-card em {
        display: block;
        margin-bottom: 10px;
        font-style: normal;
        font-size: 0.92rem;
        font-weight: 700;
        color: #4fbf91;
    }

    .trusted-stat-card svg {
        width: 100%;
        height: 28px;
    }

    .trusted-stat-top-left {
        top: 23%;
        left: 3%;
    }

    .trusted-stat-top-right {
        top: 22%;
        right: 3%;
    }

    .trusted-stat-bottom-left {
        bottom: 11%;
        left: 4%;
    }

    .trusted-stat-bottom-right {
        right: 2%;
        bottom: 13%;
    }

    .trusted-marker {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transform: translate(-50%, -50%);
        transform-origin: center;
        pointer-events: auto;
        z-index: 5;
        transition: opacity 0.24s ease, filter 0.24s ease;
        will-change: transform, opacity, filter;
        --marker-heading: 0deg;
        --marker-trail-opacity: 0.2;
        --marker-trail-scale: 1;
        --marker-energy: 0.55;
        --marker-lift: 0px;
    }

    .trusted-marker::before,
    .trusted-marker::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        pointer-events: none;
    }

    .trusted-marker::before {
        width: 138px;
        height: 30px;
        border-radius: 999px;
        background: linear-gradient(90deg,
                rgba(255, 162, 88, 0),
                rgba(255, 162, 88, calc(var(--marker-trail-opacity) * 0.65)),
                rgba(255, 233, 214, calc(var(--marker-trail-opacity) * 0.85)),
                rgba(255, 162, 88, 0));
        filter: blur(12px);
        opacity: var(--marker-trail-opacity);
        transform: translate(-68%, calc(-50% + var(--marker-lift))) rotate(var(--marker-heading)) scaleX(var(--marker-trail-scale));
    }

    .trusted-marker::after {
        width: 118px;
        height: 118px;
        border-radius: 50%;
        border: 1px solid rgba(255, 157, 83, 0.18);
        opacity: calc(var(--marker-energy) * 0.5);
        filter: blur(0.2px);
        transform: translate(-50%, calc(-50% + var(--marker-lift))) scale(calc(0.78 + (var(--marker-energy) * 0.34)));
        animation: markerActivityOrbit 3.4s ease-in-out infinite;
    }

    .trusted-marker-avatar {
        width: 92px;
        height: 92px;
        padding: 5px;
        border-radius: 999px;
        background:
            radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.96), rgba(255, 245, 238, 0.84) 55%, rgba(255, 220, 197, 0.82) 100%);
        box-shadow:
            0 0 0 3px rgba(255, 122, 26, 0.2),
            0 0 0 10px rgba(255, 154, 84, 0.08),
            0 18px 36px rgba(255, 145, 72, 0.34),
            0 4px 12px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 2.5px solid rgba(255, 196, 166, 0.78);
        animation: markerPulseRing 2.8s ease-in-out infinite;
        overflow: visible;
        transform: translateY(var(--marker-lift));
        transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
    }

    @keyframes markerPulseRing {

        0%,
        100% {
            box-shadow:
                0 0 0 3px rgba(255, 122, 26, 0.22),
                0 14px 34px rgba(255, 145, 72, 0.36),
                0 4px 12px rgba(0, 0, 0, 0.1);
        }

        50% {
            box-shadow:
                0 0 0 8px rgba(255, 122, 26, 0.12),
                0 0 0 18px rgba(255, 122, 26, 0.05),
                0 18px 36px rgba(255, 145, 72, 0.44),
                0 4px 12px rgba(0, 0, 0, 0.1);
        }
    }

    .trusted-marker-avatar::before {
        content: "";
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        border: 1px solid rgba(255, 153, 77, 0.24);
        opacity: calc(0.26 + (var(--marker-energy) * 0.62));
        animation: markerBeacon 3s ease-out infinite;
    }

    .trusted-marker-avatar::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -7px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #ff7a1a;
        border: 3px solid #fff;
        transform: translateX(-50%);
        box-shadow:
            0 0 0 4px rgba(255, 122, 26, 0.18),
            0 0 18px rgba(255, 122, 26, 0.58),
            0 2px 8px rgba(255, 122, 26, 0.45);
    }

    .trusted-marker-avatar img {
        width: 100%;
        height: 100%;
        border-radius: inherit;
        display: block;
        object-fit: cover;
        object-position: center top;
        background: linear-gradient(135deg, #fff5ef, #ffe0ca);
    }

    .trusted-marker.is-active .trusted-marker-avatar {
        border-color: rgba(255, 173, 116, 0.92);
        box-shadow:
            0 0 0 4px rgba(255, 122, 26, 0.24),
            0 0 0 12px rgba(255, 159, 86, 0.12),
            0 0 34px rgba(255, 145, 72, 0.38),
            0 18px 36px rgba(255, 145, 72, 0.42),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }

    @keyframes markerBeacon {
        0% {
            transform: scale(0.86);
            opacity: 0;
        }

        20% {
            opacity: 0.56;
        }

        100% {
            transform: scale(1.18);
            opacity: 0;
        }
    }

    @keyframes markerActivityOrbit {
        0%,
        100% {
            opacity: calc(var(--marker-energy) * 0.28);
            transform: translate(-50%, calc(-50% + var(--marker-lift))) scale(0.72);
        }

        50% {
            opacity: calc(var(--marker-energy) * 0.52);
            transform: translate(-50%, calc(-50% + var(--marker-lift))) scale(1.06);
        }
    }

    .trusted-marker-card {
        display: none;
    }

    .trusted-marker-card strong {
        display: block;
        margin-bottom: 2px;
        font-size: 0.9rem;
        color: #111827;
    }

    .trusted-marker-card span {
        display: block;
        font-size: 0.76rem;
        color: rgba(17, 24, 39, 0.56);
    }

    .trusted-ring {
        position: absolute;
        inset: 10%;
        border-radius: 50%;
        border: 1px solid rgba(255, 162, 92, 0.08);
        filter: blur(0.6px);
    }

    .trusted-ring.ring-two {
        inset: 7%;
        transform: rotate(18deg);
    }

    .trusted-ring.ring-three {
        inset: 15% 10%;
        transform: rotate(-14deg);
    }

    @media (max-width: 1199px) {
        .trusted-copy {
            max-width: 100%;
            padding-top: 0;
            margin-bottom: 20px;
        }

        /* .trusted-visual {
            min-height: 700px;
        } */

        .trusted-stage {
            width: min(100%, 820px);
        }

        .trusted-stat-card {
            width: 146px;
        }
    }

    @media (max-width: 991px) {
        .trusted-section {
            padding-bottom: 80px;
        }

        .trusted-copy {
            text-align: center;
            margin-inline: auto;
        }

        .trusted-description,
        .trusted-mini-stats {
            margin-left: auto;
            margin-right: auto;
        }

        .trusted-visual {
            /* min-height: 620px; */
            margin-top: 30px;
        }

        .trusted-stage {
            width: min(100%, 680px);
        }

        .trusted-stat-top-left {
            left: 1%;
        }

        .trusted-stat-top-right,
        .trusted-stat-bottom-right {
            right: 1%;
        }
    }

    @media (max-width: 767px) {
        .trusted-section {
            min-height: auto;
        }

        .trusted-mini-stats {
            grid-template-columns: 1fr;
            max-width: 280px;
        }

        /* .trusted-visual {
            min-height: 520px;
        } */

        .trusted-stage {
            aspect-ratio: 0.96;
        }

        .trusted-center-panel {
            width: 186px;
            padding: 24px 18px 20px;
        }

        .trusted-stat-card {
            width: 122px;
            padding: 12px;
            border-radius: 18px;
        }

        .trusted-stat-card strong {
            font-size: 1.15rem;
        }

        .trusted-marker-avatar {
            width: 62px;
            height: 62px;
        }
    }

    .bundle-section {
        position: relative;
        overflow: hidden;
        /* margin: 28px 0 110px; */
        padding: 86px 0;
        background:
            radial-gradient(circle at 64% 50%, rgba(255, 132, 28, 0.18), rgba(255, 132, 28, 0) 26%),
            radial-gradient(circle at 20% 24%, rgba(255, 145, 52, 0.1), rgba(255, 145, 52, 0) 22%),
            linear-gradient(135deg, #060606 0%, #0b0b0b 34%, #111111 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        /* border-radius: 40px; */
        /* border: 1px solid rgba(255, 165, 78, 0.08); */
        /* box-shadow: inset 0 1px 0 rgba(255, 190, 130, 0.08), 0 36px 100px rgba(0, 0, 0, 0.28); */
    }

    .bundle-section::before,
    .bundle-section::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .bundle-section::before {
        background:
            radial-gradient(circle at 68% 52%, rgba(255, 132, 20, 0.16), rgba(255, 132, 20, 0) 24%),
            radial-gradient(circle at 64% 50%, rgba(255, 208, 164, 0.08), rgba(255, 208, 164, 0) 34%);
        filter: blur(12px);
    }

    .bundle-section::after {
        background-image:
            linear-gradient(rgba(255, 160, 84, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 160, 84, 0.045) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(circle at 64% 50%, black 12%, transparent 78%);
        opacity: 0.26;
    }

    .bundle-copy {
        position: relative;
        z-index: 2;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
        padding: 20px 10px 20px 14px;
    }

    .bundle-kicker {
        display: inline-block;
        margin-bottom: 18px;
        /* font-size: 0.92rem; */
        font-weight: 500;
        color: #ff9a3d;
        text-shadow: 0 0 22px rgba(255, 154, 61, 0.18);
    }

    .bundle-title {
        margin: 0 0 12px;
        font-size: clamp(2.4rem, 2rem + 1.3vw, 3.6rem);
        line-height: 0.94;
        letter-spacing: -0.05em;
        color: #f7f7f7;
    }

    .bundle-price {
        margin: 0 0 20px;
        font-size: clamp(3.125rem, -28.8333rem + 66.6667vw, 12.5rem);
        line-height: 1;
        letter-spacing: -0.07em;
        color: #ff932e;
        /* text-shadow: 0 0 28px rgba(255, 147, 46, 0.22), 0 0 70px rgba(255, 147, 46, 0.12); */
    }

    .bundle-copy p {
        max-width: 340px;
        margin: 0;
        font-size: 1rem;
        line-height: 1.62;
        color: rgba(255, 255, 255, 0.78);
    }

    .bundle-visual {
        position: relative;
        z-index: 2;
        min-height: 660px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bundle-orbit {
        --bundle-tilt-x: 0deg;
        --bundle-tilt-y: 0deg;
        position: relative;
        width: min(100%, 920px);
        aspect-ratio: 1.18 / 1;
        margin: 0 auto;
        transform-style: preserve-3d;
        transform: perspective(1200px) rotateX(var(--bundle-tilt-x)) rotateY(var(--bundle-tilt-y));
        transition: transform 220ms ease-out;
    }

    .bundle-orbit::before,
    .bundle-orbit::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 999px;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .bundle-orbit::before {
        width: 74%;
        aspect-ratio: 1 / 1;
        background:
            radial-gradient(circle, rgba(255, 146, 42, 0.14), rgba(255, 146, 42, 0) 58%);
        filter: blur(18px);
    }

    .bundle-orbit::after {
        width: 76%;
        aspect-ratio: 1 / 1;
        border: 1px solid rgba(255, 154, 72, 0.08);
        box-shadow:
            0 0 0 56px rgba(255, 154, 72, 0.03),
            0 0 0 112px rgba(255, 154, 72, 0.025),
            0 0 0 168px rgba(255, 154, 72, 0.02);
        opacity: 0.85;
    }

    .bundle-core {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background:
            radial-gradient(circle at 45% 38%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 34%),
            radial-gradient(circle at 50% 50%, #151515 0%, #0c0c0c 68%, #070707 100%);
        border: 1px solid rgba(255, 170, 92, 0.2);
        box-shadow:
            inset 0 0 0 2px rgba(255, 190, 126, 0.06),
            0 0 0 20px rgba(255, 143, 35, 0.05),
            0 0 48px rgba(255, 132, 28, 0.18);
        z-index: 5;
    }

    .bundle-core::before,
    .bundle-core::after {
        content: "";
        position: absolute;
        inset: -18px;
        border-radius: inherit;
        border: 1px solid rgba(255, 149, 48, 0.16);
        opacity: 0.55;
    }

    .bundle-core::after {
        inset: -34px;
        border-color: rgba(255, 149, 48, 0.08);
        opacity: 0.45;
    }

    .bundle-core-price {
        margin-bottom: 8px;
        font-size: clamp(2.7rem, 2.45rem + 0.9vw, 3.8rem);
        line-height: 0.92;
        font-weight: 700;
        letter-spacing: -0.06em;
        color: #fff;
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
    }

    .bundle-core-price span {
        margin-left: 6px;
        font-size: 1.1rem;
        letter-spacing: -0.02em;
        color: rgba(255, 255, 255, 0.72);
    }

    .bundle-core-title {
        margin: 0 0 6px;
        font-size: 0.92rem;
        color: rgba(255, 154, 61, 0.92);
    }

    .bundle-core-copy {
        max-width: 156px;
        margin: 0;
        font-size: 1.15rem;
        line-height: 1.18;
        color: #f7f7f7;
        letter-spacing: -0.04em;
    }

    .bundle-spoke {
        position: absolute;
        left: 50%;
        top: 50%;
        width: var(--length);
        height: 2px;
        transform-origin: 0 50%;
        transform: rotate(var(--angle));
        z-index: 1;
        pointer-events: none;
    }

    .bundle-spoke::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, rgba(255, 142, 48, 0.86), rgba(255, 142, 48, 0.18));
        box-shadow: 0 0 12px rgba(255, 142, 48, 0.24);
    }

    .bundle-spoke::after {
        content: "";
        position: absolute;
        right: -4px;
        top: 50%;
        width: 10px;
        height: 10px;
        transform: translateY(-50%);
        border-radius: 50%;
        background: #ff962b;
        box-shadow: 0 0 14px rgba(255, 150, 43, 0.55);
    }

    .bundle-spoke-pulse {
        position: absolute;
        left: 0;
        top: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        transform: translateY(-50%);
        background: #ffd29d;
        box-shadow: 0 0 18px rgba(255, 183, 114, 0.72);
    }

    .bundle-node {
        position: absolute;
        left: 50%;
        top: 50%;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 176px;
        padding: 14px 18px;
        border-radius: 18px;
        border: 1px solid rgba(255, 172, 96, 0.34);
        background:
            linear-gradient(180deg, rgba(34, 22, 11, 0.96), rgba(15, 12, 9, 0.96));
        color: #fff;
        transform: translate(-50%, -50%) translate(var(--tx), var(--ty));
        box-shadow:
            inset 0 0 0 1px rgba(255, 202, 145, 0.05),
            0 0 18px rgba(255, 148, 46, 0.08);
        z-index: 4;
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
        cursor: pointer;
    }

    .bundle-node:hover,
    .bundle-node:focus-visible,
    .bundle-node.is-active {
        transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1.03);
        border-color: rgba(255, 187, 112, 0.58);
        box-shadow:
            inset 0 0 0 1px rgba(255, 211, 160, 0.08),
            0 0 26px rgba(255, 144, 42, 0.18),
            0 14px 40px rgba(0, 0, 0, 0.36);
    }

    .bundle-node-icon {
        flex: 0 0 auto;
        width: 26px;
        height: 26px;
        display: inline-grid;
        place-items: center;
        color: #ff9b38;
        filter: drop-shadow(0 0 10px rgba(255, 155, 56, 0.22));
    }

    .bundle-node-icon svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.2;
    }

    .bundle-node-label {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .bundle-spark {
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #ff9a33;
        box-shadow: 0 0 12px rgba(255, 154, 51, 0.6);
        z-index: 1;
        opacity: 0.7;
    }

    .bundle-spark.spark-one {
        left: 17%;
        top: 18%;
    }

    .bundle-spark.spark-two {
        right: 15%;
        top: 14%;
    }

    .bundle-spark.spark-three {
        right: 10%;
        bottom: 21%;
    }

    .bundle-spark.spark-four {
        left: 26%;
        bottom: 14%;
    }

    .full-center {
        min-height: 100dvh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .text-6vw {
        font-size: 6vw;
    }

    .replace-tools-section {
        position: relative;
        min-height: 100dvh;
        overflow: hidden;
        background:
            radial-gradient(circle at 50% 46%, rgba(255, 166, 86, 0.12), rgba(255, 166, 86, 0) 18%),
            radial-gradient(circle at 18% 18%, rgba(255, 203, 170, 0.14), rgba(255, 203, 170, 0) 22%),
            linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    }

    .replace-tools-backdrop {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        pointer-events: none;
    }

    .replace-tools-grid {
        position: relative;
        width: min(1220px, 94vw);
        min-height: 860px;
        margin: 0 auto;
    }

    .replace-tools-grid::before {
        content: "";
        position: absolute;
        inset: 12% 18%;
        border-radius: 38px;
        background: radial-gradient(circle, rgba(255, 162, 79, 0.08), rgba(255, 162, 79, 0) 68%);
        filter: blur(22px);
        opacity: 0.9;
    }

    .replace-grid-lines,
    .replace-tools-cells {
        position: absolute;
        inset: 6% 1%;
    }

    .replace-grid-lines {
        z-index: 1;
    }

    .replace-grid-line {
        position: absolute;
        background: linear-gradient(90deg, rgba(255, 176, 112, 0), rgba(255, 176, 112, 0.5), rgba(255, 176, 112, 0));
        opacity: 0.4;
        filter: blur(0.2px);
        transform-origin: center;
    }

    .replace-grid-line.horizontal {
        left: 0;
        right: 0;
        height: 1px;
        transform: scaleX(0);
    }

    .replace-grid-line.vertical {
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, rgba(255, 176, 112, 0), rgba(255, 176, 112, 0.5), rgba(255, 176, 112, 0));
        transform: scaleY(0);
    }

    .replace-tools-cells {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-template-rows: repeat(5, minmax(0, 1fr));
        gap: 0;
        z-index: 2;
    }

    .replace-tool-cell {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.34);
        will-change: transform, opacity, filter;
    }

    .replace-tool-mark {
        width: var(--logo-size, 58px);
        height: var(--logo-size, 58px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .replace-tool-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: saturate(1.02) drop-shadow(0 10px 18px rgba(255, 170, 96, 0.12));
    }

    .replace-tools-copy {
        position: relative;
        z-index: 4;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .replace-tools-copy::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: min(980px, 84vw);
        height: min(420px, 38vw);
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 0) 82%);
        filter: blur(16px);
        z-index: -1;
    }

    .replace-tools-content {
        max-width: 1020px;
        padding: 28px 34px;
        border-radius: 34px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34));
        box-shadow: 0 20px 60px rgba(255, 178, 114, 0.08);
        backdrop-filter: blur(10px);
    }

    .replace-tools-title {
        margin: 0 0 18px;
        font-size: clamp(3.1rem, 2.3rem + 2.8vw, 6rem);
        line-height: 0.97;
        letter-spacing: -0.06em;
        color: #171717;
        text-shadow: 0 12px 32px rgba(255, 180, 116, 0.18);
    }

    .replace-tools-subtitle {
        max-width: 720px;
        margin: 0 auto;
        font-size: 1.08rem;
        line-height: 1.7;
        color: rgba(23, 23, 23, 0.72);
        text-shadow: 0 2px 12px rgba(255, 255, 255, 0.42);
    }

    .workflow-scroll-section {
        position: relative;
        background:
            radial-gradient(circle at 18% 16%, rgba(255, 199, 153, 0.22), rgba(255, 199, 153, 0) 30%),
            radial-gradient(circle at 80% 76%, rgba(255, 177, 105, 0.12), rgba(255, 177, 105, 0) 35%),
            linear-gradient(180deg, #fffdf9 0%, #fff7ee 100%);
        overflow: hidden;
        width: 100%;
    }

    .workflow-stage {
        position: relative;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .workflow-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 183, 123, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 183, 123, 0.04) 1px, transparent 1px);
        background-size: 72px 72px;
        mask-image: radial-gradient(circle at 50% 50%, black 22%, transparent 86%);
        opacity: 0.8;
        pointer-events: none;
        z-index: 1;
    }

    .workflow-viewport {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .workflow-curve {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        height: 100%;
        width: 100%;
        overflow: visible;
        filter: drop-shadow(0 14px 28px rgba(249, 115, 22, 0.08));
    }

    .workflow-curve-svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .workflow-curve-rail {
        fill: none;
        stroke: rgba(148, 163, 184, 0.22);
        stroke-width: 1.35;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .workflow-curve-guide {
        fill: none;
        stroke: rgba(249, 115, 22, 0.08);
        stroke-width: 7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .workflow-curve-progress {
        fill: none;
        stroke: url(#workflowConnectorGradient);
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
        filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.26));
    }

    .workflow-curve-energy {
        fill: none;
        stroke: url(#workflowConnectorPulse);
        stroke-width: 1.15;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 8 18;
        opacity: 0.5;
        animation: workflowConnectorDash 7s linear infinite;
    }

    .workflow-curve-dot {
        fill: #f97316;
        filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.5));
    }

    .workflow-curve-orb {
        mix-blend-mode: screen;
    }

    @keyframes workflowConnectorDash {
        to {
            stroke-dashoffset: -156;
        }
    }

    @keyframes workflowPortPulse {
        0%,
        100% {
            opacity: 0.72;
            filter: drop-shadow(0 0 0 rgba(249, 115, 22, 0));
        }
        50% {
            opacity: 1;
            filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.28));
        }
    }

    .workflow-track {
        position: relative;
        display: flex;
        align-items: center;
        width: max-content;
        height: 100%;
        padding-left: 14vw;
        padding-right: 22vw;
        gap: 8vw;
        z-index: 3;
    }

    .workflow-beat {
        flex: 0 0 54vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4vw;
        opacity: 0.34;
        transform: scale(0.965) translateY(14px);
        transition: opacity 550ms cubic-bezier(0.25, 1, 0.5, 1), transform 550ms cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
    }

    .workflow-beat.is-active {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .workflow-beat-copy {
        max-width: 30vw;
        text-align: left;
        opacity: 0.74;
        transform: translateY(8px);
        transition: opacity 420ms ease, transform 420ms ease;
    }

    .workflow-beat.is-active .workflow-beat-copy {
        opacity: 1;
        transform: translateY(0);
    }

    .workflow-beat-text {
        margin: 0;
        font-size: clamp(3.2rem, 4.8vw, 6.2rem);
        line-height: 0.94;
        letter-spacing: -0.05em;
        color: #18181b;
        font-weight: 800;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.22em;
    }

    .workflow-beat-desc {
        margin: 18px 0 0;
        font-size: clamp(0.9rem, 1.05vw, 1.15rem);
        line-height: 1.65;
        color: rgba(24, 24, 27, 0.58);
        max-width: 100%;
    }

    /* Card vertical alignment matching curve path peaks and valleys */
    .workflow-beat:nth-child(even) .workflow-element-wrap {
        align-self: flex-start;
        margin-top: 8vh;
    }

    .workflow-beat:nth-child(odd):not(:first-child) .workflow-element-wrap {
        align-self: flex-end;
        margin-bottom: 8vh;
    }

    .workflow-beat:first-child .workflow-element-wrap {
        align-self: center;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Badges (GSAP style pill cards) */
    .gsap-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.12em 0.38em;
        border-radius: 20px;
        font-weight: 900;
        letter-spacing: -0.04em;
        line-height: 1;
        text-transform: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
        transform: rotate(-2deg);
        transition: transform 0.4s ease;
    }

    .workflow-beat.is-active .gsap-pill {
        transform: rotate(-1.5deg) scale(1.02);
    }

    .gsap-pill.orange-pill {
        background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
        border: 2px solid #fdba74;
        color: #ea580c;
    }

    .gsap-pill.purple-pill {
        background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
        border: 2px solid #d8b4fe;
        color: #7c3aed;
    }

    .gsap-pill.green-pill {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border: 2px solid #86efac;
        color: #16a34a;
    }

    .gsap-pill.pink-pill {
        background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
        border: 2px solid #fbcfe8;
        color: #db2777;
    }

    /* Workflow Elements Cards */
    .workflow-element {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        min-width: 230px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow:
            0 4px 6px -1px rgba(0, 0, 0, 0.05),
            0 20px 40px -10px rgba(249, 115, 22, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: rotate(-3deg) translateY(0);
        position: relative;
        overflow: visible;
        transition:
            transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.5s ease,
            border-color 0.5s ease;
    }

    .workflow-port {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background:
            radial-gradient(circle at 50% 50%, rgba(255,255,255,1) 0 20%, rgba(255,255,255,0.5) 21%, rgba(255,255,255,0) 32%),
            radial-gradient(circle at 50% 50%, rgba(249,115,22,0.18), rgba(249,115,22,0.03));
        border: 2px solid rgba(249,115,22,0.2);
        box-shadow: 0 0 0 8px rgba(249,115,22,0.04), 0 0 22px rgba(249,115,22,0.12);
        opacity: 0;
        transition: opacity 320ms ease, transform 320ms ease, box-shadow 320ms ease;
        pointer-events: none;
        z-index: 3;
    }

    .workflow-port-top {
        left: 50%;
        top: -26px;
        transform: translateX(-50%) scale(0.8);
    }

    .workflow-port-right {
        right: -26px;
        top: 50%;
        transform: translateY(-50%) scale(0.8);
    }

    .workflow-port-bottom {
        left: 50%;
        bottom: -26px;
        transform: translateX(-50%) scale(0.8);
    }

    .workflow-port-left {
        left: -26px;
        top: 50%;
        transform: translateY(-50%) scale(0.8);
    }

    .workflow-element[data-flow-in~="top"] .workflow-port-top,
    .workflow-element[data-flow-out~="top"] .workflow-port-top,
    .workflow-element[data-flow-in~="right"] .workflow-port-right,
    .workflow-element[data-flow-out~="right"] .workflow-port-right,
    .workflow-element[data-flow-in~="bottom"] .workflow-port-bottom,
    .workflow-element[data-flow-out~="bottom"] .workflow-port-bottom,
    .workflow-element[data-flow-in~="left"] .workflow-port-left,
    .workflow-element[data-flow-out~="left"] .workflow-port-left {
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(249,115,22,0.05), 0 0 24px rgba(249,115,22,0.18);
        animation: workflowPortPulse 2.8s ease-in-out infinite;
    }

    .workflow-element[data-flow-in~="top"] .workflow-port-top,
    .workflow-element[data-flow-out~="top"] .workflow-port-top,
    .workflow-element[data-flow-in~="bottom"] .workflow-port-bottom,
    .workflow-element[data-flow-out~="bottom"] .workflow-port-bottom {
        transform: translateX(-50%) scale(1);
    }

    .workflow-element[data-flow-in~="right"] .workflow-port-right,
    .workflow-element[data-flow-out~="right"] .workflow-port-right,
    .workflow-element[data-flow-in~="left"] .workflow-port-left,
    .workflow-element[data-flow-out~="left"] .workflow-port-left {
        transform: translateY(-50%) scale(1);
    }

    .workflow-beat.is-active .workflow-element {
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.05),
            0 28px 56px -10px rgba(249, 115, 22, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .workflow-element:hover {
        transform: translateY(-8px) rotate(0deg) scale(1.04);
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(249, 115, 22, 0.3);
    }

    .workflow-element-chip {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #f97316;
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.08);
        position: relative;
    }

    .workflow-element-chip::after {
        content: "";
        position: absolute;
        inset: 4px;
        background: white;
        border-radius: 50%;
    }

    .workflow-element-title {
        display: block;
        font-size: 0.85rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #f97316;
    }

    .workflow-element-text {
        display: block;
        margin-top: 6px;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
        color: #1f2937;
    }

    .workflow-element.trigger {
        transform: rotate(-3deg);
    }

    .workflow-element.task {
        transform: rotate(3deg);
    }

    .workflow-element.task .workflow-element-chip {
        background: #a855f7;
        box-shadow: 0 0 0 10px rgba(168, 85, 247, 0.08);
    }

    .workflow-element.task .workflow-element-title {
        color: #a855f7;
    }

    .workflow-element.assign {
        transform: rotate(-2deg);
    }

    .workflow-element.assign .workflow-element-chip {
        background: #3b82f6;
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.08);
    }

    .workflow-element.assign .workflow-element-title {
        color: #3b82f6;
    }

    .workflow-element.review {
        transform: rotate(2deg);
    }

    .workflow-element.review .workflow-element-chip {
        background: #db2777;
        box-shadow: 0 0 0 10px rgba(219, 39, 119, 0.08);
    }

    .workflow-element.review .workflow-element-title {
        color: #db2777;
    }

    .workflow-element.done {
        transform: rotate(-3deg);
    }

    .workflow-element.done .workflow-element-chip {
        background: #10b981;
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.08);
    }

    .workflow-element.done .workflow-element-title {
        color: #10b981;
    }

    /* ── Workflow new components ─────────────────────── */
    .workflow-element-wrap {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        z-index: 4;
    }

    .workflow-step-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(249, 115, 22, 0.52);
    }

    .workflow-meta-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 11px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(0, 0, 0, 0.07);
        color: rgba(24, 24, 27, 0.6);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(12px);
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .workflow-beat:not(.is-active) .workflow-element,
    .workflow-beat:not(.is-active) .workflow-meta-badge {
        opacity: 0.84;
    }

    .workflow-beat:not(.is-active) .workflow-beat-text,
    .workflow-beat:not(.is-active) .workflow-beat-desc {
        color: rgba(24, 24, 27, 0.74);
    }

    .workflow-meta-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        flex: 0 0 auto;
    }

    .workflow-element-icon-wrap {
        flex: 0 0 auto;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(249, 115, 22, 0.1);
        color: #f97316;
    }

    .workflow-element-icon-wrap svg {
        width: 17px;
        height: 17px;
        stroke-width: 2;
    }

    .workflow-element-meta {
        display: block;
        margin-top: 2px;
        font-size: 0.68rem;
        color: rgba(31, 41, 55, 0.4);
        font-weight: 500;
        letter-spacing: -0.01em;
    }

    .workflow-element.task .workflow-element-icon-wrap {
        background: rgba(168, 85, 247, 0.1);
        color: #a855f7;
    }

    .workflow-element.assign .workflow-element-icon-wrap {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }

    .workflow-element.review .workflow-element-icon-wrap {
        background: rgba(219, 39, 119, 0.1);
        color: #db2777;
    }

    .workflow-element.done .workflow-element-icon-wrap {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }

    @media (max-width: 1199px) {
        .bundle-section {
            padding: 72px 0;
        }

        .bundle-visual {
            min-height: 600px;
        }

        .bundle-core {
            width: 244px;
            height: 244px;
        }

        .bundle-node {
            min-width: 162px;
            padding: 13px 16px;
        }

        .replace-tools-grid {
            min-height: 760px;
        }

        .replace-tool-mark {
            width: 52px;
            height: 52px;
        }

        .workflow-beat {
            flex-basis: 56vw;
        }
    }

    @media (max-width: 991px) {
        .bundle-section {
            margin: 12px 0 84px;
            border-radius: 28px;
        }

        .bundle-copy {
            text-align: center;
            padding: 0 16px 32px;
        }

        .bundle-copy p {
            margin-inline: auto;
        }

        .bundle-visual {
            min-height: 560px;
        }

        .bundle-orbit {
            width: min(100%, 760px);
        }

        .replace-tools-grid {
            min-height: 720px;
        }

        .replace-tool-mark {
            width: 48px;
            height: 48px;
        }

        .replace-tools-title {
            font-size: clamp(2.7rem, 2.1rem + 2vw, 4.4rem);
        }


    }

    @media (max-width: 767px) {
        .bundle-section {
            min-height: auto;
            padding: 56px 0;
        }

        .bundle-title {
            font-size: clamp(2rem, 1.8rem + 1vw, 2.7rem);
        }

        .bundle-price {
            font-size: clamp(3.3rem, 2.9rem + 2.2vw, 4.8rem);
        }

        .bundle-visual {
            min-height: 720px;
        }

        .bundle-orbit {
            width: 100%;
            aspect-ratio: auto;
            min-height: 720px;
        }

        .bundle-orbit::before,
        .bundle-orbit::after,
        .bundle-spoke {
            display: none;
        }

        .bundle-core {
            position: relative;
            left: auto;
            top: auto;
            width: 220px;
            height: 220px;
            margin: 0 auto 28px;
            transform: none;
        }

        .bundle-node {
            position: relative;
            left: auto;
            top: auto;
            width: 100%;
            min-width: 0;
            justify-content: flex-start;
            margin-bottom: 14px;
            transform: none !important;
        }

        .bundle-node:hover,
        .bundle-node:focus-visible,
        .bundle-node.is-active {
            transform: none !important;
        }

        .replace-tools-section {
            min-height: auto;
            padding: 88px 0 70px;
        }

        .replace-tools-copy {
            min-height: auto;
            margin-bottom: 34px;
        }

        .replace-tools-grid {
            width: min(1180px, 120vw);
            min-height: 540px;
        }

        .replace-tools-grid::before {
            inset: 18% 12%;
        }

        .replace-tools-cells {
            inset: 10% 0;
        }

        .replace-tool-mark {
            width: 38px;
            height: 38px;
        }

        .replace-tools-title {
            font-size: clamp(2.2rem, 1.8rem + 2.1vw, 3.3rem);
            line-height: 1;
        }

        .replace-tools-subtitle {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .workflow-scroll-section {
            min-height: auto;
            padding: 64px 0;
        }

        .workflow-stage {
            height: auto;
            min-height: auto;
            display: block;
            overflow: visible;
        }

        .workflow-viewport {
            height: auto;
            width: 100%;
            overflow: visible;
            display: block;
        }

        .workflow-curve {
            display: none;
        }

        .workflow-track {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: auto;
            padding: 24px 16px;
            gap: 48px;
        }

        .workflow-beat {
            flex: none;
            width: 100%;
            flex-direction: column;
            gap: 20px;
            text-align: center;
            opacity: 1 !important;
            transform: none !important;
        }

        .workflow-beat-copy {
            max-width: 100%;
            text-align: center;
        }

        .workflow-beat-text {
            font-size: 2.2rem;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.15em;
        }

        .workflow-beat-desc {
            margin: 12px auto 0;
            text-align: center;
            font-size: 0.95rem;
            color: rgba(24, 24, 27, 0.6);
        }

        .workflow-element {
            transform: none !important;
            padding: 14px 18px;
            border-radius: 18px;
            width: 100%;
            max-width: 320px;
            justify-content: flex-start;
            margin: 0 auto;
            min-width: 0;
        }

        .workflow-element-wrap {
            align-self: auto !important;
            margin: 0 auto !important;
            width: 100%;
            max-width: 320px;
            align-items: center;
        }

        .workflow-port-right,
        .workflow-port-left {
            display: none;
        }

        .workflow-beat:not(:first-child) .workflow-port-top,
        .workflow-beat:not(:last-child) .workflow-port-bottom {
            opacity: 1;
            box-shadow: 0 0 0 10px rgba(249,115,22,0.05), 0 0 24px rgba(249,115,22,0.18);
            animation: workflowPortPulse 2.8s ease-in-out infinite;
        }

        .workflow-beat:not(:first-child) .workflow-port-top,
        .workflow-beat:not(:last-child) .workflow-port-bottom {
            transform: translateX(-50%) scale(1);
        }

        .workflow-beat:not(:last-child) .workflow-element-wrap::after {
            content: "";
            position: absolute;
            left: 50%;
            top: calc(100% + 6px);
            width: 2px;
            height: 36px;
            border-radius: 999px;
            transform: translateX(-50%);
            background: linear-gradient(180deg, rgba(249, 115, 22, 0.7), rgba(251, 146, 60, 0.16));
            box-shadow: 0 0 14px rgba(249, 115, 22, 0.16);
        }

        .workflow-beat:not(:last-child) .workflow-element-wrap::before {
            content: "";
            position: absolute;
            left: 50%;
            top: calc(100% + 18px);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transform: translateX(-50%);
            background: radial-gradient(circle at 50% 50%, #fff 0 24%, rgba(255,255,255,0) 25%), #f97316;
            box-shadow: 0 0 0 8px rgba(249,115,22,0.05), 0 0 16px rgba(249,115,22,0.18);
        }

        .workflow-meta-badge {
            align-self: center;
        }

        .workflow-step-badge {
            justify-content: center;
            width: 100%;
        }

        .workflow-beat-copy {
            max-width: 100%;
        }
    }

    /* ── Hero Social Proof & Feature Badges ─────────────── */
    .hero-container {
        position: relative;
    }

    .hero-social-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 7px 18px 7px 7px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(249, 115, 22, 0.16);
        box-shadow: 0 8px 28px rgba(249, 115, 22, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .hero-badge-avatars {
        display: flex;
        align-items: center;
    }

    .hero-badge-avatars img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 2.5px solid #fff;
        margin-left: -10px;
        object-fit: cover;
    }

    .hero-badge-avatars img:first-child {
        margin-left: 0;
    }

    .hero-badge-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding-left: 4px;
    }

    .hero-badge-stars {
        color: #f59e0b;
        font-size: 0.76rem;
        letter-spacing: 1.5px;
        line-height: 1;
    }

    .hero-badge-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(17, 24, 39, 0.7);
        line-height: 1;
        white-space: nowrap;
    }

    .hero-badge-label strong {
        color: #111827;
        font-weight: 700;
    }

    .hero-feature-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 24px;
    }

    .hero-feature-pill {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 7px 15px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
        font-size: 0.82rem;
        font-weight: 600;
        color: #374151;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
        cursor: default;
    }

    .hero-feature-pill:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
    }

    .hero-pill-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex: 0 0 auto;
    }


    @media (max-width: 767px) {
        .hero-feature-pills {
            gap: 8px;
        }

        .hero-feature-pill {
            font-size: 0.78rem;
            padding: 6px 12px;
        }
    }

    /* ── Choose RankyFy Section ──────────────────────────────────────── */
    .choose-rankyfy {
        background: #f8f9fc;
        overflow: hidden;
        position: relative;
    }

    .choose-rankyfy::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 50% at 10% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 50% 60% at 90% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .choose-section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(249, 115, 22, 0.1);
        border: 1px solid rgba(249, 115, 22, 0.2);
        color: #f97316;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 100px;
        margin-bottom: 20px;
    }

    .choose-section-eyebrow span {
        width: 6px;
        height: 6px;
        background: #f97316;
        border-radius: 50%;
        display: block;
        animation: pulse-dot 1.8s ease-in-out infinite;
    }

    @keyframes pulse-dot {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.4;
            transform: scale(0.7);
        }
    }

    /* cards grid */
    .choose-cards-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        position: relative;
    }

    @media (max-width: 1199px) {
        .choose-cards-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 767px) {
        .choose-cards-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
    }

    @media (max-width: 480px) {
        .choose-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    .choose-card {
        background: #fff;
        border-radius: 20px;
        padding: 28px 24px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.35s ease, border-color 0.35s ease;
        will-change: transform;
        cursor: default;
    }


    .choose-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 0%, var(--card-glow) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        border-radius: inherit;
    }

    .choose-card:hover::after {
        opacity: 1;
    }

    .choose-card:hover {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10), 0 4px 16px var(--card-shadow);
        border-color: rgba(0, 0, 0, 0.09);
    }

    /* card accent colors */
    .choose-card:nth-child(1) {
        --card-accent: #f97316;
        --card-glow: rgba(249, 115, 22, 0.07);
        --card-shadow: rgba(249, 115, 22, 0.12);
        --icon-bg: rgba(249, 115, 22, 0.1);
        --icon-color: #f97316;
    }

    .choose-card:nth-child(2) {
        --card-accent: #7c3aed;
        --card-glow: rgba(124, 58, 237, 0.07);
        --card-shadow: rgba(124, 58, 237, 0.12);
        --icon-bg: rgba(124, 58, 237, 0.1);
        --icon-color: #7c3aed;
    }

    .choose-card:nth-child(3) {
        --card-accent: #2563eb;
        --card-glow: rgba(37, 99, 235, 0.07);
        --card-shadow: rgba(37, 99, 235, 0.12);
        --icon-bg: rgba(37, 99, 235, 0.1);
        --icon-color: #2563eb;
    }

    .choose-card:nth-child(4) {
        --card-accent: #059669;
        --card-glow: rgba(5, 150, 105, 0.07);
        --card-shadow: rgba(5, 150, 105, 0.12);
        --icon-bg: rgba(5, 150, 105, 0.1);
        --icon-color: #059669;
    }

    .choose-card:nth-child(5) {
        --card-accent: #e11d48;
        --card-glow: rgba(225, 29, 72, 0.07);
        --card-shadow: rgba(225, 29, 72, 0.12);
        --icon-bg: rgba(225, 29, 72, 0.1);
        --icon-color: #e11d48;
    }

    .choose-card-icon {
        width: 110px;
        height: 60px;
        margin-bottom: 18px;
        transition: transform 0.35s ease;
    }

    .choose-card:hover .choose-card-icon {
        transform: scale(1.06) rotate(-3deg);
    }

    .choose-card-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: -9px;
    }

    .choose-card-title {
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 14px;
        line-height: 1.3;
    }

    .choose-card-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .choose-card-list li {
        font-size: 0.82rem;
        color: #64748b;
        line-height: 1.45;
        padding-left: 18px;
        position: relative;
    }

    .choose-card-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--card-accent);
        opacity: 0.7;
    }

    /* number badge */
    .choose-card-num {
        position: absolute;
        top: 24px;
        right: 24px;
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--card-accent);
        opacity: 0.07;
        line-height: 1;
        letter-spacing: -0.04em;
        user-select: none;
    }

    /* ── SEO Toolkit Sticky Scroll ──────────────────────────────────── */
    .seo-toolkit.sticky-features-section {
        position: relative;
        background:
            radial-gradient(circle at top left, rgba(249, 115, 22, 0.05), transparent 22%),
            radial-gradient(circle at 86% 78%, rgba(17, 20, 81, 0.04), transparent 24%),
            linear-gradient(180deg, #fcfcfe 0%, #ffffff 46%, #fbfcff 100%);
        padding: 100px 0 120px;
    }

    .seo-toolkit .sticky-features-shell {
        position: relative;
    }

    .seo-toolkit .showcase-label {
        display: inline-flex;
        margin-bottom: 14px;
        color: #f97316;
        font-size: 0.82rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .seo-toolkit .sticky-features-intro {
        max-width: 58ch;
        margin: 0;
        color: #6a6f7d;
        font-size: clamp(1rem, 1.35vw, 1.08rem);
        line-height: 1.75;
    }

    .seo-toolkit .sticky-features-wrap {
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        gap: clamp(44px, 6vw, 108px);
        align-items: start;
    }

    .seo-toolkit .sticky-features-media {
        position: sticky;
        top: 110px;
    }

    .seo-toolkit .sticky-media-frame {
        position: relative;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .seo-toolkit .sticky-media-stage {
        position: relative;
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 26px;
        overflow: hidden;
        background: #eef2f7;
        box-shadow: 0 24px 60px rgba(17, 20, 81, 0.08);
    }

    .seo-toolkit .feature-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        clip-path: inset(100% 0 0 0);
        transform: translateY(24px) scale(1.02);
        transform-origin: center bottom;
        will-change: clip-path, opacity, transform;
    }

    .seo-toolkit .feature-slide:first-child {
        opacity: 1;
        visibility: visible;
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scale(1);
    }

    .seo-toolkit .feature-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

    .seo-toolkit .sticky-features-content {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .seo-toolkit .sticky-feature-block {
        position: relative;
        min-height: 54vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        background: transparent;
        opacity: 0.38;
        transform: translateY(10px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .seo-toolkit .sticky-feature-block.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    .seo-toolkit .sticky-feature-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .seo-toolkit .feature-step {
        display: none;
    }

    .seo-toolkit .feature-pill {
        display: inline-flex;
        align-items: center;
        color: #f97316;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .seo-toolkit .feature-heading {
        font-size: clamp(2.25rem, 3.3vw, 4rem);
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: 22px;
        color: #0f172a;
    }

    .seo-toolkit .feature-heading .primary-text {
        color: #f97316;
    }

    .seo-toolkit .feature-desc {
        color: #666c79;
        font-size: clamp(1.02rem, 1.1vw, 1.18rem);
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .seo-toolkit .feature-checklist {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 28px;
        max-width: 760px;
    }

    .seo-toolkit .feature-checklist li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        font-weight: 500;
        color: #343948;
        line-height: 1.35;
    }

    .seo-toolkit .feature-checklist li::before {
        content: '';
        display: inline-flex;
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #f97316 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / 10px no-repeat;
        margin-top: 1px;
    }

    .seo-toolkit .button-feature {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        padding: 0 28px;
        border-radius: 16px;
        border: 1px solid rgba(17, 20, 81, 0.12);
        background: #1f2025;
        color: #fff;
        font-size: 0.96rem;
        align-self: flex-start;
        font-weight: 800;
        letter-spacing: 0;
        box-shadow: 0 10px 24px rgba(17, 20, 81, 0.1);
        text-decoration: none;
        transition: background 0.22s ease, border-color 0.22s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .seo-toolkit .button-feature:hover {
        background: #111319;
        border-color: #111319;
        box-shadow: 0 14px 30px rgba(17, 20, 81, 0.14);
        transform: translateY(-1px);
        color: #fff;
    }

    /* Mobile: show image inline before each block */
    @media (max-width: 991.98px) {
        .seo-toolkit.sticky-features-section {
            padding: 72px 0 80px;
        }
        .seo-toolkit .sticky-features-wrap {
            grid-template-columns: 1fr;
        }
        .seo-toolkit .sticky-features-media {
            position: static;
            margin-bottom: 20px;
        }
        .seo-toolkit .sticky-media-stage {
            aspect-ratio: 4/3;
        }
        .seo-toolkit .sticky-features-content {
            gap: 40px;
        }
        .seo-toolkit .sticky-feature-block {
            min-height: auto;
            opacity: 1;
            transform: none;
        }
        .seo-toolkit .feature-checklist {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767.98px) {
        .seo-toolkit.sticky-features-section {
            padding: 52px 0 60px;
        }
        .seo-toolkit .sticky-features-wrap {
            gap: 0;
        }
        .seo-toolkit .sticky-features-media {
            display: none;
        }
        .seo-toolkit .sticky-features-content {
            gap: 32px;
        }
        .seo-toolkit .sticky-feature-block {
            min-height: auto;
            gap: 0;
        }
        .seo-toolkit .sticky-feature-block::before {
            content: "";
            display: block;
            width: 100%;
            aspect-ratio: 1/1;
            margin-bottom: 34px;
            border-radius: 20px;
            background-color: #eef2f7;
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
            box-shadow: 0 18px 44px rgba(17, 20, 81, 0.09);
        }
        .seo-toolkit .sticky-feature-block[data-feature="0"]::before { background-image: url("../images/landing-img/feature-1.png"); }
        .seo-toolkit .sticky-feature-block[data-feature="1"]::before { background-image: url("../images/landing-img/feature-2.png"); }
        .seo-toolkit .sticky-feature-block[data-feature="2"]::before { background-image: url("../images/landing-img/feature-3.png"); }
        .seo-toolkit .sticky-feature-block[data-feature="3"]::before { background-image: url("../images/landing-img/feature-4.png"); }
        .seo-toolkit .sticky-feature-block[data-feature="4"]::before { background-image: url("../images/landing-img/feature-5.png"); }
        .seo-toolkit .sticky-feature-block[data-feature="5"]::before { background-image: url("../images/landing-img/feature-6.png"); }
        .seo-toolkit .sticky-feature-block[data-feature="6"]::before { background-image: url("../images/landing-img/feature-7.png"); }
    }

    @media (max-width: 575.98px) {
        .seo-toolkit .feature-heading {
            font-size: 1.7rem;
        }
        .seo-toolkit .feature-checklist li {
            font-size: 0.92rem;
        }
        .seo-toolkit .button-feature {
            width: 100%;
        }
    }

    /* ── Operations CTA Section ─────────────────────────────────────── */
    .ops-cta-section {
        position: relative;
        padding: 92px 0 24px;
        overflow: hidden;
    }

    .ops-cta-card {
        position: relative;
        min-height: 690px;
        padding: 34px;
        border-radius: 32px;
        overflow: hidden;
        background:
            radial-gradient(circle at 50% 14%, rgba(255, 122, 26, 0.18), transparent 26%),
            linear-gradient(180deg, #25110c 0%, #130907 62%, #0d0706 100%);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 34px 90px rgba(15,23,42,0.24);
        isolation: isolate;
    }

    .ops-cta-card::before {
        content: "";
        position: absolute;
        inset: 20px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
        pointer-events: none;
    }

    .ops-cta-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
        pointer-events: none;
    }

    .ops-cta-beam {
        position: absolute;
        top: -4%;
        width: 34%;
        height: 220px;
        background: linear-gradient(180deg, rgba(255, 122, 26, 0.8), rgba(255, 122, 26, 0));
        filter: blur(28px);
        opacity: 0.78;
        pointer-events: none;
        mix-blend-mode: screen;
    }

    .ops-cta-beam.left {
        left: -2%;
        transform: rotate(23deg);
        transform-origin: top left;
    }

    .ops-cta-beam.right {
        right: -2%;
        transform: rotate(-23deg);
        transform-origin: top right;
    }

    .ops-cta-shell {
        position: relative;
        z-index: 2;
        min-height: 622px;
        padding: 52px 52px 36px;
        text-align: center;
    }

    .ops-cta-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 32px;
        padding: 0 14px;
        margin-bottom: 18px;
        border-radius: 999px;
        background: rgba(255, 122, 26, 0.12);
        border: 1px solid rgba(255, 184, 128, 0.22);
        color: #ffbf8d;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .ops-cta-title {
        max-width: 760px;
        margin: 0 auto 16px;
        color: #fff9f6;
        font-size: clamp(2.25rem, 4vw, 3.7rem);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .ops-cta-sub {
        max-width: 720px;
        margin: 0 auto;
        color: rgba(255,255,255,0.72);
        font-size: 1rem;
        line-height: 1.72;
    }

    .ops-cta-network {
        position: relative;
        width: min(920px, 100%);
        height: 320px;
        margin: 44px auto 30px;
    }

    .ops-cta-core {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 154px;
        height: 154px;
        border-radius: 30px;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: 0 0 0 12px rgba(255, 122, 26, 0.08), 0 0 56px rgba(255, 122, 26, 0.18);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .ops-cta-core::before,
    .ops-cta-core::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 72px;
        height: 6px;
        border-radius: 999px;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(255, 190, 138, 1) 0%, rgba(255, 122, 26, 0.2) 72%, rgba(255, 122, 26, 0) 100%);
        filter: blur(0.4px);
    }

    .ops-cta-core::before {
        left: -58px;
    }

    .ops-cta-core::after {
        right: -58px;
    }

    .ops-cta-core-logo {
        width: 52px;
        height: 52px;
        object-fit: contain;
        filter: drop-shadow(0 0 20px rgba(255, 122, 26, 0.2));
    }

    .ops-cta-core-label {
        color: #fff4ec;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .ops-cta-core-value {
        color: #ffb173;
        font-size: 1.45rem;
        font-weight: 800;
        line-height: 1;
    }

    .ops-cta-link {
        position: absolute;
        top: 50%;
        width: 180px;
        height: 1px;
        background: rgba(255,255,255,0.12);
        transform-origin: center left;
    }

    .ops-cta-link.left {
        left: 26%;
    }

    .ops-cta-link.right {
        right: 26%;
        transform-origin: center right;
    }

    .ops-cta-link.top {
        top: 33%;
    }

    .ops-cta-link.mid {
        top: 50%;
    }

    .ops-cta-link.bottom {
        top: 67%;
    }

    .ops-cta-node {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 240px;
        padding: 14px 16px 14px 12px;
        border-radius: 18px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 16px 32px rgba(0,0,0,0.2);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        text-align: left;
    }

    .ops-cta-node-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255,255,255,0.08);
        flex: 0 0 42px;
    }

    .ops-cta-node-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ops-cta-node-label {
        color: rgba(255,255,255,0.92);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.01em;
    }

    .ops-cta-node.left {
        left: 2%;
    }

    .ops-cta-node.right {
        right: 2%;
    }

    .ops-cta-node.top {
        top: 12%;
    }

    .ops-cta-node.mid {
        top: 42%;
    }

    .ops-cta-node.bottom {
        top: 72%;
    }

    .ops-cta-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 18px;
        max-width: 920px;
        margin: 0 auto 28px;
        padding: 0;
        list-style: none;
    }

    .ops-cta-list li {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 46px;
        padding: 0 18px 0 10px;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.92);
        font-size: 0.96rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .ops-cta-list-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #f97316;
    }

    .ops-cta-list-icon i {
        width: 15px;
        height: 15px;
        stroke-width: 2.1;
    }

    .ops-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        padding: 0 24px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ff7a1a 0%, #ff5b00 100%);
        color: #fff8f3;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 700;
        box-shadow: 0 22px 42px rgba(255, 91, 0, 0.24);
        transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .ops-cta-button:hover {
        color: #fff8f3;
        transform: translateY(-3px);
        box-shadow: 0 28px 48px rgba(255, 91, 0, 0.3);
    }

    @media (max-width: 1199px) {
        .ops-cta-node {
            min-width: 214px;
        }

        .ops-cta-link.left {
            left: 23%;
        }

        .ops-cta-link.right {
            right: 23%;
        }
    }

    @media (max-width: 991px) {
        .ops-cta-section {
            padding: 72px 0 16px;
        }

        .ops-cta-card {
            min-height: auto;
            padding: 20px;
            border-radius: 26px;
        }

        .ops-cta-shell {
            min-height: auto;
            padding: 42px 18px 24px;
        }

        .ops-cta-network {
            height: auto;
            margin: 34px auto 24px;
            display: grid;
            gap: 14px;
        }

        .ops-cta-core {
            position: relative;
            left: auto;
            top: auto;
            transform: none;
            width: 100%;
            max-width: 320px;
            height: 170px;
            margin: 0 auto 10px;
        }

        .ops-cta-core::before,
        .ops-cta-core::after,
        .ops-cta-link {
            display: none;
        }

        .ops-cta-node {
            position: relative;
            left: auto !important;
            right: auto !important;
            top: auto !important;
            width: 100%;
            min-width: 0;
            max-width: 420px;
            margin: 0 auto;
        }
    }

    @media (max-width: 767px) {
        .ops-cta-title {
            font-size: clamp(1.95rem, 9vw, 2.55rem);
        }

        .ops-cta-sub {
            font-size: 0.95rem;
        }

        .ops-cta-node {
            padding: 13px 14px 13px 10px;
            border-radius: 16px;
        }

        .ops-cta-node-label {
            font-size: 0.88rem;
        }

        .ops-cta-list {
            gap: 10px;
        }

        .ops-cta-list li {
            width: 100%;
            justify-content: flex-start;
            min-height: 42px;
        }

        .ops-cta-button {
            width: 100%;
        }
    }

    /* ── CTA Banner Section ──────────────────────────────────────────── */
    .cta-banner {
        background: transparent;
    }

    .cta-card {
        border-radius: 28px;
        overflow: hidden;
        position: relative;
        display: grid;
        grid-template-columns: 55% 45%;
        min-height: auto;
        background: linear-gradient(120deg, #f97316 0%, #ea580c 50%, #9a3412 100%);
    }

    /* dot texture overlay on the whole card */
    .cta-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
        z-index: 0;
    }

    /* lighter wash on right half */
    .cta-card::after {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 55%;
        /* height: 100%; */
        background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.07) 100%);
        pointer-events: none;
        z-index: 0;
    }

    /* left side */
    .cta-card-left {
        position: relative;
        z-index: 2;
        padding: 56px 52px 56px 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cta-banner-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        color: #fff;
        font-size: 0.73rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 100px;
        margin-bottom: 24px;
        width: fit-content;
    }

    .cta-banner-eyebrow::before {
        content: '';
        width: 6px; height: 6px;
        background: #fff;
        border-radius: 50%;
        display: block;
        animation: pulse-dot 1.8s ease-in-out infinite;
    }

    .cta-banner-headline {
        font-size: clamp(1.55rem, 2.6vw, 2.15rem);
        font-weight: 800;
        line-height: 1.22;
        color: #fff;
        margin-bottom: 16px;
        letter-spacing: -0.025em;
    }

    .cta-banner-sub {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.72);
        line-height: 1.65;
        margin-bottom: 32px;
        max-width: 420px;
    }

    .cta-banner-features {
        list-style: none;
        padding: 0; margin: 0 0 36px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.93rem;
        color: rgba(255,255,255,0.9);
        font-weight: 500;
    }

    .cta-feat-check {
        flex: 0 0 20px;
        width: 20px; height: 20px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex; align-items: center; justify-content: center;
    }

    /* pill CTA button — white bg, dark text, circle arrow */
    .cta-banner-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        color: #c2410c;
        font-size: 0.97rem;
        font-weight: 700;
        padding: 12px 12px 12px 24px;
        border-radius: 100px;
        text-decoration: none;
        width: fit-content;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .cta-banner-btn:hover {
        color: #c2410c;
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.24);
    }

    .cta-banner-btn-circle {
        width: 38px; height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f97316, #ea580c);
        display: flex; align-items: center; justify-content: center;
        flex: 0 0 38px;
        transition: transform 0.3s ease;
    }

    .cta-banner-btn:hover .cta-banner-btn-circle { transform: rotate(45deg); }

    .cta-banner-note {
        display: block;
        margin-top: 14px;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.45);
    }

    /* right side visual */
    .cta-card-right {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 40px 40px 20px;
        overflow: visible;
    }

    /* large ghost watermark */
    .cta-watermark {
        position: absolute;
        bottom: -10px;
        right: -10px;
        font-size: 7rem;
        font-weight: 900;
        color: rgba(255,255,255,0.06);
        letter-spacing: -0.06em;
        line-height: 1;
        user-select: none;
        pointer-events: none;
        white-space: nowrap;
    }

    /* floating stat cards */
    .cta-stat-cards {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 280px;
    }

    .cta-stat {
        position: absolute;
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.22);
        border-radius: 18px;
        padding: 18px 22px;
        color: #fff;
        will-change: transform;
    }

    .cta-stat-label {
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255,255,255,0.65);
        letter-spacing: 0.04em;
        margin-bottom: 6px;
    }

    .cta-stat-value {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1;
        color: #fff;
    }

    .cta-stat-trend {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.73rem;
        font-weight: 600;
        color: rgba(255,255,255,0.7);
        margin-top: 4px;
    }

    .cta-stat-1 { top: 10%;  left: 5%;  }
    .cta-stat-2 { top: 42%;  right: 8%; }
    .cta-stat-3 { bottom: 10%; left: 15%; }

    /* bar chart mini visual inside stat-1 */
    .cta-mini-bars {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        height: 32px;
        margin-top: 8px;
    }

    .cta-mini-bar {
        width: 8px;
        border-radius: 3px 3px 0 0;
        background: rgba(255,255,255,0.4);
        transform-origin: bottom;
    }

    .cta-mini-bar.active { background: #fff; }

    @media (max-width: 991px) {
        .cta-card { grid-template-columns: 1fr; }
        .cta-card-right { display: none; }
        .cta-card-left { padding: 48px 36px; }
    }

    @media (max-width: 575px) {
        .cta-card-left { padding: 40px 28px; }
        .cta-banner-headline { font-size: 1.5rem; }
    }

    /* CTA redesign override */
    .cta-banner {
        padding-top: 88px;
    }

    .cta-card {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
        min-height: auto;
        background:
            radial-gradient(circle at 18% 22%, rgba(251,146,60,0.22), transparent 28%),
            linear-gradient(135deg, #0f172a 0%, #111827 44%, #1f2937 100%);
        border: 1px solid rgba(148,163,184,0.18);
        box-shadow: 0 36px 90px rgba(15,23,42,0.22);
    }

    .cta-card::before {
        background-image:
            radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
            linear-gradient(120deg, rgba(255,255,255,0.04), transparent 42%);
        background-size: 24px 24px, 100% 100%;
        opacity: 0.9;
    }

    .cta-card::after {
        width: calc(100% - 60px);
        background:
            radial-gradient(circle at 70% 25%, rgba(249,115,22,0.16), transparent 34%),
            linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    }

    .cta-card-left {
        padding: 62px 58px;
    }

    .cta-banner-eyebrow {
        background: rgba(249,115,22,0.14);
        border-color: rgba(251,146,60,0.28);
        color: #fdba74;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .cta-banner-eyebrow::before {
        background: #fdba74;
    }

    .cta-banner-headline {
        font-size: clamp(2rem, 3.2vw, 3.15rem);
        line-height: 1.02;
        letter-spacing: -0.05em;
        max-width: 640px;
        margin-bottom: 18px;
    }

    .cta-banner-headline .cta-highlight {
        display: inline-block;
        color: #fdba74;
        text-shadow: 0 12px 34px rgba(249,115,22,0.16);
    }

    .cta-banner-sub {
        max-width: 540px;
        font-size: 1rem;
        color: rgba(255,255,255,0.76);
        margin-bottom: 26px;
    }

    .cta-banner-features {
        gap: 14px;
        margin-bottom: 30px;
    }

    .cta-banner-features li {
        font-size: 0.96rem;
        color: rgba(255,255,255,0.92);
    }

    .cta-feat-check {
        background: rgba(249,115,22,0.16);
        border: 1px solid rgba(253,186,116,0.22);
    }

    .cta-banner-btn {
        background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
        color: #9a3412;
        box-shadow: 0 12px 34px rgba(15,23,42,0.28);
    }

    .cta-banner-btn-circle {
        background: linear-gradient(135deg, #f97316, #fb923c);
    }

    .cta-banner-note {
        color: rgba(255,255,255,0.56);
        font-size: 0.82rem;
        letter-spacing: 0.01em;
    }

    .cta-card-right {
        padding: 42px 42px 42px 18px;
    }

    .cta-watermark {
        font-size: 6.3rem;
        color: rgba(255,255,255,0.05);
        bottom: 6px;
        right: 8px;
    }

    .cta-stat {
        background: rgba(255,255,255,0.9);
        border-color: rgba(255,255,255,0.92);
        color: #0f172a;
        box-shadow: 0 16px 40px rgba(15,23,42,0.16);
    }

    .cta-stat-label {
        color: #64748b;
    }

    .cta-stat-value {
        color: #0f172a;
    }

    .cta-stat-trend {
        color: #475569;
    }

    .cta-mini-bar {
        background: rgba(249,115,22,0.24);
    }

    .cta-mini-bar.active {
        background: #f97316;
    }

    .cta-stat-1 { top: 8%; left: 4%; }
    .cta-stat-2 { top: 44%; right: 2%; }
    .cta-stat-3 { bottom: 8%; left: 14%; }

    @media (max-width: 991px) {
        .cta-banner {
            padding-top: 72px;
        }

        .cta-card {
            grid-template-columns: 1fr;
        }

        .cta-card-left {
            padding: 48px 36px;
        }
    }

    @media (max-width: 575px) {
        .cta-card-left {
            padding: 38px 24px;
        }

        .cta-banner-headline {
            font-size: 1.78rem;
        }
    }

    /* CTA spotlight redesign */
    .cta-banner {
        padding-top: 92px;
        overflow: hidden;
    }

    .cta-card {
        display: block;
        grid-template-columns: none;
        position: relative;
        min-height: auto;
        border-radius: 34px;
        overflow: hidden;
        background:
            radial-gradient(circle at 50% 90%, rgba(255, 120, 38, 0.10), transparent 38%),
            linear-gradient(180deg, #24110c 0%, #0f0706 60%, #0b0707 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 34px 90px rgba(15, 23, 42, 0.26);
        isolation: isolate;
    }

    .cta-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
        pointer-events: none;
    }

    .cta-card::after {
        content: "";
        position: absolute;
        inset: 30px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
        pointer-events: none;
    }

    .cta-beam {
        position: absolute;
        top: -4%;
        width: 34%;
        height: 220px;
        background: linear-gradient(180deg, rgba(255, 120, 38, 0.72), rgba(255, 120, 38, 0));
        filter: blur(26px);
        opacity: 0.78;
        pointer-events: none;
        mix-blend-mode: screen;
    }

    .cta-beam-left {
        left: -2%;
        transform: rotate(21deg);
        transform-origin: top left;
    }

    .cta-beam-right {
        right: -2%;
        transform: rotate(-21deg);
        transform-origin: top right;
    }

    .cta-stage-frame {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding: 88px 58px 62px;
        text-align: center;
    }

    .cta-stage-copy {
        max-width: 720px;
        margin: 0 auto;
    }

    .cta-banner-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        padding: 8px 16px;
        margin: 0 auto 18px;
        border-radius: 999px;
        background: rgba(255, 120, 38, 0.12);
        border: 1px solid rgba(255, 168, 100, 0.26);
        color: #ffb97c;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .cta-banner-eyebrow::before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        margin-right: 8px;
        border-radius: 50%;
        background: #ffb97c;
        box-shadow: 0 0 14px rgba(255, 185, 124, 0.48);
        animation: none;
    }

    .cta-banner-headline {
        max-width: 780px;
        margin: 0 auto 18px;
        color: #ffffff;
        font-size: clamp(2.35rem, 4.4vw, 4rem);
        font-weight: 800;
        line-height: 0.98;
        letter-spacing: -0.055em;
    }

    .cta-highlight {
        color: #fff4ea;
        text-shadow: 0 0 24px rgba(255, 120, 38, 0.2);
    }

    .cta-banner-sub {
        max-width: 690px;
        margin: 0 auto;
        color: rgba(255,255,255,0.72);
        font-size: 1rem;
        line-height: 1.72;
    }

    .cta-stage-visual {
        width: min(920px, 100%);
        margin: 48px auto 0;
    }

    .cta-orbit-track {
        position: relative;
        height: 270px;
        margin: 0 auto;
    }

    .cta-orbit-line {
        position: absolute;
        left: 9%;
        right: 9%;
        top: 112px;
        height: 124px;
        border-top: 1px solid rgba(255,255,255,0.14);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        box-shadow: 0 -14px 42px rgba(255, 120, 38, 0.08);
        transform-origin: center top;
    }

    .cta-orbit-node {
        position: absolute;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: 0 10px 26px rgba(0,0,0,0.22);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .cta-orbit-node img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        border-radius: 50%;
    }

    .cta-orbit-node.is-core {
        width: 78px;
        height: 78px;
        background: radial-gradient(circle at 50% 50%, rgba(255, 147, 76, 0.24), rgba(255, 120, 38, 0.08));
        border-color: rgba(255, 168, 100, 0.32);
        box-shadow: 0 0 0 14px rgba(255, 120, 38, 0.08), 0 0 40px rgba(255, 120, 38, 0.24);
    }

    .cta-orbit-node.is-core img {
        width: 42px;
        height: 42px;
    }

    .cta-node-1 { left: 10%; top: 138px; }
    .cta-node-2 { left: 23%; top: 94px; }
    .cta-node-3 { left: 50%; top: 72px; transform: translateX(-50%); }
    .cta-node-4 { right: 23%; top: 94px; }
    .cta-node-5 { right: 10%; top: 138px; }
    .cta-node-6 { left: 36%; top: 82px; }

    .cta-orbit-caption {
        position: absolute;
        left: 50%;
        bottom: 12px;
        width: min(540px, 82%);
        transform: translateX(-50%);
    }

    .cta-orbit-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        color: #fff1e7;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .cta-orbit-caption p {
        margin: 0;
        color: rgba(255,255,255,0.76);
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .cta-chip-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 22px;
    }

    .cta-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 46px;
        padding: 0 14px 0 10px;
        border-radius: 999px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .cta-chip img {
        width: 28px;
        height: 28px;
        object-fit: cover;
        border-radius: 10px;
    }

    .cta-chip span {
        color: rgba(255,255,255,0.88);
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .cta-stage-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 34px;
    }

    .cta-banner-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        min-height: 58px;
        padding: 0 14px 0 24px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ff7a1a 0%, #ff5b00 100%);
        color: #fff8f3;
        font-size: 0.96rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 22px 42px rgba(255, 91, 0, 0.26);
        transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .cta-banner-btn:hover {
        color: #fff8f3;
        transform: translateY(-3px);
        box-shadow: 0 28px 48px rgba(255, 91, 0, 0.32);
    }

    .cta-banner-btn-circle {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.16);
        font-size: 1rem;
        line-height: 1;
    }

    .cta-banner-note {
        display: block;
        max-width: 620px;
        color: rgba(255,255,255,0.54);
        font-size: 0.84rem;
        line-height: 1.5;
    }

    @media (max-width: 991px) {
        .cta-banner {
            padding-top: 74px;
        }

        .cta-card {
            min-height: auto;
        }

        .cta-card::after {
            inset: 18px;
            border-radius: 20px;
        }

        .cta-stage-frame {
            min-height: auto;
            padding: 72px 28px 46px;
        }

        .cta-orbit-track {
            height: 246px;
        }

        .cta-node-1 { left: 4%; top: 140px; }
        .cta-node-2 { left: 19%; top: 104px; }
        .cta-node-4 { right: 19%; top: 104px; }
        .cta-node-5 { right: 4%; top: 140px; }
        .cta-node-6 { left: 33%; top: 90px; }
    }

    @media (max-width: 767px) {
        .cta-card {
            border-radius: 24px;
        }

        .cta-stage-frame {
            padding: 60px 18px 36px;
        }

        .cta-banner-headline {
            font-size: clamp(1.95rem, 10vw, 2.7rem);
        }

        .cta-banner-sub {
            font-size: 0.95rem;
        }

        .cta-orbit-track {
            height: 220px;
        }

        .cta-orbit-line {
            left: 3%;
            right: 3%;
            top: 108px;
        }

        .cta-orbit-node {
            width: 50px;
            height: 50px;
        }

        .cta-orbit-node img {
            width: 24px;
            height: 24px;
        }

        .cta-orbit-node.is-core {
            width: 68px;
            height: 68px;
        }

        .cta-orbit-node.is-core img {
            width: 36px;
            height: 36px;
        }

        .cta-node-1 { left: 0; top: 142px; }
        .cta-node-2 { left: 14%; top: 114px; }
        .cta-node-3 { top: 82px; }
        .cta-node-4 { right: 14%; top: 114px; }
        .cta-node-5 { right: 0; top: 142px; }
        .cta-node-6 { left: 31%; top: 94px; }

        .cta-orbit-caption {
            width: 94%;
            bottom: 0;
        }

        .cta-orbit-caption p {
            font-size: 0.9rem;
        }

        .cta-chip-row {
            gap: 10px;
        }

        .cta-chip {
            min-height: 42px;
            padding: 0 12px 0 8px;
        }

        .cta-chip img {
            width: 24px;
            height: 24px;
        }

        .cta-chip span {
            font-size: 0.82rem;
        }

        .cta-banner-btn {
            width: 100%;
            justify-content: center;
            padding-left: 18px;
        }
    }

    .agency-os-reveal {
        position: relative;
        overflow: clip;
        isolation: isolate;
        background:
            radial-gradient(circle at 22% 22%, rgba(255, 111, 0, 0.12), transparent 28%),
            radial-gradient(circle at 78% 18%, rgba(59, 130, 246, 0.09), transparent 26%),
            linear-gradient(180deg, #fff9f4 0%, #fffdf9 56%, #f7f8fc 100%);
    }

    .agency-os-stage {
        position: relative;
        min-height: 100svh;
    }

    .agency-os-copy {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 120px 20px 78px;
        text-align: center;
        pointer-events: none;
    }

    .agency-os-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 111, 0, 0.12);
        box-shadow: 0 12px 30px rgba(255, 111, 0, 0.08);
        color: #ff5b00;
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .agency-os-headline {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.04em 0.18em;
        width: min(1120px, 90vw);
        margin: 0;
        color: #171b24;
        font-size: clamp(2.6rem, 7.5vw, 7rem);
        font-weight: 900;
        line-height: 0.88;
        letter-spacing: -0.06em;
        will-change: transform, opacity, filter;
    }

    .agency-os-word {
        display: inline-block;
        opacity: 0;
        will-change: transform, opacity, filter;
    }

    .agency-os-sub {
        max-width: 680px;
        margin: 0;
        color: #667085;
        font-size: 1rem;
        line-height: 1.65;
        opacity: 0;
        will-change: transform, opacity;
    }

    .agency-os-panel-wrap {
        position: relative;
        z-index: 2;
        will-change: transform;
    }

    .agency-os-panel {
        position: relative;
        overflow: hidden;
        transform-origin: center top;
        will-change: transform, opacity;
    }

    .agency-os-panel.spacer-xl {
        padding-block: 130px 84px;
    }

    .agency-os-panel .container {
        position: relative;
        z-index: 1;
    }

    .agency-os-intro {
        max-width: 780px;
        margin: 0 auto 42px;
        text-align: center;
    }

    .agency-os-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 0 14px;
        margin-bottom: 16px;
        border-radius: 999px;
        background: rgba(255, 111, 0, 0.09);
        color: #ff5b00;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .agency-os-title {
        margin: 0 0 14px;
        color: #111827;
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: 800;
        line-height: 0.98;
        letter-spacing: -0.05em;
    }

    .agency-os-intro p {
        margin: 0;
        color: #667085;
        font-size: 1rem;
        line-height: 1.7;
    }

    .agency-os-groups {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .agency-os-group {
        --group-accent: #ff5b00;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: 100%;
        padding: 28px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.92);
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.88) 100%);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08), 0 12px 28px rgba(15, 23, 42, 0.04);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .agency-os-group::after {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.24), rgba(255,255,255,0));
        opacity: 0.9;
        pointer-events: none;
    }

    .agency-os-group-head {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 16px;
        align-items: start;
    }

    .agency-os-group-index {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: rgba(17, 24, 39, 0.04);
        color: var(--group-accent);
        font-size: 0.82rem;
        font-weight: 900;
        letter-spacing: 0.08em;
    }

    .agency-os-group-head h3 {
        margin: 0 0 8px;
        color: #101828;
        font-size: clamp(1.28rem, 2vw, 1.7rem);
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .agency-os-group-head p {
        margin: 0;
        color: #667085;
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .agency-os-feature-list {
        display: grid;
        gap: 14px;
    }

    .agency-os-feature {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 14px;
        align-items: start;
        padding: 16px 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(226, 232, 240, 0.92);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    }

    .agency-os-feature-icon {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(17, 24, 39, 0.05);
        color: var(--group-accent);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    }

    .agency-os-feature-icon svg {
        width: 20px;
        height: 20px;
        stroke-width: 1.8;
    }

    .agency-os-feature h4 {
        margin: 0 0 6px;
        color: #111827;
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .agency-os-feature p {
        margin: 0;
        color: #5b6478;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    @media (max-width: 1199px) {
        .agency-os-panel-wrap {
            margin-top: -8svh;
        }

        .agency-os-panel.spacer-xl {
            padding-block: 116px 72px;
        }

        .agency-os-group {
            padding: 24px;
        }
    }

    @media (max-width: 991px) {
        .agency-os-headline {
            width: min(92vw, 760px);
            font-size: clamp(2.4rem, 10vw, 5rem);
        }

        .agency-os-panel-wrap {
            margin-top: -5svh;
            padding-bottom: 72px;
        }

        .agency-os-panel.spacer-xl {
            padding-block: 108px 60px;
        }

        .agency-os-groups {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767px) {
        .agency-os-stage {
            min-height: auto;
        }

        .agency-os-copy {
            position: relative;
            min-height: auto;
            padding: 64px 14px 48px;
        }

        .agency-os-headline {
            width: min(92vw, 360px);
            gap: 0.1em 0.18em;
            font-size: clamp(2.7rem, 16vw, 4rem);
            line-height: 0.92;
        }

        .agency-os-sub {
            font-size: 0.94rem;
        }

        .agency-os-panel-wrap {
            margin-top: 0;
            padding-bottom: 34px;
        }

        .agency-os-panel {
            border-radius: 28px;
            opacity: 1;
            transform: none;
        }

        .agency-os-panel.spacer-xl {
            padding-block: 34px 34px;
        }

        .agency-os-intro {
            margin-bottom: 26px;
            text-align: left;
        }

        .agency-os-title {
            font-size: clamp(1.78rem, 8vw, 2.3rem);
            line-height: 1.04;
        }

        .agency-os-group {
            padding: 20px;
            border-radius: 24px;
        }

        .agency-os-group-head {
            grid-template-columns: 1fr;
        }

        .agency-os-group-index {
            width: 42px;
            height: 42px;
            border-radius: 14px;
        }

        .agency-os-feature {
            padding: 15px 16px;
            border-radius: 18px;
        }
    }

    .crm-fit-section {
        position: relative;
        overflow: hidden;
        padding: 112px 0 96px;
        background:
            linear-gradient(180deg, #f7f8fc 0%, #ffffff 48%, #fff8f2 100%);
    }

    .crm-fit-section .container,
    .autopilot-cta-section .container {
        max-width: 1180px;
    }

    .crm-fit-header {
        max-width: 830px;
        margin: 0 auto 44px;
        text-align: center;
    }

    .crm-fit-eyebrow,
    .autopilot-cta-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 0 14px;
        margin-bottom: 16px;
        border-radius: 999px;
        background: rgba(255, 111, 0, 0.1);
        color: #ff5b00;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .crm-fit-title,
    .autopilot-cta-title {
        margin: 0;
        color: #111827;
        font-size: 3.25rem;
        font-weight: 850;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .crm-fit-copy {
        display: grid;
        gap: 16px;
        max-width: 820px;
        margin: 22px auto 0;
        color: #5b6478;
        font-size: 1rem;
        line-height: 1.72;
    }

    .crm-fit-copy p {
        margin: 0;
    }

    .crm-fit-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        align-items: stretch;
    }

    .crm-fit-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        overflow: hidden;
        border-radius: 30px;
        border: 1px solid rgba(226, 232, 240, 0.92);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
    }

    .crm-fit-card-head {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 30px 30px 22px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .crm-fit-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: color-mix(in srgb, var(--crm-accent, #ff5b00) 12%, #ffffff);
        color: var(--crm-accent, #ff5b00);
    }

    .crm-fit-icon svg {
        width: 24px;
        height: 24px;
        stroke-width: 2.4;
    }

    .crm-fit-card h3 {
        margin: 0;
        color: #101828;
        font-size: 1.32rem;
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .crm-fit-card-body {
        display: flex;
        flex-direction: column;
        gap: 22px;
        height: 100%;
        padding: 26px 30px 30px;
    }

    .crm-fit-card-body > p {
        margin: 0;
        color: #475569;
        font-size: 0.98rem;
        line-height: 1.64;
    }

    .crm-fit-list {
        display: grid;
        gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .crm-fit-list li,
    .autopilot-cta-list li {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
        align-items: start;
        color: #334155;
        font-size: 0.94rem;
        line-height: 1.46;
    }

    .crm-fit-check,
    .autopilot-cta-check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        margin-top: 1px;
        border-radius: 999px;
        background: rgba(255, 111, 0, 0.11);
        color: #ff5b00;
    }

    .crm-fit-check svg,
    .autopilot-cta-check svg {
        width: 14px;
        height: 14px;
        stroke-width: 3;
    }

    .autopilot-cta-section {
        position: relative;
        overflow: hidden;
        padding: 0 0 118px;
        background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
    }

    .autopilot-cta-band {
        position: relative;
        overflow: hidden;
        border-radius: 34px;
        background:
            linear-gradient(135deg, #171b24 0%, #222b3a 54%, #ff5b00 145%);
        color: #ffffff;
        padding: 58px;
        box-shadow: 0 34px 90px rgba(15, 23, 42, 0.2), 0 18px 42px rgba(255, 111, 0, 0.16);
    }

    .autopilot-cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 78%);
        pointer-events: none;
    }

    .autopilot-cta-inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
        gap: 48px;
        align-items: center;
    }

    .autopilot-cta-eyebrow {
        background: rgba(255, 255, 255, 0.12);
        color: #ffb179;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .autopilot-cta-title {
        max-width: 720px;
        color: #ffffff;
    }

    .autopilot-cta-copy {
        max-width: 720px;
        margin: 20px 0 0;
        color: rgba(255, 255, 255, 0.76);
        font-size: 1rem;
        line-height: 1.72;
    }

    .autopilot-cta-list {
        display: grid;
        gap: 13px;
        margin: 0;
        padding: 28px;
        list-style: none;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .autopilot-cta-list li {
        color: rgba(255, 255, 255, 0.86);
    }

    .autopilot-cta-check {
        background: rgba(255, 91, 0, 0.2);
        color: #ffb179;
    }

    .autopilot-cta-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: fit-content;
        min-height: 52px;
        margin-top: 30px;
        padding: 0 24px 0 26px;
        border-radius: 999px;
        background: #ffffff;
        color: #171b24;
        font-size: 0.95rem;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .autopilot-cta-action:hover {
        color: #171b24;
        transform: translateY(-2px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    }

    .autopilot-cta-action-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 999px;
        background: #ff5b00;
        color: #ffffff;
    }

    .autopilot-cta-action-icon svg {
        width: 16px;
        height: 16px;
    }

    @media (max-width: 991px) {
        .crm-fit-section {
            padding: 88px 0 78px;
        }

        .crm-fit-title,
        .autopilot-cta-title {
            font-size: 2.45rem;
        }

        .crm-fit-grid,
        .autopilot-cta-inner {
            grid-template-columns: 1fr;
        }

        .autopilot-cta-band {
            padding: 44px;
        }
    }

    @media (max-width: 767px) {
        .crm-fit-section {
            padding: 72px 0 58px;
        }

        .crm-fit-header {
            margin-bottom: 30px;
            text-align: left;
        }

        .crm-fit-title,
        .autopilot-cta-title {
            font-size: 2rem;
            line-height: 1.08;
        }

        .crm-fit-card-head,
        .crm-fit-card-body {
            padding-left: 22px;
            padding-right: 22px;
        }

        .crm-fit-card {
            border-radius: 24px;
        }

        .autopilot-cta-section {
            padding-bottom: 78px;
        }

        .autopilot-cta-band {
            border-radius: 26px;
            padding: 34px 22px;
        }

        .autopilot-cta-list {
            padding: 20px;
            border-radius: 22px;
        }

        .autopilot-cta-action {
            width: 100%;
        }
    }

    .team-fit-section {
        position: relative;
        overflow: hidden;
        padding: 112px 0 96px;
        background:
            radial-gradient(circle at 16% 18%, rgba(255, 91, 0, 0.08), transparent 28%),
            radial-gradient(circle at 84% 24%, rgba(37, 99, 235, 0.06), transparent 26%),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .team-fit-section .container,
    .sheet-cta-section .container,
    .home-pricing-section .container {
        max-width: 1180px;
    }

    .team-fit-header {
        max-width: 860px;
        margin: 0 auto 48px;
        text-align: center;
    }

    .team-fit-eyebrow,
    .sheet-cta-eyebrow,
    .home-pricing-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 0 14px;
        margin-bottom: 16px;
        border-radius: 999px;
        background: rgba(255, 91, 0, 0.1);
        color: #ff5b00;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .team-fit-title,
    .home-pricing-title {
        margin: 0;
        color: #111827;
        font-size: 3.1rem;
        font-weight: 850;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .team-fit-sub,
    .home-pricing-subtitle {
        max-width: 780px;
        margin: 18px auto 0;
        color: #5b6478;
        font-size: 1rem;
        line-height: 1.72;
    }

    .team-fit-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .team-fit-card {
        position: relative;
        overflow: hidden;
        min-height: 100%;
        padding: 30px;
        border-radius: 28px;
        border: 1px solid rgba(226, 232, 240, 0.9);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 24px 66px rgba(15, 23, 42, 0.08);
        will-change: transform, opacity;
    }

    /* .team-fit-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 6px;
        background: var(--team-accent, #ff5b00);
    } */

    .team-fit-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        margin-bottom: 22px;
        border-radius: 17px;
        background: color-mix(in srgb, var(--team-accent, #ff5b00) 12%, #ffffff);
        color: var(--team-accent, #ff5b00);
    }

    .team-fit-icon svg {
        width: 24px;
        height: 24px;
        stroke-width: 2.4;
    }

    .team-fit-card h3 {
        margin: 0 0 18px;
        color: #101828;
        font-size: 1.35rem;
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .team-fit-card p {
        margin: 0;
        color: #475569;
        font-size: 0.98rem;
        line-height: 1.66;
    }

    .sheet-cta-section {
        position: relative;
        overflow: hidden;
        padding: 0 0 112px;
        background: linear-gradient(180deg, #f8fafc 0%, #fff7f0 100%);
    }

    .sheet-cta-card {
        position: relative;
        overflow: hidden;
        min-height: 430px;
        padding: 58px;
        border-radius: 36px;
        background:
            radial-gradient(circle at 82% 20%, rgba(255, 177, 121, 0.34), transparent 28%),
            linear-gradient(135deg, #101828 0%, #1d2738 50%, #ff5b00 150%);
        color: #ffffff;
        box-shadow: 0 34px 90px rgba(15, 23, 42, 0.22), 0 18px 48px rgba(255, 91, 0, 0.18);
    }

    .sheet-cta-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255,255,255,0.07) 1px, transparent 1px);
        background-size: 44px 44px;
        mask-image: linear-gradient(90deg, rgba(0,0,0,0.72), transparent 82%);
        pointer-events: none;
    }

    .sheet-cta-glow {
        position: absolute;
        right: 8%;
        top: 12%;
        width: 220px;
        aspect-ratio: 1;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        animation: sheetCtaPulse 3.8s ease-in-out infinite;
    }

    .sheet-cta-glow::before,
    .sheet-cta-glow::after {
        content: "";
        position: absolute;
        inset: 28px;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.13);
    }

    .sheet-cta-glow::after {
        inset: 62px;
        background: rgba(255, 255, 255, 0.08);
    }

    .sheet-cta-inner {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        text-align: center;

        /* grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr); */
        gap: 48px;
        align-items: center;
    }

    .sheet-cta-eyebrow {
        background: rgba(255, 255, 255, 0.12);
        color: #ffb179;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .sheet-cta-title {
        margin: 0;
        color: #ffffff;
        font-size: 3rem;
        font-weight: 850;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .sheet-cta-sub {
        margin: 20px 0 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 1.05rem;
        line-height: 1.72;
    }

    .sheet-cta-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 54px;
        margin-top: 30px;
        padding: 0 24px 0 28px;
        border-radius: 999px;
        background: #ffffff;
        color: #101828;
        font-size: 0.96rem;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .sheet-cta-action:hover {
        color: #101828;
        transform: translateY(-2px);
        box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
    }

    .sheet-cta-action span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #ff5b00;
        color: #ffffff;
    }

    .sheet-cta-visual {
        position: relative;
        z-index: 1;
        display: grid;
        gap: 12px;
        padding: 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .sheet-row {
        display: grid;
        grid-template-columns: 1fr 0.6fr 0.6fr;
        gap: 8px;
    }

    .sheet-cell {
        min-height: 34px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.11);
        animation: sheetCellBlink 2.8s ease-in-out infinite;
    }

    .sheet-row:nth-child(2) .sheet-cell { animation-delay: 0.16s; }
    .sheet-row:nth-child(3) .sheet-cell { animation-delay: 0.32s; }
    .sheet-row:nth-child(4) .sheet-cell { animation-delay: 0.48s; }

    @keyframes sheetCtaPulse {
        0%, 100% { transform: scale(0.94); opacity: 0.62; }
        50% { transform: scale(1.08); opacity: 1; }
    }

    @keyframes sheetCellBlink {
        0%, 100% { opacity: 0.38; transform: scaleX(0.94); }
        50% { opacity: 0.95; transform: scaleX(1); }
    }

    .feature-grid-section {
        position: relative;
        overflow: hidden;
        --feature-grid-orb-opacity: 0.2;
        --feature-grid-orb-x: -8%;
        --feature-grid-orb-y: 0%;
        background:
            radial-gradient(circle at 14% 18%, rgba(255, 85, 0, 0.05), transparent 18%),
            radial-gradient(circle at 86% 78%, rgba(17, 20, 81, 0.05), transparent 20%),
            linear-gradient(180deg, #fdfdfe 0%, #ffffff 100%);
        padding: 112px 0;
    }

    .feature-grid-section::before {
        content: "";
        position: absolute;
        inset: 8% auto auto 50%;
        width: min(44vw, 520px);
        aspect-ratio: 1;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 85, 0, 0.18) 0%, rgba(255, 85, 0, 0.04) 42%, transparent 72%);
        opacity: var(--feature-grid-orb-opacity);
        transform: translate3d(var(--feature-grid-orb-x), var(--feature-grid-orb-y), 0);
        filter: blur(22px);
        pointer-events: none;
    }

    .feature-grid-heading {
        max-width: 1150px;
        margin: 0 auto 56px;
    }

    .feature-grid-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 18px;
        margin-bottom: 20px;
        border: 1px solid rgba(17, 20, 81, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        color: #1d2230;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 10px 28px rgba(17, 20, 81, 0.05);
    }

    .feature-grid-heading h2 {
        font-size: clamp(2.4rem, 4.6vw, 5rem);
        line-height: 1.08;
        letter-spacing: 0;
        margin: 0;
    }

    .feature-grid-sub {
        max-width: 680px;
        margin: 18px auto 0;
        color: #666c79;
        font-size: 1rem;
        line-height: 1.7;
    }

    .feature-grid-card {
        display: grid;
        align-content: start;
        gap: 22px;
        padding: 22px;
        height: 100%;
        border: 1px solid rgba(17, 20, 81, 0.07);
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 18px 48px rgba(17, 20, 81, 0.05);
        will-change: transform, opacity;
        transform-origin: center center;
    }

    .feature-grid-media {
        position: relative;
        overflow: hidden;
        height: 272px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 245, 239, 0.8), rgba(255, 255, 255, 0.3));
    }

    .feature-grid-media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: top center;
        transform: scale(1.01);
        will-change: transform;
    }

    .feature-grid-body {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 18px;
        will-change: transform, opacity;
    }

    .feature-grid-copy h3 {
        margin: 0 0 12px;
        color: #23262f;
        font-size: clamp(1.4rem, 1.75vw, 1.8rem);
        font-weight: 700;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .feature-grid-copy p {
        max-width: 40ch;
        margin: 0;
        color: #666c79;
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-grid-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ff5b00;
        color: #fff;
        box-shadow: 0 14px 34px rgba(221, 113, 25, 0.24);
        transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
    }

    .feature-grid-arrow:hover {
        color: #ffffff;
        transform: translateY(-2px) scale(1.04);
    }

    .feature-grid-arrow svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.1;
    }

    .home-pricing-section {
        background:
            radial-gradient(circle at 14% 16%, rgba(255, 91, 0, 0.07), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
        padding: 104px 0 116px;
    }

    .home-pricing-header {
        max-width: 820px;
        margin: 0 auto 42px;
        text-align: center;
    }

    .pricing-toggle-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 56px;
    }

    .pricing-toggle-pill {
        display: flex;
        align-items: center;
        background: #fff;
        border: 1.5px solid #dde3ec;
        border-radius: 999px;
        padding: 4px;
        position: relative;
    }

    .pricing-toggle-pill button {
        position: relative;
        z-index: 1;
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        color: #5c6b7a;
        padding: 7px 22px;
        border-radius: 999px;
        transition: color 0.25s ease;
        white-space: nowrap;
    }

    .pricing-toggle-pill button.active {
        color: #0d1321;
    }

    .pricing-toggle-pill .pill-indicator {
        position: absolute;
        top: 4px;
        left: 4px;
        height: calc(100% - 8px);
        background: #fff;
        border-radius: 999px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        transition: transform 0.28s cubic-bezier(.4, 0, .2, 1), width 0.28s cubic-bezier(.4, 0, .2, 1);
        z-index: 0;
    }

    .pricing-save-badge {
        background: #fff4ef;
        color: #ff5500;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 700;
        padding: 5px 14px;
        border: 1.5px solid #ffd0bc;
        white-space: nowrap;
    }

    .pricing-cards-row {
        display: flex;
        gap: 28px;
        justify-content: center;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .pricing-card {
        background: #fff;
        border-radius: 22px;
        border: 1.5px solid #e4e9f2;
        padding: 32px 28px 28px;
        width: 320px;
        max-width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.25s ease, transform 0.25s ease;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    }

    .pricing-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
        transform: translateY(-3px);
    }

    .pricing-card.featured {
        background: linear-gradient(160deg, #fff9f7 0%, #fff 55%);
        border-color: #ff5500;
        box-shadow: 0 8px 40px rgba(255, 85, 0, 0.16);
        transform: translateY(-8px);
    }

    .pricing-card.featured:hover {
        box-shadow: 0 16px 50px rgba(255, 85, 0, 0.22);
        transform: translateY(-12px);
    }

    .plan-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 900;
        color: #fff;
        margin-bottom: 18px;
        letter-spacing: 0;
        flex-shrink: 0;
    }

    .most-popular-badge {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #ff5500, #ff7a33);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 6px 18px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        box-shadow: 0 4px 16px rgba(255, 85, 0, 0.4);
    }

    .card-save-badge {
        background: #fff4ef;
        color: #ff5500;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 999px;
        border: 1px solid #ffd0bc;
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
        transition: opacity 0.2s, transform 0.2s;
    }

    .card-save-badge.hidden {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.85);
    }

    .plan-tier {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #8898aa;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .plan-name {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0d1321;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .plan-price-block {
        margin-bottom: 4px;
    }

    .plan-price-amount {
        font-size: 2.8rem;
        font-weight: 900;
        color: #0d1321;
        line-height: 1;
    }

    .plan-price-amount .price-free {
        font-size: 2.5rem;
    }

    .plan-price-amount .price-forever {
        font-size: 0.85rem;
        font-weight: 500;
        color: #8898aa;
        margin-left: 4px;
    }

    .plan-price-amount .price-num {
        font-size: 2.8rem;
    }

    .plan-price-amount .price-mo {
        font-size: 1rem;
        font-weight: 600;
        color: #5c6b7a;
        margin-left: 2px;
    }

    .plan-price-sub {
        font-size: 0.8rem;
        color: #8898aa;
        margin-top: 5px;
        margin-bottom: 22px;
        min-height: 18px;
    }

    .plan-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 13px 20px;
        border-radius: 12px;
        font-size: 0.92rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
        border: 1.5px solid #d1d9e6;
        background: #fff;
        color: #0d1321;
        margin-bottom: 0;
    }

    .plan-cta-btn:hover {
        background: #f5f7ff;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
        color: #0d1321;
        text-decoration: none;
    }

    .plan-cta-btn.featured-btn {
        background: #ff5500;
        color: #fff;
        border-color: #ff5500;
        box-shadow: 0 4px 20px rgba(255, 85, 0, 0.3);
    }

    .plan-cta-btn.featured-btn:hover {
        background: #e04a00;
        border-color: #e04a00;
        box-shadow: 0 8px 28px rgba(255, 85, 0, 0.4);
        transform: translateY(-2px);
        color: #fff;
    }

    .plan-cta-btn svg {
        width: 16px;
        height: 16px;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .plan-trial {
        font-size: 0.78rem;
        font-weight: 600;
        color: #0ea5a0;
        margin: 6px 0 2px;
    }

    .plan-included-label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #aab4c4;
        text-transform: uppercase;
        padding: 18px 0 12px;
        border-top: 1.5px solid #edf0f6;
        margin-top: 22px;
    }

    .pricing-card.featured .plan-included-label {
        border-color: #ffdece;
        color: #e07040;
    }

    .plan-features {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }

    .plan-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.88rem;
        color: #2d3748;
        font-weight: 500;
    }

    .plan-features li .feat-qty {
        font-weight: 800;
        color: #0d1321;
        min-width: 22px;
    }

    .plan-features li .feat-qty.infinity {
        font-size: 1.1rem;
        color: #ff5500;
        font-weight: 900;
    }

    .plan-features li .feat-check {
        display: flex;
        align-items: center;
    }

    .plan-features li .feat-check svg {
        width: 16px;
        height: 16px;
        stroke: #ff5500;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .plan-see-all {
        text-align: center;
        font-size: 0.82rem;
        font-weight: 600;
        color: #8898aa;
        text-decoration: none;
        transition: color 0.2s;
        display: block;
    }

    .plan-see-all:hover {
        color: #ff5500;
        text-decoration: none;
    }

    /* ─── Custom Plan Card ──────────────────────── */
    .pricing-card.custom-plan {
        background: linear-gradient(160deg, #0d1321 0%, #1b2540 100%);
        border-color: transparent;
        box-shadow: 0 8px 40px rgba(13, 19, 33, 0.22);
    }
    .pricing-card.custom-plan:hover {
        box-shadow: 0 16px 50px rgba(249, 115, 22, 0.22);
        transform: translateY(-3px);
    }
    .pricing-card.custom-plan .plan-tier           { color: #f97316; }
    .pricing-card.custom-plan .plan-name           { color: #fff; }
    .pricing-card.custom-plan .plan-price-amount   { color: #fff; }
    .pricing-card.custom-plan .plan-price-sub      { color: #7888a4; }
    .pricing-card.custom-plan .plan-included-label { border-top-color: #2d3a52; color: #5a6a84; }
    .pricing-card.custom-plan .plan-features li    { color: #c0cce0; }
    .pricing-card.custom-plan .plan-features li .feat-qty { color: #e2e8f0; }
    .pricing-card.custom-plan .plan-see-all        { color: #5a6a84; }
    .pricing-card.custom-plan .plan-see-all:hover  { color: #f97316; }
    .plan-cta-btn.custom-btn {
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
    }
    .plan-cta-btn.custom-btn:hover {
        background: linear-gradient(135deg, #ea580c, #c2410c);
        box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
        transform: translateY(-2px);
        color: #fff;
    }

    .pricing-skeleton .skel {
        background: linear-gradient(90deg, #e8edf3 25%, #f4f7fb 50%, #e8edf3 75%);
        background-size: 200% 100%;
        animation: skelShimmer 1.4s infinite;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .pricing-skeleton .skel-tier { height: 12px; width: 50px; }
    .pricing-skeleton .skel-name { height: 22px; width: 60%; margin-bottom: 18px; }
    .pricing-skeleton .skel-price { height: 44px; width: 110px; }
    .pricing-skeleton .skel-sub { height: 14px; width: 80%; margin-bottom: 20px; }
    .pricing-skeleton .skel-feat { height: 14px; width: 85%; }
    .pricing-skeleton .skel-btn { height: 44px; width: 100%; border-radius: 12px; margin-top: 18px; }

    @keyframes skelShimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    @media (max-width: 991px) {
        .team-fit-grid,
        .sheet-cta-inner {
            grid-template-columns: 1fr;
        }

        .team-fit-title,
        .sheet-cta-title,
        .home-pricing-title {
            font-size: 2.45rem;
        }

        .sheet-cta-card {
            padding: 44px;
        }

        .feature-grid-heading {
            margin-bottom: 36px;
        }
    }

    @media (max-width: 768px) {
        .pricing-card {
            width: 100%;
            max-width: 420px;
            transform: none !important;
        }

        .pricing-cards-row {
            gap: 40px;
        }
    }

    @media (max-width: 767px) {
        .team-fit-section,
        .feature-grid-section,
        .home-pricing-section {
            padding: 76px 0;
        }

        .team-fit-header,
        .home-pricing-header {
            text-align: left;
        }

        .team-fit-title,
        .sheet-cta-title,
        .home-pricing-title {
            font-size: 2rem;
            line-height: 1.08;
        }

        .team-fit-card {
            padding: 24px;
            border-radius: 24px;
        }

        .sheet-cta-section {
            padding-bottom: 76px;
        }

        .sheet-cta-card {
            min-height: auto;
            padding: 34px 22px;
            border-radius: 26px;
        }

        .sheet-cta-glow {
            width: 150px;
            right: -20px;
            top: -20px;
        }

        .sheet-cta-action,
        .pricing-toggle-wrap {
            width: 100%;
        }

        .pricing-toggle-wrap {
            align-items: stretch;
            flex-direction: column;
        }

        .pricing-toggle-pill {
            justify-content: center;
            width: fit-content;
            margin: 0 auto;
        }

        .pricing-save-badge {
            width: fit-content;
            margin: 0 auto;
        }

        .feature-grid-heading {
            text-align: left;
        }

        .feature-grid-heading h2 {
            font-size: clamp(2rem, 11vw, 3rem);
        }

        .feature-grid-kicker {
            min-height: 38px;
            padding: 0 14px;
            font-size: 0.82rem;
        }

        .feature-grid-card {
            gap: 18px;
            padding: 16px;
            border-radius: 22px;
        }

        .feature-grid-media {
            min-height: 220px;
            border-radius: 16px;
        }

        .feature-grid-body {
            gap: 14px;
        }

        .feature-grid-copy h3 {
            font-size: 1.26rem;
        }

        .feature-grid-copy p {
            font-size: 0.94rem;
        }

        .feature-grid-arrow {
            width: 44px;
            height: 44px;
        }
    }

    /* Platform Overview Section */
    .platform-overview-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    }

    .platform-overview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(40px, 6vw, 100px);
        align-items: center;
    }

    .platform-overview-visual {
        will-change: transform, opacity;
    }

    .platform-overview-img-wrap {
        position: relative;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 32px 80px rgba(17, 20, 81, 0.13), 0 8px 24px rgba(255, 85, 0, 0.08);
    }

    .platform-overview-img-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 28px;
        box-shadow: inset 0 0 0 1px rgba(17, 20, 81, 0.06);
        pointer-events: none;
    }

    .platform-overview-img {
        display: block;
        width: 100%;
        height: auto;
    }

    .platform-overview-content {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .platform-overview-card {
        padding: clamp(24px, 3vw, 36px);
        border-radius: 24px;
        border: 1px solid rgba(17, 20, 81, 0.07);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 16px 44px rgba(17, 20, 81, 0.05);
        will-change: transform, opacity;
    }

    .platform-overview-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(255, 85, 0, 0.1);
        color: var(--primary-color);
        margin-bottom: 18px;
    }

    .platform-overview-icon svg {
        width: 22px;
        height: 22px;
    }

    .platform-overview-heading {
        font-size: clamp(1.5rem, 2vw, 2.1rem);
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: -0.03em;
        color: #111827;
        margin: 0 0 14px;
    }

    .platform-overview-text {
        color: #4b5563;
        font-size: clamp(0.96rem, 1.1vw, 1.06rem);
        line-height: 1.75;
        margin: 0;
    }

    .platform-overview-text + .platform-overview-text {
        margin-top: 14px;
    }

    .platform-overview-cta {
        margin-top: 24px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 52px;
        padding: 0 28px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary-color), #ff9900);
        color: #fff;
        font-weight: 800;
        font-size: 0.96rem;
        box-shadow: 0 14px 34px rgba(255, 85, 0, 0.28);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .platform-overview-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(255, 85, 0, 0.34);
        color: #fff;
    }

    @media (max-width: 991.98px) {
        .platform-overview-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }
    }

    @media (max-width: 575.98px) {
        .platform-overview-card {
            padding: 22px;
            border-radius: 18px;
        }

        .platform-overview-cta {
            width: 100%;
            justify-content: center;
        }
    }

    .stack-switch-section {
        position: relative;
        overflow: hidden;
        padding: 112px 0 118px;
        background:
            radial-gradient(circle at 16% 16%, rgba(255, 91, 0, 0.08), transparent 28%),
            radial-gradient(circle at 84% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
            linear-gradient(180deg, #f4f6fa 0%, #ffffff 46%, #fff8f2 100%);
    }

    .stack-switch-section .container {
        max-width: 1180px;
    }

    .stack-switch-header {
        max-width: 900px;
        margin: 0 auto 58px;
        text-align: center;
    }

    .stack-switch-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 34px;
        padding: 0 16px;
        margin-bottom: 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(255, 91, 0, 0.14);
        color: #ff5b00;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    }

    .stack-switch-title {
        margin: 0;
        color: #101828;
        font-size: clamp(2.3rem, 5.2vw, 5rem);
        font-weight: 900;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .stack-switch-gradient {
        background: linear-gradient(90deg, #2563eb 0%, #8b5cf6 48%, #ff5b00 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .stack-switch-sub {
        max-width: 700px;
        margin: 22px auto 0;
        color: #5b6478;
        font-size: 1.04rem;
        line-height: 1.72;
    }

    .stack-switch-map {
        position: relative;
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr) 220px;
        gap: 34px;
        align-items: center;
        margin-bottom: 36px;
    }

    .stack-tool-column {
        display: grid;
        gap: 22px;
    }

    .stack-tool-card {
        position: relative;
        display: grid;
        gap: 10px;
        min-height: 116px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(226, 232, 240, 0.95);
        box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
        will-change: transform, opacity;
    }

    .stack-tool-card::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 44px;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 91, 0, 0.26), rgba(37, 99, 235, 0.46));
    }

    .stack-tool-column.left .stack-tool-card::after {
        right: -44px;
    }

    .stack-tool-column.right .stack-tool-card::after {
        left: -44px;
        transform: rotate(180deg);
    }

    .stack-tool-logo-slot,
    .stack-dashboard-image-slot,
    .stack-cta-image-slot {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stack-tool-logo-slot {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        overflow: hidden;
        background: #f8fafc;
        border: 1px solid rgba(226, 232, 240, 0.8);
        padding: 6px;
        flex-shrink: 0;
    }

    .stack-tool-logo-slot img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        border-radius: 4px;
    }

    .stack-tool-card strong {
        color: #101828;
        font-size: 0.95rem;
        line-height: 1.24;
    }

    .stack-tool-card span:not(.stack-tool-logo-slot) {
        color: #667085;
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .stack-dashboard-card {
        position: relative;
        overflow: hidden;
        padding: 0;
        border-radius: 24px;
        border: 1px solid rgba(255, 91, 0, 0.18);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 34px 90px rgba(15, 23, 42, 0.13), 0 16px 42px rgba(255, 91, 0, 0.1);
        will-change: transform, opacity;
    }

    .stack-dashboard-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(255, 91, 0, 0.09), transparent 28%),
            radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08), transparent 28%);
        pointer-events: none;
    }

    .stack-dashboard-top {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 12px 18px;
    }

    .stack-dashboard-brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #101828;
        font-weight: 850;
    }

    .stack-dashboard-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: linear-gradient(135deg, #2563eb, #8b5cf6);
        color: #ffffff;
        font-weight: 900;
    }

    .stack-dashboard-dots {
        display: flex;
        gap: 8px;
    }

    .stack-dashboard-dots span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #cbd5e1;
    }

    .stack-dashboard-image-slot {
        position: relative;
        z-index: 1;
        min-height: 390px;
        overflow: hidden;
    }

    .stack-dashboard-image-slot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

    .stack-benefit-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin-top: 38px;
    }

    .stack-benefit-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 16px;
        align-items: start;
        min-height: 152px;
        padding: 24px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(226, 232, 240, 0.92);
        box-shadow: 0 22px 58px rgba(15, 23, 42, 0.07);
        will-change: transform, opacity;
    }

    .stack-benefit-icon,
    .stack-stat-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: color-mix(in srgb, var(--stack-accent, #ff5b00) 12%, #ffffff);
        color: var(--stack-accent, #ff5b00);
        box-shadow: 0 12px 28px color-mix(in srgb, var(--stack-accent, #ff5b00) 18%, transparent);
    }

    .stack-benefit-icon svg,
    .stack-stat-icon svg {
        width: 25px;
        height: 25px;
        stroke-width: 2.3;
    }

    .stack-benefit-card h3 {
        margin: 0 0 8px;
        color: #101828;
        font-size: 1.12rem;
        font-weight: 850;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .stack-benefit-card p {
        margin: 0;
        color: #667085;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .stack-stat-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin-top: 30px;
        overflow: hidden;
        border-radius: 26px;
        border: 1px solid rgba(226, 232, 240, 0.92);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
    }

    .stack-stat-item {
        display: grid;
        justify-items: center;
        gap: 10px;
        min-height: 150px;
        padding: 28px 18px;
        text-align: center;
        border-right: 1px solid rgba(226, 232, 240, 0.9);
        will-change: transform, opacity;
    }

    .stack-stat-item:last-child {
        border-right: 0;
    }

    .stack-stat-value {
        color: #101828;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1;
    }

    .stack-stat-label {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.22;
    }

    .stack-start-card {
        position: relative;
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 42px;
        align-items: center;
        margin-top: 42px;
        padding: 38px;
        overflow: hidden;
        border-radius: 34px;
        border: 1px solid rgba(255, 91, 0, 0.18);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 242, 0.94));
        box-shadow: 0 28px 78px rgba(15, 23, 42, 0.11), 0 18px 44px rgba(255, 91, 0, 0.1);
        will-change: transform, opacity;
    }

    .stack-cta-image-slot {
        min-height: 180px;
        border-radius: 28px;
    }

    .stack-start-copy h3 {
        margin: 0;
        color: #101828;
        font-size: clamp(2rem, 4vw, 3.35rem);
        font-weight: 900;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .stack-start-copy p {
        margin: 12px 0 0;
        color: #5b6478;
        font-size: 1.08rem;
    }

    .stack-start-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px 28px;
        margin-top: 26px;
    }

    .stack-start-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 54px;
        padding: 0 24px 0 28px;
        border-radius: 999px;
        background: linear-gradient(90deg, #ff5b00, #2563eb);
        color: #ffffff;
        font-size: 0.96rem;
        font-weight: 850;
        text-decoration: none;
        box-shadow: 0 20px 44px rgba(37, 99, 235, 0.22);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .stack-start-button:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 26px 56px rgba(37, 99, 235, 0.28);
    }

    .stack-start-checks {
        display: grid;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
        color: #475569;
        font-size: 0.9rem;
    }

    .stack-start-checks li {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .stack-start-checks i {
        color: #ff5b00;
    }

    @media (max-width: 1199px) {
        .stack-switch-map {
            grid-template-columns: 180px minmax(0, 1fr) 180px;
            gap: 24px;
        }

        .stack-tool-card::after {
            width: 28px;
        }

        .stack-tool-column.left .stack-tool-card::after {
            right: -28px;
        }

        .stack-tool-column.right .stack-tool-card::after {
            left: -28px;
        }
    }

    @media (max-width: 991px) {
        .stack-switch-map {
            grid-template-columns: 1fr;
        }

        .stack-tool-column {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .stack-tool-card::after {
            display: none;
        }

        .stack-benefit-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .stack-stat-strip {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .stack-stat-item:nth-child(2) {
            border-right: 0;
        }

        .stack-stat-item:nth-child(-n + 2) {
            border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        }

        .cta-card::after {
            content: unset;
        }
    }

    @media (max-width: 767px) {
        .stack-switch-section {
            padding: 76px 0 84px;
        }

        .stack-switch-header {
            margin-bottom: 34px;
            text-align: left;
        }

        .stack-switch-sub {
            margin-left: 0;
        }

        .stack-tool-column,
        .stack-benefit-grid,
        .stack-stat-strip,
        .stack-start-card {
            grid-template-columns: 1fr;
        }

        .stack-dashboard-image-slot {
            min-height: 280px;
        }

        .stack-benefit-card,
        .stack-start-card {
            padding: 22px;
            border-radius: 24px;
        }

        .stack-stat-item,
        .stack-stat-item:nth-child(2) {
            border-right: 0;
            border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        }

        .stack-stat-item:last-child {
            border-bottom: 0;
        }

        .stack-cta-image-slot {
            min-height: 150px;
        }

        .stack-start-button {
            width: 100%;
        }
    }