:root {
    --orange: #ff6412;
    --orange-dark: #e95000;
    --navy: #071d3d;
    --blue: #1265e8;
    --ink: #111827;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #fffaf7;
    --mint: #edf9f6;
    --peach: #fff4ed;
    --shadow: 0 18px 50px rgba(15,35,62,.09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter,ui-sans-serif,system-ui,sans-serif;
    font-size: 14px
}

.shell {
    width: min(1240px,calc(100% - 40px));
    margin: auto
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

a {
    color: inherit
}

.site-nav {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(226,232,240,.8);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px)
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px
}

.brand {
    display: block;
    width: 164px
}

    .brand img {
        display: block;
        width: 100%;
        height: auto
    }

.site-nav nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto
}

    .site-nav nav a, .text-link {
        color: #334155;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600
    }

        .site-nav nav a:hover, .text-link:hover {
            color: var(--orange)
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.mobile-login-link {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: 8px;
    color: #0b2d5c;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(15,31,61,.06)
}

    .mobile-login-link svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: 9px;
    text-decoration: none;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

    .button svg {
        width: 18px;
        height: 18px
    }

    .button.primary {
        color: #fff;
        background: var(--orange);
        box-shadow: 0 10px 25px rgba(255,100,18,.2)
    }

        .button.primary:hover {
            background: var(--orange-dark)
        }

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent
}

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 62px;
    background: #f8f9fb
}

    .hero:before {
        content: "";
        position: absolute;
        right: -160px;
        top: -170px;
        width: 520px;
        height: 520px;
        border: 86px solid rgba(255,100,18,.055);
        border-radius: 50%
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.07fr;
    align-items: center;
    gap: 66px;
    min-height: 595px
}

.hero-copy {
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid #c7dedb;
    border-radius: 99px;
    color: #0b223f;
    background: #fff;
    font-size: 11px;
    font-weight: 800
}

.hero h1 {
    max-width: 630px;
    margin: 20px 0 17px;
    font-size: clamp(46px,5.1vw,55px);
    line-height: 1.02;
    letter-spacing: -.055em
}

    .hero h1 span {
        display: block;
        color: #ff6412
    }

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.7
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 21px 0
}

    .hero-chips span {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 11px;
        border: 1px solid #d6e5e3;
        border-radius: 99px;
        color: #0b223f;
        background: #fff;
        font-size: 11px;
        font-weight: 700
    }

    .hero-chips svg {
        width: 15px;
        height: 15px
    }

.hero-lead {
    display: flex;
    width: min(100%,530px);
    padding: 10px;
    border: 1px solid #d9e3e2;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(15,61,59,.1)
}

    .hero-lead label {
        display: flex;
        flex: 1;
        align-items: center;
        gap: 10px;
        padding: 0 12px;
        color: #334155;
        font-weight: 700
    }

    .hero-lead input {
        min-width: 0;
        flex: 1;
        height: 44px;
        border: 0;
        outline: 0;
        font: inherit
    }

    .hero-lead button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 20px;
        border: 0;
        border-radius: 10px;
        color: #fff;
        background: var(--orange);
        font: inherit;
        font-weight: 800
    }

        .hero-lead button svg {
            width: 17px;
            height: 17px
        }

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 18px 0;
    color: #64748b;
    font-size: 13px
}

    .hero-links a {
        color: #061a35;
        font-weight: 800;
        text-decoration: none
    }

.hero-proof {
    display: flex;
    gap: 0;
    margin-top: 28px
}

    .hero-proof div {
        display: grid;
        gap: 2px;
        padding: 0 22px;
        border-right: 1px solid #cadad8
    }

        .hero-proof div:first-child {
            padding-left: 0
        }

        .hero-proof div:last-child {
            border: 0
        }

    .hero-proof strong {
        color: #061a35;
        font-size: 20px
    }

    .hero-proof span {
        color: #64748b;
        font-size: 12px
    }

.hero-visual {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center
}

    .hero-visual > img {
        position: relative;
        z-index: 2;
        width: 115%;
        filter: drop-shadow(0 30px 30px rgba(15,23,42,.15));
        height: auto;
    }

.visual-orbit {
    position: absolute;
    width: 480px;
    height: 480px;
    border: 2px solid rgba(20,124,120,.18);
    border-radius: 50%
}

    .visual-orbit:before, .visual-orbit:after {
        content: "";
        position: absolute;
        inset: 35px;
        border: 1px dashed rgba(20,124,120,.25);
        border-radius: 50%
    }

    .visual-orbit:after {
        inset: 90px
    }

.visual-card {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: 38px auto;
    align-items: center;
    gap: 0 10px;
    padding: 11px 14px;
    border: 1px solid rgba(226,232,240,.85);
    border-radius: 12px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 16px 34px rgba(15,23,42,.12);
    animation: float 4s ease-in-out infinite
}

    .visual-card svg {
        grid-row: 1/3;
        width: 38px;
        height: 38px;
        padding: 9px;
        border-radius: 9px;
        color: var(--orange);
        background: var(--peach)
    }

    .visual-card b {
        font-size: 11px
    }

    .visual-card small {
        color: #64748b;
        font-size: 9px
    }

.card-a {
    left: 0;
    top: 35%
}

.card-b {
    left: 4%;
    bottom: 15%;
    animation-delay: -1s
}

.card-c {
    right: -2%;
    bottom: 20%;
    animation-delay: -2s
}

.card-d {
    right: 2%;
    top: 20%;
    animation-delay: -3s
}

@keyframes float {
    50% {
        transform: translateY(-8px)
    }
}

.trust-strip {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    background: #fff
}

    .trust-strip > .shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px
    }

    .trust-strip span {
        color: #64748b;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em
    }

    .trust-strip div {
        display: flex;
        flex-wrap: wrap;
        gap: 25px
    }

    .trust-strip b {
        color: #334155;
        font-size: 12px
    }

.section {
    padding: 60px 0
}

.section-heading {
    max-width: 700px;
    margin-bottom: 42px
}

    .section-heading.centered {
        margin-right: auto;
        margin-left: auto;
        text-align: center
    }

    .section-heading > span, .why-intro > span {
        color: var(--orange);
        font-size: 14px;
        font-weight: 800;
        letter-spacing: .1em
    }

    .section-heading h2, .why h2, .cta h2 {
        margin: 10px 0 0;
        font-size: clamp(34px,4vw,52px);
        line-height: 1.08;
        letter-spacing: -.045em
    }

    .section-heading p, .why-intro p {
        margin: 15px 0 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7
    }

.feature-slider {
    overflow: hidden;
    background: #fff
}

.slider-viewport {
    overflow: hidden
}

.slider-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 6px 4px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

    .slider-track::-webkit-scrollbar {
        display: none
    }

    .slider-track article {
        position: relative;
        overflow: hidden;
        flex: 0 0 390px;
        min-height: 430px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: linear-gradient(160deg,#f7fbff,#eef6ff);
        box-shadow: 0 12px 30px rgba(15,35,62,.07);
        scroll-snap-align: start
    }

        .slider-track article:nth-child(2) {
            background: linear-gradient(160deg,#effcf8,#e6faf2)
        }

        .slider-track article:nth-child(3) {
            background: linear-gradient(160deg,#fff8ed,#fff1da)
        }

        .slider-track article:nth-child(4) {
            background: linear-gradient(160deg,#f6f2ff,#ede5ff)
        }

        .slider-track article:nth-child(5) {
            background: linear-gradient(160deg,#fff3ef,#ffe7de)
        }

.feature-copy {
    padding: 28px
}

    .feature-copy > span {
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border-radius: 12px;
        color: var(--blue);
        background: rgba(255,255,255,.8)
    }

    .feature-copy svg {
        width: 22px;
        height: 22px
    }

    .feature-copy h3 {
        margin: 22px 0 10px;
        font-size: 23px
    }

    .feature-copy p {
        margin: 0;
        color: #64748b;
        line-height: 1.65
    }

.slider-track img {
    position: absolute;
    right: -35px;
    bottom: -20px;
    width: 88%;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 22px 0 0 0;
    box-shadow: 0 15px 35px rgba(15,35,62,.14)
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px
}

    .slider-controls button {
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: #334155;
        background: #fff;
        font-size: 21px;
        cursor: pointer
    }

    .slider-controls a {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-right: auto;
        padding: 12px 18px;
        border-radius: 99px;
        color: var(--blue);
        background: #eff6ff;
        font-weight: 800;
        text-decoration: none
    }

        .slider-controls a svg {
            width: 17px;
            height: 17px
        }

.solutions {
    background: #fffaf7
}

.solution-tabs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 18px
}

    .solution-tabs button {
        height: 55px;
        border: 1px solid var(--line);
        border-radius: 11px;
        color: #475569;
        background: #fff;
        font: inherit;
        font-weight: 700;
        cursor: pointer
    }

        .solution-tabs button.active {
            border-color: var(--orange);
            color: var(--orange-dark);
            background: #fff1e8
        }

.solution-panels article {
    display: none;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 55px;
    padding: 40px;
    border: 1px solid #f1dfd5;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow)
}

    .solution-panels article.active {
        display: grid
    }

.solution-panels small {
    color: var(--orange);
    font-weight: 800
}

.solution-panels h3 {
    margin: 12px 0;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -.035em
}

.solution-panels p {
    color: var(--muted);
    line-height: 1.7
}

.solution-panels ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none
}

.solution-panels li:before {
    content: "✓";
    margin-right: 10px;
    color: var(--orange);
    font-weight: 800
}

.solution-panels img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(15,35,62,.12)
}

.included-tools {
    overflow: hidden;
    padding: 60px 0;
    background: radial-gradient(circle at 50% 17%,rgba(255,100,18,.1),transparent 29%),#f7f9fc
}

    .included-tools .section-heading {
        padding: 0 20px
    }

        .included-tools .section-heading h2 {
            max-width: 580px;
            margin-right: auto;
            margin-left: auto
        }

        .included-tools .section-heading p {
            max-width: 650px;
            margin-right: auto;
            margin-left: auto
        }

.included-marquee {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 54px
}

    .included-marquee:before, .included-marquee:after {
        content: "";
        position: absolute;
        z-index: 3;
        top: 0;
        bottom: 0;
        width: 17%;
        pointer-events: none
    }

    .included-marquee:before {
        left: 0;
        background: linear-gradient(90deg,#fbfbfc 12%,transparent)
    }

    .included-marquee:after {
        right: 0;
        background: linear-gradient(-90deg,#fbfbfc 12%,transparent)
    }

.included-row {
    overflow: hidden
}

.included-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: includedScroll 42s linear infinite
}

.included-row.reverse .included-track {
    animation-direction: reverse;
    animation-duration: 47s
}

.included-track span {
    display: flex;
    min-width: max-content;
    height: 68px;
    align-items: center;
    gap: 14px;
    padding: 0 27px;
    border: 1px solid #dfe3e8;
    border-radius: 15px;
    color: #343a43;
    background: #fff;
    font-size: 15px;
    font-weight: 650;
    box-shadow: 0 5px 13px rgba(15,35,62,.07)
}

.included-track svg {
    width: 23px;
    height: 23px;
    color: var(--orange)
}

@keyframes includedScroll {
    to {
        transform: translateX(-50%)
    }
}

.industries {
    background: #f8fafc
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px
}

    .industry-grid article {
        display: flex;
        min-height: 125px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 9px 22px rgba(15,35,62,.05);
        transition: .2s
    }

        .industry-grid article:hover {
            transform: translateY(-4px);
            border-color: #ffc8aa;
            box-shadow: 0 18px 35px rgba(255,100,18,.12)
        }

    .industry-grid svg {
        width: 30px;
        height: 30px;
        color: var(--orange)
    }

    .industry-grid span {
        font-weight: 700;
        text-align: center
    }

.why {
    background: var(--mint)
}

.why-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: 20px
}

.why-intro {
    grid-row: span 2;
    align-self: center;
    padding-right: 35px
}

    .why-intro .button {
        margin-top: 26px
    }

.why-layout article {
    min-height: 250px;
    padding: 32px;
    border: 1px solid #dcece9;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15,35,62,.06)
}

    .why-layout article svg {
        width: 55px;
        height: 55px;
        color: var(--orange)
    }

    .why-layout article:nth-of-type(2) svg {
        color: #2563eb
    }

    .why-layout article:nth-of-type(3) svg {
        color: #0891b2
    }

    .why-layout article:nth-of-type(4) svg {
        color: #a855f7
    }

.why-layout h3 {
    margin: 22px 0 9px;
    font-size: 22px
}

.why-layout article p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7
}

.faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px
}

.landing-faq {
    padding: 88px 0;
    background: #fff
}

    .landing-faq .section-heading {
        max-width: 760px;
        margin: 0 auto 42px;
        text-align: center
    }

.faq-list {
    display: grid;
    gap: 12px
}

.faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px
}

.faq-column {
    display: grid;
    align-content: start;
    gap: 8px
}

.faq-list article {
    overflow: hidden;
    border: 1px solid #e3e6eb;
    border-radius: 6px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease
}

.faq-list button {
    display: flex;
    width: 100%;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    border: 0;
    color: #414141;
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer
}

    .faq-list button span {
        flex: 1
    }

.faq-toggle-icon {
    width: 18px;
    height: 18px;
    flex: none;
    fill: none;
    stroke: #8b8b8b;
    stroke-width: 2.25;
    stroke-linecap: round
}

.faq-toggle-vertical {
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease
}

.faq-list article.open {
    border-color: #fdba74;
    box-shadow: 0 8px 22px rgba(249, 115, 22, .08)
}

    .faq-list article.open .faq-toggle-vertical {
        opacity: 0;
        transform: scaleY(0)
    }

.faq-answer {
    border-top: 1px solid #eef0f3;
    padding: 0 20px
}

.faq-list .faq-answer p {
    display: block;
    margin: 0;
    padding: 16px 0 18px;
    color: var(--muted);
    line-height: 1.7
}

@media (max-width: 767px) {
    .landing-faq {
        padding: 64px 0
    }

    .faq-columns {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .faq-list button {
        min-height: 58px;
        font-size: 14px
    }
}

.cta {
    padding: 90px 0;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg,var(--orange),#ff8d49)
}

    .cta span {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .12em
    }

    .cta h2 {
        max-width: 830px;
        margin: 12px auto 0
    }

    .cta p {
        color: #fff1e7
    }

    .cta > div > div {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 27px
    }

.button.light {
    color: var(--orange-dark);
    background: #fff
}

.button.dark {
    color: #fff;
    background: var(--navy)
}

footer {
    padding: 0px 0 20px;
    background: #fff
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 170px 170px;
    gap: 50px
}

    .footer-grid p {
        max-width: 410px;
        color: var(--muted);
        line-height: 1.7
    }

    .footer-grid nav {
        display: grid;
        align-content: start;
        gap: 12px
    }

        .footer-grid nav b {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em
        }

        .footer-grid nav a {
            color: var(--muted);
            font-size: 13px;
            text-decoration: none
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #94a3b8;
    font-size: 13px
}

    .footer-bottom a {
        text-decoration: none
    }

.modal-open {
    overflow: hidden
}

.demo-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    transition: .2s
}

    .demo-modal.open {
        visibility: visible;
        opacity: 1
    }

.demo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,15,30,.78);
    backdrop-filter: blur(3px)
}

.demo-dialog {
    position: relative;
    width: min(520px,100%);
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
    transform: translateY(16px);
    transition: .22s
}

.demo-modal.open .demo-dialog {
    transform: none
}

.demo-dialog header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #fff;
    background: linear-gradient(135deg,#0d7773,#12635f)
}

    .demo-dialog header > div {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .demo-dialog header svg {
        width: 28px;
        height: 28px;
        padding: 5px;
        border-radius: 8px;
        background: rgba(255,255,255,.12)
    }

    .demo-dialog header button {
        border: 0;
        color: #fff;
        background: transparent;
        cursor: pointer
    }

        .demo-dialog header button svg {
            width: 27px;
            height: 27px;
            padding: 0
        }

.demo-body {
    padding: 25px
}

.modal-pill {
    display: table;
    margin: auto;
    padding: 7px 11px;
    border-radius: 99px;
    color: #15736f;
    background: #e7f7f4;
    font-size: 10px;
    font-weight: 800
}

.demo-body h2 {
    margin: 12px 0 8px;
    font-size: 29px;
    text-align: center
}

.demo-body > p {
    max-width: 430px;
    margin: 0 auto 18px;
    color: var(--muted);
    line-height: 1.55;
    text-align: center
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 12px;
    background: #f8fafc
}

    .modal-stats span {
        display: grid;
        gap: 3px;
        color: var(--muted);
        font-size: 10px;
        text-align: center
    }

    .modal-stats b {
        color: var(--orange);
        font-size: 14px
    }

.demo-body form {
    display: grid;
    gap: 12px
}

    .demo-body form > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

.demo-body label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-size: 10px;
    font-weight: 700
}

.demo-body input, .demo-body select {
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d7dee8;
    border-radius: 8px;
    outline: 0;
    font: inherit
}

    .demo-body input:focus, .demo-body select:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(255,100,18,.12)
    }

.demo-body form button {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--orange);
    font: inherit;
    font-weight: 800
}

    .demo-body form button svg {
        width: 17px;
        height: 17px
    }

.demo-body > small {
    display: block;
    margin-top: 15px;
    color: var(--muted);
    text-align: center
}

@media(max-width:1000px) {
    .site-nav nav {
        gap: 15px
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .hero-visual > img {
        width: 125%
    }

    .industry-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .why-layout {
        grid-template-columns: 1fr 1fr
    }

    .why-intro {
        grid-column: 1/-1;
        grid-row: auto;
        text-align: center;
        padding: 0
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

@media(max-width:780px) {
    .nav-inner {
        height: 64px
    }

    .brand {
        width: 135px
    }

    .nav-toggle {
        display: block
    }

    .site-nav nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: #fff;
        box-shadow: var(--shadow)
    }

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

        .site-nav nav a {
            padding: 10px
        }

    .nav-actions {
        display: none
    }

    .mobile-login-link {
        display: flex
    }

    .nav-actions .text-link {
        display: none
    }

    .hero {
        padding-top: 45px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-copy > p {
        margin: auto
    }

    .hero-chips, .hero-links, .hero-proof {
        justify-content: center
    }

    .hero-lead {
        margin: auto
    }

    .hero-visual {
        min-height: 420px
    }

        .hero-visual > img {
            width: 100%
        }

    .visual-card {
        display: none
    }

    .trust-strip > .shell {
        flex-direction: column
    }

    .solution-panels article {
        grid-template-columns: 1fr
    }

    .industry-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

        .footer-grid > div {
            grid-column: 1/-1
        }
}

@media(max-width:560px) {
    .shell {
        width: calc(100% - 28px)
    }

    .section {
        padding: 72px 0
    }

    .hero h1 {
        font-size: 30px
    }

    .hero-copy > p {
        font-size: 14px
    }

    .hero-lead {
        display: grid
    }

        .hero-lead label {
            height: 44px
        }

        .hero-lead button {
            height: 46px
        }

    .hero-proof div {
        padding: 0 10px
    }

    .hero-proof strong {
        font-size: 16px
    }

    .hero-visual {
        min-height: 300px
    }

    .visual-orbit {
        width: 290px;
        height: 290px
    }

    .trust-strip div {
        justify-content: center
    }

    .slider-track article {
        flex-basis: 84vw
    }

    .solution-tabs {
        grid-template-columns: 1fr 1fr
    }

    .solution-panels article {
        padding: 23px
    }

    .solution-panels h3 {
        font-size: 27px
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr
    }

        .industry-grid article {
            min-height: 105px
        }

    .why-layout {
        grid-template-columns: 1fr
    }

        .why-layout article {
            min-height: auto
        }

    .cta > div > div {
        flex-direction: column
    }

    .footer-grid {
        gap: 30px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px
    }

    .demo-body form > div {
        grid-template-columns: 1fr
    }
}

@media(max-width:560px) {
    .included-tools {
        padding: 72px 0
    }

    .included-marquee {
        gap: 14px;
        margin-top: 38px
    }

    .included-track {
        gap: 10px
    }

        .included-track span {
            height: 55px;
            padding: 0 19px;
            font-size: 12px
        }

        .included-track svg {
            width: 19px;
            height: 19px
        }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .visual-card, .included-track {
        animation: none
    }
}

/* Connected device access — RelitePOS theme only. */
.device-access {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: radial-gradient(circle at 50% 47%,rgba(255,255,255,.98) 0,rgba(255,255,255,.9) 29%,rgba(255,255,255,.3) 55%,transparent 72%),linear-gradient(105deg,#fce9e1 0%,#fff 48%,#fff4ed 100%)
}

    .device-access:before, .device-access:after {
        position: absolute;
        border-radius: 50%;
        content: "";
        pointer-events: none
    }

    .device-access:before {
        right: -260px;
        top: -310px;
        width: 760px;
        height: 760px;
        border: 100px solid rgba(249,115,22,.055)
    }

    .device-access:after {
        left: -260px;
        bottom: -410px;
        width: 660px;
        height: 660px;
        border: 88px solid rgba(249,115,22,.04)
    }

.device-access-panel {
    position: relative;
    z-index: 1;
    padding: 48px 44px 42px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(11,45,92,.1);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(11,31,58,.1);
    backdrop-filter: blur(10px)
}

.device-access-heading {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center
}

    .device-access-heading > span {
        display: inline-block;
        margin-bottom: 12px;
        color: #f97316;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .13em
    }

    .device-access-heading h2 {
        margin: 0 0 13px;
        color: #0b1f3a;
        font-size: 38px;
        line-height: 1.14
    }

    .device-access-heading p {
        margin: 0;
        color: #637087;
        font-size: 16px;
        line-height: 1.7
    }

.device-access-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr)) 1.1fr;
    gap: 16px
}

.device-card, .device-connect-card {
    position: relative;
    min-width: 0;
    min-height: 330px;
    padding: 25px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff
}

.device-card {
    display: flex;
    flex-direction: column;
    transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease
}

    .device-card:hover {
        transform: translateY(-5px);
        border-color: #fdba74;
        box-shadow: 0 18px 35px rgba(15,31,61,.09)
    }

.device-icon {
    display: grid;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    flex: 0 0 48px;
    margin-bottom: 35px;
    place-items: center;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 14px
}

    .device-icon.teal {
        color: #059669;
        background: #ecfdf5
    }

    .device-icon.orange {
        color: #f97316;
        background: #fff7ed
    }

    .device-icon svg {
        display: block;
        width: 25px !important;
        height: 25px !important;
        min-width: 25px;
        min-height: 25px;
        max-width: 25px;
        max-height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.device-card small, .device-connect-card > small {
    color: #7a879a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.device-card h3, .device-connect-card h3 {
    margin: 7px 0 11px;
    color: #0b1f3a;
    font-size: 23px
}

.device-card p, .device-connect-card p {
    margin: 0;
    color: #627086;
    font-size: 13px;
    line-height: 1.65
}

.device-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    color: #0b2d5c;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none
}

    .device-card > a svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8
    }

.device-connect-card {
    overflow: hidden;
    color: #fff;
    background: linear-gradient(145deg,#081f3f,#0b376d);
    border: 0
}

    .device-connect-card:after {
        position: absolute;
        right: -65px;
        bottom: -90px;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 50%;
        content: ""
    }

    .device-connect-card > small, .device-connect-card h3, .device-connect-card p {
        position: relative;
        z-index: 2;
        color: #fff
    }

    .device-connect-card p {
        color: #c8d7eb
    }

.connect-orbit {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 0 24px
}

    .connect-orbit > span {
        position: absolute;
        inset: 19px;
        z-index: 2;
        display: grid;
        place-items: center;
        color: #fff;
        background: #f97316;
        border-radius: 20px;
        box-shadow: 0 12px 30px rgba(249,115,22,.3)
    }

    .connect-orbit svg {
        width: 30px;
        height: 30px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6
    }

    .connect-orbit i {
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%
    }

        .connect-orbit i:nth-child(3) {
            inset: 10px
        }

        .connect-orbit i:nth-child(4) {
            inset: -8px;
            border-style: dashed
        }

.device-connect-card > div:last-child {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px
}

    .device-connect-card > div:last-child span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 7px 9px;
        color: #dce9f8;
        font-size: 10px;
        font-weight: 700;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px
    }

    .device-connect-card > div:last-child svg {
        width: 13px;
        height: 13px;
        fill: none;
        stroke: #fb923c;
        stroke-width: 2
    }

@media(max-width:1100px) {
    .device-access-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .device-card, .device-connect-card {
        min-height: 300px
    }
}

@media(max-width:720px) {
    .device-access {
        padding: 68px 0
    }

    .device-access-panel {
        padding: 34px 18px 20px;
        border-radius: 20px
    }

    .device-access-heading {
        margin-bottom: 27px
    }

        .device-access-heading h2 {
            font-size: 29px
        }

        .device-access-heading p {
            font-size: 14px
        }

    .device-access-grid {
        grid-template-columns: 1fr
    }

    .device-card, .device-connect-card {
        min-height: 270px
    }

    .device-icon {
        margin-bottom: 24px
    }
}

/* Public pricing comparison. */
.landing-pricing {
    overflow: hidden;
    background: #f8f9fb
}

.pricing-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 40px
}

    .pricing-heading-row .section-heading {
        max-width: 720px;
        margin: 0
    }

        .pricing-heading-row .section-heading h2 {
            max-width: 650px
        }

.pricing-heading-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap
}

.pricing-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    color: #0b2d5c;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(15,31,61,.06)
}

    .pricing-live-badge svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: #16a34a;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.landing-price-free {
    color: #f97316;
    font-size: 39px !important;
    letter-spacing: -.025em !important
}

.pricing-empty {
    display: flex;
    grid-column: 1/-1;
    min-height: 240px;
    padding: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #fff;
    border: 1px dashed #fdba74;
    border-radius: 20px
}

    .pricing-empty strong {
        color: #0b1f3a;
        font-size: 24px
    }

    .pricing-empty span {
        margin: 10px 0 22px;
        color: #68758a
    }

    .pricing-empty a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #f97316;
        font-weight: 800;
        text-decoration: none
    }

    .pricing-empty svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8
    }

.billing-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    background: #eef2f7;
    border: 1px solid #dde5ef;
    border-radius: 999px;
    white-space: nowrap
}

    .billing-switch button {
        height: 36px;
        padding: 0 16px;
        color: #526078;
        font: 800 12px/1 inherit;
        background: transparent;
        border: 0;
        border-radius: 999px;
        cursor: pointer
    }

        .billing-switch button.active {
            color: #fff;
            background: #0b2d5c;
            box-shadow: 0 5px 14px rgba(11,45,92,.18)
        }

    .billing-switch > span {
        padding: 0 11px 0 7px;
        color: #f97316;
        font-size: 11px;
        font-weight: 800
    }

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    align-items: stretch;
    gap: 16px
}

.landing-price-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 570px;
    padding: 30px 24px 26px;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15,31,61,.065);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .landing-price-card:hover {
        transform: translateY(-6px);
        border-color: #fdba74;
        box-shadow: 0 24px 55px rgba(15,31,61,.11)
    }

    .landing-price-card.featured {
        border: 2px solid #f97316;
        background: linear-gradient(180deg,#fff9f4 0,#fff 28%);
        box-shadow: 0 22px 55px rgba(249,115,22,.13)
    }

.landing-free-plan {
    position: relative;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 270px minmax(0,1fr);
    gap: 50px;
    min-height: 430px;
    margin-bottom: 14px;
    padding: 44px 52px;
    overflow: hidden;
    background: linear-gradient(135deg,#fff 0%,#fff 68%,#fff7ed 100%);
    border: 1px solid #dfe6ef;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(15,31,61,.07)
}

    .landing-free-plan:after {
        position: absolute;
        right: -95px;
        bottom: -125px;
        width: 340px;
        height: 340px;
        border: 46px solid rgba(249,115,22,.06);
        border-radius: 50%;
        content: ""
    }

.free-plan-visual {
    position: relative;
    display: grid;
    min-height: 330px;
    place-items: center
}

.free-plan-box {
    position: relative;
    z-index: 3;
    display: grid;
    width: 174px;
    height: 136px;
    color: #0b2d5c;
    background: #fff;
    border: 3px solid #0b2d5c;
    border-radius: 28px 28px 46px 46px;
    place-items: center;
    box-shadow: 0 25px 48px rgba(11,45,92,.14);
    transform: perspective(500px) rotateX(-5deg)
}

    .free-plan-box:before {
        position: absolute;
        top: -25px;
        left: 20px;
        width: 128px;
        height: 36px;
        background: #fff7ed;
        border: 3px solid #0b2d5c;
        border-radius: 50%;
        content: ""
    }

    .free-plan-box svg {
        position: relative;
        z-index: 2;
        width: 54px;
        height: 54px;
        fill: none;
        stroke: #f97316;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.free-plan-badge {
    position: absolute;
    z-index: 4;
    display: grid;
    width: 105px;
    height: 105px;
    color: #fff;
    background: linear-gradient(145deg,#fb923c,#f97316);
    border: 9px solid #ffedd5;
    border-radius: 31px;
    place-items: center;
    box-shadow: 0 18px 35px rgba(249,115,22,.3);
    transform: rotate(-6deg)
}

    .free-plan-badge svg {
        width: 34px;
        height: 34px;
        margin-bottom: -25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7
    }

    .free-plan-badge b {
        font-size: 20px
    }

.free-plan-orbit {
    position: absolute;
    border: 2px dashed rgba(37,99,235,.2);
    border-radius: 50%
}

.free-plan-orbit-one {
    width: 245px;
    height: 245px
}

.free-plan-orbit-two {
    width: 300px;
    height: 300px;
    border-color: rgba(249,115,22,.16)
}

.free-plan-spark {
    position: absolute;
    width: 25px;
    height: 25px;
    color: #2563eb;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.free-plan-spark-one {
    top: 42px;
    right: 22px
}

.free-plan-spark-two {
    bottom: 52px;
    left: 20px;
    color: #f97316
}

.free-plan-content {
    position: relative;
    z-index: 2;
    min-width: 0
}

    .free-plan-content header small {
        color: #f97316;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .17em
    }

    .free-plan-content h3 {
        margin: 8px 0 7px;
        color: #0b1f3a;
        font-size: 31px;
        line-height: 1.1
    }

    .free-plan-content header p {
        max-width: 720px;
        margin: 0;
        color: #68758a;
        font-size: 14px;
        line-height: 1.65
    }

.free-plan-divider {
    height: 1px;
    margin: 18px 0;
    background: #e5eaf1
}

.free-plan-benefits {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px 38px;
    margin: 0;
    padding: 0;
    list-style: none
}

    .free-plan-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: #25344b;
        font-size: 13px;
        line-height: 1.45
    }

        .free-plan-benefits li svg {
            width: 17px;
            height: 17px;
            flex: 0 0 17px;
            color: #16a34a;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.1;
            stroke-linecap: round;
            stroke-linejoin: round
        }

.free-plan-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: #0b2d5c;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none
}

    .free-plan-more svg, .free-plan-action svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8
    }

.free-plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 190px;
    height: 48px;
    margin: 18px 0 0 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    background: #f97316;
    border-radius: 10px;
    box-shadow: 0 11px 25px rgba(249,115,22,.22)
}

    .free-plan-action:hover {
        color: #fff;
        background: #ea580c
    }

.price-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    height: 30px;
    padding: 0 20px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: .11em;
    background: #f97316;
    border-radius: 999px;
    transform: translateX(-50%);
    box-shadow: 0 7px 18px rgba(249,115,22,.25)
}

.landing-price-card header {
    min-height: 145px
}

    .landing-price-card header small {
        color: #f97316;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .18em
    }

.landing-price-card h3 {
    margin: 11px 0 13px;
    color: #0b1f3a;
    font-size: 25px;
    line-height: 1.1
}

.landing-price-card header p {
    margin: 0;
    color: #68758a;
    font-size: 13px;
    line-height: 1.6
}

.landing-price {
    display: flex;
    align-items: center;
    min-height: 76px;
    margin: 5px 0 16px;
    color: #0b1f3a
}

    .landing-price > span {
        margin: 3px 4px 0 0;
        align-self: center;
        font-size: 18px;
        font-weight: 800
    }

    .landing-price > strong {
        font-size: 38px;
        line-height: 1;
        letter-spacing: -.045em
    }

    .landing-price > div {
        display: flex;
        margin-left: 8px;
        min-width: 0;
        flex-direction: column;
        align-self: center
    }

    .landing-price b {
        font-size: 11px
    }

    .landing-price small {
        margin-top: 4px;
        color: #7c899c;
        font-size: 9px
    }

.price-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 48px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    background: #f97316;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(249,115,22,.2);
    transition: background .2s ease,transform .2s ease
}

    .price-action:hover {
        color: #fff;
        background: #ea580c;
        transform: translateY(-1px)
    }

    .price-action svg, .pricing-footnote svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.price-divider {
    height: 1px;
    margin: 28px 0 23px;
    background: #e8edf3
}

.price-includes {
    color: #18263d;
    font-size: 13px
}

.landing-price-card ul {
    display: grid;
    gap: 15px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none
}

.landing-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #46546b;
    font-size: 13px;
    line-height: 1.45
}

    .landing-price-card li svg {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        color: #0ea56a;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.pricing-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    padding: 17px 22px;
    color: #58677d;
    font-size: 12px;
    background: #fff;
    border: 1px solid #e3e9f1;
    border-radius: 14px
}

    .pricing-footnote > svg {
        color: #2563eb
    }

    .pricing-footnote > a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-left: auto;
        color: #0b2d5c;
        font-weight: 900;
        text-decoration: none
    }

        .pricing-footnote > a svg {
            width: 15px;
            height: 15px
        }

@media(max-width:1180px) {
    .pricing-heading-row {
        align-items: flex-start;
        flex-direction: column
    }

    .pricing-heading-actions {
        justify-content: flex-start
    }

    .landing-pricing-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .landing-free-plan {
        grid-template-columns: 220px minmax(0,1fr);
        gap: 34px;
        padding: 38px 34px
    }

    .free-plan-visual {
        min-height: 300px;
        transform: scale(.88)
    }
}

@media(max-width:760px) {
    .landing-free-plan {
        grid-template-columns: 1fr;
        padding: 31px 24px
    }

    .free-plan-visual {
        min-height: 230px;
        margin: -30px 0;
        transform: scale(.76)
    }

    .free-plan-benefits {
        grid-template-columns: 1fr;
        gap: 11px
    }

    .free-plan-action {
        width: 100%;
        margin: 18px 0 0
    }

    .free-plan-more {
        display: flex
    }
}

@media(max-width:680px) {
    .pricing-heading-row {
        margin-bottom: 30px
    }

    .billing-switch {
        width: 100%;
        flex-wrap: wrap;
        border-radius: 14px
    }

        .billing-switch button {
            flex: 1
        }

        .billing-switch > span {
            width: 100%;
            padding: 4px 8px 6px;
            text-align: center
        }

    .landing-pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .landing-price-card, .landing-price-card:last-child {
        grid-column: auto;
        max-width: none;
        min-height: 0;
        padding: 31px 24px 26px
    }

        .landing-price-card header {
            min-height: 0;
            margin-bottom: 18px
        }

    .landing-price > strong {
        font-size: 40px
    }

    .pricing-footnote {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start
    }

        .pricing-footnote > a {
            width: 100%;
            margin: 3px 0 0
        }
}

.landing-pricing use[href="#i-check"] {
    stroke: #061a35 !important
}

.landing-pricing .tick-icon path {
    fill: #061a35 !important
}

/* Reference-led post-hero experience */
.reference-proof {
    padding: 22px 0;
    background: #f8f9fb
}

.reference-proof-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4,1fr);
    overflow: hidden;
    color: #fff;
    background: #061f46;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(6,31,70,.16)
}

.reference-proof article {
    display: flex;
    min-height: 92px;
    padding: 20px 22px;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255,255,255,.12)
}

    .reference-proof article:last-child {
        border: 0
    }

.reference-proof svg {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.reference-proof strong, .reference-proof span {
    display: block
}

.reference-proof strong {
    font-size: 13px;
    line-height: 1.35
}

.reference-proof span {
    margin-top: 4px;
    color: #aebed4;
    font-size: 11px;
    line-height: 1.45
}

.reference-heading {
    max-width: 760px;
    margin-bottom: 40px
}

    .reference-heading.centered {
        margin-right: auto;
        margin-left: auto;
        text-align: center
    }

    .reference-heading > span, .reference-showcase-copy > span {
        color: #f97316;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .14em
    }

    .reference-heading h2, .reference-showcase-copy h2 {
        margin: 9px 0 11px;
        color: #071b38;
        font-size: 36px;
        line-height: 1.16;
        letter-spacing: -.025em
    }

    .reference-heading p, .reference-showcase-copy p {
        margin: 0;
        color: #66758a;
        font-size: 15px;
        line-height: 1.7
    }

.reference-features {
    background: #fff
}

.reference-feature-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px
}

    .reference-feature-grid article {
        min-height: 218px;
        padding: 27px 24px;
        text-align: center;
        background: #fff;
        border: 1px solid #e1e8f1;
        border-radius: 17px;
        box-shadow: 0 9px 25px rgba(15,35,65,.055);
        transition: .22s ease
    }

        .reference-feature-grid article:hover {
            transform: translateY(-5px);
            border-color: #fdba74;
            box-shadow: 0 19px 36px rgba(15,35,65,.1)
        }

.reference-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 19px;
    place-items: center;
    color: #f97316;
    background: #fff4e9;
    border-radius: 50%
}

    .reference-icon.blue {
        color: #2563eb;
        background: #edf4ff
    }

    .reference-icon.green {
        color: #12a561;
        background: #eafaf2
    }

    .reference-icon.purple {
        color: #7c3aed;
        background: #f3efff
    }

    .reference-icon.pink {
        color: #e83e75;
        background: #fff0f5
    }

    .reference-icon.teal {
        color: #0895a9;
        background: #eafafa
    }

    .reference-icon svg {
        width: 27px;
        height: 27px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.reference-feature-grid h3 {
    margin: 0 0 10px;
    color: #0b1f3a;
    font-size: 17px
}

.reference-feature-grid p {
    margin: 0;
    color: #66758a;
    font-size: 13px;
    line-height: 1.65
}

.reference-showcase {
    background: #f8f9fb
}

.reference-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: center;
    gap: 58px
}

.reference-devices picture,
.reference-devices img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 470px
}

.reference-showcase-copy {
    max-width: 600px
}

.reference-checks {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 13px 25px;
    margin: 25px 0
}

    .reference-checks span {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #26374e;
        font-size: 13px;
        font-weight: 600
    }

    .reference-checks svg {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        fill: #1268ef
    }

.reference-showcase-copy .button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor
}

.reference-integrations {
    padding: 55px 0;
    background: #f7f9fc
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(7,minmax(0,1fr));
    gap: 12px
}

    .integration-grid article {
        display: flex;
        min-height: 115px;
        padding: 17px 12px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        background: #fff;
        border: 1px solid #e1e7ef;
        border-radius: 14px
    }

    .integration-grid svg {
        width: 28px;
        height: 28px;
        margin-bottom: 10px;
        fill: none;
        stroke: #f97316;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .integration-grid strong {
        color: #0b1f3a;
        font-size: 13px
    }

    .integration-grid small {
        margin-top: 4px;
        color: #7c899a;
        font-size: 13px
    }

.reference-benefits {
    background: #fff
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 17px
}

    .benefit-grid article {
        display: flex;
        min-height: 125px;
        padding: 24px;
        align-items: flex-start;
        gap: 15px;
        border: 1px solid #e1e8f1;
        border-radius: 16px;
        box-shadow: 0 8px 23px rgba(15,35,65,.05)
    }

        .benefit-grid article > span {
            display: grid;
            width: 43px;
            height: 43px;
            flex: 0 0 43px;
            place-items: center;
            color: #f97316;
            background: #fff4e9;
            border-radius: 13px
        }

    .benefit-grid svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .benefit-grid h3 {
        margin: 2px 0 7px;
        color: #0b1f3a;
        font-size: 16px
    }

    .benefit-grid p {
        margin: 0;
        color: #6b778a;
        font-size: 13px;
        line-height: 1.55
    }

.trade-section {
    background: #f7f9fc
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 15px
}

    .trade-grid article {
        display: flex;
        min-height: 118px;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-direction: column;
        background: #fff;
        border: 1px solid #e0e7f0;
        border-radius: 16px;
        box-shadow: 0 8px 22px rgba(15,35,65,.05)
    }

    .trade-grid svg {
        width: 30px;
        height: 30px;
        fill: none;
        stroke: #f97316;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .trade-grid strong {
        color: #14243b;
        font-size: 13px;
        text-align: center
    }

.reference-testimonials {
    background: #fff
}

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

    .testimonial-grid article {
        padding: 27px;
        background: #fff;
        border: 1px solid #e1e8f1;
        border-radius: 17px;
        box-shadow: 0 10px 29px rgba(15,35,65,.06)
    }

    .testimonial-grid .stars {
        color: #f59e0b;
        font-size: 17px;
        letter-spacing: 2px
    }

    .testimonial-grid > article > p {
        min-height: 92px;
        margin: 15px 0 20px;
        color: #36455b;
        font-size: 14px;
        line-height: 1.7
    }

    .testimonial-grid footer {
        display: flex;
        align-items: center;
        gap: 12px
    }

        .testimonial-grid footer > span {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            color: #fff;
            font-weight: 800;
            background: linear-gradient(145deg,#0b2d5c,#1268ef);
            border-radius: 50%
        }

        .testimonial-grid footer strong, .testimonial-grid footer small {
            display: block
        }

        .testimonial-grid footer strong {
            color: #0b1f3a;
            font-size: 13px
        }

        .testimonial-grid footer small {
            margin-top: 3px;
            color: #8290a3;
            font-size: 11px
        }

.reference-cta {
    padding: 24px 0 68px;
    background: #fff
}

    .reference-cta > .shell {
        display: grid;
        grid-template-columns: 110px minmax(0,1fr) auto;
        align-items: center;
        gap: 25px;
        padding: 27px 34px;
        color: #fff;
        background: linear-gradient(110deg,#061a35,#0b3269);
        border-radius: 19px;
        box-shadow: 0 18px 40px rgba(6,26,53,.2)
    }

.reference-rocket svg {
    display: block;
    width: 98px;
    height: 98px
}

.reference-cta span {
    color: #ff9a54;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em
}

.reference-cta h2 {
    margin: 6px 0;
    color: #fff;
    font-size: 24px
}

.reference-cta p {
    max-width: 680px;
    margin: 0;
    color: #bdcbe0;
    font-size: 12px;
    line-height: 1.6
}

.reference-cta-actions {
    display: flex;
    min-width: 260px;
    align-items: stretch;
    gap: 9px;
    flex-wrap: wrap
}

    .reference-cta-actions .button {
        height: 43px
    }

    .reference-cta-actions small {
        width: 100%;
        color: #98aac2;
        font-size: 10px;
        text-align: center
    }

.outline-light {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    background: transparent !important
}

.modern-footer {
    padding: 38px 0 20px;
    color: #d7dfec;
    background: radial-gradient(circle at 47% 30%,#08295b 0,#051c43 38%,#031738 70%,#02122e 100%)
}

.modern-footer-grid {
    display: grid;
    grid-template-columns: 1.65fr repeat(3,.85fr) 1.35fr;
    gap: 52px
}

.footer-wordmark {
    display: inline-block;
    text-decoration: none
}

    .footer-wordmark img {
        display: block;
        width: 185px;
        height: auto
    }

.footer-brand p {
    max-width: 250px;
    margin: 17px 0 18px;
    color: #d7dfec;
    font-size: 13px;
    line-height: 1.65
}

.footer-social-icons {
    display: flex;
    gap: 10px
}

    .footer-social-icons a {
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        color: #fff;
        border: 1px solid rgba(255,255,255,.45);
        border-radius: 50%;
        transition: border-color .2s,background .2s
    }

        .footer-social-icons a:hover {
            border-color: #fff;
            background: rgba(255,255,255,.1)
        }

    .footer-social-icons svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.modern-footer nav {
    display: flex;
    gap: 12px;
    flex-direction: column
}

    .modern-footer nav b {
        margin-bottom: 8px;
        color: #fff;
        font-size: 14px
    }

    .modern-footer nav a {
        color: #d7dfec;
        font-size: 13px;
        text-decoration: none
    }

        .modern-footer nav a:hover {
            color: #ff8b45
        }

.modern-footer-bottom {
    display: flex;
    margin-top: 45px;
    padding-top: 20px;
    justify-content: space-between;
    color: #aebcd0;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,.14)
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px
}

    .footer-contact > b {
        margin-bottom: 7px;
        color: #fff;
        font-size: 14px
    }

    .footer-contact > a, .footer-contact > span {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #d7dfec;
        font-size: 13px;
        line-height: 1.4;
        text-decoration: none
    }

        .footer-contact > a:hover {
            color: #fff
        }

    .footer-contact svg {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 18px
}

    .footer-legal-links a {
        color: #aebcd0;
        text-decoration: none
    }

        .footer-legal-links a:hover {
            color: #fff
        }

    .footer-legal-links i {
        width: 1px;
        height: 13px;
        background: rgba(255,255,255,.25)
    }

@media(max-width:1100px) {
    .reference-proof-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .reference-proof article {
        border-bottom: 1px solid rgba(255,255,255,.12)
    }

    .reference-feature-grid, .benefit-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .integration-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .trade-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .reference-cta > .shell {
        grid-template-columns: 90px 1fr
    }

    .reference-cta-actions {
        grid-column: 2
    }

    .modern-footer-grid {
        grid-template-columns: 1.5fr repeat(2,1fr);
        gap: 30px
    }

    .footer-contact {
        grid-column: 2/4
    }
}

@media(max-width:760px) {
    .reference-heading h2, .reference-showcase-copy h2 {
        font-size: 29px
    }

    .reference-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .integration-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px
    }

        .integration-grid article {
            min-width: 145px;
            scroll-snap-align: start
        }

    .trade-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .testimonial-grid {
        grid-template-columns: 1fr
    }

    .reference-cta > .shell {
        grid-template-columns: 1fr;
        text-align: center
    }

    .reference-rocket {
        margin: auto
    }

    .reference-cta-actions {
        grid-column: auto;
        justify-content: center
    }

    .modern-footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-contact {
        grid-column: auto
    }

    .modern-footer-bottom {
        gap: 8px;
        flex-direction: column
    }

    .reference-checks {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .reference-proof-grid, .reference-feature-grid, .benefit-grid {
        grid-template-columns: 1fr
    }

    .reference-proof article {
        min-height: 78px
    }

    .trade-grid {
        grid-template-columns: 1fr 1fr
    }

        .trade-grid article {
            min-height: 105px
        }

    .reference-cta > .shell {
        padding: 26px 20px
    }

    .modern-footer-grid {
        grid-template-columns: 1fr
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 10px
    }
}

/* Shared legal pages */
.legal-page {
    color: #061b46;
    background: #fff;
}

    .legal-page main {
        overflow: hidden;
    }

    .legal-page svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.legal-hero {
    min-height: 390px;
    border-top: 1px solid #e7edf6;
    border-bottom: 1px solid #e1e9f4;
    background: linear-gradient(110deg,#fff 0%,#f7faff 62%,#edf4ff 100%);
}

.legal-hero-grid {
    position: relative;
    display: grid;
    min-height: 390px;
    grid-template-columns: minmax(360px,45%) 1fr;
    align-items: center;
}

    .legal-hero-grid > div {
        position: relative;
        z-index: 2;
        padding: 48px 0;
    }

        .legal-hero-grid > div > span {
            display: block;
            margin-bottom: 10px;
            color: #ff3d0d;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: .025em;
            text-transform: uppercase;
        }

.legal-hero h1 {
    max-width: 570px;
    margin: 0;
    color: #071d4f;
    font-size: 48px;
    line-height: 1.07;
    letter-spacing: -.035em;
}

    .legal-hero h1 em {
        color: #ff4818;
        font-style: normal;
    }

.legal-hero p {
    max-width: 510px;
    margin: 20px 0 24px;
    color: #314362;
    font-size: 16px;
    line-height: 1.55;
}

.legal-hero small {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #263958;
    font-size: 13px;
    font-weight: 600;
}

    .legal-hero small svg {
        width: 22px;
        height: 22px;
        color: #102f67;
    }

.legal-hero-grid > img {
    position: absolute;
    z-index: 1;
    top: 0;
    right: calc((min(1240px,100vw - 40px) - 100vw)/2);
    width: 64%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.legal-body {
    display: grid;
    padding-top: 28px;
    padding-bottom: 46px;
    grid-template-columns: 285px minmax(0,1fr);
    align-items: start;
    gap: 20px;
}

    .legal-body aside {
        position: sticky;
        top: 88px;
        display: grid;
        gap: 18px;
    }

        .legal-body aside nav, .legal-help, .legal-content {
            border: 1px solid #dfe6f0;
            border-radius: 13px;
            background: #fff;
            box-shadow: 0 8px 28px rgba(14,42,82,.035);
        }

        .legal-body aside nav {
            padding: 18px 12px;
        }

            .legal-body aside nav h2 {
                margin: 0 8px 12px;
                color: #0a214e;
                font-size: 17px;
            }

            .legal-body aside nav a {
                display: flex;
                min-height: 42px;
                padding: 8px 9px;
                align-items: center;
                gap: 10px;
                color: #173364;
                border-radius: 7px;
                font-size: 13px;
                font-weight: 600;
                line-height: 1.25;
                text-decoration: none;
                transition: .18s ease;
            }

                .legal-body aside nav a svg {
                    width: 19px;
                    min-width: 19px;
                    color: #174bb2;
                }

                .legal-body aside nav a:hover, .legal-body aside nav a.active {
                    color: #075cf2;
                    background: #eaf2ff;
                }

.legal-help {
    display: flex;
    padding: 22px 16px;
    align-items: flex-start;
    gap: 13px;
    background: linear-gradient(145deg,#f8fbff,#f2f6fd);
}

    .legal-help > svg {
        width: 42px;
        min-width: 42px;
        color: #0965f3;
    }

    .legal-help h3 {
        margin: 1px 0 6px;
        font-size: 15px;
    }

    .legal-help p {
        margin: 0 0 14px;
        color: #405273;
        font-size: 12px;
        line-height: 1.5;
    }

    .legal-help a {
        display: inline-flex;
        min-height: 37px;
        padding: 0 16px;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 6px;
        background: #ff4315;
        box-shadow: 0 8px 18px rgba(255,67,21,.2);
        font-size: 12px;
        font-weight: 800;
        text-decoration: none;
    }

.legal-content {
    padding: 7px 26px;
}

    .legal-content > section {
        display: grid;
        padding: 17px 0;
        grid-template-columns: 32px minmax(0,1fr);
        gap: 13px;
        scroll-margin-top: 100px;
        border-bottom: 1px solid #e2e8f0;
    }

        .legal-content > section:last-child {
            border-bottom: 0;
        }

    .legal-content i {
        display: grid;
        width: 30px;
        height: 30px;
        place-items: center;
        color: #ff4617;
        border-radius: 8px;
        background: #fff3ee;
    }

        .legal-content i svg {
            width: 20px;
            height: 20px;
        }

    .legal-content h2 {
        margin: 1px 0 4px;
        color: #0a2559;
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
    }

    .legal-content p, .legal-content li {
        color: #334767;
        font-size: 12.5px;
        line-height: 1.48;
    }

    .legal-content p {
        margin: 0;
    }

    .legal-content ul {
        margin: 6px 0 0;
        padding-left: 19px;
    }

.legal-contact-row {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(3,1fr);
    border: 1px solid #e0e7f1;
    border-radius: 9px;
    overflow: hidden;
}

    .legal-contact-row span {
        display: grid;
        min-height: 70px;
        padding: 12px 14px;
        grid-template-columns: 24px 1fr;
        align-content: center;
        column-gap: 8px;
        border-right: 1px solid #e0e7f1;
        color: #1465f2;
        font-size: 18px;
    }

        .legal-contact-row span:last-child {
            border-right: 0;
        }

        .legal-contact-row span > svg {
            grid-row: 1 / span 2;
            width: 22px;
            height: 22px;
            align-self: center;
        }

    .legal-contact-row b, .legal-contact-row small {
        grid-column: 2;
        color: #142d59;
        font-size: 13px;
    }

    .legal-contact-row small {
        margin-top: 3px;
        color: #3e5272;
        font-weight: 500;
    }

@media(max-width:980px) {
    .legal-hero-grid {
        grid-template-columns: 48% 52%;
    }

    .legal-hero h1 {
        font-size: 40px;
    }

    .legal-hero-grid > img {
        right: -20px;
        width: 59%;
    }

    .legal-body {
        grid-template-columns: 235px minmax(0,1fr);
    }
}

@media(max-width:760px) {
    .legal-hero, .legal-hero-grid {
        min-height: auto;
    }

    .legal-hero-grid {
        display: flex;
        padding: 0;
        flex-direction: column;
    }

        .legal-hero-grid > div {
            width: calc(100% - 36px);
            padding: 38px 0 26px;
        }

    .legal-hero h1 {
        font-size: 37px;
    }

    .legal-hero-grid > img {
        position: relative;
        right: auto;
        width: 100%;
        height: 230px;
        object-position: 70% center;
    }

    .legal-body {
        padding: 22px 18px 36px;
        grid-template-columns: 1fr;
    }

        .legal-body aside {
            position: static;
        }

            .legal-body aside nav {
                display: none;
            }

    .legal-content {
        padding: 5px 17px;
    }

    .legal-contact-row {
        grid-template-columns: 1fr;
    }

        .legal-contact-row span {
            border-right: 0;
            border-bottom: 1px solid #e0e7f1;
        }

            .legal-contact-row span:last-child {
                border-bottom: 0;
            }
}

@media(max-width:480px) {
    .legal-hero h1 {
        font-size: 32px;
    }

    .legal-hero p {
        font-size: 14px;
    }

    .legal-content > section {
        grid-template-columns: 27px minmax(0,1fr);
        gap: 9px;
    }

    .legal-content i {
        width: 27px;
        height: 27px;
    }
}

/* Become-a-partner referral application */
.partner-referral {
    padding: 62px 0;
    background: linear-gradient(120deg,#eef7ff 0%,#f8f8ee 100%);
}

.partner-referral-grid {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(480px,.92fr);
    align-items: center;
    gap: 70px;
}

.partner-referral-copy {
    padding: 20px 0;
}

.partner-referral-badge {
    display: inline-flex;
    min-height: 43px;
    padding: 0 18px;
    align-items: center;
    gap: 9px;
    color: #142849;
    border: 1px solid #d9e7ef;
    border-radius: 24px;
    background: rgba(255,255,255,.85);
    font-size: 14px;
}

    .partner-referral-badge svg {
        width: 22px;
        height: 22px;
        color: #1768e9;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
    }

.partner-referral-copy h2 {
    max-width: 660px;
    margin: 24px 0 18px;
    color: #111b2b;
    font-size: 52px;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

    .partner-referral-copy h2 em {
        color: #ff4818;
        font-style: normal;
    }

.partner-referral-copy p {
    max-width: 660px;
    margin: 0 0 20px;
    color: #33465d;
    font-size: 15px;
    line-height: 1.65;
}

.partner-referral-copy > strong {
    display: block;
    margin-bottom: 26px;
    color: #0a2149;
    font-size: 14px;
}

.partner-referral-copy > a {
    display: inline-flex;
    min-height: 52px;
    padding: 0 11px 0 20px;
    align-items: center;
    gap: 18px;
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(100deg,#ff6412,#ff6412);
    box-shadow: 0 12px 25px rgba(24,105,231,.22);
    font-weight: 700;
    text-decoration: none;
}

    .partner-referral-copy > a i {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        color: #111b2b;
        border-radius: 7px;
        background: #fff;
        font-size: 20px;
        font-style: normal;
    }

.partner-referral-form {
    padding: 28px;
    border: 1px solid #dae2ea;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(19,45,80,.11);
}

    .partner-referral-form header h3 {
        margin: 0 0 7px;
        color: #0b1c3a;
        font-size: 21px;
    }

    .partner-referral-form header p {
        margin: 0 0 22px;
        color: #47566e;
        font-size: 13px;
    }

.referral-tabs {
    display: grid;
    margin: 0 0 22px;
    padding: 5px;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #c9ddf7;
    border-radius: 9px;
}

    .referral-tabs label {
        cursor: pointer;
    }

    .referral-tabs input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .referral-tabs span {
        display: grid;
        min-height: 43px;
        place-items: center;
        color: #263750;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
    }

    .referral-tabs input:checked + span {
        color: #ff4818;
        background: #f2f7f7;
        box-shadow: inset 0 -2px 0 #111b2b;
    }

.referral-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 14px;
}

    .referral-fields > label {
        display: flex;
        min-width: 0;
        color: #12294e;
        flex-direction: column;
        gap: 7px;
        font-size: 13px;
    }

    .referral-fields label b {
        color: #e23f28;
    }

    .referral-fields input, .referral-fields select {
        width: 100%;
        height: 42px;
        padding: 0 12px;
        color: #172a4a;
        border: 1px solid #cfd8e4;
        border-radius: 7px;
        outline: none;
        background: #fff;
        font: inherit;
        font-size: 13px;
    }

        .referral-fields input:focus, .referral-fields select:focus {
            border-color: #2681f4;
            box-shadow: 0 0 0 3px rgba(38,129,244,.1);
        }

        .referral-fields input::placeholder {
            color: #9aa6b8;
        }

.referral-input-icon, .referral-phone > span {
    position: relative;
    display: flex;
}

    .referral-input-icon svg {
        position: absolute;
        z-index: 1;
        top: 13px;
        left: 11px;
        width: 16px;
        height: 16px;
        color: #8491a4;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
    }

    .referral-input-icon input {
        padding-left: 35px;
    }

.referral-phone {
    grid-column: 1 / span 1;
}

    .referral-phone > span i {
        display: grid;
        width: 48px;
        height: 42px;
        place-items: center;
        color: #68778d;
        border: 1px solid #cfd8e4;
        border-right: 0;
        border-radius: 7px 0 0 7px;
        font-style: normal;
    }

    .referral-phone > span input {
        border-radius: 0 7px 7px 0;
    }

.referral-otp {
    align-self: end;
    height: 42px;
    color: #ff6412;
    border: 1px solid #ff6412;
    border-radius: 7px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.referral-submit, .referral-login {
    display: flex;
    width: 100%;
    min-height: 48px;
    margin-top: 22px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}

.referral-submit {
    color: #fff;
    border: 0;
    background: linear-gradient(100deg,#ff6412,#ff6412);
    cursor: pointer;
}

    .referral-submit svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

.referral-login {
    min-height: 44px;
    margin-top: 12px;
    color: #ff6412;
    border: 1px solid #ff6412;
    text-decoration: none;
}

@media(max-width:980px) {
    .partner-referral-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .partner-referral-copy {
        text-align: center;
    }

        .partner-referral-copy h2, .partner-referral-copy p {
            margin-right: auto;
            margin-left: auto;
        }

    .partner-referral-form {
        width: min(620px,100%);
        margin: auto;
    }
}

@media(max-width:600px) {
    .partner-referral {
        padding: 42px 0;
    }

    .partner-referral-copy h2 {
        font-size: 36px;
    }

    .partner-referral-badge {
        font-size: 11px;
    }

    .partner-referral-form {
        padding: 20px 16px;
    }

    .referral-fields {
        grid-template-columns: 1fr;
    }

    .referral-phone {
        grid-column: auto;
    }

    .referral-tabs span {
        padding: 7px;
        text-align: center;
    }
}

/* Become a Partner FAQ */
.partner-faq-section {
    padding: 72px 0 76px;
    background: linear-gradient(180deg,#fff 0%,#fbfcff 100%);
}

.partner-faq-heading {
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

    .partner-faq-heading > span {
        color: #ff4a16;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
    }

    .partner-faq-heading h2 {
        margin: 13px 0 14px;
        color: #071a3e;
        font-size: clamp(34px,4vw,52px);
        line-height: 1.08;
        letter-spacing: -1.8px;
    }

        .partner-faq-heading h2 em {
            color: #0b2b65;
            font-style: normal;
        }

    .partner-faq-heading p {
        margin: 0;
        color: #60708d;
        font-size: 13px;
        line-height: 1.65;
    }

.partner-faq-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: start;
    gap: 10px 28px;
}

.partner-faq-item {
    overflow: hidden;
    border: 1px solid #dce3ed;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s,box-shadow .2s,transform .2s;
}

    .partner-faq-item:hover,
    .partner-faq-item.open {
        border-color: #c8d6e9;
        box-shadow: 0 10px 28px rgba(9,34,72,.07);
    }

    .partner-faq-item.open {
        transform: translateY(-1px);
    }

    .partner-faq-item > button {
        display: flex;
        width: 100%;
        min-height: 64px;
        padding: 16px 19px;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        color: #152442;
        border: 0;
        background: transparent;
        text-align: left;
        font: 700 13px/1.45 Inter,ui-sans-serif,system-ui,sans-serif;
        cursor: pointer;
    }

        .partner-faq-item > button svg {
            width: 20px;
            height: 20px;
            flex: 0 0 20px;
            fill: none;
            stroke: #7c8798;
            stroke-width: 1.7;
            stroke-linecap: round;
            transition: transform .25s,stroke .2s;
        }

    .partner-faq-item.open > button {
        color: #ff4614;
    }

        .partner-faq-item.open > button svg {
            stroke: #ff4614;
            transform: rotate(180deg);
        }

    .partner-faq-item.open .partner-faq-vertical {
        opacity: 0;
    }

.partner-faq-answer {
    padding: 0 54px 18px 19px;
}

    .partner-faq-answer p {
        margin: 0;
        color: #596984;
        font-size: 12px;
        line-height: 1.7;
    }

@media(max-width:760px) {
    .partner-faq-section {
        padding: 56px 0;
    }

    .partner-faq-heading {
        margin-bottom: 30px;
    }

        .partner-faq-heading h2 {
            font-size: 34px;
        }

    .partner-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .partner-faq-heading h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

        .partner-faq-heading h2 br {
            display: none;
        }

    .partner-faq-item > button {
        min-height: 58px;
        padding: 14px 15px;
    }

    .partner-faq-answer {
        padding: 0 45px 16px 15px;
    }
}

/* Partner outline icon set and welcome testimonial replacement. */
.partner-page .partner-reviews {
    display: none !important;
}

.partner-page .audience-grid i {
    color: transparent !important;
    font-size: 0 !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px 30px !important;
}

.partner-page .audience-grid article:nth-child(1) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231766ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 14-10 10 10 10M30 14l10 10-10 10M27 8 21 40'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(2) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231766ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='8' width='32' height='25' rx='3'/%3E%3Cpath d='M5 38h38M19 33l-2 5m12-5 2 5'/%3E%3Ccircle cx='24' cy='19' r='3'/%3E%3Cpath d='M18 28c1-4 3-6 6-6s5 2 6 6'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(3) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='15' r='7'/%3E%3Cpath d='M10 42v-5c0-8 5-14 14-14s14 6 14 14v5Z'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(4) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%237b24d1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 25 26-10v20L6 28Zm26-5 9-7m-9 17 10 5M11 29l4 11h7l-5-14'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(5) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23099457' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 20h36L37 9H11Zm3 0v20h30V20M17 40V29h14v11M6 20c0 5 8 5 9 0 1 5 8 5 9 0 1 5 8 5 9 0 1 5 8 5 9 0'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(6) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231766ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='13' height='13' rx='2'/%3E%3Crect x='28' y='7' width='13' height='13' rx='2'/%3E%3Crect x='7' y='28' width='13' height='13' rx='2'/%3E%3Crect x='28' y='28' width='13' height='13' rx='2'/%3E%3C/svg%3E") !important;
}

.partner-page .step-grid article > svg {
    border-radius: 50%;
    background-color: #fff0e9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 38px;
    stroke: transparent !important;
}

    .partner-page .step-grid article > svg > * {
        display: none;
    }

.partner-page .step-grid article:nth-child(1) > svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='5' width='26' height='36' rx='3'/%3E%3Cpath d='M14 14h14m-14 7h14m-14 7h9M35 29l7 7m-7 0 7-7M38.5 29v12'/%3E%3C/svg%3E");
}

.partner-page .step-grid article:nth-child(2) > svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m19 29-4 4a8 8 0 0 1-11-11l8-8a8 8 0 0 1 11 0M29 19l4-4a8 8 0 0 1 11 11l-8 8a8 8 0 0 1-11 0M16 32l16-16'/%3E%3C/svg%3E");
}

.partner-page .step-grid article:nth-child(3) > svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 14h32v27H8zM13 9h22v5M29 23h15v10H29a5 5 0 0 1 0-10Z'/%3E%3Ccircle cx='34' cy='28' r='1'/%3E%3C/svg%3E");
}

.partner-page .earning-stats article {
    display: grid;
    width: 190px;
    padding: 0 18px;
    grid-template-columns: 64px minmax(0,1fr);
    grid-template-rows: 1fr 1fr;
    align-items: center;
    column-gap: 12px;
}

.partner-page .earning-stats i {
    grid-row: 1 / 3;
    margin: 0;
    color: transparent;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.partner-page .earning-stats b {
    align-self: end;
    text-align: left;
}

.partner-page .earning-stats small {
    align-self: start;
    margin-top: 4px;
    text-align: left;
}

.partner-page .earning-stats article:nth-child(1) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='15' r='6'/%3E%3Ccircle cx='32' cy='16' r='5'/%3E%3Cpath d='M6 39v-4c0-8 5-13 12-13s12 5 12 13v4ZM29 25c7 0 12 4 12 11v3H30'/%3E%3C/svg%3E");
}

.partner-page .earning-stats article:nth-child(2) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 13h17m-17 7h17m-15-7c12 0 12 14 0 14l13 12M9 12a19 19 0 0 1 31-2m-1-5 1 5-5 1M39 36A19 19 0 0 1 8 38m0 5v-5l5-1'/%3E%3C/svg%3E");
}

.partner-page .earning-stats article:nth-child(3) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 37 12-14 8 7 14-18M32 12h9v9M8 18l8-7 8 8'/%3E%3C/svg%3E");
}

@media(max-width:760px) {
    .partner-page .earning-stats article {
        width: 33.333%;
        padding: 0 8px;
        grid-template-columns: 50px minmax(0,1fr);
        column-gap: 7px;
    }

    .partner-page .earning-stats i {
        width: 48px;
        height: 48px;
        background-size: 31px 31px;
    }
}

@media(max-width:480px) {
    .partner-page .earning-stats {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

        .partner-page .earning-stats article {
            width: 100%;
            min-height: 60px;
            border-left: 0;
        }
}

/* Partner page refinements: kept in the shared core stylesheet. */
.partner-page .partner-visual > img {
    object-position: 90% center;
    -webkit-mask-image: linear-gradient(to right,transparent 0,#000 10%,#000 100%);
    mask-image: linear-gradient(to right,transparent 0,#000 10%,#000 100%);
}

.partner-page .partner-hero {
    background: linear-gradient(100deg,#fff 0%,#f9fbff 46%,#eef4ff 100%);
}

.partner-page .earning-card,
.partner-page .trust-card {
    display: none;
}

.partner-page .earning-card {
    left: -105px;
}

.partner-page .benefit-cards svg,
.partner-page .step-grid svg {
    overflow: visible;
    color: #ff4515;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

    .partner-page .benefit-cards svg use,
    .partner-page .step-grid svg path,
    .partner-page .step-grid svg circle {
        fill: none !important;
        stroke: currentColor !important;
        vector-effect: non-scaling-stroke;
    }

.partner-page .benefit-cards article:nth-child(2) svg {
    color: #1766ff;
}

.partner-page .benefit-cards article:nth-child(3) svg {
    color: #7b24d1;
}

.partner-page .benefit-cards article:nth-child(4) svg {
    color: #079447;
}

.partner-page .handshake {
    min-height: 450px;
    background: url('../img/partner-handshake.webp') center / contain no-repeat;
}

    .partner-page .handshake svg {
        display: none;
    }

.partner-page .partner-reviews {
    width: 100%;
    max-width: none;
    padding: 64px max(20px,calc((100vw - 1240px)/2)) 58px;
    background: #fff;
}

    .partner-page .partner-reviews .review-grid {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 19px;
        max-width: 1240px;
        margin: 22px auto 0;
    }

        .partner-page .partner-reviews .review-grid > article {
            min-height: 0;
            padding: 27px;
            border: 1px solid #e1e8f1;
            border-radius: 17px;
            background: #fff;
            box-shadow: 0 10px 29px rgba(15,35,65,.06);
        }

        .partner-page .partner-reviews .review-grid p {
            min-height: 92px;
            margin: 0 0 15px;
            color: #36455b;
            font-size: 14px;
            line-height: 1.7;
        }

        .partner-page .partner-reviews .review-grid footer > i {
            background: linear-gradient(145deg,#0b2d5c,#1268ef);
        }

.partner-page .partner-final {
    display: grid;
    width: min(1240px,calc(100% - 40px));
    min-height: 175px;
    margin: 35px auto 68px;
    padding: 24px 34px;
    grid-template-columns: 150px minmax(0,1fr) 164px 155px;
    align-items: center;
    gap: 24px;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(110deg,#061b3c 0%,#0c356f 100%);
    box-shadow: 0 18px 42px rgba(6,26,53,.18);
}

    .partner-page .partner-final > .rd-rocket-photo {
        width: 138px;
        height: 125px;
        object-fit: contain;
    }

    .partner-page .partner-final h2 {
        margin: 6px 0;
        color: #fff;
        font-size: 24px;
    }

    .partner-page .partner-final p {
        max-width: 600px;
        margin: 0;
        color: #bdcbe0;
        font-size: 12px;
        line-height: 1.65;
    }

    .partner-page .partner-final > a {
        width: 164px;
        min-width: 0;
        height: 43px;
        padding: 0 16px;
        border-radius: 8px;
    }

        .partner-page .partner-final > a.talk {
            width: 155px;
            color: #fff;
            border-color: rgba(255,255,255,.4);
        }

@media(max-width:900px) {
    .partner-page .partner-final {
        grid-template-columns: 90px 1fr;
    }

        .partner-page .partner-final > a {
            grid-column: auto;
        }
}

@media(max-width:760px) {
    .partner-page .earning-card {
        left: 20px;
    }

    .partner-page .handshake {
        min-height: 330px;
    }

    .partner-page .partner-reviews .review-grid {
        grid-template-columns: 1fr;
    }

    .partner-page .partner-final {
        grid-template-columns: 80px 1fr;
    }
}

@media(max-width:480px) {
    .partner-page .partner-final {
        width: calc(100% - 28px);
        padding: 25px 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

        .partner-page .partner-final > .rd-rocket-photo {
            margin: auto;
        }

        .partner-page .partner-final > a {
            width: 100%;
        }
}

/* Partner hero using the welcome-page conversion pattern. */
.partner-page .partner-hero-grid {
    grid-template-columns: minmax(500px,46%) minmax(0,54%);
}

.partner-page .partner-copy {
    max-width: 600px;
    padding: 54px 34px 42px 0;
}

    .partner-page .partner-copy > span {
        display: inline-flex;
        min-height: 34px;
        padding: 0 17px;
        align-items: center;
        color: #071a3e;
        border: 1px solid #cbdedc;
        border-radius: 999px;
        background: rgba(255,255,255,.8);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0;
    }

    .partner-page .partner-copy h1 {
        margin: 27px 0 17px;
        color: #071a3e;
        font-size: clamp(46px, 5.1vw, 55px);
        line-height: .96;
        letter-spacing: -3px;
    }

        .partner-page .partner-copy h1 em {
            color: #ff4a16;
        }

    .partner-page .partner-copy > p {
        max-width: 535px;
        color: #314365;
        font-size: 17px;
        line-height: 1.55;
    }

    .partner-page .partner-copy ul {
        display: flex;
        margin: 22px 0;
        flex-wrap: wrap;
        gap: 9px;
    }

    .partner-page .partner-copy li {
        margin: 0;
        min-height: 34px;
        padding: 0 14px 0 36px;
        display: flex;
        align-items: center;
        color: #102143;
        border: 1px solid #d5e0e8;
        border-radius: 999px;
        background: rgba(255,255,255,.82);
        font-size: 11px;
        font-weight: 700;
    }

        .partner-page .partner-copy li::before {
            left: 13px;
            width: 15px;
            height: 15px;
            color: #071a3e;
            background: transparent;
            font-size: 10px;
        }

.partner-page .partner-actions {
    display: grid;
    min-height: 66px;
    padding: 9px;
    grid-template-columns: 1fr 165px;
    align-items: center;
    gap: 10px;
    border: 1px solid #d7e1ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(18,40,74,.09);
}

    .partner-page .partner-actions > a:first-child {
        grid-column: 2;
        width: 100%;
        height: 48px;
    }

    .partner-page .partner-actions > a.watch {
        grid-column: 1;
        grid-row: 1;
        width: auto;
        justify-self: start;
        color: #52627d;
        border: 0;
        box-shadow: none;
    }

.partner-page .partner-explore {
    display: flex;
    margin-top: 17px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #637493;
    font-size: 11px;
}

    .partner-page .partner-explore a {
        color: #071a3e;
        font-weight: 800;
        text-decoration: none;
    }

.partner-page .partner-hero-proof {
    display: flex;
    margin-top: 26px;
}

    .partner-page .partner-hero-proof > div {
        min-width: 132px;
        padding: 0 21px;
        border-left: 1px solid #ced9e3;
    }

        .partner-page .partner-hero-proof > div:first-child {
            padding-left: 0;
            border-left: 0;
        }

    .partner-page .partner-hero-proof strong,
    .partner-page .partner-hero-proof span {
        display: block;
    }

    .partner-page .partner-hero-proof strong {
        color: #071a3e;
        font-size: 20px;
    }

    .partner-page .partner-hero-proof span {
        margin-top: 3px;
        color: #71819b;
        font-size: 10px;
    }

@media(max-width:900px) {
    .partner-page .partner-hero-grid {
        grid-template-columns: 1fr;
    }

    .partner-page .partner-copy {
        max-width: 680px;
        margin: auto;
        padding-right: 0;
    }
}

@media(max-width:520px) {
    .partner-page .partner-copy h1 {
        font-size: 48px;
    }

    .partner-page .partner-actions {
        grid-template-columns: 1fr;
    }

        .partner-page .partner-actions > a:first-child,
        .partner-page .partner-actions > a.watch {
            grid-column: 1;
            grid-row: auto;
            width: 100%;
            justify-self: stretch;
        }

    .partner-page .partner-hero-proof {
        justify-content: center;
    }

        .partner-page .partner-hero-proof > div {
            min-width: 0;
            padding: 0 11px;
        }

        .partner-page .partner-hero-proof strong {
            font-size: 16px;
        }
}

/* CONSOLIDATED CONTACT PAGE CSS */
* {
    box-sizing: border-box
}

.contact-page {
    margin: 0;
    color: #061747;
    background: #fff;
    font-family: Inter,"Segoe UI",Arial,sans-serif
}

    .contact-page main {
        overflow: hidden
    }

.contact-nav {
    display: flex;
    height: 78px;
    padding: 0 max(36px,calc((100vw - 1180px)/2));
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid #e4e9f2;
    background: #fff
}

.contact-logo {
    width: 194px;
    margin-right: auto
}

    .contact-logo svg {
        display: block;
        width: 100%;
        height: auto
    }

    .contact-logo text {
        fill: #202124;
        font: 700 37px Arial,sans-serif;
        letter-spacing: -2px
    }

    .contact-logo tspan {
        fill: #071752;
        font-weight: 500
    }

    .contact-logo circle {
        fill: #ff3d0d
    }

.contact-nav nav {
    display: flex;
    align-items: center;
    gap: 43px
}

    .contact-nav nav a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #061747;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap
    }

        .contact-nav nav a.active {
            color: #ff3b0d
        }

    .contact-nav nav svg {
        width: 11px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2
    }

.contact-partner-btn, .contact-hero-actions > a, .contact-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(100deg,#ff3410,#ff5118);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none
}

.contact-partner-btn {
    width: 172px;
    height: 48px;
    margin-left: auto;
    font-size: 13px
}

.contact-menu-toggle {
    display: none
}

.contact-hero {
    position: relative;
    display: grid;
    min-height: 570px;
    padding-left: max(44px,calc((100vw - 1180px)/2));
    grid-template-columns: minmax(470px,1fr) minmax(510px,1fr);
    border-bottom: 1px solid #e5eaf3;
    background: radial-gradient(circle at 65% 30%,#f2f6ff,transparent 36%),#fff
}

    .contact-hero:after {
        position: absolute;
        right: -25px;
        bottom: 0;
        width: 220px;
        height: 210px;
        content: "";
        background: linear-gradient(127deg,transparent 0 54%,#ff3c0c 54% 59%,#06265b 59%);
        clip-path: polygon(100% 0,100% 100%,0 100%)
    }

.contact-hero-copy {
    position: relative;
    z-index: 2;
    padding: 75px 0 44px
}

.contact-kicker {
    color: #ff3b0d;
    font-size: 16px;
    font-weight: 700
}

.contact-hero h1 {
    margin: 18px 0 18px;
    color: #061747;
    font-size: 54px;
    line-height: 1.06;
    letter-spacing: -1.8px
}

    .contact-hero h1 em {
        color: #ff3c11;
        font-style: normal
    }

.contact-hero-copy > p {
    max-width: 510px;
    margin: 0;
    color: #13234e;
    font-size: 16px;
    line-height: 1.65
}

.contact-promises {
    display: flex;
    margin-top: 45px;
    gap: 30px
}

    .contact-promises article {
        display: flex;
        min-width: 145px;
        align-items: flex-start;
        gap: 11px
    }

    .contact-promises svg {
        width: 37px;
        height: 37px;
        flex: 0 0 37px;
        fill: none;
        stroke: #ff3d10;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .contact-promises b {
        display: block;
        margin: 2px 0 7px;
        font-size: 12px
    }

    .contact-promises small {
        color: #23345c;
        font-size: 12px;
        line-height: 1.55
    }

.contact-hero-actions {
    display: flex;
    margin-top: 36px;
    gap: 20px
}

    .contact-hero-actions > a {
        width: 174px;
        height: 50px;
        font-size: 13px;
        gap: 24px
    }

    .contact-hero-actions .watch {
        width: 166px;
        gap: 8px;
        color: #071747;
        border: 1px solid #8290b3;
        background: #fff
    }

    .contact-hero-actions svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8
    }

    .contact-hero-actions .watch path {
        fill: currentColor;
        stroke: none
    }

.contact-hero-art {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end
}

    .contact-hero-art > svg {
        display: block;
        width: 100%;
        max-height: 570px
    }

.contact-main {
    display: grid;
    max-width: 1180px;
    margin: 26px auto 20px;
    padding: 0 22px;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.contact-form-card, .contact-info-card {
    padding: 27px;
    border: 1px solid #dbe2ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(17,39,82,.035)
}

    .contact-form-card h2, .contact-info-card h2 {
        margin: 0 0 12px;
        color: #061747;
        font-size: 25px
    }

    .contact-form-card > p, .contact-info-card > p {
        margin: 0 0 32px;
        color: #314166;
        font-size: 13px
    }

    .contact-form-card > label, .contact-form-row label {
        display: block;
        margin-bottom: 18px;
        color: #071747;
        font-size: 13px;
        font-weight: 600
    }

    .contact-form-card label > div {
        display: flex;
        height: 46px;
        margin-top: 9px;
        padding: 0 13px;
        align-items: center;
        gap: 10px;
        border: 1px solid #d5ddeb;
        border-radius: 7px
    }

    .contact-form-card label svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #4c5c7e;
        stroke-width: 1.7
    }

    .contact-form-card input {
        width: 100%;
        height: 100%;
        padding: 0;
        color: #14234d;
        border: 0;
        outline: 0;
        background: transparent;
        font: 13px inherit
    }

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.contact-form-card select, .contact-form-card textarea {
    width: 100%;
    margin-top: 9px;
    padding: 0 13px;
    color: #475676;
    border: 1px solid #d5ddeb;
    border-radius: 7px;
    outline: 0;
    background: #fff;
    font: 13px inherit
}

.contact-form-card select {
    height: 46px
}

.contact-form-card textarea {
    height: 83px;
    padding-top: 14px;
    resize: vertical
}

.contact-form-card button {
    display: flex;
    width: 100%;
    height: 49px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(100deg,#ff3410,#ff5118);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

    .contact-form-card button svg {
        width: 19px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.8
    }

.contact-form-card label > small {
    display: block;
    margin-top: 5px;
    color: #d52d19
}

.contact-success, .contact-error {
    margin: -12px 0 20px;
    padding: 11px 13px;
    border-radius: 6px;
    font-size: 12px
}

.contact-success {
    color: #126b39;
    background: #e9f8ef
}

.contact-error {
    color: #a7271b;
    background: #fff0ee
}

.contact-info-card {
    padding-left: 28px
}

    .contact-info-card article {
        display: flex;
        min-height: 117px;
        padding: 17px 0;
        align-items: center;
        gap: 22px;
        border-bottom: 1px solid #e1e6ef
    }

        .contact-info-card article:last-child {
            border: 0
        }

        .contact-info-card article > span {
            display: grid;
            width: 72px;
            height: 72px;
            flex: 0 0 72px;
            place-items: center;
            border-radius: 10px
        }

            .contact-info-card article > span svg {
                width: 38px;
                height: 38px;
                fill: none;
                stroke: currentColor;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round
            }

    .contact-info-card .phone {
        color: #ff3b0d;
        background: #fff0eb
    }

    .contact-info-card .email {
        color: #1260ff;
        background: #edf4ff
    }

    .contact-info-card .address {
        color: #1caf60;
        background: #e9f8ef
    }

    .contact-info-card .web {
        color: #6c34ff;
        background: #f2ecff
    }

    .contact-info-card article div {
        display: flex;
        flex-direction: column;
        gap: 5px;
        color: #0a1947;
        font-size: 14px
    }

    .contact-info-card article b {
        font-size: 15px
    }

    .contact-info-card article strong {
        font-size: 14px;
        font-weight: 600;
    }

    .contact-info-card article small {
        color: #354466;
        font-size: 13px;
        line-height: 1.55
    }

.contact-cta {
    display: flex;
    max-width: 1136px;
    min-height: 184px;
    margin: 0 auto 26px;
    padding: 10px 40px;
    align-items: center;
    gap: 55px;
    border-radius: 12px;
    background: radial-gradient(circle at 15% 60%,rgba(255,255,255,.95),transparent 18%),linear-gradient(100deg,#e8f0ff,#f4f7ff)
}

    .contact-cta .rocket {
        width: 190px;
        height: 155px
    }

    .contact-cta h2 {
        margin: 0 0 10px;
        font-size: 24px
    }

    .contact-cta p {
        margin: 0 0 20px;
        color: #13234e;
        font-size: 14px;
        line-height: 1.55
    }

    .contact-cta > div > div {
        display: flex;
        gap: 18px
    }

    .contact-cta a {
        width: 180px;
        height: 48px;
        font-size: 13px;
        gap: 23px
    }

        .contact-cta a.outline {
            width: 188px;
            color: #071747;
            border: 1px solid #164eac;
            background: transparent
        }

.contact-page .modern-footer {
    padding-top: 28px
}

.contact-page .modern-footer-grid {
    max-width: 1180px
}

.contact-page .modern-footer-bottom {
    max-width: 1180px
}

@media(max-width:1050px) {
    .contact-nav {
        padding: 0 24px
    }

        .contact-nav nav {
            gap: 20px
        }

    .contact-partner-btn {
        width: 145px
    }

    .contact-hero {
        padding-left: 35px;
        grid-template-columns: 1fr 1fr
    }

        .contact-hero h1 {
            font-size: 45px
        }

    .contact-promises {
        gap: 12px
    }

        .contact-promises article {
            min-width: 130px
        }

    .contact-main {
        padding: 0 25px
    }

    .contact-cta {
        margin-left: 25px;
        margin-right: 25px
    }

    .contact-page .footer-legal-links {
        gap: 9px
    }
}

@media(max-width:800px) {
    .contact-nav {
        height: 68px
    }

    .contact-logo {
        width: 165px
    }

    .contact-menu-toggle {
        display: flex;
        width: 42px;
        height: 38px;
        margin-left: auto;
        padding: 8px;
        flex-direction: column;
        justify-content: space-around;
        border: 0;
        background: transparent
    }

        .contact-menu-toggle span {
            height: 2px;
            background: #071747
        }

    .contact-nav nav {
        position: absolute;
        z-index: 20;
        top: 68px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        align-items: center;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,.1)
    }

        .contact-nav nav.open {
            display: flex
        }

    .contact-partner-btn {
        display: none
    }

    .contact-hero {
        grid-template-columns: 1fr;
        padding: 0 28px
    }

    .contact-hero-copy {
        padding-top: 50px
    }

    .contact-hero-art {
        min-height: 420px
    }

        .contact-hero-art > svg {
            max-height: 460px
        }

    .contact-main {
        grid-template-columns: 1fr
    }

    .contact-cta {
        padding: 20px;
        gap: 20px
    }

        .contact-cta .rocket {
            width: 140px
        }

        .contact-cta h2 {
            font-size: 20px
        }
}

@media(max-width:520px) {
    .contact-nav {
        padding: 0 17px
    }

    .contact-logo {
        width: 150px
    }

    .contact-hero {
        padding: 0 20px
    }

    .contact-hero-copy {
        padding-top: 38px
    }

    .contact-kicker {
        font-size: 14px
    }

    .contact-hero h1 {
        font-size: 39px
    }

    .contact-hero-copy > p {
        font-size: 14px
    }

    .contact-promises {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 30px
    }

        .contact-promises article:last-child {
            grid-column: 1/-1
        }

    .contact-hero-actions {
        gap: 10px
    }

        .contact-hero-actions > a {
            width: 150px
        }

    .contact-hero-art {
        min-height: 330px;
        margin: 0 -20px
    }

    .contact-main {
        padding: 0 14px
    }

    .contact-form-card, .contact-info-card {
        padding: 21px
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contact-info-card article {
        gap: 14px
    }

        .contact-info-card article > span {
            width: 55px;
            height: 55px;
            flex-basis: 55px
        }

            .contact-info-card article > span svg {
                width: 30px
            }

    .contact-cta {
        margin: 0 14px 20px;
        padding: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 0
    }

        .contact-cta .rocket {
            align-self: center
        }

        .contact-cta > div > div {
            flex-direction: column
        }

    .contact-page .modern-footer-bottom {
        font-size: 11px
    }
}

/* CONSOLIDATED CONTACT OVERRIDES */
.contact-hero-art {
    min-height: 100%;
    background: url('../img/contact-us.jpg') right center / cover no-repeat;
}

.contact-hero::after {
    display: none;
}

.contact-hero-art > svg {
    display: none;
}

.contact-cta {
    display: grid;
    max-width: 1136px;
    min-height: 174px;
    margin: 42px auto 34px;
    padding: 22px 44px;
    align-items: center;
    grid-template-columns: 125px 1fr;
    gap: 0;
    border-radius: 16px;
    background: linear-gradient(110deg,#061a3d,#0b3268);
    box-shadow: 0 18px 40px rgba(5,25,60,.16);
}

    .contact-cta .rocket {
        width: 125px;
        height: 125px;
    }

    .contact-cta > div {
        display: grid;
        align-items: center;
        grid-template-columns: 1fr auto;
        column-gap: 40px;
    }

    .contact-cta h2 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 24px;
    }

    .contact-cta p {
        margin: 0;
        color: #c9d8ec;
        font-size: 13px;
        line-height: 1.55;
    }

    .contact-cta > div > div {
        display: flex;
        grid-column: 2;
        grid-row: 1 / 3;
        gap: 12px;
    }

    .contact-cta a {
        width: 148px;
        height: 46px;
        font-size: 13px;
        gap: 18px;
    }

        .contact-cta a.outline {
            width: 128px;
            color: #fff;
            border: 1px solid #6b8bb8;
            background: transparent;
        }

@media (max-width: 800px) {
    .contact-cta {
        margin-right: 25px;
        margin-left: 25px;
        padding: 25px;
        grid-template-columns: 105px 1fr;
    }

        .contact-cta .rocket {
            width: 105px;
        }

        .contact-cta > div {
            display: block;
        }

            .contact-cta > div > div {
                margin-top: 18px;
            }

        .contact-cta h2 {
            font-size: 20px;
        }
}

@media (max-width: 520px) {
    .contact-hero-art {
        min-height: 345px;
        background-size: cover;
    }

    .contact-cta {
        margin: 28px 14px 20px;
        padding: 24px;
        grid-template-columns: 1fr;
    }

        .contact-cta .rocket {
            justify-self: center;
        }

        .contact-cta > div > div {
            flex-direction: column;
        }
}

/* CONSOLIDATED PARTNER PAGE CSS */
* {
    box-sizing: border-box
}

.partner-page {
    margin: 0;
    color: #061747;
    background: #fff;
    font-family: Inter,"Segoe UI",Arial,sans-serif
}

    .partner-page main {
        overflow: hidden
    }

.partner-shell {
    width: min(1180px,calc(100% - 44px));
    margin-right: auto;
    margin-left: auto
}

.partner-page .site-nav nav a.active {
    color: #ff4a13
}

.partner-hero {
    border-bottom: 1px solid #e6ebf3;
    background: linear-gradient(110deg,#fff 0 42%,#f5f8ff 100%)
}

.partner-hero-grid {
    display: grid;
    min-height: 625px;
    grid-template-columns: 42% 58%;
    align-items: center
}

.partner-copy {
    position: relative;
    z-index: 3;
    padding: 42px 0
}

    .partner-copy > span, .section-kicker {
        color: #ff3f13;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .5px
    }

    .partner-copy h1 {
        margin: 4px 0 14px;
        color: #131415;
        font-size: 70px;
        line-height: .92;
        letter-spacing: -3px
    }

        .partner-copy h1 em {
            color: #ff3b10;
            font-style: normal
        }

    .partner-copy > p {
        margin: 0;
        color: #14234e;
        font-size: 20px;
        line-height: 1.45
    }

        .partner-copy > p b {
            color: #ff3b10
        }

    .partner-copy ul {
        margin: 19px 0 25px;
        padding: 0;
        list-style: none
    }

    .partner-copy li {
        position: relative;
        margin: 10px 0;
        padding-left: 28px;
        font-size: 14px
    }

        .partner-copy li:before {
            position: absolute;
            left: 0;
            display: grid;
            width: 17px;
            height: 17px;
            content: "✓";
            place-items: center;
            color: #fff;
            border-radius: 50%;
            background: #ff4717;
            font-size: 11px;
            font-weight: 800
        }

.partner-actions {
    display: flex;
    gap: 18px
}

    .partner-actions > a, .partner-final > a {
        display: flex;
        height: 48px;
        padding: 0 22px;
        align-items: center;
        justify-content: center;
        gap: 25px;
        color: #fff;
        border-radius: 7px;
        background: linear-gradient(100deg,#ff3511,#ff5719);
        font-size: 13px;
        font-weight: 800;
        text-decoration: none
    }

    .partner-actions .watch {
        color: #071747;
        border: 1px solid #7890bc;
        background: #fff
    }

    .partner-actions svg {
        width: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8
    }

    .partner-actions .watch path {
        fill: currentColor;
        stroke: none
    }

.partner-visual {
    position: relative;
    height: 625px;
    margin-right: calc((1180px - 100vw)/2);
    overflow: visible
}

    .partner-visual > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 58% center
    }

.earning-card, .trust-card {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e7f2;
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 12px 32px rgba(10,35,77,.12)
}

.earning-card {
    bottom: 32px;
    left: -55px;
    width: 210px;
    padding: 24px
}

    .earning-card b {
        font-size: 14px
    }

    .earning-card strong {
        margin: 18px 0 7px;
        font-size: 24px
    }

    .earning-card small {
        color: #079450;
        font-size: 11px;
        font-weight: 700
    }

    .earning-card svg {
        width: 100%;
        margin-top: 15px
    }

.trust-card {
    right: 15px;
    bottom: 25px;
    width: 155px;
    padding: 17px;
    align-items: center
}

    .trust-card svg {
        width: 48px
    }

    .trust-card b {
        margin: 8px 0;
        color: #d53a1b
    }

    .trust-card strong {
        font-size: 25px
    }

    .trust-card small {
        margin-top: 5px;
        font-weight: 700
    }

.partner-benefits {
    padding: 30px 0 48px
}

.partner-title {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
    gap: 18px
}

    .partner-title span {
        width: 34px;
        height: 2px;
        background: #18325d
    }

    .partner-title h2 {
        margin: 0;
        font-size: 18px
    }

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 17px
}

    .benefit-cards article {
        min-height: 218px;
        padding: 25px 17px;
        text-align: center;
        border: 1px solid #e0e6ef;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 7px 21px rgba(10,34,77,.05)
    }

    .benefit-cards svg {
        width: 52px;
        height: 52px;
        fill: none;
        stroke: #ff4515;
        stroke-width: 2
    }

    .benefit-cards article:nth-child(2) svg {
        stroke: #1766ff
    }

    .benefit-cards article:nth-child(3) svg {
        stroke: #7b24d1
    }

    .benefit-cards article:nth-child(4) svg {
        stroke: #079447
    }

    .benefit-cards h3 {
        margin: 13px 0 10px;
        font-size: 15px
    }

    .benefit-cards p {
        margin: 0;
        color: #304064;
        font-size: 12px;
        line-height: 1.65
    }

.partner-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.partner-audience {
    display: grid;
    padding: 25px 0 50px;
    grid-template-columns: 43% 57%;
    align-items: center
}

.handshake svg {
    display: block;
    width: 95%
}

.partner-audience h2, .partner-steps h2, .partner-reviews h2 {
    margin: 5px 0 6px;
    font-size: 30px
}

.partner-audience > div > p {
    margin: 0 0 25px
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 25px
}

    .audience-grid article {
        display: flex;
        align-items: center;
        gap: 13px
    }

    .audience-grid i {
        display: grid;
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
        place-items: center;
        color: #1765ff;
        border-radius: 9px;
        background: #edf4ff;
        font-size: 22px;
        font-style: normal
    }

    .audience-grid article:nth-child(3n+2) i {
        color: #6f27db;
        background: #f3edff
    }

    .audience-grid article:nth-child(3n) i {
        color: #ff4714;
        background: #fff0eb
    }

    .audience-grid b, .audience-grid small {
        display: block
    }

    .audience-grid b {
        margin-bottom: 6px;
        font-size: 13px
    }

    .audience-grid small {
        color: #304064;
        font-size: 11px;
        line-height: 1.5
    }

.partner-steps {
    padding: 25px 0 30px;
    text-align: center
}

    .partner-steps h2 {
        margin-bottom: 22px
    }

.step-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0
}

    .step-grid article {
        position: relative;
        display: flex;
        min-height: 135px;
        padding: 25px;
        align-items: center;
        gap: 17px;
        text-align: left;
        border: 1px solid #dfe5ef;
        border-radius: 12px
    }

        .step-grid article + article:before {
            position: absolute;
            left: -17px;
            content: "→";
            color: #ff4314;
            font-size: 28px
        }

        .step-grid article > i {
            position: absolute;
            bottom: -9px;
            left: 12px;
            display: grid;
            width: 30px;
            height: 30px;
            place-items: center;
            color: #fff;
            border-radius: 50%;
            background: #ff4314;
            font-style: normal;
            font-weight: 800
        }

    .step-grid svg {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
        fill: none;
        stroke: #ff4818;
        stroke-width: 2
    }

    .step-grid h3 {
        margin: 0 0 8px;
        font-size: 14px
    }

    .step-grid p {
        margin: 0;
        color: #304064;
        font-size: 11px;
        line-height: 1.55
    }

.earning-banner {
    display: flex;
    min-height: 187px;
    margin-top: 25px;
    padding: 30px 45px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(105deg,#06193b,#0b3068)
}

    .earning-banner span {
        color: #ff5019;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px
    }

    .earning-banner h2 {
        margin: 15px 0 10px;
        font-size: 26px
    }

    .earning-banner p {
        margin: 0;
        color: #d3dfef;
        font-size: 12px;
        line-height: 1.7
    }

.earning-stats {
    display: flex
}

    .earning-stats article {
        display: flex;
        width: 155px;
        align-items: center;
        flex-direction: column;
        border-left: 1px solid rgba(255,255,255,.35)
    }

    .earning-stats i {
        display: grid;
        width: 62px;
        height: 62px;
        margin-bottom: 8px;
        place-items: center;
        border-radius: 50%;
        background: #174fe0;
        font-size: 28px;
        font-style: normal
    }

    .earning-stats article:nth-child(2) i {
        background: #0d9b58
    }

    .earning-stats article:nth-child(3) i {
        background: #ff7517
    }

    .earning-stats b {
        font-size: 15px
    }

    .earning-stats small {
        margin-top: 4px;
        color: #d7e2f2;
        font-size: 10px
    }

.partner-reviews {
    padding: 50px 0 38px;
    text-align: center
}

.review-grid {
    display: grid;
    margin-top: 22px;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    text-align: left
}

    .review-grid > article {
        min-height: 210px;
        padding: 25px;
        border: 1px solid #dfe5ee;
        border-radius: 14px
    }

    .review-grid p {
        min-height: 75px;
        margin: 0;
        color: #25365c;
        font-size: 12px;
        line-height: 1.65
    }

.stars {
    margin: 12px 0;
    color: #ff7615;
    letter-spacing: 3px
}

.review-grid footer {
    display: flex;
    align-items: center;
    gap: 12px
}

    .review-grid footer > i {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        color: #fff;
        border-radius: 50%;
        background: #0a2b5c;
        font-style: normal;
        font-weight: 800
    }

    .review-grid footer b, .review-grid footer small {
        display: block
    }

    .review-grid footer b {
        font-size: 12px
    }

    .review-grid footer small {
        margin-top: 5px;
        color: #64718b;
        font-size: 10px
    }

.partner-final {
    display: flex;
    min-height: 150px;
    margin-bottom: 35px;
    padding: 15px 35px;
    align-items: center;
    gap: 30px;
    border-radius: 14px;
    background: linear-gradient(100deg,#eaf2ff,#f4f7ff)
}

    .partner-final svg {
        width: 135px
    }

    .partner-final > div {
        margin-right: auto
    }

    .partner-final h2 {
        margin: 0 0 8px;
        font-size: 25px
    }

    .partner-final p {
        max-width: 510px;
        margin: 0;
        color: #24365d;
        font-size: 12px;
        line-height: 1.6
    }

    .partner-final > a {
        min-width: 185px
    }

        .partner-final > a.talk {
            min-width: 125px;
            color: #071747;
            border: 1px solid #8295ba;
            background: transparent
        }

.partner-page .modern-footer-grid, .partner-page .modern-footer-bottom {
    max-width: 1180px
}

@media(max-width:1000px) {
    .partner-hero-grid {
        grid-template-columns: 46% 54%
    }

    .partner-copy h1 {
        font-size: 58px
    }

    .partner-visual {
        margin-right: -22px
    }

    .benefit-cards {
        grid-template-columns: repeat(3,1fr)
    }

    .partner-audience {
        grid-template-columns: 38% 62%
    }

    .earning-banner {
        padding: 25px
    }

    .earning-stats article {
        width: 125px
    }

    .partner-final {
        flex-wrap: wrap
    }

        .partner-final > div {
            width: calc(100% - 180px)
        }
}

@media(max-width:760px) {
    .partner-hero-grid {
        grid-template-columns: 1fr
    }

    .partner-copy {
        text-align: center
    }

        .partner-copy h1 {
            font-size: 55px
        }

        .partner-copy ul {
            display: inline-block;
            text-align: left
        }

    .partner-actions {
        justify-content: center
    }

    .partner-visual {
        height: 500px;
        margin: 0 -22px
    }

    .earning-card {
        left: 20px
    }

    .benefit-cards {
        grid-template-columns: 1fr 1fr
    }

    .partner-audience {
        grid-template-columns: 1fr
    }

    .handshake svg {
        max-width: 480px;
        margin: auto
    }

    .audience-grid {
        margin-top: 25px
    }

    .step-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

        .step-grid article + article:before {
            display: none
        }

    .earning-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px
    }

    .earning-stats {
        align-self: center
    }

    .review-grid {
        grid-template-columns: 1fr
    }

    .partner-final > div {
        width: auto
    }

    .partner-final svg {
        width: 100px
    }

    .partner-final > a {
        min-width: 145px
    }
}

@media(max-width:480px) {
    .partner-shell {
        width: calc(100% - 28px)
    }

    .partner-copy h1 {
        font-size: 47px
    }

    .partner-copy > p {
        font-size: 16px
    }

    .partner-actions {
        flex-direction: column
    }

        .partner-actions > a {
            width: 100%
        }

    .partner-visual {
        height: 390px
    }

    .earning-card {
        bottom: 10px;
        width: 170px;
        padding: 15px
    }

    .trust-card {
        right: 8px;
        width: 125px
    }

    .benefit-cards, .audience-grid {
        grid-template-columns: 1fr
    }

    .earning-stats {
        width: 100%
    }

        .earning-stats article {
            width: 33.33%
        }

    .earning-banner {
        padding: 22px 16px
    }

    .earning-stats i {
        width: 48px;
        height: 48px
    }

    .partner-final {
        padding: 20px;
        flex-direction: column;
        text-align: center
    }

        .partner-final > a {
            width: 100%
        }
}

/* Match the 1240px shell used by welcome.blade.php and its shared footer. */
.partner-shell {
    width: min(1240px,calc(100% - 40px));
}

.partner-visual {
    margin-right: calc((1240px - 100vw)/2);
}

.partner-page .modern-footer-grid,
.partner-page .modern-footer-bottom {
    max-width: 1240px;
}

@media(max-width:1000px) {
    .partner-visual {
        margin-right: -20px;
    }
}

@media(max-width:760px) {
    .partner-visual {
        margin-right: -20px;
        margin-left: -20px;
    }
}

@media(max-width:480px) {
    .partner-shell {
        width: calc(100% - 28px);
    }

    .partner-visual {
        margin-right: -14px;
        margin-left: -14px;
    }
}

/* FINAL PARTNER OVERRIDES */
/* Partner outline icon set and welcome testimonial replacement. */
.partner-page .partner-reviews {
    display: none !important;
}

.partner-page .audience-grid i {
    color: transparent !important;
    font-size: 0 !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px 30px !important;
}

.partner-page .audience-grid article:nth-child(1) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231766ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 14-10 10 10 10M30 14l10 10-10 10M27 8 21 40'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(2) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231766ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='8' width='32' height='25' rx='3'/%3E%3Cpath d='M5 38h38M19 33l-2 5m12-5 2 5'/%3E%3Ccircle cx='24' cy='19' r='3'/%3E%3Cpath d='M18 28c1-4 3-6 6-6s5 2 6 6'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(3) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='15' r='7'/%3E%3Cpath d='M10 42v-5c0-8 5-14 14-14s14 6 14 14v5Z'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(4) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%237b24d1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 25 26-10v20L6 28Zm26-5 9-7m-9 17 10 5M11 29l4 11h7l-5-14'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(5) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23099457' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 20h36L37 9H11Zm3 0v20h30V20M17 40V29h14v11M6 20c0 5 8 5 9 0 1 5 8 5 9 0 1 5 8 5 9 0 1 5 8 5 9 0'/%3E%3C/svg%3E") !important;
}

.partner-page .audience-grid article:nth-child(6) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231766ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='13' height='13' rx='2'/%3E%3Crect x='28' y='7' width='13' height='13' rx='2'/%3E%3Crect x='7' y='28' width='13' height='13' rx='2'/%3E%3Crect x='28' y='28' width='13' height='13' rx='2'/%3E%3C/svg%3E") !important;
}

.partner-page .step-grid article > svg {
    border-radius: 50%;
    background-color: #fff0e9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 38px;
    stroke: transparent !important;
}

    .partner-page .step-grid article > svg > * {
        display: none;
    }

.partner-page .step-grid article:nth-child(1) > svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='5' width='26' height='36' rx='3'/%3E%3Cpath d='M14 14h14m-14 7h14m-14 7h9M35 29l7 7m-7 0 7-7M38.5 29v12'/%3E%3C/svg%3E");
}

.partner-page .step-grid article:nth-child(2) > svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m19 29-4 4a8 8 0 0 1-11-11l8-8a8 8 0 0 1 11 0M29 19l4-4a8 8 0 0 1 11 11l-8 8a8 8 0 0 1-11 0M16 32l16-16'/%3E%3C/svg%3E");
}

.partner-page .step-grid article:nth-child(3) > svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4714' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 14h32v27H8zM13 9h22v5M29 23h15v10H29a5 5 0 0 1 0-10Z'/%3E%3Ccircle cx='34' cy='28' r='1'/%3E%3C/svg%3E");
}

.partner-page .earning-stats article {
    display: grid;
    width: 190px;
    padding: 0 18px;
    grid-template-columns: 64px minmax(0,1fr);
    grid-template-rows: 1fr 1fr;
    align-items: center;
    column-gap: 12px;
}

.partner-page .earning-stats i {
    grid-row: 1 / 3;
    margin: 0;
    color: transparent;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.partner-page .earning-stats b {
    align-self: end;
    text-align: left;
}

.partner-page .earning-stats small {
    align-self: start;
    margin-top: 4px;
    text-align: left;
}

.partner-page .earning-stats article:nth-child(1) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='15' r='6'/%3E%3Ccircle cx='32' cy='16' r='5'/%3E%3Cpath d='M6 39v-4c0-8 5-13 12-13s12 5 12 13v4ZM29 25c7 0 12 4 12 11v3H30'/%3E%3C/svg%3E");
}

.partner-page .earning-stats article:nth-child(2) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 13h17m-17 7h17m-15-7c12 0 12 14 0 14l13 12M9 12a19 19 0 0 1 31-2m-1-5 1 5-5 1M39 36A19 19 0 0 1 8 38m0 5v-5l5-1'/%3E%3C/svg%3E");
}

.partner-page .earning-stats article:nth-child(3) i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 37 12-14 8 7 14-18M32 12h9v9M8 18l8-7 8 8'/%3E%3C/svg%3E");
}

@media(max-width:760px) {
    .partner-page .earning-stats article {
        width: 33.333%;
        padding: 0 8px;
        grid-template-columns: 50px minmax(0,1fr);
        column-gap: 7px;
    }

    .partner-page .earning-stats i {
        width: 48px;
        height: 48px;
        background-size: 31px 31px;
    }
}

@media(max-width:480px) {
    .partner-page .earning-stats {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

        .partner-page .earning-stats article {
            width: 100%;
            min-height: 60px;
            border-left: 0;
        }
}

/* Partner page refinements: kept in the shared core stylesheet. */
.partner-page .partner-visual > img {
    object-position: 90% center;
    -webkit-mask-image: linear-gradient(to right,transparent 0,#000 10%,#000 100%);
    mask-image: linear-gradient(to right,transparent 0,#000 10%,#000 100%);
}

.partner-page .partner-hero {
    background: linear-gradient(100deg,#fff 0%,#f9fbff 46%,#eef4ff 100%);
}

.partner-page .earning-card,
.partner-page .trust-card {
    display: none;
}

.partner-page .earning-card {
    left: -105px;
}

.partner-page .benefit-cards svg,
.partner-page .step-grid svg {
    overflow: visible;
    color: #ff4515;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

    .partner-page .benefit-cards svg use,
    .partner-page .step-grid svg path,
    .partner-page .step-grid svg circle {
        fill: none !important;
        stroke: currentColor !important;
        vector-effect: non-scaling-stroke;
    }

.partner-page .benefit-cards article:nth-child(2) svg {
    color: #1766ff;
}

.partner-page .benefit-cards article:nth-child(3) svg {
    color: #7b24d1;
}

.partner-page .benefit-cards article:nth-child(4) svg {
    color: #079447;
}

.partner-page .handshake {
    min-height: 360px;
    background: url('../img/partner-handshake.webp') center / contain no-repeat;
}

    .partner-page .handshake svg {
        display: none;
    }

.partner-page .partner-reviews {
    width: 100%;
    max-width: none;
    padding: 64px max(20px,calc((100vw - 1240px)/2)) 58px;
    background: #fff;
}

    .partner-page .partner-reviews .review-grid {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 19px;
        max-width: 1240px;
        margin: 22px auto 0;
    }

        .partner-page .partner-reviews .review-grid > article {
            min-height: 0;
            padding: 27px;
            border: 1px solid #e1e8f1;
            border-radius: 17px;
            background: #fff;
            box-shadow: 0 10px 29px rgba(15,35,65,.06);
        }

        .partner-page .partner-reviews .review-grid p {
            min-height: 92px;
            margin: 0 0 15px;
            color: #36455b;
            font-size: 14px;
            line-height: 1.7;
        }

        .partner-page .partner-reviews .review-grid footer > i {
            background: linear-gradient(145deg,#0b2d5c,#1268ef);
        }

.partner-page .partner-final {
    display: grid;
    width: min(1240px,calc(100% - 40px));
    min-height: 175px;
    margin: 35px auto 68px;
    padding: 24px 34px;
    grid-template-columns: 150px minmax(0,1fr) 164px 155px;
    align-items: center;
    gap: 24px;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(110deg,#061b3c 0%,#0c356f 100%);
    box-shadow: 0 18px 42px rgba(6,26,53,.18);
}

    .partner-page .partner-final > .rd-rocket-photo {
        width: 138px;
        height: 125px;
        object-fit: contain;
    }

    .partner-page .partner-final h2 {
        margin: 6px 0;
        color: #fff;
        font-size: 24px;
    }

    .partner-page .partner-final p {
        max-width: 600px;
        margin: 0;
        color: #bdcbe0;
        font-size: 12px;
        line-height: 1.65;
    }

    .partner-page .partner-final > a {
        width: 164px;
        min-width: 0;
        height: 43px;
        padding: 0 16px;
        border-radius: 8px;
    }

        .partner-page .partner-final > a.talk {
            width: 155px;
            color: #fff;
            border-color: rgba(255,255,255,.4);
        }

@media(max-width:900px) {
    .partner-page .partner-final {
        grid-template-columns: 90px 1fr;
    }

        .partner-page .partner-final > a {
            grid-column: auto;
        }
}

@media(max-width:760px) {
    .partner-page .earning-card {
        left: 20px;
    }

    .partner-page .handshake {
        min-height: 330px;
    }

    .partner-page .partner-reviews .review-grid {
        grid-template-columns: 1fr;
    }

    .partner-page .partner-final {
        grid-template-columns: 80px 1fr;
    }
}

@media(max-width:480px) {
    .partner-page .partner-final {
        width: calc(100% - 28px);
        padding: 25px 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

        .partner-page .partner-final > .rd-rocket-photo {
            margin: auto;
        }

        .partner-page .partner-final > a {
            width: 100%;
        }
}

