/* ========================================= BASE PRIMITIVES (Keep once for all pages) ========================================= */

.pro-section {
    padding-block: clamp(48px, 6vw, 96px);
}

/* Typography */
.pro-title {
    margin: 0;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--pro-title-color, var(--pro-text));
}

.pro-title--xl {
    font-size: clamp(32px, 4.5vw, 60px);
}

.pro-title--lg {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
}

.pro-text {
    font-size: 1rem;
    line-height: 1.7;
}

.pro-muted {
    color: var(--pro-muted-color, var(--pro-muted));
    max-width: 56ch;
}

/* Token override utility (works everywhere) */
.pro-inverse {
    --pro-title-color: rgba(0,0,0,.88);
    --pro-muted-color: rgba(0,0,0,.60);
}

/* Buttons */
.pro-btn-pill {
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

    .pro-btn-pill:active {
        transform: translateY(1px);
    }

.pro-btn-dark {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

    .pro-btn-dark:hover {
        background: #000;
        border-color: #000;
    }

.pro-btn-ghostDark {
    background: transparent;
    border: 1px solid rgba(0,0,0,.18);
    color: rgba(0,0,0,.60);
}

    .pro-btn-ghostDark:hover {
        background: rgba(0,0,0,.04);
        border-color: rgba(0,0,0,.28);
        color: rgba(0,0,0,.80);
    }



/* ========================================= Hero media  ========================================= */
.pro-hero {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.pro-heroMedia {
    border-radius: calc(var(--pro-radius) + 14px);
    padding: 18px;
    background: linear-gradient(135deg, rgba(127,127,250,.30), rgba(255,184,0,.25), rgba(34,135,253,.30) );
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.pro-heroMedia__inner {
    border-radius: calc(var(--pro-radius) + 8px);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

    .pro-heroMedia__inner img {
        width: 100%;
        height: auto;
        display: block;
    }



/* ========================================= Feature cards/panels  ========================================= */
.pro-features {
    background: #fff;
}

.pro-kicker {
    color: var(--bs-primary);
    font-weight: 600;
}

.pro-featureCard {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--pro-radius);
    padding: 24px;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .pro-featureCard:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,.06);
        transform: translateY(-3px);
    }

    .pro-featureCard i {
        font-size: 28px;
        color: var(--bs-primary);
        margin-bottom: 14px;
        display: inline-block;
    }

    .pro-featureCard h6 {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .pro-featureCard p {
        font-size: .9rem;
        color: var(--pro-muted);
        margin: 0;
    }

.pro-featurePanel {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: calc(var(--pro-radius) + 6px);
    background: #fff;
}

.pro-featureList li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-weight: 500;
    color: var(--pro-text);
}

    .pro-featureList li:last-child {
        border-bottom: none;
    }

/* Split padding stays minimal */
.pro-split__content {
    padding-inline: clamp(0px, 1.2vw, 18px);
}




/* ========================================= Integrations bubbles ========================================= */
.pro-integrations {
    background: var(--pro-primary-lighter);
    overflow: hidden;
}

.pro-bubbles {
    position: relative;
    width: min(520px, 100%);
    height: 320px;
}

.pro-bubble {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: var(--pro-card);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 34px rgba(16,24,40,.10), 0 6px 14px rgba(16,24,40,.06);
    border: 1px solid rgba(0,0,0,.05);
}

    .pro-bubble img {
        width: 58%;
        height: 58%;
        object-fit: contain;
        display: block;
    }


/* ========================================= Evolution stats  ========================================= */
.pro-stat {
    padding: 32px 24px;
    border-radius: calc(var(--pro-radius) + 6px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .pro-stat:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }

.pro-stat-label {
    font-size: 1rem;
    color: var(--pro-text);
    margin-bottom: 24px;
}

.pro-stat-number {
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 800;
    margin: 0;
}

.pro-stat--blue {
    background: #E9EFF6;
}

.pro-stat--beige {
    background: #EDE5DD;
}

.pro-stat--pink {
    background: #EBD9DF;
}

.pro-stat--sand {
    background: #EDE6D3;
}



/* ========================================= RESPONSIVE LAYER (use once) ========================================= */

/* Tablet */
@media (max-width: 991.98px) {
    .pro-section {
        padding-block: clamp(40px, 6vw, 72px);
    }

    .pro-title--xl {
        font-size: clamp(30px, 5vw, 46px);
        line-height: 1.12;
    }

    .pro-muted {
        max-width: 100%;
    }

    .pro-heroMedia {
        padding: 14px;
        margin-top: 18px;
    }

    .pro-featureCard {
        padding: 20px;
    }

    .pro-stat {
        padding: 26px 20px;
    }

    .pro-bubbles {
        height: 300px;
        margin-inline: auto;
    }

    .pro-bubble {
        width: 84px;
        height: 84px;
    }

    .pro-cta__wrap::after {
        right: -260px;
        width: 620px;
        height: 620px;
        opacity: .55;
    }

    .pro-cta__art img {
        max-width: 360px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .pro-section {
        padding-block: 44px;
    }

    .pro-title--xl {
        font-size: 32px;
    }

    .pro-title--lg {
        font-size: 26px;
    }

    .pro-text {
        font-size: .98rem;
    }

    .pro-btn-pill {
        width: 100%; /* nicer on mobile */
        justify-content: center;
    }

    .pro-featureCard {
        padding: 18px;
    }

    .pro-heroMedia {
        padding: 12px;
    }

    .pro-bubbles {
        height: 270px;
    }

    .pro-bubble {
        width: 72px;
        height: 72px;
    }

    .pro-stat {
        padding: 22px 18px;
    }

    .pro-stat-label {
        margin-bottom: 18px;
    }
}






/* ========================================= Integrations ========================================= */

.pro-heroIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*width: 42px;
    height: 42px;*/
    border-radius: 999px;
    margin-inline: 10px;
    /*background: rgba(var(--bs-primary-rgb), .14);*/
    color: var(--bs-primary);
    transform: translateY(18px); /* aligns with big text baseline */
}

@media (max-width: 575.98px) {
    .pro-heroIcon {
        transform: translateY(4px);
    }

        .pro-heroIcon img {
            width: 32px;
            height: 32px;
        }
}

.width-56ch {
    max-width: 56ch;
}

.text-center .width-56ch {
    margin-left: auto;
    margin-right: auto;
}


/* ========================================= Integrations Grid Section ========================================= */

.pro-integrations-grid {
    background: #fff;
}

/* Card */
.pro-integrationCard {
    background: #fff;
    border: 1px solid var(--bs-secondary);
    border-radius: calc(var(--pro-radius) + 6px);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .pro-integrationCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,.06);
    }

/* Header row */
.pro-integrationCard__head {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .pro-integrationCard__head img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: contain;
        background: #fff;
        padding: 6px;
        border: 1px solid var(--bs-secondary);
    }

.pro-integrationCard h6 {
    margin: 0;
    font-weight: 600;
    color: var(--pro-text);
}

.pro-integrationCard small {
    color: var(--bs-secondary);
}

/* Divider */
.pro-integrationCard hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 20px 0;
}

/* Paragraph */
.pro-integrationCard .pro-text {
    margin-bottom: 24px;
}


/* Tablet */
@media (max-width: 991.98px) {
    .pro-integrationCard {
        padding: 24px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .pro-integrationCard {
        padding: 20px;
    }

    .pro-integrationCard__head {
        gap: 10px;
    }

        .pro-integrationCard__head img {
            width: 38px;
            height: 38px;
        }
}



/* ========================================= Pricing ========================================= */

.pro-kicker {
    color: var(--bs-primary);
    font-weight: 600;
}

/* Avatars */
.pro-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
}

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

/* Stars */
.pro-stars i {
    color: #FFC107; /* Bootstrap warning color tone */
    font-size: 14px;
}

@media (max-width: 575.98px) {
    .pro-title--xl {
        font-size: 32px;
    }

    .pro-avatars img {
        width: 36px;
        height: 36px;
    }
}

/* ============================== Billing Toggle ============================== */
.pro-billingToggle {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.pro-billingToggle__btn {
    border: 0;
    background: transparent;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--pro-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .pro-billingToggle__btn.is-active {
        background: rgba(0,0,0,.06);
    }

.pro-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), .12);
    color: var(--bs-primary);
    font-weight: 700;
}

/* ==============================
   Pricing Cards
============================== */

.pro-priceCard {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: calc(var(--pro-radius) + 10px);
    background: #fff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pro-priceCard--featured {
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.pro-priceCard__title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #0a3971; /* your secondary tone */
}

.pro-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.pro-price__value {
    font-size: 44px;
    font-weight: 800;
    color: #0a3971;
}

.pro-price__per {
    color: var(--bs-secondary);
    font-weight: 600;
}

.pro-price__was {
    color: rgba(0,0,0,.35);
    text-decoration: line-through;
    margin-left: 10px;
}

.pro-priceCard__meta {
    color: var(--bs-secondary);
    font-weight: 600;
}

.pro-priceCard__label {
    margin-top: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--pro-text);
}

/* Checklist */
.pro-checkList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

    .pro-checkList li {
        position: relative;
        padding-left: 26px;
        color: var(--bs-secondary);
    }

        .pro-checkList li i {
            position: absolute;
            left: 0;
            top: 0;
            color: var(--bs-primary);
            font-weight: 800;
        }

/* Outline pill button */
.pro-btn-outline {
    background: #fff;
    border: 1px solid rgba(0,0,0,.18);
    color: var(--pro-text);
}

    .pro-btn-outline:hover {
        background: rgba(0,0,0,.04);
    }


@media (max-width: 991.98px) {
    .pro-priceCard {
        padding: 24px;
    }

    .pro-price__value {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .pro-billingToggle {
        width: 100%;
        justify-content: space-between;
    }

    .pro-billingToggle__btn {
        flex: 1;
        justify-content: center;
    }

    .pro-priceCard {
        padding: 20px;
    }

    .pro-price__value {
        font-size: 36px;
    }
}

/* ========================================= Compare Table ========================================= */
.pro-compareTable table {
    border-collapse: separate;
    border-spacing: 0;
}

/* Header styling */
.pro-compareTable thead th {
    font-weight: 700;
    color: var(--pro-text);
    padding: 24px 16px;
    vertical-align: top;
}

/* Body rows */
.pro-compareTable tbody td {
    padding: 16px;
    color: var(--bs-secondary);
    border-top: 1px solid rgba(0,0,0,.08);
}

/* Highlighted rows (Pricing + Best For) */
.pro-row-highlight td {
    background: rgba(0,0,0,.04);
    font-weight: 600;
}

/* Checkmark style */
.pro-compareTable tbody td.text-center {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive scroll polish */
.pro-compareTable {
    overflow-x: auto;
}



/* ========================================= Aboutus ========================================= */
.pro-aboutHero .pro-title--xl {
    line-height: 1.08;
}

@media (max-width: 991.98px) {
    .pro-title--xl {
        font-size: clamp(30px, 6vw, 42px);
    }
}

.pro-aboutImage {
    border-radius: calc(var(--pro-radius) + 10px);
    overflow: hidden;
    background: linear-gradient( 135deg, rgba(var(--bs-primary-rgb), .08), rgba(255,184,0,.08) );
    padding: 20px;
}

@media (max-width: 991.98px) {
    .pro-aboutImage {
        margin-bottom: 24px;
    }
}

/* =========================================
   Media Frame (Reusable)
   Use for About / Team / Testimonials images
========================================= */

.pro-mediaFrame {
    width: min(520px, 100%);
    padding: 16px; /* frame thickness */
    border-radius: calc(var(--pro-radius) + 18px);
    background: linear-gradient( 135deg, rgba(127,127,250,.28), rgba(255,184,0,.22), rgba(34,135,253,.28) );
}

.pro-mediaFrame__inner {
    border-radius: calc(var(--pro-radius) + 10px);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15,23,42,.10);
}

    .pro-mediaFrame__inner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

@media (max-width: 991.98px) {
    .pro-mediaFrame {
        margin-inline: auto;
    }
}


/* =========================================
   Values List (Reusable Component)
========================================= */
.pro-valueList {
    border-top: 1px solid rgba(0,0,0,.08);
}

.pro-valueItem {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.pro-valueItem--last {
    border-bottom: 0;
}

.pro-valueItem__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--bs-primary);
}

    .pro-valueItem__icon i {
        font-size: 28px;
        line-height: 1;
    }

.pro-valueItem__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pro-text);
}

@media (max-width: 575.98px) {
    .pro-valueItem {
        grid-template-columns: 34px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .pro-valueItem__icon {
        width: 34px;
        height: 34px;
    }

        .pro-valueItem__icon i {
            font-size: 24px;
        }
}


/* ========================================= Contact Hero ========================================= */
.pro-contactHero {
    background: #fff;
}

/* =========================================
   Contact chips (email/location)
========================================= */

.pro-contactChip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: calc(var(--pro-radius) + 6px);
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    text-decoration: none;
    color: var(--pro-text);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .pro-contactChip:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(0,0,0,.08);
        color: var(--pro-text);
    }

.pro-contactChip__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(var(--bs-primary-rgb), .10);
    color: var(--bs-primary);
}

.pro-contactChip__text {
    font-weight: 600;
    flex: 1;
}

.pro-contactChip__arrow {
    color: rgba(0,0,0,.40);
}


/* =========================================
   Form Frame (Gradient Border + White Card)
   Reusable Component
========================================= */

.pro-formFrame {
    width: min(560px, 100%);
    padding: 18px;
    border-radius: calc(var(--pro-radius) + 18px);
    background: linear-gradient( 135deg, rgba(127,127,250,.30), rgba(255,184,0,.25), rgba(34,135,253,.30) );
}

.pro-formFrame__inner {
    border-radius: calc(var(--pro-radius) + 10px);
    background: #fff;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

/* Inputs styling */
.pro-formFrame .form-control,
.pro-formFrame .form-select {
    padding: 12px 14px;
    border-radius: 10px;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 991.98px) {
    .pro-formFrame {
        margin-inline: auto;
    }

    .pro-formFrame__inner {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .pro-formFrame {
        padding: 14px;
    }

    .pro-formFrame__inner {
        padding: 18px;
    }
}



/* ========================================= Legal / Privacy Page ========================================= */

.pro-legal h2,
.pro-legal h3 {
    line-height: 1.3;
}

.pro-legal p {
    line-height: 1.75;
}

.pro-legal-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

    .pro-legal-list li {
        margin-bottom: 8px;
        color: var(--bs-secondary);
    }
