.provider-hero {
    padding: calc(var(--header-height) + 4rem) 1rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d9a85 100%);
    color: white;
    text-align: center;
}

.provider-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.provider-hero-desc {
    font-size: 1.125rem;
    opacity: 0.9;
}

.provider-hero-actions {
    margin-top: 2rem;
}

.provider-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    line-height: 1;
}

.provider-hero-actions .btn svg {
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.provider-hero-actions .btn-primary {
    background: white;
    color: var(--primary-color);
}

.provider-hero-actions .btn-primary:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.provider-intro {
    padding: 4rem 0;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.provider-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.provider-mechanism {
    padding: 4rem 0;
    background: white;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mechanism-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mechanism-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mechanism-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.mechanism-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.mechanism-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.mechanism-list {
    list-style: none;
    padding: 0;
}

.mechanism-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mechanism-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.provider-rights {
    padding: 4rem 0;
    background: var(--bg-color);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rights-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.rights-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.rights-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.rights-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.rights-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.provider-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d9a85 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background: var(--bg-gray);
}

@media (max-width: 767px) {
    .provider-hero {
        padding: calc(var(--header-height) + 2rem) 1rem 2rem;
    }

    .provider-hero-title {
        font-size: 2rem;
    }

    .provider-hero-desc {
        font-size: 1rem;
    }

    .provider-hero-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .provider-intro {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .intro-text {
        padding: 1.5rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .provider-mechanism {
        padding: 2rem 0;
    }

    .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mechanism-card {
        padding: 1.5rem;
    }

    .mechanism-card-header {
        gap: 0.75rem;
    }

    .mechanism-icon {
        width: 48px;
        height: 48px;
    }

    .mechanism-title {
        font-size: 1.25rem;
    }

    .mechanism-list li {
        font-size: 0.875rem;
    }

    .provider-rights {
        padding: 2rem 0;
    }

    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rights-item {
        padding: 1.5rem;
    }

    .rights-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .rights-title {
        font-size: 1.125rem;
    }

    .rights-desc {
        font-size: 0.875rem;
    }

    .provider-cta {
        padding: 2rem 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-desc {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .provider-hero-title {
        font-size: 3rem;
    }

    .provider-hero-desc {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-desc {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .mechanism-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}