@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.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #475569;
    letter-spacing: -0.025em;
}

.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: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0 3%;
    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;
}

.visual-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

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



.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.09375rem;
    margin-bottom: 1.875rem;
}

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

.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 / FEATURE MESH DESIGN */
.bt-wwd {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.sec-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sec-subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

.wwd-mesh-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.875rem;
    align-items: start;
}

.mesh-item {
    grid-column: span 2;
    position: relative;
    background: #fff;
    padding: 2.5rem 1.875rem;
    border-radius: 1.875rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 138, 207, 0.03);
    border: 0.0625rem solid rgba(0, 138, 207, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* Row 2 Centered Grid */
.mesh-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.mesh-item:nth-child(5) {
    grid-column: 4 / span 2;
}

.mesh-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: 0 30px 60px rgba(0, 138, 207, 0.1);
}

.mesh-icon-bg {
    position: absolute;
    top: -1.25rem;
    right: -0.625rem;
    font-size: 6.25rem;
    opacity: 0.05;
    color: var(--primary-blue);
    z-index: -1;
    pointer-events: none;
    transition: 0.5s;
}

.mesh-item:hover .mesh-icon-bg {
    transform: rotate(15deg) scale(1.2);
    opacity: 0.1;
}

.mesh-icon-main {
    width: 3.75rem;
    height: 3.75rem;
    background: linear-gradient(135deg, var(--primary-blue), #2A3C90);
    border-radius: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.5625rem;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 138, 207, 0.2);
}

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

.mesh-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.mesh-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Background Accents */
.bt-wwd::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(0, 138, 207, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bt-wwd::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 18.75rem;
    height: 18.75rem;
    background: radial-gradient(circle, rgba(42, 60, 144, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* WHY CHOOSE US SECTION */
.why-choose-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-header {
    text-align: center;
    max-width: 56.25rem;
    margin: 0 auto 3.75rem;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.9375rem;
    letter-spacing: -0.04em;
    text-align: center;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.5;
}

.benefit-points {
    list-style: none;
    padding: 0;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
}

.check-icon-wrapper {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.point-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

/* Lottie Container */
.lottie-container {
    width: 100%;
    max-width: 37.5rem;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottie-container lottie-player {
    width: 100% !important;
    height: auto !important;
    max-width: 31.25rem;
}

/* 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.2% 0 1.3%;
    overflow: hidden;
    position: relative;
}

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

.cta-info-side h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.09375rem;
    margin-top: 1.875rem;
}

.cta-info-side p {
    font-size: 1.3rem;
    color: #475569;
    max-width: 50rem;
    margin-bottom: 2.5rem;
}

.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(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .hero-section {
        min-height: auto;
        padding: 3.75rem 5%;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .wwd-mesh-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.875rem;
    }

    .mesh-item,
    .mesh-item:nth-child(4),
    .mesh-item:nth-child(5) {
        grid-column: span 1;
        margin-top: 0 !important;
    }

    .mesh-item:nth-child(5) {
        grid-column: span 2;
        justify-self: center;
        max-width: 50%;
        width: 100%;
    }

    .why-choose-split {
        gap: 2.5rem;
    }

    .why-choose-title {
        font-size: 2.75rem;
    }

    .stats-testimonial-card {
        padding: 2.5rem;
    }

    .stat-value {
        font-size: 3rem;
    }

    .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;
    }

    .visual-container {
        width: 100%;
        max-width: 21.875rem;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 100%;
        height: auto;
    }

    .wwd-mesh-grid {
        grid-template-columns: 1fr;
    }

    .mesh-item:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
    }

    .sec-title {
        font-size: 2.75rem !important;
    }

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

    .cta-info-side p {
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
    }

    .cta-banner-premium {
        padding: 1.875rem 1.25rem !important;
    }

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

    .section-subtitle {
        font-size: 1.15rem;
        color: #475569;
        line-height: 1.7;
    }

    .why-choose-split {
        display: flex;
        flex-direction: column;
        gap: 3.125rem;
    }

    .why-choose-left {
        order: 2;
    }

    .why-choose-right {
        order: 1;
        margin-bottom: 30px;
    }

    .why-choose-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .why-choose-subtitle {
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    .benefit-point {
        gap: 0.9375rem;
    }

    .point-text {
        font-size: 1.1rem;
    }

    .stats-testimonial-card {
        padding: 1.875rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }
}