.ncta {
    animation: pulse 2.5s 2.5s infinite;
}

.nrequestDemo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-weight: 600 !important;
    border: 1.5px solid rgb(29 57 129) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm) !important;
    transition: all var(--transition-fast) !important;
    background: #1b377e;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding: 110px 5% 90px;
    background: linear-gradient(135deg, var(--pdark) 0%, var(--primary) 55%, #1a4fb0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hglow1 {
    position: absolute;
    right: -100px;
    top: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .14) 0%, transparent 70%);
    pointer-events: none;
}

.hglow2 {
    position: absolute;
    left: -80px;
    bottom: -100px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 201, 3, .13);
    border: 1px solid rgba(251, 201, 3, .38);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp .5s .15s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    animation: fadeUp .6s .3s both;
}

.hero h1 span {
    color: var(--secondary);
}

.hsub {
    color: rgba(255, 255, 255, .75);
    font-size: 1.03rem;
    line-height: 1.72;
    margin-bottom: 30px;
    animation: fadeUp .6s .45s both;
}

.hbtns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .6s both;
}

.htrust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
    animation: fadeUp .6s .75s both;
}

.htrust span {
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
}

.htrust .stars {
    color: var(--secondary);
    font-size: .85rem;
}

.htrust .sep {
    color: rgba(255, 255, 255, .2);
    font-size: 1.1rem;
}


/* mockup */
.hvisual {
    position: relative;
    animation: fadeUp .8s .35s both;
}

.mwrap {
    animation: float 7s 1.2s ease-in-out infinite;
}

.mockup {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.mockup .hero-section-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.mbar {
    background: var(--primary);
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mdots {
    display: flex;
    gap: 6px;
}

.mdots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.dr {
    background: #ff5f57;
}

.dy {
    background: #ffbd2e;
}

.dg {
    background: #28c940;
}

.mbar span {
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
}

.mbody {
    padding: 16px;
    background: #f4f6ff;
}

.mstats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.mstat {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.mstat .lbl {
    font-size: .58rem;
    color: var(--g500);
    font-weight: 500;
}

.mstat .val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3px;
}

.mstat .chg {
    font-size: .58rem;
    color: #16a34a;
    font-weight: 600;
}

.mchart {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    margin-bottom: 10px;
}

.mctttl {
    font-size: .66rem;
    font-weight: 600;
    color: var(--g800);
    margin-bottom: 8px;
}

.bars {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 54px;
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: barRise .8s var(--d, .1s) ease both;
}

.bar.lo {
    height: 38%;
    background: var(--primary);
    opacity: .18;
}

.bar.md {
    height: 55%;
    background: var(--primary);
    opacity: .45;
}

.bar.hi {
    height: 72%;
    background: var(--primary);
    opacity: .7;
}

.bar.pk {
    height: 90%;
    background: var(--secondary);
}

.mrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mmini {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.mmini .lbl {
    font-size: .58rem;
    color: var(--g500);
    font-weight: 500;
}

.mmini .val {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3px;
}

/* scroll ind */
.sind {
    position: absolute;
    bottom: 28px;
    left: 50%;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.sind span {
    color: rgba(255, 255, 255, .35);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.smouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.sdot {
    width: 4px;
    height: 7px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

/* ── CLIENTS ── */
.clients {
    background: var(--navbg);
    padding: 44px 5%;
}

.clabel {
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: .73rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.clabel::before,
.clabel::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
}

.hgrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.hchip {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 18px;
    transition: all .3s;
    cursor: default;
    opacity: 0;
    animation: chipIn .5s var(--d, 0s) both;
}

.hchip:hover {
    background: rgba(251, 201, 3, .12);
    border-color: rgba(251, 201, 3, .4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 201, 3, .15);
}

.hchip .ic {
    font-size: 1.2rem;
}

.hlogo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #163f87;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, .08) inset;
}

.hlogo.hilton {
    color: #1f4f96;
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
}

.hlogo.marriott {
    color: #7b1524;
    font-size: .9rem;
}

.hlogo.hyatt {
    color: #2f2f2f;
    font-size: .82rem;
}

.hlogo.holidayinn {
    color: #1d8d5c;
    font-size: .64rem;
}

.hlogo.radisson {
    color: #173b8f;
    font-size: .8rem;
}

.hlogo.bestwestern {
    color: #c79b2c;
    font-size: .64rem;
}

.hlogo.wyndham {
    color: #8e1522;
    font-size: .78rem;
}

.hlogo.sheraton {
    color: #2c6d8b;
    font-size: .82rem;
}

.hlogo.hampton {
    color: #214d9b;
    font-size: .62rem;
}

.hlogo.comfort {
    color: #f38b18;
    font-size: .68rem;
}

.hchip .nm {
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    font-size: .84rem;
    white-space: nowrap;
}

.hchip:hover .nm {
    color: var(--secondary);
}


/* ── PROBLEM ── */
.problem {
    background: var(--offwhite);
}

.pgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.pcard {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(19, 65, 150, .07);
    border-left: 4px solid var(--primary);
    transition: transform .25s, box-shadow .25s;
}

.pcard:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 28px rgba(19, 65, 150, .12);
}

.pico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(19, 65, 150, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pcard h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--g800);
    margin-bottom: 5px;
}

.pcard p {
    font-size: .8rem;
    color: var(--g500);
    line-height: 1.55;
}

.pvisual {
    background: linear-gradient(135deg, #e8edf8, #d0d9f0);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pquote {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 6px 24px rgba(19, 65, 150, .1);
}

.pquote .emo {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.pquote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.pquote cite {
    font-size: .73rem;
    color: var(--g500);
    font-style: normal;
}

.pstats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pbox {
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.pbox.blue {
    background: var(--primary);
    color: #fff;
}

.pbox.gold {
    background: var(--secondary);
    color: var(--pdark);
}

.pbox .big {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
}

.pbox .sm {
    font-size: .7rem;
    margin-top: 5px;
    line-height: 1.4;
    opacity: .85;
}

/* ── AI ADVANTAGE (FEATURES) ── */
.features {
    background: #fff;
    overflow: hidden;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ai-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--pdark);
    line-height: 1.1;
}

.ai-spark {
    position: relative;
    top: -8px;
    font-size: .7rem;
    color: var(--secondary);
    animation: sparkPulse 2s ease-in-out infinite;
}

@keyframes sparkPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

.ai-tagline {
    text-align: center;
    margin: 28px auto 16px;
    max-width: 600px;
}

.ai-tagline .line1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    font-style: italic;
    color: var(--primary);
    opacity: .75;
    display: block;
    margin-bottom: 4px;
}

.ai-tagline .line2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    font-weight: 900;
    color: var(--pdark);
    display: block;
}

.ai-desc {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 42px;
    font-size: .95rem;
    color: var(--g500);
    line-height: 1.7;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.ai-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4fb0 100%);
    border-radius: 18px;
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: transform .35s, box-shadow .35s;
}

.ai-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: aiCardIn .6s ease both;
}

.ai-card:nth-child(1) {
    animation-delay: .1s;
}

.ai-card:nth-child(2) {
    animation-delay: .2s;
}

.ai-card:nth-child(3) {
    animation-delay: .3s;
}

.ai-card:nth-child(4) {
    animation-delay: .4s;
}

@keyframes aiCardIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(251, 201, 3, .12), transparent 60%);
    pointer-events: none;
}

.ai-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(19, 65, 150, .35);
}

.ai-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform .3s, background .3s;
    background: #c6d7fd4f;
    color: #f3cb45;
}

.ai-card:hover .ai-card-icon {
    transform: scale(1.15) rotate(-6deg);
    background: #c6d7fd4f;
}

.ai-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.ai-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.ai-friction {
    margin-top: 48px;
    text-align: center;
}

.ai-friction-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--g500);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ai-friction-label::before,
.ai-friction-label::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: var(--g200);
}

.ai-pills {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    border: 2px solid #e53e3e;
    background: #fff;
    font-size: .85rem;
    font-weight: 700;
    color: #c53030;
    transition: all .3s;
    cursor: default;
    opacity: 0;
    animation: pillPop .5s ease both;
}

.ai-pill:nth-child(1) {
    animation-delay: .5s;
}

.ai-pill:nth-child(2) {
    animation-delay: .65s;
}

.ai-pill:nth-child(3) {
    animation-delay: .8s;
}

@keyframes pillPop {
    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ai-pill:hover {
    background: #fff5f5;
    border-color: #c53030;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, .15);
}

.ai-pill svg {
    width: 18px;
    height: 18px;
    stroke: #e53e3e;
    stroke-width: 2.5;
    fill: none;
}

@media(max-width:680px) {
    .ai-grid {
        grid-template-columns: 1fr;
    }

    .ai-pills {
        flex-direction: column;
        align-items: center;
    }
}

/* ── STATS ── */
.sband {
    background: linear-gradient(135deg, var(--pdark), var(--primary));
    padding: 70px 5%;
    position: relative;
    overflow: hidden;
}

.sband::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -60%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .18) 0%, transparent 70%);
    pointer-events: none;
}

.srow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sitem {
    text-align: center;
}

.snum {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 4.2vw, 3.7rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.suf {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.slbl {
    color: rgba(255, 255, 255, .68);
    font-size: .82rem;
    margin-top: 8px;
    line-height: 1.45;
}

/* ── HOW ── */
.how {
    background: var(--offwhite);
}

.stepsgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
    position: relative;
}

.stepsgrid::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stepn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 4px solid var(--offwhite);
    box-shadow: 0 8px 24px rgba(19, 65, 150, .28);
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}

.step:hover .stepn {
    background: var(--secondary);
    color: var(--pdark);
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(251, 201, 3, .4);
}

.step h4 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--pdark);
    margin-bottom: 8px;
}

.step p {
    font-size: .8rem;
    color: var(--g500);
    line-height: 1.6;
}

/* ── ROLES ── */
.roles {
    background: #fff;
}

.rgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.rcard {
    background: var(--offwhite);
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    border: 2px solid var(--g200);
    transition: all .3s;
    cursor: pointer;
}

.rcard:hover,
.rcard.act {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(19, 65, 150, .22);
}

.rcard:hover h4,
.rcard.act h4,
.rcard:hover p,
.rcard.act p {
    color: #fff;
}

.rico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(19, 65, 150, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin: 0 auto 14px;
    transition: background .3s;
    color: #f3cb45;
    background: #204091 !important;
}

.rcard:hover .rico,
.rcard.act .rico {
    background: rgba(255, 255, 255, .18);
    background: #c6d7fd4f !important;
}

.rcard h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--pdark);
    margin-bottom: 7px;
    transition: color .3s;
}

.rcard p {
    font-size: .78rem;
    color: var(--g500);
    line-height: 1.55;
    transition: color .3s;
}

/* ── TESTIMONIALS MARQUEE ── */
.testi {
    background: var(--offwhite);
    overflow: hidden;
}

.tmarquee-wrap {
    margin-top: 48px;
    overflow: hidden;
    position: relative;
    padding-bottom: 8px;
}

/* fade edges */
.tmarquee-wrap::before,
.tmarquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.tmarquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--offwhite), transparent);
}

.tmarquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--offwhite), transparent);
}

.tmarquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
    padding: 5px;
}

.tmarquee-wrap:hover .tmarquee-track {
    animation-play-state: paused;
}

.tcard {
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--g200);
    box-shadow: 0 4px 24px rgba(19, 65, 150, .06);
    transition: box-shadow .3s, transform .3s;
}

.tcard:hover {
    box-shadow: 0 16px 48px rgba(19, 65, 150, .12);
    border-color: var(--plight);
    transform: translateY(-4px);
}

.qmark {
    font-size: 2.8rem;
    line-height: .8;
    color: var(--secondary);
    opacity: .45;
    font-family: Georgia, serif;
    margin-bottom: 6px;
}

.strs {
    color: var(--secondary);
    font-size: .78rem;
    margin-bottom: 8px;
    letter-spacing: .05em;
}

.tcard p {
    font-size: .84rem;
    color: var(--g800);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 18px;
}

.tauth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--plight));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
}

.aname {
    font-weight: 700;
    font-size: .84rem;
    color: var(--pdark);
}

.arole {
    font-size: .72rem;
    color: var(--g500);
}

@media(max-width:600px) {
    .tcard {
        width: 300px;
    }

    .tmarquee-wrap::before,
    .tmarquee-wrap::after {
        width: 60px;
    }
}

/* ── INTEGRATIONS ── */
.intgs {
    background: #fff;
}

.igrid {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
    margin-top: 38px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.ichip {
    background: var(--offwhite);
    border: 1px solid var(--g200);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--pdark);
    transition: all .22s;
    cursor: default;
}

.ichip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(19, 65, 150, .2);
}

.ipms-wrap {
    margin-top: 42px;
    text-align: center;
}

.ipms-wrap .ipms-ttl {
    font-size: .8rem;
    font-weight: 600;
    color: var(--g500);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ipms-wrap .trusted-asset {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

/* ── PRICING ── */
.pricing {
    background: var(--offwhite);
}

.pgricol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.pcrd {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 2px solid var(--g200);
    position: relative;
    transition: all .3s;
}

.pcrd:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(19, 65, 150, .1);
}

.pcrd.pop {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 24px 64px rgba(19, 65, 150, .32);
    animation: pulse 3s 1s infinite;
}

.pcrd.pop *:not(.pbadge):not(.bplanw) {
    color: #fff !important;
}

.pbadge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--pdark);
    padding: 5px 18px;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pname {
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--g500);
    margin-bottom: 10px;
}

.pprice {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--pdark);
    line-height: 1;
}

.pprice sup {
    font-size: 1rem;
    vertical-align: top;
    margin-top: 8px;
}

.pprice sub {
    font-size: .85rem;
    color: var(--g500);
}

.pdesc {
    font-size: .78rem;
    color: var(--g500);
    margin: 10px 0 20px;
    line-height: 1.55;
}

.pdiv {
    height: 1px;
    background: var(--g200);
    margin-bottom: 20px;
}

.pcrd.pop .pdiv {
    background: rgba(255, 255, 255, .2);
}

.pfeats li {
    list-style: none;
    padding: 7px 0;
    font-size: .82rem;
    color: var(--g800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ck {
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
}

.bplan {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 13px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    border: none;
    transition: all .2s;
}

.bplan:hover {
    background: var(--pdark);
}

.bplanw {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 13px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    background: var(--secondary);
    color: var(--pdark) !important;
    border: none;
    transition: all .2s;
}

.bplanw:hover {
    background: var(--slight);
}

/* ── FAQ ── */
.faq {
    background: #fff;
}

.flist {
    max-width: 780px;
    margin: 42px auto 0;
}

.fitem {
    border: 1px solid var(--g200);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.fitem:hover {
    box-shadow: 0 6px 24px rgba(19, 65, 150, .08);
}

.fq {
    padding: 17px 20px;
    font-weight: 600;
    font-size: .93rem;
    color: var(--pdark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.arr {
    color: var(--primary);
    font-size: 1rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.fitem.op .arr {
    transform: rotate(180deg);
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}

.fitem.op .fa {
    max-height: 200px;
    padding: 0 20px 16px;
}

.fa p {
    font-size: .84rem;
    color: var(--g500);
    line-height: 1.7;
}

/* ── CTA ── */
.ctas {
    background: linear-gradient(135deg, var(--pdark), var(--primary) 55%, #1a5cc8);
    padding: 92px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctas::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .12) 0%, transparent 65%);
}

.ctas h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.ctas h2 span {
    color: var(--secondary);
}

.ctas p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.03rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cbtns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cnote {
    margin-top: 18px;
    color: rgba(255, 255, 255, .35);
    font-size: .76rem;
    position: relative;
    z-index: 1;
}

/* Footer: uses design-system.css, adding 5th column for By Role */
.fgridf {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

/* ── RESPONSIVE (page-specific) ── */
@media(max-width:1100px) {
    .fgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .srow {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .fgridf {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .pgricol {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .pcrd.pop {
        order: -1;
    }
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hvisual {
        order: 2;
    }

    .mwrap {
        max-width: 370px;
        margin: 0 auto;
    }

    .pgrid {
        grid-template-columns: 1fr;
    }

    .stepsgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepsgrid::before {
        display: none;
    }

    .rgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tgrid {
        grid-template-columns: 1fr;
    }

    .fgrid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .clients {
        padding: 36px 18px;
    }

    .hero {
        padding: 88px 18px 100px;
    }

    .hero h1 {
        font-size: 1.95rem;
    }

    .hbtns {
        flex-direction: column;
    }

    .hbtns a {
        text-align: center;
        width: 100%;
    }

    .sind {
        display: none;
    }

    .srow {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .rgrid {
        grid-template-columns: 1fr 1fr;
    }

    .cbtns {
        flex-direction: column;
        align-items: center;
    }

    .cbtns a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hgrid {
        gap: 8px;
    }

    .hchip {
        padding: 10px 14px;
    }

    .hchip .nm {
        font-size: .78rem;
    }

    .pstats {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .stepsgrid {
        grid-template-columns: 1fr;
    }

    .rgrid {
        grid-template-columns: 1fr;
    }

    .srow {
        grid-template-columns: 1fr 1fr;
    }

    .mstats {
        grid-template-columns: 1fr 1fr;
    }

    .mstats .mstat:last-child {
        grid-column: 1/-1;
    }

    .htrust {
        gap: 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}