/* ============================================
   WEBSITE PAGE STYLES - WEBCAREX
   ============================================ */

.page-website {
    padding-top: var(--header-height);
}

.page-hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.05) 0%,
        rgba(123, 44, 191, 0.05) 100%
    );
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0.5;
}

.page-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-title .text-gradient {
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(123, 44, 191, 0.3));
}

.page-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    opacity: 0.95;
}

.pricing-hero-section {
    padding: 3rem 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.pricing-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0.5;
}

.pricing-hero-box {
    background: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.pricing-hero-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.pricing-hero-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pricing-hero-amount .text-gradient {
    background: linear-gradient(
        135deg,
        #00ff88 0%, /* Helder groen */
        #00cc6a 50%, /* Midden groen */
        #00ffaa 100% /* Licht groen */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00ff88; /* Fallback groene kleur voor betere leesbaarheid */
    filter: brightness(1.1); /* Iets helderder maken */
}

.pricing-hero-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.content-section {
    padding: 5rem 0;
    background: var(--bg-section);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0.5;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.content-main {
    max-width: 1000px;
    margin: 0 auto;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    margin-top: 3rem;
    color: var(--text-white);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.content-title:first-child {
    margin-top: 0;
}

.content-title .text-gradient {
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(123, 44, 191, 0.3));
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.content-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: var(--bg-darker);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 44, 191, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.feature-box p strong {
    color: var(--text-white);
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.1) 0%,
        rgba(123, 44, 191, 0.1) 100%
    );
    border: 2px solid;
    border-image: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    ) 1;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 40px rgba(123, 44, 191, 0.05);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0.6;
}

.highlight-box-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

.highlight-box-icon svg {
    width: 32px;
    height: 32px;
}

.highlight-box-content {
    flex: 1;
}

.highlight-box-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.highlight-box-title .text-gradient {
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(123, 44, 191, 0.3));
}

.highlight-box-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.highlight-box-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: var(--bg-darker);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 44, 191, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.benefit-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(123, 44, 191, 0.3);
}

.faq-item.active {
    border-color: rgba(123, 44, 191, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(123, 44, 191, 0.05);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gradient-x-1-start);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    color: var(--text-white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.faq-answer strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .page-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .pricing-hero-section {
        padding: 2rem 0;
    }
    
    .pricing-hero-box {
        padding: 1.25rem 1.5rem;
        max-width: 450px;
    }
    
    .pricing-hero-title {
        font-size: 0.8rem;
    }
    
    .pricing-hero-amount {
        font-size: 1.5rem;
    }
    
    .pricing-hero-description {
        font-size: 0.85rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-title {
        font-size: 2rem;
        margin-top: 2rem;
    }
    
    .content-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-hero-section {
        padding: 1.5rem 0;
    }
    
    .pricing-hero-box {
        padding: 1rem 1.25rem;
        max-width: 100%;
    }
    
    .pricing-hero-title {
        font-size: 0.75rem;
    }
    
    .pricing-hero-amount {
        font-size: 1.375rem;
    }
    
    .pricing-hero-description {
        font-size: 0.8rem;
    }
    
    .content-title {
        font-size: 1.75rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .highlight-box {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .highlight-box-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-box-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .highlight-box-title {
        font-size: 1.5rem;
    }
    
    .highlight-box-text {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefit-title {
        font-size: 1.25rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}
