/*************************************************************************************************/
/* Index page */
/*************************************************************************************************/

.hero {
    text-align: center;
    padding: 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img.desktop {
    max-width: 100%;
    height: auto;
    width: 1200px; /* Set your desired fixed width */
    object-fit: contain;
}


.hero img.mobile {
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: contain;
    display: none;
    padding: 0 0 0px;
}


.subtitle {
    font-size: 18px;
    color: #292e40;
    margin-bottom: 0;
}

.hero-icon {
    width: 0.9em;
    height: 0.9em;
    color: currentColor;
    display: inline-flex;
    vertical-align: middle;
}

.hero-formula {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
}



/*************************************************************************************************/
/* Features and Chat */
/*************************************************************************************************/


.features h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.features {
    background-color: #f8f8f8;
    padding: 10px 0;
    text-align: left;
}

.features ul {
    font-family: 'Georgia', serif;
    font-size: 18px;
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.features li.visible {
    opacity: 1;
    transform: translateY(0);
}

.chat-container {
    max-width: 600px;
    margin: 0 auto;
}

.chat-message {
    margin-bottom: 20px;
}

.chat-bubble {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 12px 18px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.chat-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #3b82f6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
    align-self: flex-start;
}

.chat-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.chat-text {
    margin: 0;
    font-family: "Courier New", Courier, monospace;
    font-size: 15px;
    line-height: 1.4;
}

/* Animations */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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


/*****************
/* Top 6 reasons
******************/


.features2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;  
    margin-top: 40px;
    padding-bottom: 20px;
}

.quickstart-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}


.feature-card2 {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.feature-card2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #292e40 20%, #4f46e5 100%);
}

.feature-icon2 {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #3b82f6;
}

.feature-title2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333;
}

.feature-description2 {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
    flex-grow: 1;
}

.get-started2 {
    display: block;
    margin: 40px auto 0;
}

.fade-me-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

@media screen and (max-width: 768px) {
    .features {
        padding: 10px 0;
    }

    .features2 {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .feature-card2 {
        padding: 24px;
    }

    .feature-title2 {
        font-size: 20px;
    }

    .hero img.desktop {
        display: none;
    }
    
    .hero img.mobile {
        display: block;
    }
}