/* Enterprise Hero Section */
.enterprise-hero {
    background: linear-gradient(0deg, #390c5b 0%, #2a153b 50%, #030106 100%);
    padding: 80px 0 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.enterprise-hero-container {
    max-width: 1202px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 100px;
}

/* Top Feature List */
.enterprise-hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #D7BFF3;
    font-size: 14px;
    font-weight: 500;
}

.hero-feature-item svg {
    flex-shrink: 0;
}

/* Hero Content */
.enterprise-hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.enterprise-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: white;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.enterprise-hero-description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 714px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-hero-description strong {
    font-weight: 700;
    color: white;
}

.hero-cta .btn-secondary{
    background-color: rgba(222, 233, 72, 1);
    color: rgba(14, 18, 27, 1);
    width: 178px;
    height: 52px;
    border-radius: 50px;
    line-height: 28px;
    font-size: 16px;
}
.hero-cta .btn-primary {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(14, 18, 27, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    width: 150px;
    height: 52px;
    border-radius: 50px;
    line-height: 28px;
    font-size: 16px;
}
.m-40{
    margin: 40px 0;
}


/* AI Assistant Section */
.ai-assistant-section {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 100px;
    font-family: 'PolySans', sans-serif;
}

.ai-assistant-container {
    max-width: 1202px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.ai-assistant-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-assistant-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0e121b;
    letter-spacing: -0.02em;
}

.ai-assistant-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 900px;
    margin: 0 auto;
}

/* Two Column Layout */
.ai-assistant-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    position: relative;
}

/* Left Sticky Navigation */
.ai-assistant-nav {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    height: fit-content;
}

.ai-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-feature-nav-item {
    margin-bottom: 24px;
}

.ai-features-list .nav-link {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    color: #2c2f36;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.ai-features-list .nav-link svg {
    flex-shrink: 0;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.ai-features-list .nav-link:hover {
    color: rgba(101, 51, 145, 1);
}

.ai-features-list .nav-link:hover svg {
    color: rgba(101, 51, 145, 1);
}

.ai-feature-nav-item.active .nav-link {
    color: rgba(101, 51, 145, 1);
    font-weight: 600;
}

.ai-feature-nav-item.active .nav-link svg {
    color: rgba(101, 51, 145, 1);
}

/* Right Content Area */
.ai-assistant-details {
    position: relative;
}

.ai-feature-detail {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
    border-bottom: solid 1px #cacfd8;
}

.ai-feature-detail:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.feature-detail-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0e121b;
    letter-spacing: -0.02em;
}

.feature-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-detail-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    background-image: url(../assets/circle-check.svg);
    background-repeat: no-repeat;
    background-size: 22px 28px;
}

.feature-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

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

.call-to-action-section, .personas-section, .discovery-section{
    padding: 80px 0;
}
.call-to-action-section h2{
    margin: 30px 0;
    font-size: 37px;
    font-weight: 500;
}
.call-to-action-section img{
    max-width: 100%;
}
.call-to-action-image{
    max-width: 850px;
    margin:0 auto;
}

.discovery-section{
    background: #2f1347;
    color: #ffffff;
}

.discovery-section h2{
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 48px;
}

.discovery-section p{
    font-size: 16px;
    margin-bottom: 36px;
}
.discovery-section .box-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-bottom: solid 1px #5f4971;
    margin-bottom: 40px;
}
.discovery-section .box h3{
    margin-bottom: 12px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .enterprise-hero-features {
        gap: 30px;
    }
    
    .enterprise-hero-title {
        font-size: 56px;
    }
    
    .enterprise-hero-description {
        font-size: 20px;
    }
    .ai-assistant-content {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .ai-assistant-title {
        font-size: 40px;
    }
    
    .feature-detail-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .enterprise-hero {
        padding: 60px 0 80px 0;
    }
    
    .enterprise-hero-features {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .hero-feature-item {
        font-size: 14px;
    }
    
    .enterprise-hero-title {
        font-size: 40px;
    }
    
    .enterprise-hero-description {
        font-size: 18px;
    }
    .ai-assistant-section {
        padding: 60px 0;
    }
    
    .ai-assistant-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-assistant-nav {
        position: static;
        top: auto;
    }
    
    .ai-feature-nav-item {
        margin-bottom: 16px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .ai-assistant-title {
        font-size: 36px;
    }
    
    .feature-detail-title {
        font-size: 28px;
    }
    
    .ai-feature-detail {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 576px) {
    .enterprise-hero {
        padding: 40px 0 60px 0;
    }
    
    .hero-feature-item {
        font-size: 13px;
    }
    
    .hero-feature-item svg {
        width: 18px;
        height: 18px;
    }
    
    .enterprise-hero-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .enterprise-hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .enterprise-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .enterprise-hero-btn {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
    }

    .ai-assistant-title {
        font-size: 28px;
    }
    
    .ai-assistant-description {
        font-size: 16px;
    }
    
    .feature-detail-title {
        font-size: 24px;
    }
    
    .feature-detail-list li {
        font-size: 16px;
    }
}


/* Introducing Personas Section */
.personas-section {
    padding: 80px 0;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Two Column Layout */
.personas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* Left Column - Image Container */
.personas-image-container {
    position: relative;
    width: 100%;
}

.personas-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.personas-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.personas-image.active {
    opacity: 1;
    position: relative;
}

/* Right Column - Accordion */
.personas-accordion-container {
    padding-top: 20px;
}

.personas-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0e121b;
}

.personas-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Accordion */
.personas-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-top: 1px solid #e5e7eb;
    padding: 14px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-item.active {
    background: #fcfaff;
    padding: 14px 10px;
    border-top: 2px solid rgba(101, 51, 145, 1);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #0e121b;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item:hover .accordion-title {
    color: rgba(101, 51, 145, 1);
}

.accordion-item.active .accordion-title {
    color: rgba(101, 51, 145, 1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    margin-top: 12px;
}

.accordion-content p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(101, 51, 145, 1);
    margin: 0;
}

.whats-next-section{
    padding: 80px 0 120px 0;
}

.whats-next-section h2{
    margin: 24px 0;
    font-size: 48px;
    font-weight: 600;
}

.whats-next-section p{
    margin-bottom: 48px;
}

.whats-next-section .box-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.whats-next-section .box{
    border-radius: 20px;
    box-shadow: 0 2px 5px rgb(104 104 104 / 30%);
}

.whats-next-section .box:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whats-next-section .image-container{
    border-bottom: solid 1px #dbdbdb;
}

.whats-next-section .box img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.whats-next-section .box .box-details{
    padding: 20px 25px;
}
.whats-next-section .box .box-details h3{
    max-width: 268px;
    margin-bottom: 15px;
}
.whats-next-section .box .box-details p{
    margin-bottom: 20px;
    max-width: 280px;
    color: #653391;
    font-size: 18px;
}

.whats-next-section .box ul{
    list-style-type: none;
}

.whats-next-section .box li{
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 32px;
    position: relative;
    background-image: url(../assets/circle-check.svg);
    background-repeat: no-repeat;
    background-size: 22px 28px;
    border-bottom: solid 1px #e2e4eb;
    padding-bottom: 6px;
    margin: 6px 0;
    max-width: 314px;
}
.whats-next-section .box li:last-child{
    border-bottom: none;
}

/* Responsive Design */

@media screen and (max-width: 768px) {
    .personas-section {
        padding: 60px 0;
    }
    
    .personas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .personas-title {
        font-size: 36px;
    }
    
    .accordion-title {
        font-size: 20px;
    }
    
    .accordion-item {
        padding: 20px 0;
    }
    .whats-next-section .box-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .whats-next-section .box .box-details h3{
        max-width: 100%;
    }
    .whats-next-section .box .box-details p{
        max-width: 100%;
    }
    .whats-next-section .box li{
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .personas-title {
        font-size: 28px;
    }
    
    .personas-subtitle {
        font-size: 16px;
    }
    
    .accordion-title {
        font-size: 18px;
    }
    
    .accordion-content p {
        font-size: 16px;
    }
    .discovery-section .box-container{
        grid-template-columns: repeat(1, 1fr);
        gap:2px;
    }
}
