:root {
    --font-h1: 5rem;
    --font-h2: 2.5rem;
    --font-h3: 1.5rem;
    --font-h4: 1.2rem;
    --font-card-h1: 1.6rem;
    --font-p: 1rem;
    --font-card-h4: 2rem;
}

::selection {
    background: rgba(20, 110, 245, 0.95);
    color: white;
}

/* reusables start */

.feature-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    .feature-tab-content {
        display: none;
        /* justify-content: space-between; */
        flex-direction: column;
        gap: 2rem;

        &.active {
            display: flex;
        }

        .feature-action {
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 2rem;

            /* @media (max-width: 450px) {
                max-width: 24rem;
            } */

            button {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 2px;

                span {
                    content: '';
                    width: 24px;
                    height: 24px;
                    display: block;
                    background-repeat: no-repeat;
                    background-position: center;

                    &.closed {
                        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z' fill='rgba(250,250,250,1)'%3E%3C/path%3E%3C/svg%3E");
                    }

                    &.opened {
                        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.9999 10.8284L7.0502 15.7782L5.63599 14.364L11.9999 8L18.3639 14.364L16.9497 15.7782L11.9999 10.8284Z' fill='rgba(251,251,251,1)'%3E%3C/path%3E%3C/svg%3E");
                    }
                }
            }
        }

        .feature-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 1rem;
            width: 100%;
            transform-origin: top;
            transition: transform 0.45s ease;

            &.hidden {
                height: 0;
                visibility: hidden;
                transform: scaleY(0);
            }

            &.active {
                transform: scaleY(1);
                max-height: max-content;
                min-height: max-content;
            }

            .h3 {
                padding-left: 0;
                padding-bottom: 2rem;
            }

            .features-display-wrapper {
                display: grid;
                grid-column-gap: 30px;
                grid-row-gap: 30px;
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: auto;
                grid-auto-columns: 1fr;

                @media (max-width: 450px) {
                    grid-template-columns: 1fr;
                }

                @media only screen and (min-width: 451px) and (max-width: 1024px) {
                    grid-template-columns: repeat(2, 1fr);
                }

                .features-card {
                    grid-area: span 1/span 1/span 1/span 1;
                    padding: 1.5rem 2rem;
                    padding-bottom: 2.2rem;
                    border-radius: 0.3rem;
                    border: solid 1px var(--gray-300);
                    background-color: rgba(247, 250, 252, 1);

                    .features-icon {
                        margin-bottom: 2rem;
                        filter: brightness(0.6);

                        svg {
                            width: 64px;
                            height: 64px;
                        }

                        img {
                            width: 64px;
                            height: 64px;
                        }
                    }

                    h3 {
                        letter-spacing: .02em;
                        margin-top: 0;
                        margin-bottom: 1rem;
                        font-size: var(--font-h3);
                        font-weight: 600;
                        line-height: 1.3;
                    }

                    p {
                        margin-top: 0;
                        margin-bottom: 0;
                        font-size: var(--font-p);
                        line-height: 1.6;
                    }
                }
            }
        }
    }
}

.hero-wrapper {
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 0;
    width: 100%;

    .header {
        h1 {
            letter-spacing: .01em;
            margin-top: 0;
            margin-bottom: 0;
            font-size: var(--font-h1);
            font-weight: 600;
            line-height: 1.04;

            @media (max-width: 450px) {
                text-align: center;
            }
        }

        p {
            letter-spacing: -.01em;
            margin-bottom: 0;
            font-size: 1.5rem;
            line-height: 1.6;
            text-align: start;

            @media (max-width: 450px) {
                font-size: 1.2rem;
                text-align: center;
            }
        }
    }

    .faq-wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
        padding: 3rem 0;
        gap: 2rem;

        @media (max-width: 450px) {
            grid-template-columns: 1fr;
            padding: 2rem 0;
        }

        .sticky-header {
            grid-area: span 1/span 1/span 1/span 1;
            align-self: start;
            top: 160px;
            position: -webkit-sticky;
            position: sticky;

            h2 {
                font-size: var(--font-h2);
            }

            @media (max-width: 450px) {
                top: unset;
                position:
                    relative;

                h2 {
                    font-size: var(--font-h2);
                }
            }

            @media only screen and (min-width: 451px) and (max-width: 1024px) {
                h2 {
                    font-size: var(--font-h1);
                }
            }

        }

        .feature-accordions {
            list-style: none;
            width: 100%;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, min(100%, 100%));

            .accordion-item {
                width: 100%;
                display: flex;
                align-items: flex-start;
                flex-direction: column;
                justify-content: space-between;
                gap: 1rem;
                padding: 1rem 0;
                transition: all 800ms ease-in-out;
                cursor: pointer;
                overflow: hidden;

                &:hover {
                    .accordion-trigger {
                        align-items: center;

                        h3 {
                            color: var(--blue-400);
                        }
                    }
                }

                &.active {
                    .accordion-trigger {
                        h3 {
                            color: var(--blue-400);
                            font-size: var(--font-h2);
                        }
                    }

                    .accordion-content {
                        visibility: visible;
                        min-height: max-content;
                        height: max-content;

                        .accordion-expanded {
                            p {
                                text-align: left;
                                margin-top: 0;
                                margin-bottom: 0;
                                font-size: var(--font-p);
                                line-height: 1.6;
                                font-family: var(--secondary-font);
                                font-weight: 200;
                            }

                            a {
                                margin-top: 14px;
                                color: var(--gray-200);
                            }
                        }

                    }
                }

                .accordion-trigger {
                    color: unset;
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    cursor: pointer;

                    h3 {
                        margin: 0;
                        padding-right: 1rem;
                        font-size: var(--font-card-h1);
                        margin-bottom: 0;
                    }

                    @media (max-width: 450px) {
                        h3 {
                            font-size: var(--font-h4);
                        }
                    }

                    .accordion-icon_right {
                        svg {
                            margin-top: 0;
                            width: 28px;
                            height: 28px;
                            fill: var(--white);
                            animation: rotateAnimationClosed 1s forwards;
                        }
                    }
                }

                .accordion-content {
                    visibility: hidden;
                    height: 0;
                    transition: visibility 800ms linear;
                    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
                }

                input[type="checkbox"] {
                    display: none;
                }

                input[type="checkbox"]:checked {
                    ~.accordion-trigger {
                        h3 {
                            color: var(--blue-400);
                        }

                        .accordion-icon_right {
                            svg {
                                fill: var(--blue-400);
                                animation: rotateAnimation 1s forwards;
                            }
                        }
                    }

                    ~.accordion-content {
                        visibility: visible;
                        min-height: max-content;
                        height: max-content;

                        .accordion-expanded {
                            p {
                                text-align: left;
                                margin-top: 0;
                                margin-bottom: 0;
                                font-size: var(--font-p);
                                line-height: 1.6;
                                font-family: var(--secondary-font);
                                font-weight: 200;
                            }

                            a {
                                margin-top: 14px;
                                color: var(--gray-200);
                            }
                        }

                    }
                }
            }
        }
    }
}

.promote-wrapper {
    padding: 5rem 0;

    .header {
        padding: 5rem 0;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;

        button {
            min-width: max-content;

            a {
                color: var(--white);
            }
        }
    }

    .content {
        padding: 2rem 0;
        display: grid;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: 2fr 2fr;

        @media (max-width: 450px) {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .left {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-direction: column;
            gap: 2rem;

            @media (max-width: 450px) {
                text-align: center;
            }

            p {
                letter-spacing: -.01em;
                margin-bottom: 0;
                font-size: 1.5rem;
                line-height: 1.6;

                @media (max-width: 450px) {
                    text-align: center;
                    font-size: 1.2rem;
                }
            }

            .button {
                display: flex;
                align-items: flex-start;
                justify-content: flex-start;
                width: 100%;

                @media (max-width: 450px) {
                    align-items: center;
                    justify-content: center;
                }

                button {
                    @media (max-width: 450px) {
                        text-align: center;
                    }
                }
            }
        }

        .right {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            cursor: pointer;

            img {
                width: 125px;
                filter: grayscale(1);
                transition: filter 400ms ease-in-out;

                @media (max-width: 450px) {
                    width: 80px;
                    height: auto;
                }

                &:hover {
                    filter: grayscale(0);
                }
            }

            @media (max-width: 450px) {
                gap: 1rem;
            }
        }
    }
}

.promote-wrapper {
    padding: 5rem 0 2rem;

    .border {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;

        @media (max-width: 450px) {
            grid-template-columns: 1fr;
        }

        .action {
            display: flex;
            align-items: center;
            justify-content: center;

            button {
                background: var(--white) !important;
                color: rgb(13 21 75) !important;
                padding: 1rem 2rem !important;
                border: solid 1px var(--gray-300);
                display: flex;
                align-items: center;
                justify-content: center;

                &:after {
                    content: "";
                    background-image: url("/images/startup.svg");
                    background-repeat: no-repeat;
                    background-size: cover;
                    filter: brightness(0.6);
                    height: 54px;
                    width: 54px;
                    margin-left: 4px;
                }

                &:hover {
                    color: var(--blue-600) !important;
                    border: solid 1px rgb(13 21 75);
                }
            }
        }
    }
}

.comapare-products {
    >div {
        ul {
            >li {
                div {
                    width: -webkit-fill-available;
                }
            }
        }
    }
}

.pricing-tabs {
    .title {
        .special-offer {
            grid-column: 1/4;
            justify-items: center;
            align-items: center;
            display: grid;
            padding: 1rem;
            border: dashed 2px var(--gray-300);
            margin-top: 1rem;
            transition: 1s;
            grid-template-columns: 1fr;
            word-wrap: break-word;
            word-break: break-word;

            p {
                margin-top: unset;
                margin-bottom: unset;
                font-size: var(--font-p);
                /* display: flex; */
            }
        }
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes rotateAnimationClosed {
    0% {
        transform: rotate(45deg);
    }

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

.clients-sticky-section {
    position: relative;
    padding: 4rem 0;

    .clients-wrap {
        display: grid;
        grid-template-columns: 1fr;
        width: -webkit-fill-available;
        /* width: 100%; */

        .partners-wrap {
            position: relative;

            ul {
                display: grid;
                grid-template-columns: repeat(3, minmax(100px, auto));
                list-style: none;
                gap: 5rem;
                position: relative;

                @media (max-width: 375px) {
                    grid-template-columns: repeat(1, minmax(100px, auto));
                    gap: 2rem;
                }

                @media (max-width: 450px) {
                    grid-template-columns: repeat(1, minmax(100px, auto));
                    gap: 2rem;
                }

                @media screen and (max-width: 480px) {
                    grid-template-columns: repeat(1, minmax(100px, auto));
                    gap: 2rem;
                }

                @media only screen and (min-width: 481px) and (max-width: 1023px) {
                    grid-template-columns: repeat(2, minmax(100px, auto));
                    gap: 3rem;
                }

                li {
                    object-fit: contain;
                    width: 80%;
                    z-index: 1;

                    img {
                        height: 4rem;
                        width: 100%;
                        object-fit: contain;
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover {
                        img {
                            transform: scale(1.2);
                        }
                    }
                }
            }
        }

        .partners-section {
            display: grid;
            height: 95%;
            justify-items: center;
            position: absolute;

            h2 {
                z-index: 2;
                top: 45%;
                position: -webkit-sticky;
                position: sticky;
                width: 60%;
                background: #ffffffeb;
                border-radius: 12px;
                box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.06), 0px 4px 4px 0px rgba(0, 0, 0, 0.08), 0px 30px 100px 0px #00000061;
                margin-top: 1rem;
                text-align: center;
                font-size: var(--font-h2);
                padding: 10px;
                height: max-content;

                @media (max-width: 375px) {
                    width: 80%;
                    line-height: 2.5rem;
                }

                @media (max-width: 450px) {
                    width: 80%;
                    line-height: 2.5rem;
                }

                @media screen and (max-width: 480px) {
                    width: 80%;
                    line-height: 2.5rem;
                }

                @media only screen and (min-width: 481px) and (max-width: 1023px) {}
            }
        }
    }
}

/* Responsive start */

@media (max-width: 375px) {
    :root {
        --font-h1: 2.5rem;
        --font-h2: 1.8rem;
        --font-h3: 1.5rem;
        --font-h4: 1.1rem;
        --font-card-h1: 1.6rem;
        --font-card-h4: 2rem;
        --font-p: 1rem;
    }

    .pricing-main {
        padding: 0 4px !important;

        .title {
            font-size: var(--font-h1);
        }
    }

    .pricing-tabs {
        padding: 0 4px !important;

        .title {
            padding-bottom: 3rem;
            display: grid;
            grid-template-columns: 1fr;

            h1 {
                font-size: var(--font-h1);
            }
        }

        .conditions {
            grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
            gap: 1rem;
        }
    }

    .trial-quick {
        >div {
            grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
            gap: 1rem;

            >div:first-child {
                h3 {
                    font-size: var(--font-h1);
                    margin-top: 0;
                    margin-bottom: 0.5rem;
                }
            }
        }
    }
}

@media (max-width: 450px) {
    :root {
        --font-h1: 2.5rem;
        --font-h2: 1.8rem;
        --font-h3: 1.5rem;
        --font-h4: 1.1rem;
        --font-card-h1: 1.6rem;
        --font-card-h4: 2rem;
        --font-p: 1rem;
    }

    .pricing-main {
        .title {
            font-size: var(--font-h1);
        }
    }

    .pricing-tabs {
        .title {
            padding-bottom: 3rem;
            display: grid;
            grid-template-columns: 1fr;

            h1 {
                font-size: var(--font-h1);
                grid-column: 1/3;
            }

            p {
                grid-column: 1/4;
            }
        }
    }

    .trial-quick {
        >div {
            >div:first-child {
                h3 {
                    font-size: var(--font-h1);
                    margin-top: 0;
                    margin-bottom: 0.5rem;
                }
            }
        }
    }

    footer section>div {
        flex-direction: column;
    }
}

@media only screen and (min-width: 451px) and (max-width: 1024px) {
    :root {
        --font-h1: 2.5rem;
        --font-h2: 1.8rem;
        --font-h3: 1.5rem;
        --font-h4: 1.1rem;
        --font-card-h1: 1.6rem;
        --font-card-h4: 2rem;
        --font-p: 1rem;
    }
}

.icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

/* Example colors */
.bg-primary { background-color: #007BFF; }
.bg-secondary { background-color: #6C757D; }
.bg-success { background-color: #28A745; }
.bg-warning { background-color: #FFC107; }
.bg-danger { background-color: #DC3545; }

.text-primary { color: #007BFF; }
.text-gray { color: #555; }

.feature-box p {
    margin: 0;
}

@media (min-width: 768px) {
    .try-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}


/* cPGuard pricing page: one shared set of controls and plan components. */
#pricingPage .pc-shell {
    --pc-brand: #b21f50;
    --pc-ink: #141b2b;
    --pc-muted: #626b7e;
    --pc-line: #e5e7ee;
    display: block;
    width: calc(100% - 64px);
    max-width: 1320px;
    margin: 0 auto;
    padding: 150px 0 64px;
    color: var(--pc-ink);
}
#pricingPage .pc-shell *, #pricingPage .pc-shell *::before, #pricingPage .pc-shell *::after { box-sizing: border-box; }
#pricingPage .pc-shell [hidden] { display: none !important; }
#pricingPage .pc-intro {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    margin: 0 0 64px;
    background: none;
    box-shadow: none;
    color: #000;
    text-align: left;
}
#pricingPage .pc-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pc-brand); }
#pricingPage .pc-intro h1 { max-width: 1050px; font-size: clamp(2.5rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.04; letter-spacing: -1px; margin: 20px 0 0; }
#pricingPage .pc-intro .pc-eyebrow { color: #000; font-size: .9375rem; font-weight: 600; letter-spacing: .1em; }
#pricingPage .pc-products { position: relative; isolation: isolate; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; width: 100%; margin: 0 0 28px; }
#pricingPage .pc-products::before {
    content: "";
    position: absolute;
    inset: auto 0 4px;
    height: 1px;
    background: #dedede;
    box-shadow: 0 0 0 100vmax #dedede;
    clip-path: inset(0 -100vmax);
    z-index: -1;
    pointer-events: none;
}
#pricingPage .pc-products button {
    display: block; text-align: left; min-width: 0;
    padding: 20px 20px 18px 0 !important; background: transparent !important; color: #6b6b6b !important;
    border: 0; border-bottom: 5px solid #bfd0ff; border-radius: 0; box-shadow: none;
}
#pricingPage .pc-products button[aria-selected="true"] { border-bottom-color: #1255e5; color: #111 !important; }
#pricingPage .pc-products button:hover { border-bottom-color: #1255e5; color: #111 !important; }
#pricingPage .pc-products strong { display: block; font-size: .9375rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
#pricingPage .pc-products small { display: block; font-size: 1.6rem; line-height: 1.3; letter-spacing: -.025em; font-weight: 600; }
#pricingPage .pc-product-overview { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 48px; margin: 32px 0 40px; }
#pricingPage .pc-product-logo {
    display: block;
    width: 220px;
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: none;
}
#pricingPage .pc-product-details h2 { font-family: var(--main-font); font-size: 2.8rem; font-weight: 700; line-height: 1.3; letter-spacing: -1px; color: var(--darker); margin: 0 0 .8rem; }
#pricingPage .pc-heading-plus { color: var(--cpguard-pink); font-weight: 800; }
#pricingPage .pc-product-details .subtitle { color: var(--dark); max-width: 780px; margin: 0; }
#pricingPage .pc-toolbar { display: grid; grid-template-columns: auto auto; align-items: center; justify-content: end; gap: 10px; padding: 0; }
#pricingPage .pc-toolbar .pc-currency { grid-column: 2; grid-row: 1; }
#pricingPage .pc-toolbar .pc-billing-summary { grid-column: 1 / -1; grid-row: 2; text-align: right; }
#pricingPage .pc-billing { display: flex; padding: 4px; background: #eaeef3; border-radius: 8px; }
#pricingPage .pc-billing button { background: transparent !important; color: var(--pc-muted) !important; box-shadow: none; border-radius: 6px; padding: 10px 20px !important; font-size: .9rem; }
#pricingPage .pc-billing button[aria-pressed="true"] { background: #fff !important; color: var(--pc-ink) !important; box-shadow: 0 1px 4px #16203818; }
#pricingPage .pc-billing-summary { font-size: .85rem; color: var(--pc-muted); }
#pricingPage .pc-currency { margin-left: auto; display: flex; gap: 12px; align-items: center; font-size: .85rem; font-weight: 600; }
#pricingPage .pc-currency select { width: auto; min-height: 40px; border: 1px solid #d7dce5; border-radius: 6px; background: #fff; padding: 8px 10px; color: var(--pc-ink); font: inherit; }
#pricingPage .pc-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
#pricingPage .pc-section-heading h2 { font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.2; letter-spacing: -.025em; margin: 8px 0 10px; }
#pricingPage .pc-section-heading p { color: var(--pc-muted); font-size: .95rem; line-height: 1.6; margin: 0; max-width: 850px; }
#pricingPage .pc-grid { display: grid; gap: 20px; }
#pricingPage .pc-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
#pricingPage .pc-card { display: flex; flex-direction: column; min-width: 0; padding: 24px; border: 1px solid var(--pc-line); border-radius: 14px; background: #fff; box-shadow: 0 6px 20px #16203806; }
#pricingPage .pc-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 20px; }
#pricingPage .pc-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #faf0f4; color: var(--pc-brand); font-size: 1.2rem; }
#pricingPage .pc-card h3 { margin: 0 0 6px; font-size: 1.2rem; letter-spacing: -.02em; }
#pricingPage .pc-capacity { margin: 0 0 24px; color: var(--pc-muted); font-size: .85rem; }
#pricingPage .pc-price { font-family: var(--main-font); font-size: clamp(2rem, 3.1vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -.04em; }
#pricingPage .pc-price s { display: inline-block; color: var(--pc-muted); font-size: 1rem; letter-spacing: 0; margin-right: 10px; font-weight: 500; vertical-align: middle; }
#pricingPage .pc-unit { margin: 8px 0 0; color: var(--pc-muted); font-size: .8rem; }
#pricingPage .pc-annual { font-size: .75rem; font-weight: 500; margin-top: 6px; min-height: 18px; color: var(--pc-brand); }
#pricingPage .pc-copy { margin: 20px 0 24px; padding-top: 20px; border-top: 1px solid var(--pc-line); font-size: .9rem; line-height: 1.6; color: var(--pc-muted); }
#pricingPage .pc-buy { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border: 1px solid var(--pc-line); border-radius: 7px; margin-top: auto; color: var(--pc-ink); text-decoration: none; font-size: .9rem; font-weight: 700; }
#pricingPage .pc-buy:hover { border-color: var(--pc-brand); color: var(--pc-brand); background: #fff7fa; }
#pricingPage .pc-featured { border-color: var(--pc-brand); background: #fff8fb; }
#pricingPage .pc-featured .pc-buy { background: var(--pc-brand); border-color: var(--pc-brand); color: #fff; }
#pricingPage .pc-featured .pc-buy:hover { background: #981a44; }
#pricingPage .pc-badge, #pricingPage .pc-offer { font-size: .65rem; font-weight: 700; padding: 5px 8px; color: var(--pc-brand); background: #f9e4ed; border-radius: 5px; }
#pricingPage .pc-offer { white-space: nowrap; font-size: .8rem; padding: 8px 12px; }
#pricingPage .pc-bulk-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--pc-line); }
#pricingPage .pc-plan-section .pc-section-heading h2 { font-size: 2.8rem; line-height: 1.3; letter-spacing: -1px; color: var(--darker); }
#pricingPage .pc-plan-section .pc-section-heading p { font-size: 1.3rem; font-weight: 500; line-height: 1.5; color: var(--dark); }
#pricingPage .pc-plan-section .pc-eyebrow { color: var(--darker); font-size: .9375rem; letter-spacing: .1em; }
#pricingPage .pc-grid-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; margin: 32px 0 0; }
#pricingPage .pc-plan-section .pc-included { justify-content: center; font-size: 1rem; color: var(--dark); }
#pricingPage .pc-plan-section .pc-footnote { text-align: center; font-size: .9rem; }
/* Bulk packs use compact comparison rows rather than individual-plan cards. */
#pricingPage .pc-volume-list { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--pc-line); }
#pricingPage .pc-volume-row { display: grid; grid-template-columns: minmax(0, 1fr) 220px 160px; gap: 32px; align-items: center; padding: 30px 0; border: 0; border-bottom: 1px solid var(--pc-line); border-radius: 0; box-shadow: none; }
#pricingPage .pc-volume-details { display: flex; gap: 24px; align-items: center; }
#pricingPage .pc-volume-details .pc-icon { width: 68px; height: 68px; flex: 0 0 68px; border-radius: 50%; font-size: 1.8rem; }
#pricingPage .pc-volume-row:nth-child(2) .pc-icon { background: #fff2e5; color: #ef7c1a; }
#pricingPage .pc-volume-details h3 { font-size: 1.6rem; color: var(--darker); margin: 0 0 8px; }
#pricingPage .pc-volume-details p { font-size: 1rem; line-height: 1.5; color: var(--dark); margin: 0; }
#pricingPage .pc-volume-price { text-align: right; }
#pricingPage .pc-volume-price .pc-unit { font-size: .9rem; }
#pricingPage .pc-volume-row .pc-buy { margin: 0; background: var(--cpguard-pink); border-color: var(--cpguard-pink); color: #fff; border-radius: 4px; padding: 14px 18px; }
#pricingPage .pc-volume-row .pc-buy:hover { background: #a91c44; }
#pricingPage .pc-bulk-section .pc-included { justify-content: flex-start; }
#pricingPage .pc-bulk-section .pc-footnote { text-align: left; }
@media (max-width: 900px) {
    #pricingPage .pc-volume-row { grid-template-columns: minmax(0, 1fr) auto; gap: 20px; }
    #pricingPage .pc-volume-row .pc-buy { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 600px) {
    #pricingPage .pc-volume-row { grid-template-columns: 1fr; padding: 24px 0; }
    #pricingPage .pc-volume-details { gap: 16px; }
    #pricingPage .pc-volume-details h3 { font-size: 1.3rem; }
    #pricingPage .pc-volume-price { text-align: left; padding-left: 84px; }
}
#pricingPage .pc-section-icon { font-size: 2rem; color: #a7adba; }
#pricingPage .pc-included { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; margin: 24px 0 0; font-size: .8rem; color: var(--pc-muted); }
#pricingPage .pc-included strong { color: var(--pc-ink); }
#pricingPage .pc-included i { color: var(--pc-brand); margin-right: 5px; }
#pricingPage .pc-footnote { font-size: .75rem; color: var(--pc-muted); line-height: 1.6; margin: 20px 0 0; }
#pricingPage .pc-pricing-notes { margin-top: 32px; padding: 22px 26px; border-left: 3px solid var(--pc-brand); background: #f8f9fb; color: var(--pc-ink); }
#pricingPage .pc-pricing-notes h3 { margin: 0 0 12px; font-size: 1.1rem; font-weight: 600; }
#pricingPage .pc-pricing-notes ul { margin: 0; padding-left: 20px; font-size: 1rem; line-height: 1.6; }
#pricingPage .pc-pricing-notes li + li { margin-top: 8px; }
#pricingPage .pc-shell :is(button, a, select):focus-visible { outline: 3px solid #b21f5070; outline-offset: 3px; }
/* Individual-server cards make user capacity the primary plan distinction. */
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-card {
    padding: 26px 20px 20px;
    border-radius: 0;
    text-align: center;
    min-height: 540px;
    box-shadow: 0 10px 30px #1620380a;
}
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-card h3 {
    align-self: center;
    padding: 9px 15px;
    margin: 0 0 26px;
    background: var(--pc-brand);
    color: #fff;
    font-size: .75rem;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-card-top { justify-content: center; margin-bottom: 26px; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-icon { width: 68px; height: 68px; border-radius: 50%; font-size: 2rem; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-card:nth-child(2) .pc-icon { background: #fff2e5; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-price { font-size: clamp(2.5rem, 4.4vw, 4rem); }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-price:has([data-price^="inr"]:not([hidden])) { font-size: clamp(2rem, 3.2vw, 3rem); }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-unit { font-size: 1rem; margin-top: 18px; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-annual { min-height: 20px; font-size: .85rem; }
#pricingPage .pc-user-capacity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin: 24px 0 0;
    padding-top: 26px;
    border-top: 1px solid var(--pc-line);
    color: var(--pc-ink);
    text-align: left;
    font-size: 1rem;
    line-height: 1.3;
}
#pricingPage .pc-user-capacity > i { font-size: 2.1rem; color: var(--pc-brand); width: 44px; text-align: center; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-card:nth-child(2) .pc-user-capacity > i { color: #ef7c1a; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-copy { border: 0; padding: 0; margin: 22px 12px 24px; font-size: 1rem; line-height: 1.5; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-buy { justify-content: center; background: #c72350; color: #fff; border-color: #c72350; border-radius: 4px; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-buy:hover { background: #a91c44; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-buy i { display: none; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-featured { background: linear-gradient(180deg, #b02150, #921440); border-color: transparent; color: #fff; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-featured .pc-price s { color: #f5cddb; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-featured h3 { background: #fff; color: var(--pc-brand); }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-featured :is(.pc-unit, .pc-annual, .pc-user-capacity, .pc-user-capacity > i, .pc-copy) { color: #fff; }
#pricingPage :is(.pc-grid-four, .pc-grid-pair) .pc-featured .pc-user-capacity { border-color: #ffffff40; }

/* Equal outer and inner spacing for rows with two or three plans. */
@media (min-width: 601px) {
    #pricingPage .pc-grid:has(> .pc-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, min(390px, calc((100% - 60px) / 2)));
        justify-content: space-evenly;
        column-gap: 0;
    }
    #pricingPage .pc-grid:has(> .pc-card:nth-child(3):last-child) {
        grid-template-columns: repeat(3, min(340px, calc((100% - 80px) / 3)));
        justify-content: space-evenly;
        column-gap: 0;
    }
}

@media (max-width: 1100px) {
    #pricingPage .pc-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    #pricingPage .pc-grid-four, #pricingPage .pc-grid-pair { grid-template-columns: 1fr; }
    #pricingPage .pc-shell { width: calc(100% - 32px); padding: 112px 0 36px; }
    #pricingPage .pc-intro { text-align: left; margin-bottom: 24px; }
    #pricingPage .pc-products { margin-bottom: 20px; }
    #pricingPage .pc-products button { padding: 16px 12px 16px 0 !important; }
    #pricingPage .pc-products strong { font-size: .8rem; margin-bottom: 0; }
    #pricingPage .pc-products small { display: none; }
    #pricingPage .pc-product-details h2 { font-size: 1.8rem; }
    #pricingPage .pc-product-details .subtitle { font-size: 1.1rem; }
    #pricingPage .pc-product-overview { grid-template-columns: 1fr; gap: 24px; margin: 24px 0 32px; }
    #pricingPage .pc-toolbar { width: 100%; }
    #pricingPage .pc-billing { min-width: 0; }
    #pricingPage .pc-billing button { flex: 1; padding: 10px 12px !important; }
    #pricingPage .pc-currency { margin-left: 0; gap: 6px; }
    #pricingPage .pc-currency select { padding-right: 10px; }
    #pricingPage .pc-billing-summary { order: 3; flex-basis: 100%; }
    #pricingPage .pc-bulk-section { padding-top: 28px; margin-top: 32px; }
    #pricingPage .pc-plan-section .pc-section-heading h2 { font-size: 1.8rem; }
    #pricingPage .pc-plan-section .pc-section-heading p { font-size: 1.1rem; }
    #pricingPage .pc-section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    #pricingPage .pc-section-icon { display: none; }
    #pricingPage .pc-price { font-size: 2.6rem; }
    #pricingPage .pc-included { flex-direction: column; align-items: flex-start; }
}

#pricingPage .pc-saving { display: inline-block; margin-left: 6px; color: #24764a; font-size: .65rem; font-weight: 600; }
@media (max-width: 600px) {
    #pricingPage .pc-saving { display: block; margin: 4px 0 0; }
}

/* Product comparison: major capabilities, grouped by the buying decision. */
#pricingPage .pc-comparison { background: #f6fafb; padding: 64px 0; }
#pricingPage .pc-comparison > div { grid-column: 1 / -1; width: calc(100% - 64px); max-width: 1320px; margin: 0 auto; }
#pricingPage .pc-comparison-eyebrow { font-size: .9375rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--darker); }
#pricingPage .pc-comparison-intro h2 { color: var(--darker); font-size: 2.8rem; line-height: 1.3; letter-spacing: -1px; margin: 12px 0 16px; }
#pricingPage .pc-comparison-intro .subtitle { max-width: 980px; margin: 0 0 40px; color: var(--dark); }
#pricingPage .pc-comparison-table { width: 100%; table-layout: fixed; border-collapse: collapse; color: var(--darker); }
#pricingPage .pc-comparison-table caption { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
#pricingPage .pc-comparison-table .pc-feature-column { width: 54%; }
#pricingPage .pc-comparison-table th, #pricingPage .pc-comparison-table td { padding: 22px 20px; border-bottom: 1px solid #dce3e6; vertical-align: middle; }
#pricingPage .pc-comparison-table th:first-child { padding-left: 0; text-align: left; }
#pricingPage .pc-comparison-table thead th { position: sticky; top: 70px; z-index: 2; background: #f6fafb; padding-top: 8px; padding-bottom: 28px; text-align: center; font-size: 1.2rem; }
#pricingPage .pc-comparison-table thead img { display: block; width: 180px; max-width: 100%; height: 56px; object-fit: contain; margin: 0 auto 12px; transition: none; }
#pricingPage .pc-comparison-table thead span { display: block; font-size: .9rem; font-weight: 500; color: var(--dark); }
#pricingPage .pc-comparison-table tbody th[scope="row"] { font-weight: 400; }
#pricingPage .pc-comparison-table tbody th strong { display: flex; align-items: baseline; gap: 12px; font-family: var(--main-font); font-size: 1.2rem; font-weight: 600; line-height: 1.4; }
#pricingPage .pc-comparison-icon { flex: 0 0 24px; width: 24px; text-align: center; font-size: 1.05rem; color: var(--cpguard-pink); }
#pricingPage .pc-comparison-table tbody th p { margin: 7px 0 0; font-size: .95rem; line-height: 1.5; color: var(--dark); max-width: 620px; }
#pricingPage .pc-comparison-table td { text-align: center; }
#pricingPage .pc-comparison-table tbody tr:has(+ .pc-comparison-group) > *,
#pricingPage .pc-comparison-table tbody tr:last-child > * { border-bottom: 0; }
#pricingPage .pc-comparison-table tbody tr > :nth-child(3) { background: #c7235005; }
#pricingPage .pc-comparison-table thead th:nth-child(3) { background: #f8f4f6; }
#pricingPage .pc-comparison-table .pc-comparison-group th { padding: 28px 0 14px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #ababab; font-weight: 600; }
#pricingPage .pc-feature-yes { color: #1c7750; font-size: 1.35rem; }
#pricingPage .pc-feature-no { color: #747d85; font-size: 1.25rem; }
#pricingPage .pc-feature-scope { display: inline-block; max-width: 190px; color: var(--dark); font-size: 1rem; line-height: 1.5; }
#pricingPage .pc-comparison-notes { padding-top: 20px; }
#pricingPage .pc-comparison-notes p { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--dark); }
#pricingPage .pc-comparison-links { display: flex; flex-wrap: wrap; gap: 16px 32px; margin-top: 20px; }
#pricingPage .pc-comparison-links a { color: var(--cpguard-pink); font-size: 1rem; font-weight: 600; }
#pricingPage .pc-comparison a:focus-visible { outline: 2px solid var(--cpguard-pink); outline-offset: 4px; }
@media (max-width: 600px) {
    #pricingPage .pc-comparison { padding: 40px 0; }
    #pricingPage .pc-comparison > div { width: calc(100% - 32px); }
    #pricingPage .pc-comparison-intro h2 { font-size: 1.8rem; }
    #pricingPage .pc-comparison-intro .subtitle { font-size: 1.1rem; margin-bottom: 28px; }
    #pricingPage .pc-comparison-table .pc-feature-column { width: 50%; }
    #pricingPage .pc-comparison-table th, #pricingPage .pc-comparison-table td { padding: 18px 8px; }
    #pricingPage .pc-comparison-table thead th { font-size: .9rem; }
    #pricingPage .pc-comparison-table thead img { height: 32px; margin-bottom: 8px; }
    #pricingPage .pc-comparison-table thead span { font-size: .7rem; line-height: 1.4; }
    #pricingPage .pc-comparison-table tbody th strong { font-size: 1rem; gap: 8px; }
    #pricingPage .pc-comparison-icon { flex-basis: 18px; width: 18px; font-size: .9rem; }
    #pricingPage .pc-comparison-table tbody th p { font-size: .875rem; }
    #pricingPage .pc-comparison-table .pc-comparison-group th { font-size: .7rem; }
    #pricingPage .pc-feature-scope { font-size: .8rem; }
}
