/* Artist Verification Page Specific Styles - Modern Design */

/* Fix header overlap issue */
body {
    padding-top: 90px !important;
}

/* Hero Section - Modern Design */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="verification-hero-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.02"/><stop offset="100%" stop-color="%235530a0" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23verification-hero-bg)"/><circle cx="800" cy="400" r="120" fill="url(%23verification-hero-bg)"/><circle cx="400" cy="800" r="100" fill="url(%23verification-hero-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

/* Remove hero image on non-index pages */
.hero-image {
    display: none;
}

/* Adjust hero content for full width */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Section Text Styling */
.hero-title {
    color: black !important;
}

.hero-subtitle {
    color: black !important;
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: #ffc107;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: none;
}

/* Section Spacing - Compact Design */
.section-spacing {
    padding: 4rem 0 !important;
    margin: 0 !important;
    position: relative;
}

.section-spacing.bg-light {
    margin: 0 !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
}

/* Artist Verification Specific Styles - Modern */
.verification-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.verification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #8a63d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.verification-card:hover::before {
    transform: scaleX(1);
}

.verification-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(111, 66, 193, 0.3);
}

.verification-card .service-icon {
    background: linear-gradient(135deg, #6f42c1, #8a63d2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.25);
    transition: all 0.3s ease;
}

/* Verification Badge */
.verified-badge {
    background: linear-gradient(135deg, #6f42c1, #8a63d2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(111, 66, 193, 0.3);
}

.verified-badge i {
    margin-right: 10px;
    font-size: 18px;
}

/* Verification Steps - Modern */
.verification-step {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.verification-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #8a63d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.verification-step:hover::before {
    transform: scaleX(1);
}

.verification-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(111, 66, 193, 0.3);
}

.verification-step .step-number {
    background: linear-gradient(135deg, #6f42c1, #8a63d2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    font-size: 1.1rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.verification-step h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.verification-step p {
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Requirements List - Modern */
.requirements-list {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.requirements-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #8a63d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.requirements-list:hover::before {
    transform: scaleX(1);
}

.requirements-list h5 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    color: var(--gray-600);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.requirements-list li:hover {
    background: rgba(111, 66, 193, 0.05);
    padding-left: 0.4rem;
    margin: 0 -0.4rem;
    border-radius: 6px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li .material-icons {
    color: #6f42c1;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    width: 18px;
}

/* Verification Benefits - Modern */
.verification-benefit {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.verification-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #8a63d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.verification-benefit:hover::before {
    transform: scaleX(1);
}

.verification-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(111, 66, 193, 0.3);
}

.verification-benefit .benefit-icon {
    background: linear-gradient(135deg, #6f42c1, #8a63d2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Platform Logo Styles */
.verification-benefit .benefit-icon .platform-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.verification-benefit h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.verification-benefit p {
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    font-size: 0.85rem;
}

/* Button Spacing */
.btn {
    margin: 10px 0 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

.hero-actions {
    margin-top: 40px !important;
}

.hero-actions .btn {
    margin: 10px 15px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Content Spacing - Compact */
.section-title {
    margin-bottom: 1rem !important;
    padding-top: 1rem !important;
    background: linear-gradient(135deg, #dc2626, #fbbf24, #000000, #dc2626, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    margin-bottom: 2rem !important;
    color: black !important;
}


/* Service Cards */
.service-card {
    margin-bottom: 30px !important;
    padding: 40px 30px !important;
}

.service-icon {
    margin-bottom: 25px !important;
}

.service-title {
    margin-bottom: 20px !important;
}

.service-description {
    margin-bottom: 20px !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }

    .hero-section {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .section-spacing {
        padding: 3rem 0 !important;
        margin: 0 !important;
    }
    
    .verification-card {
        margin-bottom: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .verification-card .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .verification-step {
        margin-bottom: 1rem;
        padding: 1.2rem 1rem;
    }
    
    .verification-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .requirements-list {
        padding: 1.2rem;
        margin: 1rem 0;
    }
    
    .verification-benefit {
        margin-bottom: 1rem;
        padding: 1.2rem 0.8rem;
    }
    
    .verification-benefit .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-actions {
        margin-top: 1.5rem !important;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        margin: 0.5rem 0 !important;
        width: 100%;
        max-width: 280px;
    }

    .cta-section {
        padding: 3rem 0 !important;
    }
    
    .cta-benefits {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .cta-benefit-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .cta-trust-indicators {
        gap: 2rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .section-spacing {
        padding: 2.5rem 0 !important;
        margin: 0 !important;
    }
    
    .verification-card {
        margin-bottom: 0.8rem;
        padding: 1rem 0.8rem;
    }
    
    .verification-card .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .verification-step {
        margin-bottom: 0.8rem;
        padding: 1rem 0.8rem;
    }
    
    .verification-step .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .verification-step h4 {
        font-size: 1rem;
    }
    
    .verification-step p {
        font-size: 0.8rem;
    }
    
    .requirements-list {
        padding: 1rem 0.8rem;
        margin: 0.8rem 0;
    }
    
    .requirements-list li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .verification-benefit {
        margin-bottom: 0.8rem;
        padding: 1rem 0.8rem;
    }
    
    .verification-benefit .benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .verification-benefit h4 {
        font-size: 0.9rem;
    }
    
    .verification-benefit p {
        font-size: 0.8rem;
    }
    
    .verified-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-actions {
        margin-top: 1.2rem !important;
    }
    
    .hero-actions .btn {
        margin: 0.3rem 0 !important;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .cta-section {
        padding: 2.5rem 0 !important;
    }
    
    .cta-trust-indicators {
        gap: 1.5rem;
    }

    .trust-number {
        font-size: 1.2rem;
    }
    
    .cta-actions .btn {
        margin: 0.3rem 0.2rem !important;
        min-width: 100px;
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
        min-height: 40px !important;
    }
}

/* CTA Section - Modern Design */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    overflow: hidden;
    margin: 0 !important;
    padding: 4rem 0 !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="cta-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f59e0b" stop-opacity="0.02"/><stop offset="100%" stop-color="%23d97706" stop-opacity="0"/></radialGradient></defs><circle cx="250" cy="250" r="150" fill="url(%23cta-bg)"/><circle cx="750" cy="500" r="120" fill="url(%23cta-bg)"/><circle cx="400" cy="750" r="100" fill="url(%23cta-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta-content {
    padding: 2rem !important;
    position: relative;
    z-index: 2;
}

.cta-actions {
    margin-top: 1.5rem !important;
}

.cta-actions .btn {
    margin: 0.5rem 0.5rem !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 1.5rem !important;
    min-height: 48px !important;
    min-width: 120px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* CTA Enhancement Styles - Matching Pricing Page */
.cta-content-enhanced {
    position: relative;
    z-index: 2;
}

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

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-weight: 600;
    color: #f59e0b;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-benefit-item:hover {
    background: rgba(245, 158, 11, 0.15);
    transform: translateY(-2px);
}

.cta-benefit-item .material-icons {
    font-size: 1.1rem;
}

.cta-trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.2rem;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-text {
    color: black !important;
}

@media (max-width: 767.98px) {
    .cta-section {
        margin: 0 !important;
        padding: 25px 0 !important;
    }
    
    .cta-actions .btn {
        margin: 5px 4px !important;
        display: inline-block;
        min-width: 110px;
        font-size: 0.85rem !important;
        padding: 0.5rem 1.2rem !important;
        min-height: 44px !important;
    }
}
/* Center Hero Content */
.hero-content {
    text-align: center;
}

.hero-title {
    text-align: center;
}

.hero-subtitle {
    text-align: center;
}

.hero-actions {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Center all buttons in hero */
.hero-actions .btn {
    margin: 0;
}
