/* Features and Use Cases Pages Styles */

/* Logo Link Fix */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Feature Detail Section */
.feature-detail-section {
    padding: 4rem 0;
}

.feature-detail-section.alternate {
    background: #f8f9fa;
}

.feature-content {
    max-width: 900px;
    margin: 0 auto;
}

.feature-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.feature-header-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

.feature-header-text h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.feature-header-text p {
    margin: 0.5rem 0 0;
    color: #6c757d;
    font-size: 1rem;
}

.feature-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-subsection {
    margin-top: 2rem;
}

.feature-subsection h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list-item {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    border-bottom: 1px solid #e9ecef;
}

.feature-list-item:last-child {
    border-bottom: none;
}

.feature-list-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.25rem;
    color: #28a745;
    flex-shrink: 0;
}

.feature-list-text {
    flex: 1;
    color: #495057;
    line-height: 1.6;
}

.feature-list-text strong {
    color: #2c3e50;
}

.feature-highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #667eea;
}

.feature-highlight.privacy {
    background: #e8f5e9;
    border-left-color: #28a745;
}

.feature-highlight p {
    margin: 0;
    font-style: italic;
    color: #6c757d;
    line-height: 1.6;
}

.feature-highlight.privacy p {
    color: #155724;
}

.feature-highlight strong {
    color: #2c3e50;
}

.feature-highlight.privacy strong {
    color: #155724;
}

/* Use Case Section */
.use-case-section {
    padding: 4rem 0;
}

.use-case-section.alternate {
    background: #f8f9fa;
}

.use-case-content {
    max-width: 900px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.use-case-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.use-case-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon-wrapper.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.use-case-icon-wrapper.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.use-case-icon-wrapper.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.use-case-icon-wrapper.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.use-case-icon-wrapper.gradient-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.use-case-icon-wrapper.gradient-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.use-case-icon-wrapper svg {
    color: white;
}

.use-case-header-text h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.use-case-header-text p {
    margin: 0.5rem 0 0;
    color: #6c757d;
    font-size: 1rem;
}

.use-case-challenge {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.use-case-challenge h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

.use-case-challenge p {
    margin: 0;
    color: #495057;
    line-height: 1.7;
}

.use-case-solution h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.use-case-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.use-case-step {
    padding: 1rem 0;
    display: flex;
    align-items: start;
    border-bottom: 1px solid #e9ecef;
}

.use-case-step:last-child {
    border-bottom: none;
}

.use-case-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.use-case-step-number.step-1 {
    background: #667eea;
}

.use-case-step-number.step-2 {
    background: #f5576c;
}

.use-case-step-number.step-3 {
    background: #00f2fe;
}

.use-case-step-number.step-4 {
    background: #38f9d7;
}

.use-case-step-number.step-5 {
    background: #fee140;
    color: #333;
}

.use-case-step-number.step-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.use-case-step-content {
    flex: 1;
    color: #495057;
    line-height: 1.7;
}

.use-case-step-content strong {
    color: #2c3e50;
}

.use-case-result {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #28a745;
}

.use-case-result p {
    margin: 0;
    font-style: italic;
    color: #155724;
    line-height: 1.7;
}

.use-case-result strong {
    color: #155724;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-header,
    .use-case-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-header-icon,
    .use-case-icon-wrapper {
        margin-bottom: 1rem;
    }

    .feature-detail-card,
    .use-case-card {
        padding: 2rem 1.5rem;
    }

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

    .page-hero p {
        font-size: 1.1rem;
    }

    .feature-header-text h2,
    .use-case-header-text h2 {
        font-size: 1.75rem;
    }
}

