/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #475569;
    line-height: 1.8;
}

.ccs-page-wrapper {
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1.5%;
}

.ccs-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 */
.ccs-hero {
    position: relative;
    padding: 1.25rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

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

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

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

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

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

.ccs-hero-content .ccs-subheading {
    font-size: 1.15rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ccs-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ccs-hero-visual img {
    width: 100%;
    max-width: 37.5rem;
    height: auto;
    object-fit: contain;
    display: block;
}

.ccs-hero-lottie-container {
    width: 100%;
    max-width: 37.5rem;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.ccs-hero-lottie-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ccs-actions {
    grid-area: actions;
    margin-top: 1rem;
    display: flex;
    gap: 0.9375rem;
}

.ccs-btn-refined {
    display: inline-block;
    background: #ffffff;
    color: #2655A5;
    border: 0.09375rem solid #2655A5;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ccs-btn-refined:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #ffffff;
    text-decoration: none;
    border-color: transparent;
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 1.875rem rgba(43, 61, 145, 0.15);
}

/* 2. WHAT WE DO */
.ccs-what-we-do {
    padding: 3.125rem 0;
    background: #F8FAFC;
}

.ccs-section-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.ccs-wwd-title,
.ccs-approach-title,
.ccs-why-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccs-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
}

.ccs-feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.06);
}

.ccs-feature-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 1.875rem rgba(43, 61, 145, 0.15);
    border-color: #008ACF;
}

.ccs-icon-box {
    width: 3.75rem;
    height: 3.75rem;
    background: #eff6ff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #008ACF;
    flex-shrink: 0;
}

.ccs-feature-card h3 {
    margin-bottom: 0.75rem;
}

.ccs-feature-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* 3. APPROACH SECTION */
.ccs-approach {
    padding: 3.125rem 0 6.25rem;
    background: #F8FAFC;
    overflow: hidden;
}

.ccs-approach-container {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    position: relative;
    max-width: 75rem;
    margin: 7.5rem auto 0;
}

.ccs-approach-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.125rem;
    background: #e2e8f0;
    z-index: 1;
}

.ccs-approach-card {
    background: #fff;
    padding: 3.125rem 1.875rem 2.5rem;
    border-radius: 1.25rem;
    text-align: left;
    border: 0.0625rem solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 1;
    position: relative;
    z-index: 2;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.06);
}

.ccs-approach-card:nth-child(even) {
    transform: translateY(3.75rem);
}

.ccs-approach-card:nth-child(odd) {
    transform: translateY(-3.75rem);
}

.ccs-approach-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 1.875rem rgba(43, 61, 145, 0.15);
    border-color: #008ACF;
}

.ccs-approach-card:nth-child(even):hover {
    transform: translateY(3.4375rem);
}

.ccs-approach-card:nth-child(odd):hover {
    transform: translateY(-4.0625rem);
}

.ccs-step-badge {
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    width: 2.8125rem;
    height: 2.8125rem;
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.ccs-step-badge.first {
    background: #008ACF;
}

.ccs-approach-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #008ACF;
    margin-bottom: 1.25rem;
}

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

@media (max-width: 992px) {
    .ccs-approach-container {
        flex-direction: column;
        align-items: center;
        gap: 5rem;
        margin-top: 1.875rem;
    }

    .ccs-approach-container::before {
        display: none;
    }

    .ccs-approach-card:nth-child(even),
    .ccs-approach-card:nth-child(odd) {
        transform: none;
    }

    .ccs-approach-card:nth-child(even):hover,
    .ccs-approach-card:nth-child(odd):hover {
        transform: translateY(-0.3125rem);
    }

    .ccs-approach-card {
        width: 100%;
        max-width: 31.25rem;
    }
}

/* 4. WHY CHOOSE SECTION */
.ccs-why-choose {
    padding: 3.125rem 0;
    background: #ffffff;
}

.ccs-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;
    max-width: 75rem;
    margin: 0 auto;
}

.ccs-why-card {
    padding: 1.875rem 1.25rem;
    border-radius: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0.0625rem solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: auto;
    flex: 0 1 calc(33.333% - 1.25rem);
    min-width: 18.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ccs-why-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 1.875rem rgba(43, 61, 145, 0.15);
}

.ccs-why-icon-wrap {
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.ccs-why-card:hover .ccs-why-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.ccs-why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.ccs-why-card p {
    font-size: 0.875rem;
    color: #505050;
    line-height: 1.6;
    text-align: center;
}

/* Color Variants for Why Choose Cards */
.wc-color-1 {
    background: #F0F7FF;
}

.wc-color-1 .ccs-why-icon-wrap {
    background: #DBEAFE;
    color: #3B82F6;
}

.wc-color-2 {
    background: #FDF4FF;
}

.wc-color-2 .ccs-why-icon-wrap {
    background: #FAE8FF;
    color: #A855F7;
}

.wc-color-3 {
    background: #F0FDF4;
}

.wc-color-3 .ccs-why-icon-wrap {
    background: #DCFCE7;
    color: #22C55E;
}

.wc-color-4 {
    background: #FEFCE8;
}

.wc-color-4 .ccs-why-icon-wrap {
    background: #FEF9C3;
    color: #EAB308;
}

.wc-color-5 {
    background: #FFF1F2;
}

.wc-color-5 .ccs-why-icon-wrap {
    background: #FFE4E6;
    color: #F43F5E;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .ccs-hero {
        padding: 2.5rem 0;
    }

    .ccs-hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "actions";
        text-align: center;
        gap: 1.875rem;
        margin-bottom: 1.875rem;
    }

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

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

    .ccs-subheading {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .ccs-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .ccs-hero-visual {
        width: 100%;
        max-width: 28.125rem;
        margin: 0 auto;
    }

    .ccs-features-grid {
        grid-template-columns: 1fr;
        padding: 0 0.625rem;
    }

    .ccs-feature-card {
        padding: 1.5625rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ccs-why-card {
        min-width: 100%;
    }

    .ccs-btn-refined,
    .ccs-btn-white {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
    }
}
