/* Hero section styles */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    color: var(--text-color-light);
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-cta-btn {
    background-color: var(--secondary-orange);
    color: var(--text-color-dark);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.hero-cta-btn:hover {
    background-color: var(--secondary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Scroller Styles */
.scroller-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 10px 0;
}

.scroller-mask {
    mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}

.image-scroller {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    animation: scroll-left 12s linear infinite;
}

.scroller-container:hover .image-scroller {
    animation-play-state: paused;
}

.image-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 20px));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-100% - 20px));
    }

    100% {
        transform: translateX(0);
    }
}

.scroll-right {
    animation: scroll-right 12s linear infinite;
}



/* Info Cards Section */
.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Make each card a box */
.info-card {
    background: var(--text-color-light);
    border-left: 10px solid var(--card-border-left);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: transform 0.2s ease;
}


.info-card:hover {
    transform: translateY(-5px);
}

.info-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color-darker);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-color-medium-dark);
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .info-cards-container {
        flex-direction: row;
    }

    .info-card h2 {
        font-size: 2rem;
    }

    .info-card p {
        font-size: 1.125rem;
    }
    .ai-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}



/* AI Section */
.ai-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto 2rem auto;
    background-color: var(--bg-white);
    text-align: center;
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
}


@media (min-width: 768px) {
    
}

.ai-section:hover {
    background-color: var(--bg-black);
}

.ai-section:hover .ai-text h2,
.ai-section:hover .ai-text p {
    color: var(--text-color-light);
}

.ai-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color-darkest);
    transition: color 0.3s ease;
}

.ai-text p {
    font-size: 1rem;
    margin-top: 10px;
    color: var(--text-color-dark);
    max-width: 600px;
    transition: color 0.3s ease;
}

.early-access-btn {
    background-color: var(--primary-blue);
    color: var(--text-color-light);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.ai-section:hover .early-access-btn {
    background-color: var(--bg-black);
    color: var(--text-color-light);
    border: 2px solid var(--card-border-left);
}

/* Cost+ Service Model Section */
.cost-model-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--bg-black);
    color: var(--text-color-light);
    padding: 3rem 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
    border-radius: 16px;
}


@media (min-width: 768px) {
    .cost-model-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.cost-model-left {
    flex: 1;
    padding-right: 2rem;
}

.cost-model-title {
    color: var(--card-border-left);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}



.cost-model-left p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color-light-gray);
}

.subscribe-btn {
    background-color: var(--primary-blue);
    color: var(--text-color-light);
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
}

.subscribe-btn:hover {
    background-color: var(--bg-black);
    color: var(--text-color-light);
    border: 2px solid var(--card-border-left);
}


.cost-model-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.model-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 8px;
    padding: 1.25rem;
    transform: rotate(-1deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: var(--text-color-darker);
}


.model-card:nth-child(even) {
    transform: rotate(1.5deg);
}


.model-card:hover {
    transform: scale(1.02);
}

.blue-card {
    background-color: var(--primary-blue);
    color: var(--text-color-black);
}

.yellow-card {
    background-color: var(--card-border-left);
    color: var(--text-color-black);
}

.model-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.model-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-color-darker);
}


.card-number {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.6;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .ai-section {
        margin: 0 1rem 2rem 1rem;
        padding: 2rem 1rem;
        border-radius: 10px;
    }

    .cost-model-section {
        margin: 0 1rem;
        padding: 2.5rem 1rem;
        border-radius: 10px;
    }
}



/* AI Benefits Section */
.ai-benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.ai-benefits-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ai-benefits-text {
    flex: 1;
}

.benefit-item {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-blue-bright);
    padding-left: 1rem;
}


.benefit-item h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: var(--text-color-darkest);
}


.benefit-item p {
    margin: 0;
    color: var(--text-color-dark);
    font-size: 1rem;
}


.ai-benefits-image {
    flex: 1;
    text-align: center;
}

.ai-benefits-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 300px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .ai-benefits-content {
        flex-direction: column;
    }

    .ai-benefits-image img {
        max-height: none;
    }
}