/*
Theme Name: Advis
Theme URI:
Author: Custom conversion
Description: WordPress theme converted from the supplied Advis website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: advis
*/


/* --- Imported: style.css --- */
/*
Theme Name: Advis
Author: Jan BAstiaan
Version: 1.0
Description: Omgezet HTML/CSS sjabloon naar WordPress thema.
*/

/* Plak hier de inhoud van je oorspronkelijke style.css */
/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-color: #A3998F;    /* Base Navy Blue preserved from current brand */
    --primary-light: #BADB1A;    /* Modern lighter variation for hover states */
    --accent-color: #BADB1A;     /* Sharp Electric Blue for modern conversion focus */
    --accent-hover: #BADB1A;
    --text-dark: #1e293b;        /* Slate dark grey for soft typography layout */
    --text-light: #1e293b;       /* Cool subtext grey */
    --bg-light: #f8fafc;         /* Pure modern light gray background */
    --bg-white: #ffffff;
    --container-width: 1200px;
    --radius-sharp: 8px;         /* Sharp geometric edges */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

body {
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   2. REUSABLE UTILITIES & BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sharp);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.full-width {
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
}

/* ==========================================================================
   3. HEADER
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent-color);
}

.logo-sub {
    font-weight: 300;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-color);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--accent-color);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

/* Hero Abstract Design instead of slow/heavy stock images */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.abstract-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: var(--radius-sharp);
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(12, 30, 54, 0.15);
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    font-size: 14px;
}

.card-row:last-child {
    border-bottom: none;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
}

.status-check {
    color: #10b981;
    font-weight: 600;
}

.status-highlight {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}
/* Exact Online - Oranje/Rood */
.software-logos .brand-exact:hover {
    color: #ED1C24;
}
/* Twinfield - Blauw */
.software-logos .brand-twinfield:hover {
    color: #007ACC;
}
/* Yuki - Oranje */
.software-logos .brand-yuki:hover {
    color: #FF5A00;
}
/* Snelstart - Lichtblauw */
.software-logos .brand-snelstart:hover {
    color: #009FE3;
}
/* ==========================================================================
   5. TRUST BAR
   ========================================================================== */
.trust-bar {
    padding: 30px 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.software-logos {
    display: flex;
    gap: 40px;
    font-weight: 700;
    color: #94a3b8;
    font-size: 18px;
}

/* ==========================================================================
   6. SERVICES GRID (SEO CARDS)
   ========================================================================== */
.services {
    padding: 100px 0;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: var(--radius-sharp);
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* ==========================================================================
   7. UNIQUE VALUE PROPOSITION & STATS
   ========================================================================== */
.uvp {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.uvp-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.uvp-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 32px;
}

.features-list {
    list-style: none;
}

.features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.uvp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background: var(--bg-white);
    padding: 40px 24px;
    text-align: center;
    border-radius: var(--radius-sharp);
    border: 1px solid #e2e8f0;
}

.stat-box .number {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-box .label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================================================
   8. CONTACT FORM & ZONE
   ========================================================================== */
.contact {
    padding: 100px 0;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-color);
    border-radius: var(--radius-sharp);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 30, 54, 0.2);
}

.contact-info {
    padding: 60px;
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-info p {
    color: #1e293b;
    margin-bottom: 40px;
}

.details p {
    margin-bottom: 16px;
    color: var(--bg-white);
    font-weight: 500;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sharp);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.main-footer {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    background-color: var(--bg-white);
    font-size: 14px;
    color: var(--text-light);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 24px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   10. RESPONSIVE DESIGN (MOBILE ADAPTATION)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid, .grid-3-col, .grid-2-col, .contact-box {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none; /* Hide abstract graphic on smaller devices for speed */
    }
    .hero {
        padding: 60px 0;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .contact-info, .contact-form {
        padding: 40px 24px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none; /* In production, replace with a mobile hamburger trigger toggle */
    }
    .bar-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .software-logos {
        gap: 20px;
        flex-wrap: wrap;
    }
}
/* ==========================================================================
   11. DIENSTEN SUBPAGE ADDITIONS
   ========================================================================== */
.text-center {
    text-align: center;
}

.page-banner {
    padding: 120px 0 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid #e2e8f0;
}

.page-banner h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.banner-lead {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 100px 0;
    border-bottom: 1px solid #f1f5f9;
}

.service-detail-section.alt-bg {
    background-color: var(--bg-light);
}

.grid-2-col-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-num-badge {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-description-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.accent-paragraph {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-description-text p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
}

.nested-features {
    list-style: none;
}

.nested-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.nested-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Sharp geometric data container layout instead of generic shapes */
.sharp-visual-accent {
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 36px;
    border-radius: var(--radius-sharp);
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.sharp-visual-accent.dark-accent {
    background-color: var(--primary-color);
    border-color: var(--primary-light);
}

.sharp-visual-accent.dark-accent .visual-line {
    border-bottom-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.sharp-visual-accent.dark-accent .visual-line strong {
    color: var(--bg-white);
    background-color: rgba(255, 255, 255, 0.15);
}

.visual-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.visual-line:last-child {
    border-bottom: none;
}

.visual-line strong {
    font-size: 12px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Bottom CTA block styling */
.services-cta-block {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.services-cta-block h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services-cta-block p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 36px auto;
    font-size: 16px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .grid-2-col-equal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reverse-layout {
        display: flex;
        flex-direction: column-reverse;
    }
    .service-detail-section {
        padding: 60px 0;
    }
}
/* ==========================================================================
   12. WAAROM, OVER ONS & KENNISMAKING ADDITIONAL STYLES
   ========================================================================== */
.max-width-md {
    max-width: 800px;
}

.margin-bottom-md {
    margin-bottom: 48px;
}

/* Waarom Advis Layout */
.waarom-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.waarom-features-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-row-box {
    display: flex;
    gap: 32px;
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 32px;
    border-radius: var(--radius-sharp);
    transition: var(--transition-smooth);
}

.feature-row-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.feature-icon-wrapper {
    font-size: 28px;
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sharp);
    flex-shrink: 0;
}

.feature-text-wrapper h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text-wrapper p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Over Ons Asymmetric Grid Layout */
.over-ons-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.grid-2-col-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
}

.biography-block p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.timeline-visual-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 2px solid var(--accent-color);
    padding-left: 32px;
    margin-left: 8px;
}

.history-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-sharp);
    border: 1px solid #e2e8f0;
    position: relative;
}

.history-card::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 28px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--bg-light);
}

.history-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.history-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Modern Form Interface Structure */
.kennismaking-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.modern-form-wrapper {
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 48px;
    border-radius: var(--radius-sharp);
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.form-row-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sharp-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sharp);
    font-family: inherit;
    font-size: 14px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-privacy-check input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
}

.form-privacy-check label {
    font-size: 13px;
    color: var(--text-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Responsive Structural Overrides */
@media (max-width: 992px) {
    .grid-2-col-asymmetric, .form-row-2-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature-row-box {
        flex-direction: column;
        gap: 16px;
    }
    .modern-form-wrapper {
        padding: 24px;
    }
    .timeline-visual-block {
        margin-left: 0;
        padding-left: 24px;
    }
    .history-card::before {
        left: -31px;
    }
}
/* ==========================================================================
   13. SPECIFIEKE DIENSTENPAGINA'S (SILO LAYOUT)
   ========================================================================== */
.service-single-banner {
    padding: 80px 0 60px 0;
    text-align: left;
}

.back-to-overview {
    display: inline-block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.back-to-overview:hover {
    color: var(--accent-color);
}

.grid-service-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: flex-start;
}

.service-content-section {
    padding: 60px 0 100px 0;
}

.main-article h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-article h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 36px;
    margin-bottom: 14px;
    font-weight: 600;
}

.main-article p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.infobox-sharp {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 24px 32px;
    margin: 36px 0;
    border-radius: 0 var(--radius-sharp) var(--radius-sharp) 0;
}

.infobox-sharp h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.infobox-sharp p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-light);
}

/* Sidebar Box component */
.service-sidebar {
    position: sticky;
    top: 100px; /* Blijft plakken tijdens scrollen naast de tekst */
}

.sticky-sidebar-card {
    background-color: var(--bg-white);
    border: 1px solid #e2e8f0;
    padding: 32px;
    border-radius: var(--radius-sharp);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.sticky-sidebar-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.sticky-sidebar-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sticky-sidebar-card hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.sidebar-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-details span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Responsive optimalisaties voor mobiel */
@media (max-width: 992px) {
    .grid-service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-sidebar {
        position: static;
    }
}
/* ==========================================================================
   INTERACTIEVE KOSTENCALCULATOR COMPONENTEN
   ========================================================================== */
.calculator-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .calculator-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.calc-panel {
    background-color: var(--bg-white);
    border: 1px solid #e2e8f0;
    padding: 32px;
    border-radius: var(--radius-sharp);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.calc-group {
    margin-bottom: 28px;
}

.calc-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calc-select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    background-color: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.calc-range-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.calc-range {
    flex: 1;
    padding: 0;
    height: 6px;
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    outline: none;
}

.range-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 120px;
    text-align: right;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #dbeafe;
}

.checkbox-option {
    display: flex;
    align-items: flex-start; /* Zorgt dat de checkbox bovenin blijft hangen bij de eerste regel */
    gap: 12px;
    margin-bottom: 18px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.checkbox-option input {
    margin-top: 3px; /* Exact afgesteld zodat het vinkje perfect uitlijnt met het midden van de eerste tekstregel */
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Uitkomstpaneel (Rechterkant) */
.result-panel {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-sharp);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 10px 15px -3px rgba(12, 30, 54, 0.1);
}

.result-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #93c5fd;
    margin-bottom: 8px;
    font-weight: 600;
}

.result-price {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.result-period {
    font-size: 14px;
    color: #93c5fd;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.spec-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.spec-list li::before {
    content: "✓";
    color: #4ade80;
    font-weight: bold;
}
/* Definitieve fix om de checkbox en tekst strak NAAST elkaar te dwingen */
.checkbox-option {
    display: flex !important;       /* Dwingt flexbox af, voorkomt block-overschrijving */
    flex-direction: row !important; /* Absoluut horizontaal naast elkaar */
    align-items: flex-start !important; /* Lijnt de bovenkant uit met de eerste tekstregel */
    gap: 12px !important;           /* Ruimte tussen de checkbox en de tekst */
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
    width: 100%;                    /* Zorgt dat het paneel de breedte benut */
}

.checkbox-option input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;           /* Verwijdert alle standaard browser marges */
    margin-top: 2px !important;     /* Perfecte uitlijning met de eerste regel tekst */
    flex-shrink: 0 !important;      /* Voorkomt dat de checkbox wordt platgedrukt */
    display: inline-block !important; /* Voorkomt dat de browser er een block van maakt */
    cursor: pointer;
}

.checkbox-text {
    display: flex !important;
    flex-direction: column !important; /* De titel en subtekst blijven wel onder elkaar */
    line-height: 1.4 !important;
    text-align: left !important;    /* Forceert linkslijning */
}

.checkbox-text strong {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.checkbox-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}
