/* Why CSURFACE Styles */

/* Breadcrumb */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: #6c757d;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #adb5bd;
}

.breadcrumb a {
    color: #36d0ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2a1a4d;
}

/* Hero Section */
.why-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #292460 0%, #060818 100%);
    text-align: center;
    color: #ffffff;

}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: white;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2a1a4d;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Differentiators Section */
.differentiators-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.differentiators-section h2 {
    font-size: 2.5rem;
    color: #2a1a4d;
    margin-bottom: 3rem;
    text-align: center;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.differentiator-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(54, 208, 234, 0.2);
}

.diff-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.differentiator-card h3 {
    font-size: 1.5rem;
    color: #2a1a4d;
    margin-bottom: 1rem;
}

.differentiator-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    text-align: justify;
}

/* Competitors Section */
.competitors-section {
    padding: 4rem 0;
    background: white;
}

.competitors-section h2 {
    font-size: 2.5rem;
    color: #2a1a4d;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.competitor-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.competitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(54, 208, 234, 0.2);
}

.competitor-header {
    background: linear-gradient(135deg, #2a1a4d 0%, #1a0f2e 100%);
    color: white;
    padding: 2rem;
}

.competitor-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.competitor-tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.competitor-body {
    padding: 2rem;
    flex-grow: 1;
}

.competitor-body h4 {
    font-size: 1.1rem;
    color: #2a1a4d;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.competitor-body h4:first-child {
    margin-top: 0;
}

.competitor-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.competitor-body ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.competitor-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #36d0ea;
    font-weight: bold;
}

.competitor-footer {
    padding: 1.5rem 2rem;
    background: white;
    border-top: 1px solid #dee2e6;
}

.competitor-footer .btn {
    width: 100%;
    text-align: center;
}

/* Quick Comparison Table */
.quick-comparison-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.quick-comparison-section h2 {
    font-size: 2.5rem;
    color: #2a1a4d;
    margin-bottom: 3rem;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, #2a1a4d 0%, #1a0f2e 100%);
    color: white;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #dee2e6;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tbody th {
    padding: 1rem;
    font-weight: 600;
    color: #2a1a4d;
    text-align: left;
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
}

.comparison-table .positive {
    color: #28a745;
    font-weight: 600;
}

.comparison-table .negative {
    color: #dc3545;
    font-weight: 600;
}

.comparison-table .partial {
    color: #ffc107;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a1a4d 0%, #1a0f2e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .competitors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-hero {
        padding: 4rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .intro-content h2,
    .differentiators-section h2,
    .competitors-section h2,
    .quick-comparison-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
    }
}
