/*************************************************************************************************/
/* 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: auto; /* Set your desired fixed width */
    object-fit: contain;
    margin-top:20px;
    margin-bottom:10px;
}


.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-tagline {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 20px;
    text-align: center;
    color: #6b7280;
}


.container-feature {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}


.container-feature h2 {
    font-size: 24px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.container_hero {
    margin-top: 40px;
    margin-bottom: 20px;
}


.container_hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #0d9488 50%, #065f46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}


.container_hero h4 {
    padding: 0px;
}

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


.container_action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 8px;
}

.container_action_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.action-button-spaced {
    margin: 0 8px;
  }

section {
    margin-bottom: 40px;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

video {
    width: 100%;
    height: auto;
    display: block;
}



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


.docs-image {
    width: 800px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.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: #292e40;;
    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;
    color: #333;
}


/* 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;
}


/*****************
/* Screenshot
******************/


.screenshot:hover {
    transform: scale(1.4);
}

/* Alternative larger scale effect */
.screenshot.large-hover:hover {
    transform: scale(1.5);
}

.screenshot-container {
    max-width: 60%;
    margin: 40px auto 40px auto;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}


.placeholder {
    width: 800px;
    height: 500px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1);
}


/*****************
/* Architecture
******************/

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

.architecture img {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    margin-top:20px;
    margin-bottom:10px;
}

/*****************
/* Enhanced Feature Sections
******************/

.feature-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0;
    margin: 20px 0 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #0d9488 50%, #065f46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-content {
    padding: 20px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 16px;
    flex-shrink: 0;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.feature-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/*****************
/* Enhanced Top 9 Reasons Section
******************/

.reasons-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.reasons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.reasons-header {
    text-align: center;
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    position: relative;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-card.featured {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    border-color: transparent;
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 24px;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.reason-card.featured .reason-number {
    background: white;
    color: #4f46e5;
}

.reason-icon-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 16px;
    margin: 20px 0 24px;
    border: 2px solid #e2e8f0;
}

.reason-card.featured .reason-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.reason-icon {
    width: 32px;
    height: 32px;
    color: #4f46e5;
}

.reason-card.featured .reason-icon {
    color: white;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1e293b;
    line-height: 1.3;
}

.reason-card.featured h3 {
    color: white;
}

.reason-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.reason-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/*****************
/* Legacy styles for backwards compatibility
******************/

.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, #4f46e5 0%, #3b82f6 100%);
}

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

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

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

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

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

/* Mobile styles for index page */
@media screen and (max-width: 768px) {
    .features {
        padding: 10px 0;
    }

    /* Enhanced Feature Sections Mobile */
    .feature-showcase {
        padding: 0;
        margin: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .feature-header h3 {
        font-size: 1.3rem;
    }

    .feature-content p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* Enhanced Reasons Section Mobile */
    .reasons-section {
        padding: 60px 0;
    }

    .reasons-header {
        margin-bottom: 40px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .reason-card {
        padding: 28px 20px;
        min-height: 250px;
    }

    .reason-card h3 {
        font-size: 1.1rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }

    .reason-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        left: 20px;
        top: -12px;
    }

    .reason-icon-wrapper {
        padding: 14px;
        margin: 18px 0 20px;
    }

    .reason-icon {
        width: 28px;
        height: 28px;
    }

    /* Legacy Mobile Styles */
    .features2 {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    h1 {
        font-size: 32px;
    }

    .feature-card2 {
        padding: 24px;
    }

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

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

    .container_hero h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

}

/* Tablet styles for enhanced sections */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .reason-card:nth-child(9) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/*****************
/* Blog Post Link
******************/

.blog-link-section {
    padding: 0 0 40px 0;
    margin-bottom: 20px;
}

.blog-post-link {
    display: block;
    max-width: 750px;
    margin: 0 auto;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-link-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.blog-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.blog-title {
    flex: 1;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.blog-arrow svg {
    width: 20px;
    height: 20px;
    color: white;
}

.blog-post-link:hover .blog-arrow {
    transform: translateX(4px);
}

/* Mobile styles for blog link */
@media screen and (max-width: 768px) {
    .blog-link-section {
        padding: 30px 0;
    }
    
    .blog-link-content {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .blog-icon {
        width: 40px;
        height: 40px;
    }
    
    .blog-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .blog-title {
        font-size: 0.9rem;
    }
    
    .blog-arrow {
        width: 28px;
        height: 28px;
    }
    
    .blog-arrow svg {
        width: 18px;
        height: 18px;
    }
}