
html {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }
}


.products-section {
    max-width: 1200px;
    margin: 13rem auto auto auto;
}

.products-title h1 {
    margin-top: -40px;
    line-height: 130px;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.products-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2e3a59;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.product-card {
    background: #fff;
    border-radius: 50px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card-icon {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-card-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.product-button {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(58, 157, 251, 0.3);
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(58, 157, 251, 0.4);
    color: white;
    text-decoration: none;
}


.benefits-section {
    background: linear-gradient(135deg, rgba(58, 157, 251, 0.05), rgba(9, 105, 194, 0.05));
    padding: 5rem 0;
    margin: 5rem 0 0 0;
}

.benefits-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-text {
    color: #5a6c7d;
    line-height: 1.6;
}


.heading-gradient {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3a9dfb;
}


@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.scroll-down-animated {
    animation: bounceDown 1.2s infinite;
}

.scroll-down-wrapper {
    margin-top: 10px;
}


.ai-products {
    max-width: 1200px;
    margin: 3rem auto 4rem auto;
    padding: 0 2rem;
}

.ai-product {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(40, 55, 85, 0.06);
    margin-bottom: 2rem;
}

.ai-features {
    list-style-type: none;
}

.ai-product:nth-child(even) {
    flex-direction: row-reverse;
}

.ai-media {
    flex: 0 0 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-media-icon {
    width: 320px;
    height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    box-shadow: 0 8px 30px rgba(9, 105, 194, 0.12);
}

.ai-content {
    flex: 1;
}

.ai-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.ai-content .lead {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.ai-features {
    margin: 0 0 1rem 0;
    padding-left: 0rem;
}

.ai-features li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.ai-product .product-button {
    margin-top: 6px;
}

@media (max-width: 991.98px) {
    .ai-product {
        flex-direction: column;
        text-align: center;
    }

    .ai-product:nth-child(even) {
        flex-direction: column;
    }

    .ai-media {
        flex-basis: auto;
    }

    .ai-media-icon {
        width: 250px;

    }

    .ai-features {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }
}


@media (max-width: 575.98px) {
    .products-title h1 {
        
        font-size: clamp(3.3rem, 6.5vw, 2rem);
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.15;
        white-space: normal;
        word-break: break-word;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .ai-product {
        flex-direction: column;
        text-align: center;
    }

    .ai-product:nth-child(even) {
        flex-direction: column;
    }

    .ai-media {
        flex-basis: auto;
    }

    .ai-media-icon {}
}
