/* FONT FAMILY INTEGRATION */
@font-face {
    font-family: SatoshiRegular;
    src: url(fonts/satoshi/Satoshi-Regular.woff2);
}

@font-face {
    font-family: SatoshiMedium;
    src: url(fonts/satoshi/Satoshi-Medium.woff2);
}

@font-face {
    font-family: SatoshiBlack;
    src: url(fonts/satoshi/Satoshi-Black.woff2);
}

@font-face {
    font-family: SatoshiBold;
    src: url(fonts/satoshi/Satoshi-Bold.woff2);
}

:root {
    --text-grey-color: #4c4c4c;
    --text-heading-color: #2B2B2B;
    --white-color: #FFFFFF;
    --border-color: #D9D9D9;
    --orange-text: #B5786B;
    --text-light-grey-color: #777777;
    --text-dard-grey-color: #E5E5E5;


    --grad-yellow: linear-gradient(135deg, #FFF9E3 0%, #FFEFBA 100%);
    --grad-green: linear-gradient(135deg, #F0FFF4 0%, #D1FAE5 100%);
    --grad-blue: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    --grad-purple: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
}

.ai-product-section * {
    box-sizing: border-box;
    /* margin: 0; */
}

.ai-product-section {
    /* background-color: #F6F6F6; */
    min-height: 100vh;
    padding: 64px 24px;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    font-family: 'SatoshiRegular', sans-serif;
}

.ai-product-section .container {
    max-width: 1220px;
    margin: 0 auto;
}


.ai-product-section .container .header-content {
    text-align: center;
}

.ai-product-section .container .header-content .sub-intro {
    font-family: 'SatoshiMedium';
    font-size: 14px;
    color: #777777;
    margin-bottom: 15px;
}

.ai-product-section .container .header-content h1 {
    font-family: 'SatoshiBlack';
    font-size: 22px;
    /* color: #2B2B2B; */
    color: #000;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.ai-product-section .container .header-content p {
    /* color: #4c4c4c; */
    color: #000;
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
}


.ai-product-section .container .exact-bento-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    height: 620px;
    gap: 20px;
}

.ai-product-section .container .exact-bento-grid .bento-card-base {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-color: #f8f8f8;
    transition: transform 0.3s ease;
}


.ai-product-section .container .exact-bento-grid .bento-card-base .main-bg {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.ai-product-section .container .exact-bento-grid .bento-card-base .custom-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

.custom-icon-stat {
    width: 24px;
    height: 24px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 4px;
}


.ai-product-section .container .exact-bento-grid .bento-card-base .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 2;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #ffffff;
}

.ai-product-section .container .exact-bento-grid .bento-card-base .card-overlay p {
    font-family: 'SatoshiBold';
    font-size: 20px;
    margin: 0;
    line-height: 1.3;
}


.grid-col-split {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.stat-card.mixed-gradient-bg {

    background: linear-gradient(90deg,
            #f3dc89 0%,
            #c3c5f7 40%,
            #a4f5b2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.stat-main {
    font-family: 'SatoshiBlack';
    font-size: 50px;
    color: #000;
    line-height: 1;
}

.stat-card p {
    font-family: 'SatoshiBold';
    color: #4c4c4c;
    font-size: 16px;
    margin-top: 10px;
    max-width: 80%;
}


@media (max-width: 1024px) {
    .ai-product-section .container .exact-bento-grid {
        grid-template-columns: 1.5fr 1fr;
        height: auto;
        min-height: 800px;
    }

    .grid-col-tall {
        grid-column: span 2;
        height: 350px;
    }
}


@media (max-width: 640px) {
    .ai-product-section .container .exact-bento-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }

    .grid-col-large,
    .grid-col-split,
    .grid-col-tall {
        grid-column: span 1;
        height: 380px;
    }

    .grid-col-tall {
        margin-top: 170px;
    }

    .grid-col-split {
        grid-template-rows: auto auto;
    }

    .stat-card.mixed-gradient-bg {
        height: 280px;
    }

    .small-feature,
    .stat-card {
        height: 250px;
    }

    .stat-main {
        font-size: 60px;
    }
}

@media (min-width: 375px) {
    .ai-product-section .container .header-content h1 {
        font-size: 26px;
    }

    .ai-product-section .container .header-content p {
        font-size: 18px;
    }

}

@media (min-width: 768px) {
    .ai-product-section .container {
        max-width: 680px;
    }

    .ai-product-section {
        padding: 72px 0px;
    }
}

@media (min-width: 1000px) {

    .ai-product-section .container .header-content h1 {
        font-size: 32px;
    }

    .ai-product-section .container {
        max-width: 900px;
    }

    .ai-product-section {
        padding: 96px 0px;
    }
}

@media (min-width: 1200px) {
    .ai-product-section .container {
        max-width: 1024px;
    }

}

@media (min-width: 1400px) {
    .ai-product-section .container {
        max-width:1260px;
    }

}

@media (min-width: 1600px) {
    .ai-product-section .container .header-content h1 {
        font-size: 40px;
    }
}