/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #8B5CF6;
}

.cta-button {
    background: #1A1A1A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 80px;
    background: white;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-button.primary {
    background: #1A1A1A;
    font-size: 18px;
    padding: 16px 32px;
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease-out;
    position: relative;
    transform: none !important; /* Fixed position, no parallax */
}


/* Section Image */
.section-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.6s ease-out;
}

/* Mobile/Desktop visibility */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

/* Metrics Section */
.metrics-section {
    padding: 0;
    margin-top: 100px; /* Reduced spacing from hero section */
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
    padding: 0;
}


/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.features-scroll-container {
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    position: relative;
}

.features-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.features-scroll-container {
    scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
.features-scroll-container {
    -ms-overflow-style: none;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 2;
}

.carousel-arrow {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    border: 2px solid #E4E4E4;
}

.carousel-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.carousel-arrow::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
}

.carousel-arrow.prev::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.carousel-arrow.next::after {
    transform: rotate(45deg);
    margin-right: 4px;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.features-grid {
    display: flex;
    gap: 36px;
    padding: 0 20px;
    width: fit-content;
}

.feature-card {
    flex: 0 0 450px;
    border-radius: 12px;
    border: 1px solid #E4E4E4;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
    height: 550px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-visual {
    background: linear-gradient(180deg, #E0E0FA 0%, #9892EB 100%);
    padding: 52px 40px;
    height: 430px;
    display: flex;
    flex-direction: column;
}

.feature-visual-image {
    height: 430px;
    overflow: hidden;
}

.feature-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-header {
    margin-bottom: 32px;
}

.feature-name {
    font-size: 24px;
    font-weight: 500;
    color: black;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

/* Insight Card Styles */
.overview-card {
    background: rgba(255, 255, 255, 0.30);
    border-radius: 12px;
    border: 1.57px solid white;
    padding: 16px;
    margin-bottom: 16px;
    height: 106px;
}

.overview-label {
    font-size: 12px;
    color: black;
    margin-bottom: 20px;
}

.overview-metrics {
    display: flex;
    gap: 10px;
}

.metric {
    flex: 1;
    text-align: center;
}

.metric-value {
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 10px;
    color: #3C3C3C;
}

.csat-card {
    background: rgba(255, 255, 255, 0.30);
    border-radius: 12px;
    border: 1.57px solid white;
    padding: 16px;
    position: relative;
    height: 180px;
}

.csat-label {
    font-size: 12px;
    color: black;
    margin-bottom: 16px;
}

.csat-chart {
    height: 80px;
    margin-bottom: 10px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #3C3C3C;
}

/* Audit Logging Card Styles */
.audit-log-card {
    background: rgba(255, 255, 255, 0.30);
    border-radius: 12.56px;
    border: 1.57px solid white;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.audit-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #565AC8;
}

.audit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #565AC8;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.audit-content {
    flex: 1;
}

.audit-text {
    font-size: 14px;
    color: black;
    margin-bottom: 4px;
}

.audit-time {
    font-size: 14px;
    color: black;
    opacity: 0.5;
}

.audit-placeholder {
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Develop Card Styles */
.develop-suggestions {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.suggestion-card {
    background: rgba(255, 255, 255, 0.30);
    border: 1.57px solid white;
    border-radius: 12.56px;
    padding: 20px;
    margin-bottom: 16px;
}

.suggestion-card.mini {
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 10.43px 10.43px 0 0;
    margin-bottom: -2px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suggestion-card.main {
    height: 134px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.suggestion-label {
    font-size: 12px;
    color: black;
    margin-bottom: 8px;
}

.suggestion-text {
    font-size: 12px;
    color: black;
    line-height: 1.4;
}

.action-buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
}

.action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #8460F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    transform: scale(1.1);
}

/* Feature Description Box */
.feature-description-box {
    padding: 20px;
    background: white;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: black;
    line-height: 1.4;
}

/* Testimonial Section */
.testimonial-section {
    padding: 0;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-metrics {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.testimonial-metric {
    text-align: center;
}

.testimonial-metric-value {
    font-size: 48px;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 8px;
}

.testimonial-metric-label {
    font-size: 16px;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.company-logo {
    height: 40px;
    width: auto;
}

/* Categories Section */
.categories-section {
    padding: 0;
}

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

.category-card {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* Footer Section */
.footer-section {
    display: flex;
}

.footer-cta {
    flex: 1;
    background: linear-gradient(135deg, #8B5CF6 0%, #FFB86C 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    font-size: 32px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    text-align: left;
}

.footer-form {
    flex: 1;
    background: white;
    padding: 100px 0;
}

.form-content {
    max-width: 500px;
    margin: 0 auto;
}

.form-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #8B5CF6;
}

input::placeholder {
    color: #999;
}

.submit-button {
    background: #1A1A1A;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-on-scroll.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-on-scroll.animate-scaleIn {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Hero Animation */
.hero-left {
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.hero-right {
    opacity: 0;
    animation: slideInRight 1s ease-out 0.5s forwards;
}

/* Feature Cards Animation */
.feature-card {
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.feature-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.feature-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    /* Mobile/Desktop visibility */
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Header adjustments */
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero-content {
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-image {
        border-radius: 12px;
    }
    
    /* Section adjustments */
    .section-title {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .section-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* Features section mobile */
    .features-section {
        padding: 60px 0;
    }
    
    .features-scroll-container {
        margin-top: 40px;
        padding-bottom: 10px;
    }
    
    .features-grid {
        padding: 0 16px;
        gap: 16px;
    }
    
    .feature-card {
        flex: 0 0 300px;
        height: 400px;
    }
    
    .feature-visual-image {
        height: 300px;
    }
    
    .feature-description-box {
        height: 100px;
        padding: 16px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .feature-description {
        font-size: 12px;
    }
    
    /* Footer section mobile */
    .footer-cta {
        padding: 0;
    }
    
    .footer-cta .section-image {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .footer-text {
        font-size: 24px;
        text-align: center;
    }
    
    .footer-form {
        padding: 60px 20px;
    }
    
    .form-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    input {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .submit-button {
        font-size: 16px;
        padding: 16px 32px;
        margin-top: 16px;
    }
    
    /* Animation adjustments for mobile */
    .hero-left,
    .hero-right {
        animation: fadeInUp 0.8s ease-out forwards;
    }
    
    /* Remove parallax on mobile */
    .hero-image {
        transform: none !important;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger-icon {
        width: 24px;
        height: 24px;
        display: block;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        transition: right 0s 0.3s;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .mobile-menu-overlay.active {
        right: 0;
        opacity: 1;
        transition: right 0s, opacity 0.3s;
    }
    
    .mobile-menu {
        position: absolute;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-out;
        padding: 20px;
        overflow-y: auto;
    }
    
    .mobile-menu-overlay.active .mobile-menu {
        right: 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        color: #333;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .mobile-nav {
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        color: #333;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.3s;
    }
    
    .mobile-nav-link:hover {
        color: #8B5CF6;
    }
    
    .mobile-cta-button {
        background: #1A1A1A;
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 50px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
        width: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .mobile-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Container padding for mobile */
    .container {
        padding: 0 16px;
    }
    
    /* Hide carousel arrows on mobile */
    .carousel-nav {
        display: none;
    }
    
    /* Mobile Metrics Section */
    .mobile-metrics {
        background: linear-gradient(135deg, #A78BFA 0%, #6DD5FA 100%);
        padding: 60px 0;
    }
    
    .mobile-metrics-container {
        padding: 0 20px;
    }
    
    .mobile-section-title {
        font-size: 32px;
        font-weight: 700;
        color: #1A1A1A;
        text-align: left;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .mobile-section-description {
        font-size: 14px;
        color: #333;
        text-align: left;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .mobile-metrics-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-metric-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-metric-label {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
        font-weight: 500;
    }
    
    .mobile-metric-value {
        font-size: 48px;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 12px;
    }
    
    .mobile-metric-description {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
    }
    
    /* Mobile Comparison Section */
    .mobile-comparison {
        background: white;
        padding: 60px 0;
    }
    
    .mobile-comparison-container {
        padding: 0 20px;
    }
    
    .mobile-comparison-section {
        margin-top: 40px;
    }
    
    .mobile-chat-demo {
        background: #F5F3FF;
        border-radius: 20px;
        padding: 30px 20px;
        margin-bottom: 16px;
        position: relative;
        min-height: 200px;
    }
    
    .chat-message {
        background: white;
        padding: 16px 20px;
        border-radius: 20px;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.5;
        max-width: 85%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .chat-message.right {
        margin-left: auto;
        background: #F0F0F0;
    }
    
    .chat-message.left {
        margin-right: auto;
    }
    
    .chat-buttons {
        text-align: center;
        margin: 20px 0;
    }
    
    .chat-button {
        background: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 14px;
        color: #333;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .chat-dots {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-top: 20px;
    }
    
    .chat-dots span {
        width: 6px;
        height: 6px;
        background: #D0D0D0;
        border-radius: 50%;
    }
    
    .comparison-label {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }
    
    /* TeamKai section */
    .mobile-comparison-section.teamkai .mobile-chat-demo {
        background: linear-gradient(135deg, #E5D9FF 0%, #D9F0FF 100%);
        overflow: hidden;
    }
    
    .chat-overlay {
        position: relative;
    }
    
    .data-sources {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .data-tag {
        background: rgba(255, 255, 255, 0.7);
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 12px;
        color: #666;
    }
    
    .chat-message.ai-message {
        background: #8B5CF6;
        color: white;
        margin: 20px auto;
        text-align: center;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    }
    
    .process-tags {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }
    
    .process-tag {
        background: rgba(255, 255, 255, 0.7);
        padding: 10px 16px;
        border-radius: 20px;
        font-size: 13px;
        color: #333;
        text-align: center;
    }
    
    /* Mobile Features Section */
    .mobile-features {
        background: white;
        padding: 60px 0;
    }
    
    .mobile-features-container {
        padding: 0 20px;
    }
    
    .mobile-feature-block {
        margin-bottom: 60px;
    }
    
    .mobile-feature-visual {
        background: linear-gradient(180deg, #E0E0FA 0%, #9892EB 100%);
        border-radius: 20px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .mobile-feature-name {
        font-size: 20px;
        font-weight: 500;
        color: black;
        margin-bottom: 20px;
    }
    
    /* Insight Mobile */
    .mobile-overview-card {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        border: 1px solid white;
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .mobile-overview-label {
        font-size: 12px;
        color: black;
        margin-bottom: 16px;
    }
    
    .mobile-overview-metrics {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .mobile-metric {
        text-align: center;
    }
    
    .mobile-metric-value-small {
        font-size: 16px;
        font-weight: 600;
        color: black;
    }
    
    .mobile-metric-label-small {
        font-size: 9px;
        color: #3C3C3C;
        margin-top: 2px;
    }
    
    .mobile-csat-card {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        border: 1px solid white;
        padding: 16px;
    }
    
    .mobile-csat-label {
        font-size: 12px;
        color: black;
        margin-bottom: 12px;
    }
    
    .mobile-chart-months {
        display: flex;
        justify-content: space-between;
        font-size: 9px;
        color: #3C3C3C;
        margin-top: 8px;
    }
    
    /* Audit Logging Mobile */
    .mobile-audit-card {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        border: 1px solid white;
        padding: 20px;
        min-height: 200px;
    }
    
    .mobile-timeline {
        position: relative;
    }
    
    .mobile-timeline-line {
        position: absolute;
        left: 6px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: #565AC8;
    }
    
    .mobile-audit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        position: relative;
    }
    
    .mobile-timeline-dot {
        width: 12px;
        height: 12px;
        background: #565AC8;
        border-radius: 50%;
        margin-right: 12px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    .mobile-audit-content {
        flex: 1;
    }
    
    .mobile-audit-text {
        font-size: 12px;
        color: black;
        margin-bottom: 4px;
    }
    
    .mobile-audit-time {
        font-size: 11px;
        color: black;
        opacity: 0.5;
    }
    
    /* Develop Mobile */
    .mobile-develop-card {
        position: relative;
        min-height: 200px;
    }
    
    .mobile-suggestion-tag {
        background: rgba(255, 255, 255, 0.6);
        padding: 8px 16px;
        border-radius: 8px 8px 0 0;
        font-size: 12px;
        color: #666;
        display: inline-block;
        margin-bottom: -4px;
    }
    
    .mobile-suggestion-box {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 0 12px 12px 12px;
        border: 1px solid white;
        padding: 20px;
        position: relative;
    }
    
    .mobile-suggestion-label {
        font-size: 14px;
        color: black;
        margin-bottom: 12px;
    }
    
    .mobile-suggestion-text {
        font-size: 13px;
        color: black;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .mobile-action-buttons {
        position: absolute;
        bottom: -20px;
        right: 20px;
        display: flex;
        gap: 12px;
    }
    
    .mobile-action-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #8460F6;
        border: none;
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(132, 96, 246, 0.3);
    }
    
    .mobile-action-btn.reject {
        background: #8460F6;
    }
    
    .mobile-action-btn.accept {
        background: #8460F6;
    }
    
    /* Feature Info */
    .mobile-feature-info {
        padding: 0;
    }
    
    .mobile-feature-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 12px;
    }
    
    .mobile-feature-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
    }
}