/* RESET & BASE STYLES */
.pas-page-wrapper {
    overflow-x: hidden;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #475569;
    line-height: 1.6;
}

.pas-container {
    /* width: 100%; */
    max-width: 87.5rem; 
    margin: 0 auto; 
    padding: 0 3%;
}

.pas-gradient-text {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 1. HERO SECTION */
.pas-hero {
    position: relative;
    /* padding: 60px 50px; */
    background-color: #f8fbff;
    overflow: hidden;
}

.pas-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
        "content visual"
        "actions visual";
    align-items: center;
    gap: 1.25rem 4.375rem;
    max-width: 100%;
}

.pas-hero-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pas-hero-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pas-hero-content h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pas-hero-content .pas-subheading {
    font-size: 1.15rem;
    color: #64748B;
    font-weight: 500;
    line-height: 1.6;
    /* margin-bottom: 2rem; */
}

.pas-description {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.pas-hero-visual lottie-player {
    width: 100%;
    max-width: 500px;
    height: 500px !important;
}

.pas-actions {
    grid-area: actions;
    display: flex;
    gap: 0.9375rem;
}

/* 2. WHAT WE DO */
.pas-what-we-do {
    padding: 50px 0;
    background: #ffffff;
}

.pas-section-header {
    text-align: center;
    max-width: 75rem;
    margin: 0 auto 1.25rem;
}

.pas-section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.625rem;
    font-weight: 700;
    letter-spacing: -0.033em;
    /* Retaining original gradient color */
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.pas-section-subtitle {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    /* Retaining original color class equivalent */
    color: #111418;
}

.pas-description.section-format {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 56.25rem;
    margin: 0 auto;
    color: #333;
}

/* Vertically aligning the CTA image on desktop from BusinessTransformation CTA */
.bt-cta .cta-image-side {
    align-self: center !important;
}

.pas-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pas-outcome-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 0.25rem solid #008ACF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pas-outcome-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.pas-outcome-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* 3. APPROACH SECTION */
.pas-approach {
    padding: 50px 0;
    background: #F8FAFC;
}

.pas-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.1rem;
}

.pas-approach-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.pas-approach-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2rem rgba(43, 61, 145, 0.08);
    border-color: #2BACE2;
}

.pas-step-number {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2BACE2 0%, #2A3C90 100%);
    color: #fff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(43, 61, 145, 0.2);
}

.pas-approach-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.5rem 0 1rem;
}

.pas-approach-card p {
    font-size: 0.95rem;
    color: #505050;
    line-height: 1.6;
}

/* 4. WHY CHOOSE SECTION */
.pas-why-choose {
    padding: 50px 0;
    background: #ffffff;
}

.pas-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
}

.pas-why-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #F0F7FF;
    border: 1px solid rgba(43, 172, 226, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.pas-why-card:hover {
    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(43, 61, 145, 0.08);
    transform: translateY(-5px);
}

.pas-why-icon {
    font-size: 2.5rem;
    color: #2A3C90;
    margin-bottom: 1.5rem;
}

.pas-why-card p {
    font-size: 1rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .pas-hero {
        padding: 2rem 0;
    }

    /* .pas-hero-layout {
        gap: 2rem;
    } */

    .pas-hero-content h1 {
        font-size: 2.75rem;
        padding: 1.25rem;
    }

    .pas-outcomes-grid,
    .pas-approach-grid,
    .pas-why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .cta-banner-premium {
        flex-direction: column !important;
        text-align: center;
        padding: 2.5rem 1.25rem !important;
    }

    .cta-info-side {
        margin-bottom: 20px;
    }

    .cta-info-side h2 {
        font-size: 2rem !important;
        margin-top: 10px !important;
    }

    .cta-image-side {
        margin: 1.25rem auto !important;
        justify-content: center;
    }

    .cta-mockup-img {
        max-height: 15.625rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pas-hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "actions";
        text-align: center;
    }

    .pas-hero-content {
        align-items: center;
    }

    .pas-actions {
        justify-content: center;
    }

    .pas-step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .pas-approach-card {
        text-align: center;
        padding-top: 3rem;
    }

    .pas-outcomes-grid,
    .pas-approach-grid,
    .pas-why-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .pas-section-title {
        font-size: 3rem;
    }

    .pas-section-subtitle {
        font-size: 1.75rem;
    }
}