/* Stylesheet voor Richtprijzen pagina - Consult Software */

.pricing-container {
    max-width: 1200px;
    margin: 10rem auto 5rem auto;
    padding: 0 2rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 60%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

/* Pricing Card */
.pricing-card {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

/* Featured / Popular Card Styling */
.pricing-card.featured {
    border-color: rgba(0, 136, 255, 0.5);
    background: rgba(0, 136, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.15);
}

.pricing-card.featured:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 136, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f2fe 0%, #0088ff 100%);
    color: #0b0f19;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.3);
    white-space: nowrap;
}

/* Card Elements */
.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.pricing-card.featured .pricing-title {
    color: #00d4ff;
}

.pricing-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
    min-height: 45px;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.4rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1; /* Pushes button to bottom */
}

.pricing-features li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✓";
    color: #00d4ff;
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
    color: #00f2fe;
}

/* Pricing Action Button */
.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
    background: linear-gradient(135deg, #00f2fe 0%, #0088ff 100%);
    color: #0b0f19;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}

.pricing-card.featured .btn-pricing:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0077ee 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

/* Custom & Tailored Banner */
.custom-pricing-banner {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.08) 0%, rgba(0, 242, 254, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.custom-pricing-banner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 60%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-pricing-banner p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 2rem auto;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #00d4ff;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-container {
        margin-top: 22rem;
        padding: 0 5%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-pricing-banner {
        padding: 2rem 1.5rem;
    }
    
    .faq-item {
        padding: 1.2rem 1.5rem;
    }
}

/* Support Section Styling */
.support-section {
    margin-bottom: 5rem;
    font-family: 'Inter', sans-serif;
}

.support-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 60%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.support-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-left: 4px solid #00d4ff;
    padding-left: 0.75rem;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px; /* Ensures readable columns */
    font-size: 0.95rem;
    text-align: left;
}

.support-table th, 
.support-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: middle;
}

.support-table th {
    font-weight: 800;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.support-table tr:last-child td {
    border-bottom: none;
}

/* Highlighted Pro Support Column */
.support-table th.highlight {
    background: rgba(0, 136, 255, 0.12);
    border-left: 1px solid rgba(0, 136, 255, 0.25);
    border-right: 1px solid rgba(0, 136, 255, 0.25);
    position: relative;
}

.support-table td.highlight {
    background: rgba(0, 136, 255, 0.04);
    border-left: 1px solid rgba(0, 136, 255, 0.15);
    border-right: 1px solid rgba(0, 136, 255, 0.15);
    color: #ffffff;
}

.support-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.support-table tr:hover td.highlight {
    background: rgba(0, 136, 255, 0.08);
}

.badge-table-popular {
    display: inline-block;
    background: linear-gradient(135deg, #00f2fe 0%, #0088ff 100%);
    color: #0b0f19;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

