@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* CSS VARIABLES & RESET */
:root {
    --primary-blue: #008acf;
    --accent-cyan: #00d4ff;
    --bg-white: #ffffff;
    --text-dark: #111418;
    --text-gray: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.page-container {
    max-width: 100%;
    margin: 0 auto;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.fade-in-up-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* SHARED SECTION STYLES */
.section {
    padding: 50px 0;
}

.content-wrapper {
    /* max-width: 87.5rem; */
    margin: 0 auto;
    padding: 0 3%;
}

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

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.033em;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 56.25rem;
    margin: 0 auto;
    color: var(--text-gray)
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 56.25rem;
    margin: 0 auto;
    color: var(--text-gray);
}

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

/* HERO SECTION  */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    background: var(--bg-white);
}

.hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4.375rem;
    align-items: center;
}

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

.hero-visual lottie-player {
    width: 100%;
    max-width: 500px;
    height: 500px !important;
    filter: drop-shadow(0 1.25rem 2.5rem rgba(0, 138, 207, 0.15));
    transition: transform 0.3s ease;
}

.hero-visual:hover lottie-player {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-highlight-text {
    font-weight: 700;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: 1.4rem;
}

.hero-additional-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btns .btn-main {
    display: inline-block;
    background: #ffffff !important;
    color: #2655A5 !important;
    border: 1.5px solid #2655A5 !important;
    padding: 0.625rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-radius: 0.5rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btns .btn-main:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 138, 207, 0.3);
}

/* WHAT WE DO / OUTCOMES SECTION */
.outcomes-section {
    background: #f8fafc;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
    margin-top: 2.5rem;
}

.outcome-card {
    background: var(--bg-white);
    border: 0.0625rem solid #e2e8f0;
    border-radius: 1rem;
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.outcome-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 138, 207, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;

}

.outcome-icon .material-symbols-outlined {
    font-size: 2rem;
}

.outcome-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.outcome-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* WHY CHOOSE US SECTION */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.benefit-card {
    width: calc((100% - 4rem) / 3);
    text-align: center;
    padding: 2.5rem;
    border-radius: 1rem;
    background: #fff;
    border: 0.0625rem solid #f0f4f8;
    transition: var(--transition);
}

.benefit-card:hover {
    background: #f8fafc;
}

.benefit-icon-circle {
    width: 5rem;
    height: 5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 138, 207, 0.1);
}

.benefit-icon-circle .material-symbols-outlined {
    font-size: 2.25rem;
}

.benefit-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

/* CTA SECTION */
.bt-cta {
    padding: 50px 0;
    background: #fff;
}

.cta-banner-premium {
    background: #cfeafd;
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0 5% 0 2%;
    overflow: hidden;
    position: relative;
}

.cta-info-side {
    flex: 1.2;
    padding: 0.9375rem;
    text-align: left;
}

.cta-info-side h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.0625rem;
    margin-top: 0.625rem;
}

.cta-info-side p {
    font-size: 1.15rem;
    color: #475569;
    max-width: 50rem;
    line-height: 1.6;
    margin-bottom: 2.1875rem;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-cta-white {
    display: inline-block;
    background: #ffffff !important;
    color: #2655A5 !important;
    border: 1.5px solid #2655A5 !important;
    padding: 0.625rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-radius: 0.5rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-3px);
}

.cta-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-self: center;
}

.cta-mockup-img {
    max-height: 31.25rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transform: translateY(20px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        gap: 1.25rem;
    }

    .benefit-card {
        width: calc((100% - 1.25rem) / 2);
    }

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

    .cta-info-side {
        display: contents;
    }

    .cta-info-side h2 {
        order: 1;
        margin-bottom: 15px;
    }

    .cta-info-side p {
        order: 2;
        margin-bottom: 25px;
    }

    .cta-image-side {
        order: 3;
        width: 100%;
        justify-content: center;
        align-self: center;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .cta-mockup-img {
        max-height: 12.5rem;
        transform: translateY(0);
    }

    .cta-actions {
        order: 4;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .hero-text {
        display: contents;
    }

    .hero-title {
        order: 1;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-description {
        order: 2;
        margin-bottom: 15px;
    }

    .hero-additional-text {
        order: 3;
        margin-bottom: 20px;
    }

    .hero-visual {
        order: 4;
        margin-bottom: 30px;
        width: 100%;
    }

    .hero-btns {
        order: 5;
        margin-bottom: 20px;
    }

    .hero-visual iframe {
        width: 100%;
        max-width: 25rem;
        height: 25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        width: 100%;
    }
}