/* ============ TOKENS — same ZYNO navy/cyan theme as homepage ============ */
:root {
    --ink: #F3F7FC;
    --ink-2: #EAF1FB;
    --navy: #EAF2FF;
    --navy-2: #DCEAFB;
    --indigo: #0B57D0;
    --indigo-light: #4C93F5;
    --accent: #22B8F8;
    --accent-2: #7FE0FF;
    --cream: #F5F8FC;
    --paper: #FFFFFF;
    --ink-text: #0B1730;
    --slate: #57647D;
    --slate-dark: #8FA3C6;
    --line-light: rgba(11, 23, 48, 0.09);
    --line-dark: rgba(11, 23, 48, 0.09);
    --ink-2-dark: #0F1D3B;
    --ink-dark: #0A1428;
    --navy-dark: #142A52;
    --navy-2-dark: #1B3768;
    --shadow-soft: 0 24px 60px -22px rgba(10, 20, 40, 0.25);
    --radius: 18px;
    --ease: cubic-bezier(.16, .84, .44, 1);
}

/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Box */
.modal-box {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.96);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

/* Header */
.modal-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
    padding: 28px 32px 24px;
    border-radius: 20px 20px 0 0;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.modal-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    padding-right: 30px;
}

.modal-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Form Body */
.modal-body {
    padding: 28px 32px 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-input::placeholder {
    color: #94a3b8;
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
}

/* reCAPTCHA */
.g-recaptcha {
    margin: 8px 0 18px;
    transform: scale(0.95);
    transform-origin: left;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: none;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Submit Button */
.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.form-submit:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 14px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-header {
        padding: 22px 20px 18px;
    }

    .modal-header h3 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 22px 20px 24px;
    }

    .g-recaptcha {
        transform: scale(0.88);
    }
}

.pc-page {
    background: var(--cream);
    color: var(--ink-text);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

.pc-page * {
    box-sizing: border-box;
}



.pc-page h1,
.pc-page h2,
.pc-page h3,
.pc-page h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.pc-page p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: var(--slate);
}

.pc-page a {
    color: inherit;
    text-decoration: none;
}

.pc-page img {
    max-width: 100%;
    display: block;
}

.pc-page .pc-feature-visual img {
    max-width: 100%;
    display: block;
    width: 100%;
}

.pc-page ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-page svg {
    display: block;
    flex-shrink: 0;
}

.pc-page button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.pc-wrap {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 25px;
}

@media (max-width: 768px) {
    .pc-wrap {
        padding: 0 20px;
        max-width: 100%;
    }
}

.pc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 14px;
}

.pc-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s;
    white-space: nowrap;
}

.pc-btn-primary {
    background: var(--indigo);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(11, 87, 208, 0.55);
}

.pc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -8px rgba(11, 87, 208, 0.65);
}

.pc-btn-accent {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #04263D !important;
    box-shadow: 0 14px 30px -10px rgba(34, 184, 248, 0.5);
}

.pc-btn-accent:hover {
    transform: translateY(-3px);
}

.pc-btn-ghost {
    background: #fff;
    border: 1.5px solid var(--line-light);
    color: var(--ink-text);
}

.pc-btn-ghost:hover {
    box-shadow: 0 14px 30px -10px rgba(34, 184, 248, 0.5);

}

/* ============ reveal-on-scroll ============ */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.rv.in {
    opacity: 1;
    transform: translateY(0);
}

.rv-stagger.in>* {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rv-stagger>* {
    opacity: 0;
    transform: translateY(22px) scale(.97);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.rv-stagger>*:nth-child(1) {
    transition-delay: .04s;
}

.rv-stagger>*:nth-child(2) {
    transition-delay: .10s;
}

.rv-stagger>*:nth-child(3) {
    transition-delay: .16s;
}

.rv-stagger>*:nth-child(4) {
    transition-delay: .22s;
}

.rv-stagger>*:nth-child(5) {
    transition-delay: .28s;
}

.rv-stagger>*:nth-child(6) {
    transition-delay: .34s;
}

.rv-stagger>*:nth-child(7) {
    transition-delay: .40s;
}

.rv-stagger>*:nth-child(n+8) {
    transition-delay: .44s;
}

@media (prefers-reduced-motion: reduce) {

    .rv,
    .rv-stagger>* {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .pc-pagehead-orb,
    .pc-pagehead::before,
    .pc-pagehead::after,
    .pc-pagehead .pc-eyebrow,
    .pc-pagehead h1,
    .pc-pagehead-sub,
    .pc-pagehead-cta,
    .pc-quickstats {
        animation: none !important;
    }
}

/* ============ PAGE HEADER (breadcrumb banner, not a full hero) ============ */
@keyframes pcGridPan {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 46px 46px, 46px 46px;
    }
}

@keyframes pcShimmer {
    to {
        background-position: 200% 0;
    }
}

@keyframes pcFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-22px) translateX(10px);
    }
}

@keyframes pcFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pc-pagehead {
    position: relative;
    padding: 120px 0 44px;
    background: radial-gradient(1100px 620px at 82% -10%, rgba(34, 184, 248, .28), transparent 60%), radial-gradient(900px 500px at -5% 110%, rgba(11, 87, 208, .26), transparent 60%), var(--ink-dark);
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
    isolation: isolate;
}

.pc-pagehead::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent 75%);
    pointer-events: none;
    animation: pcGridPan 16s linear infinite;
}

.pc-pagehead::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--indigo), var(--accent), var(--accent-2), var(--indigo-light), var(--indigo));
    background-size: 200% 100%;
    animation: pcShimmer 6s linear infinite;
}

.pc-pagehead-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: .6;
    z-index: -1;
    animation: pcFloat 10s ease-in-out infinite;
}

.pc-pagehead-orb-1 {
    width: 320px;
    height: 320px;
    top: -130px;
    right: 10%;
    background: radial-gradient(circle, var(--accent), transparent 70%);
}

.pc-pagehead-orb-2 {
    width: 240px;
    height: 240px;
    bottom: -150px;
    left: 4%;
    background: radial-gradient(circle, var(--indigo-light), transparent 70%);
    animation-delay: -4s;
    animation-duration: 13s;
}

.pc-crumb {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 22px;
}

.pc-crumb a:hover {
    color: var(--accent-2);
}

.pc-crumb svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, .25);
}

.pc-crumb span {
    color: var(--accent-2);
}

.pc-pagehead-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 44px;
    align-items: end;
}

.pc-pagehead .pc-eyebrow {
    color: var(--accent-2);
    animation: pcFadeUp .8s var(--ease) both;
}

.pc-pagehead h1 {
    font-size: 46px;
    line-height: 54px;
    color: #fff;
    animation: pcFadeUp .8s var(--ease) .08s both;
    margin-bottom: 20px;
}

.pc-pagehead h1 .grad {
    background: linear-gradient(100deg, var(--indigo-light), var(--accent) 60%, var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pc-pagehead-sub {
    font-size: 17px;
    line-height: 28px;
    margin-top: 18px;
    max-width: 560px;
    color: var(--slate-dark) !important;
    animation: pcFadeUp .8s var(--ease) .16s both;
}

.pc-pagehead-cta {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
    animation: pcFadeUp .8s var(--ease) .24s both;
}

.pc-quickstats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    animation: pcFadeUp .8s var(--ease) .3s both;
}

.pc-quickstat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 20px 44px -22px rgba(0, 0, 0, .6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s;
}

.pc-quickstat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .24);
}

.pc-quickstat b {
    display: block;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(100deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pc-quickstat span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .58);
    font-weight: 600;
}

@media (max-width: 900px) {
    .pc-pagehead {
        padding: 100px 0 36px;
    }

    .pc-pagehead-grid {
        grid-template-columns: 1fr;
    }

    .pc-pagehead h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .pc-quickstats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 560px) {
    .pc-quickstats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ BODY LAYOUT: sticky side-nav + content rail (the layout switch) ============ */
.pc-body {
    padding: 56px 0 90px;
}

.pc-body-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.pc-toc {
    position: sticky;
    top: 100px;
    background: linear-gradient(165deg, var(--navy-dark), var(--ink-dark));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: var(--shadow-soft);
}

.pc-toc-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 14px;
}

.pc-toc ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pc-toc a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .62);
    padding: 8px 12px;
    /* margin-left: -12px; */
    border-left: 2px solid transparent;
    border-radius: 8px;
    transition: color .3s, border-color .3s, background .3s, transform .3s var(--ease);
}

.pc-toc a:hover {
    color: #fff;
    /* background: rgba(255, 255, 255, .06); */
    transform: translateX(2px);
}

.pc-toc li.active a {
    color: var(--accent-2);
    background: rgba(255, 255, 255, .08);
    border-left-color: var(--accent);
}

.pc-toc li.active {
    background-color: transparent;
}

.pc-toc-cta {
    margin-top: 22px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.pc-toc-cta p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
}

.pc-toc-cta .pc-btn {
    width: 100%;
    padding: 11px 18px;
    font-size: 13.5px;
}

@media (max-width: 1000px) {
    .pc-body-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pc-toc {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 6px;
        padding: 12px;
        border-radius: 16px;
    }

    .pc-toc-label,
    .pc-toc-cta {
        display: none;
    }

    .pc-toc ul {
        flex-direction: row;
    }

    .pc-toc a {
        margin-left: 0;
        padding: 8px 14px;
        border-left: none;
        border-radius: 100px;
        white-space: nowrap;
    }

    .pc-toc li.active a {
        border-left-color: transparent;
    }
}

.pc-section {
    scroll-margin-top: 96px;
    margin-bottom: 78px;
}

.pc-section:last-child {
    margin-bottom: 0;
}

.pc-section h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 14px;
}

.pc-section>p.lead {
    font-size: 16.5px;
    line-height: 27px;
    max-width: 760px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ---- problem cards (diagonal offset grid) ---- */
.pc-problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pc-problem {
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

/* .pc-problem:nth-child(even) {
        transform: translateY(14px);
    } */

.pc-problem:hover {
    transform: translateY(4px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.pc-problem:nth-child(even):hover {
    transform: translateY(10px);
}

.pc-problem .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(11, 87, 208, .08);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pc-problem .ic svg {
    width: 20px;
    height: 20px;
}

.pc-problem h4 {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.pc-problem p {
    font-size: 14px;
    line-height: 22px;
}

@media (max-width: 900px) {
    .pc-problems {
        grid-template-columns: 1fr 1fr;
    }

    .pc-problem:nth-child(even) {
        transform: none;
    }

    .pc-problem:hover,
    .pc-problem:nth-child(even):hover {
        transform: translateY(4px);
    }
}

@media (max-width: 620px) {
    .pc-problems {
        grid-template-columns: 1fr;
    }
}

/* ---- checklist tag-cloud (what you can configure) ---- */
.pc-taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 12px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid var(--line-light);
    font-size: 13.5px;
    font-weight: 600;
    transition: border-color .3s, transform .3s var(--ease), background .3s, color .3s;
}

.pc-tag .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-tag .dot svg {
    width: 11px;
    height: 11px;
    stroke: #04263D;
}

.pc-tag:hover {
    border-color: var(--indigo);
    background: var(--navy);
    transform: translateY(-2px);
}

/* ---- benefits zig-zag ---- */
.pc-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pc-benefit {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 22px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line-light);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.pc-benefit:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}

.pc-benefit .num {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(160deg, var(--navy-dark), var(--ink-dark));
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.pc-benefit h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.pc-benefit p {
    font-size: 14.5px;
    line-height: 23px;
}

/* ---- feature rows (alternating) ---- */
.pc-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid var(--line-light);
}

.pc-feature-row:first-of-type {
    border-top: none;
}

.pc-feature-row:nth-child(even) .pc-feature-visual {
    order: 2;
}

.pc-feature-row .pc-eyebrow {
    margin-bottom: 10px;
}

.pc-feature-row h3 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 10px;
}

.pc-feature-row p {
    font-size: 14.5px;
    line-height: 23px;
}

.pc-feature-visual {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 20px;
    background: linear-gradient(150deg, var(--navy), var(--navy-2));
    border: 1px solid var(--line-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-feature-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11, 87, 208, .16) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: .5;
}

.pc-feature-visual .fic {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo);
    transition: transform .6s var(--ease);
}

.pc-feature-row:hover .fic {
    transform: scale(1.08) rotate(-4deg);
}

.pc-feature-visual .fic svg {
    width: 38px;
    height: 38px;
}

@media (max-width: 860px) {
    .pc-feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pc-feature-row:nth-child(even) .pc-feature-visual {
        order: 0;
    }
}

/* ---- how it works — animated horizontal timeline ---- */
.pc-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 22px;
    row-gap: 46px;
}

/* .pc-timeline::before {
        content: '';
        position: absolute;
        top: 27px;
        left: 6%;
        right: 6%;
        height: 2px;
        background: var(--line-light);
    } */

.pc-timeline-fill {
    display: none;
    position: absolute;
    left: 6%;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--indigo), var(--accent));
    transition: width 1.4s var(--ease), top .3s var(--ease);
}

.pc-step {
    position: relative;
    text-align: left;
}

.pc-step .dotwrap {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
}

.pc-step .dotwrap span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line-light);
    font-weight: 800;
    color: var(--slate-dark);
    font-size: 16px;
    transition: border-color .5s, color .5s, background .5s, transform .5s var(--ease);
}

.pc-step.on .dotwrap span {
    border-color: var(--indigo);
    color: #fff;
    background: linear-gradient(135deg, var(--indigo-light), var(--indigo));
    transform: scale(1.08);
}

.pc-step h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
}

.pc-step p {
    font-size: 13.5px;
    line-height: 21px;
}

@media (max-width: 760px) {
    .pc-timeline {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .pc-timeline::before,
    .pc-timeline-fill {
        display: none;
    }
}

/* ---- stakeholder marquee ---- */
.pc-marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pc-marquee {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: pc-scroll 26s linear infinite;
}

.pc-marquee:hover {
    animation-play-state: paused;
}

@keyframes pc-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.pc-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid var(--line-light);
    font-weight: 700;
    font-size: 14.5px;
    white-space: nowrap;
}

.pc-pill .av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #04263D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

/* ---- stats counters ---- */
.pc-stats-band {
    border-radius: 26px;
    background: linear-gradient(155deg, var(--navy-dark) 0%, var(--ink-dark) 100%);
    padding: 46px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.pc-stats-band::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 184, 248, .35), transparent 70%);
    top: -140px;
    right: -80px;
    filter: blur(10px);
}

.pc-stat {
    position: relative;
    text-align: center;
}

.pc-stat b {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.pc-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
}

@media (max-width: 760px) {
    .pc-stats-band {
        grid-template-columns: 1fr 1fr;
        padding: 30px;
    }
}

/* ---- industries horizontal scroll ---- */
.pc-industries-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
}

.pc-industries-scroll::-webkit-scrollbar {
    height: 6px;
}

.pc-industries-scroll::-webkit-scrollbar-thumb {
    background: var(--line-dark);
    border-radius: 10px;
}

.pc-industry-card {
    scroll-snap-align: start;
    min-width: 240px;
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line-light);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.pc-industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.pc-industry-card .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(34, 184, 248, .12);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-industry-card .ic svg {
    width: 21px;
    height: 21px;
}

.pc-industry-card h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
}

.pc-industry-card p {
    font-size: 13px;
    line-height: 20px;
}

/* ---- why choose — icon grid ---- */
.pc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pc-why {
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line-light);
    background: #fff;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s;
}

.pc-why:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(180deg, #fff, var(--navy));
}

.pc-why .ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(11, 87, 208, .08);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pc-why .ic svg {
    width: 22px;
    height: 22px;
}

.pc-why h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.pc-why p {
    font-size: 13.5px;
    line-height: 21px;
}

@media (max-width: 860px) {
    .pc-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .pc-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- FAQ accordion ---- */
.pc-faq-item {
    border: 1px solid var(--line-light);
    border-radius: 16px;
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.pc-faq-item.open {
    border-color: var(--indigo);
    box-shadow: var(--shadow-soft);
}

.pc-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    color: var(--ink-text);
}

.pc-faq-q .plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--navy);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s var(--ease), background .3s, color .3s;
}

.pc-faq-item.open .pc-faq-q .plus {
    transform: rotate(135deg);
    background: var(--indigo);
    color: #fff;
}

.pc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}

.pc-faq-a-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 23px;
    color: var(--slate);
}

/* ---- final CTA band ---- */
.pc-cta-band {
    border-radius: 28px;
    padding: 56px;
    text-align: center;
    background:
        radial-gradient(500px 220px at 20% 0%, rgba(34, 184, 248, .25), transparent 70%),
        linear-gradient(160deg, var(--navy-dark), var(--ink-dark));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pc-cta-band h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
}

.pc-cta-band p {
    color: rgba(255, 255, 255, .7);
    max-width: 520px;
    margin: 0 auto 26px;
    font-size: 15.5px;
}

.pc-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* counters number ticking already handled by JS text swap */

/* ============ SMALL-PHONE REFINEMENTS (≤480px) ============ */
@media (max-width: 480px) {
    .pc-wrap {
        padding: 0 16px;
    }

    .pc-pagehead {
        padding: 90px 0 32px;
    }

    .pc-pagehead h1 {
        font-size: 25px;
        line-height: 33px;
    }

    .pc-pagehead-sub {
        font-size: 14.5px;
        line-height: 24px;
    }

    .pc-pagehead-cta {
        flex-direction: column;
    }

    .pc-pagehead-cta .pc-btn {
        width: 100%;
    }

    .pc-quickstats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pc-quickstat {
        padding: 14px 16px;
    }

    .pc-quickstat b {
        font-size: 22px;
    }

    .pc-body {
        padding: 40px 0 60px;
    }

    .pc-section {
        margin-bottom: 54px;
    }

    .pc-section h2 {
        font-size: 23px;
        line-height: 30px;
    }

    .pc-section>p.lead {
        font-size: 15px;
        line-height: 24px;
    }

    .pc-benefit {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 16px;
    }

    .pc-benefit .num {
        width: 48px;
        height: 48px;
        font-size: 15px;
        border-radius: 12px;
    }

    .pc-stats-band {
        grid-template-columns: 1fr 1fr;
        gap: 22px 14px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .pc-stat b {
        font-size: 28px;
    }

    .pc-industry-card {
        min-width: 210px;
        padding: 18px;
    }

    .pc-cta-band {
        padding: 34px 22px;
        border-radius: 20px;
    }

    .pc-cta-band h2 {
        font-size: 23px;
    }

    .pc-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pc-cta-actions .pc-btn {
        width: 100%;
    }

    .pc-btn {
        padding: 13px 22px;
        font-size: 14px;
    }

    .pc-faq-q {
        padding: 16px 18px;
        font-size: 14px;
    }
}

.pc-faq-a-inner ul li {
    list-style: disc;
}

.pc-faq-a-inner ul {
    padding: inherit;
}