/* Perplexity AI Guide Page Styles */
/* Executive Summary */
.executive-summary {
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
}

.executive-summary h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.summary-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.summary-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.summary-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.summary-card p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Capabilities Section */
.capabilities-section {
    margin: 50px 0;
}

.capability-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.capability-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.capability-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.capability-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.capability-content p {
    color: #666;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    margin: 50px 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table th {
    background: #004080;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: #e9ecef;
}

.comparison-table .success {
    color: #28a745;
}

.comparison-table .limited {
    color: #ffc107;
}

.comparison-table .no {
    color: #dc3545;
}

.comparison-table .experimental {
    color: #17a2b8;
}

/* Advantages Section */
.advantages-section {
    margin: 50px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.advantage-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #667eea;
}

.advantage-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card h3 i {
    color: #667eea;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.key-takeaway {
    background: #e7f3ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #004080;
    margin-top: 30px;
}

.key-takeaway h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #004080;
}

.key-takeaway p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* UAE Applications */
.uae-applications {
    margin: 50px 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.application-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.app-icon.compliance {
    background: #28a745;
}

.app-icon.erp {
    background: #007bff;
}

.app-icon.intelligence {
    background: #6f42c1;
}

.app-icon.productivity {
    background: #fd7e14;
}

.application-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.application-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.application-card ul {
    text-align: left;
    color: #555;
    padding-left: 20px;
}

.application-card li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Use Cases Section */
.use-cases-section {
    margin: 50px 0;
}

.use-case-tabs {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button:hover {
    background: #e9ecef;
}

.tab-button.active {
    background: #004080;
    color: white;
    border-color: #004080;
}

.use-case {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.use-case.active {
    display: block;
}

.use-case h3 {
    margin-bottom: 20px;
    color: #333;
}

.use-case p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.use-case-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #004080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.step p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Getting Started */
.getting-started {
    margin: 50px 0;
}

.start-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.start-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-visual {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #004080;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.final-cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.final-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-card {
        flex-direction: column;
        text-align: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-steps {
        grid-template-columns: 1fr;
    }
    
    .start-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: center;
    }
    
    .executive-summary {
        padding: 20px;
    }
}