
/* Product Hero */

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}



/* Problem/Solution Section */
.problem-solution-section {
    padding: 80px 0;
    background: white;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-label.red {
    background: var(--red-bg);
    color: #dc2626;
}

.section-label.green {
    background: var(--green-bg);
    color: #16a34a;
}

.split-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.problem-list, .solution-list {
    list-style: none;
}

.problem-list li, .solution-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 12px;
}

.problem-list li {
    background: var(--red-bg);
    border: 1px solid var(--red-border);
}

.solution-list li {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
}

.problem-list strong, .solution-list strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.problem-list p, .solution-list p {
    font-size: 14px;
    color: var(--text-secondary);
}


/* Audience Section */
.audience-section {
    padding: 80px 0;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.audience-card {
    padding: 40px 32px;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.audience-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
    background: var(--text-primary);
    color: white;
}

.comparison-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    padding: 8px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tbody tr:hover {
    background: var(--bg-secondary);
}

.compare-thesislog {
    background: var(--primary) !important;
}

.comparison-table tbody td:last-child {
    color: var(--primary);
}


/* Setup Steps */
.setup-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.setup-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.setup-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    padding: 32px 24px;
    background: white;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.setup-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.setup-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.setup-arrow {
    font-size: 32px;
    color: var(--text-secondary);
}

/* Licensing */
.licensing-section {
    padding: 80px 0;
    background: white;
}

.licensing-content h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.licensing-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.licensing-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.licensing-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.licensing-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 36px;
    }



    .split-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .setup-steps {
        flex-direction: column;
    }

    .setup-arrow {
        transform: rotate(90deg);
    }
    
}
        
        /* Status Badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .status-badge.error {
            background: #fee2e2;
            color: #dc2626;
        }
        
        .status-badge.success {
            background: #dcfce7;
            color: #16a34a;
        }
        
        .status-badge svg {
            width: 16px;
            height: 16px;
        }
        
        
        
        /* Star Rating */
        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }
        
        .stars svg {
            width: 20px;
            height: 20px;
            fill: #fbbf24;
            stroke: none;
        }
        
        /* Screenshots Section */
        .screenshots-section {
            padding: 80px 0;
            background: #f8fafc;
        }

        /* Device Toggle */
        .device-toggle {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 48px 0 60px;
            flex-wrap: wrap;
        }

        .device-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .device-btn svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }

        .device-btn:hover {
            border-color: #2563eb;
            color: #2563eb;
        }

        .device-btn.active {
            background: #2563eb;
            border-color: #2563eb;
            color: white;
        }

        /* Screenshot Carousel */
        .screenshot-carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .screenshot-carousel {
            display: none;
            position: relative;
            padding: 0 60px;
        }

        .screenshot-carousel.active {
            display: block;
        }

        .screenshot-track {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 20px 0 40px;
        }

        .screenshot-track::-webkit-scrollbar {
            display: none;
        }

        .screenshot-item {
            flex: 0 0 auto;
            text-align: center;
        }

        .screenshot-frame {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .screenshot-frame:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .screenshot-frame.desktop {
            width: 800px;
            max-width: 90vw;
        }

        .screenshot-frame.tablet {
            width: 600px;
            max-width: 80vw;
        }

        .screenshot-frame.mobile {
            width: 320px;
            max-width: 70vw;
        }

        .screenshot-frame img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            background: #f8fafc;
            min-height: 400px;
            object-fit: cover;
        }

        .screenshot-caption {
            margin-top: 16px;
            font-size: 15px;
            font-weight: 500;
            color: #0f172a;
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: #2563eb;
            border-color: #2563eb;
        }

        .carousel-nav:hover svg {
            stroke: white;
        }

        .carousel-nav.prev {
            left: 0;
        }

        .carousel-nav.next {
            right: 0;
        }

        .carousel-nav svg {
            width: 24px;
            height: 24px;
            stroke: #0f172a;
            transition: stroke 0.2s ease;
        }

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

        .carousel-nav:disabled:hover {
            background: white;
            border-color: #e2e8f0;
        }

        .carousel-nav:disabled:hover svg {
            stroke: #0f172a;
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .carousel-dot:hover {
            background: #94a3b8;
        }

        .carousel-dot.active {
            width: 24px;
            border-radius: 4px;
            background: #2563eb;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .screenshot-frame.desktop {
                width: 700px;
            }
        }

        @media (max-width: 768px) {
            .screenshots-section {
                padding: 60px 0;
            }

            .device-toggle {
                margin: 32px 0 40px;
            }

            .device-btn {
                padding: 10px 16px;
                font-size: 14px;
            }

            .device-btn span {
                display: none;
            }

            .screenshot-carousel {
                padding: 0 48px;
            }

            .screenshot-frame.desktop {
                width: 90vw;
            }

            .screenshot-frame.tablet {
                width: 75vw;
            }

            .screenshot-frame.mobile {
                width: 60vw;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
            }

            .carousel-nav svg {
                width: 20px;
                height: 20px;
            }
        }