    :root {
        --primary-color: #00BBFF;
        --primary-color-darker: #00A3E0;
        --primary-color-rgb: 0, 187, 255;
        --text-color-dark: #121826;
        --text-color-medium: #3A4252;
        --text-color-light: #6C7586;
        --background-main: #ffffff;
        --background-accent: #f8f9fc;
        --background-accent-end: #f3f5f9;
        --border-color-soft: #e9edf2;
        --border-radius-md: 8px;
        --border-radius-lg: 12px;
        --border-radius-xl: 16px;
        --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
        --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.07), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
        --font-header: 'Urbanist', sans-serif;
        --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        --transition-fast: 0.2s ease-out;
        --transition-medium: 0.3s ease-out;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-main);
        font-weight: 400;
        margin: 0;
        padding: 0;
        color: var(--text-color-dark);
        line-height: 1.7;
        background-color: var(--background-main);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 16px;
        overflow-x: hidden;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .container {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-header);
        margin-top: 0;
    }

    h1 {
        font-weight: 800;
    }

    h2 {
        font-weight: 800;
    }

    h3 {
        font-weight: 700;
    }

    h4 {
        font-weight: 600;
    }

    h5 {
        font-weight: 500;
    }

    h6 {
        font-weight: 500;
    }

    /* --- HEADER & NAVIGATION STYLES --- */
    header {
        background-color: rgba(255, 255, 255, 0.85);
        padding: 18px 0;
        border-bottom: 1px solid var(--border-color-soft);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        transition: box-shadow 0.3s ease-out;
    }

    header.scrolled {
        box-shadow: var(--shadow-md);
    }

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

    .logo .desktop-logo {
        display: block;
        height: 38px;
        transition: transform 0.3s ease-out;
    }

    .logo .mobile-logo {
        display: none;
        height: 42px;
        transition: transform 0.3s ease-out;
    }

    .logo:hover .desktop-logo,
    .logo:hover .mobile-logo {
        transform: scale(1.05);
    }

    .main-nav {
        display: none;
    }

    .main-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .main-nav ul li a {
        text-decoration: none;
        color: var(--text-color-medium);
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
        padding-bottom: 4px;
        transition: color 0.2s ease-out;
    }

    .main-nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease-out;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        color: var(--primary-color);
    }

    .main-nav ul li a:hover::after,
    .main-nav ul li a.active::after {
        width: 100%;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header-cta .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
        z-index: 1001;
    }

    .mobile-menu-toggle .icon-menu,
    .mobile-menu-toggle .icon-close {
        font-size: 2rem;
        color: var(--text-color-dark);
    }

    .mobile-menu-toggle .icon-close {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--background-main);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .mobile-nav.is-open {
        right: 0;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-nav ul li {
        margin-bottom: 30px;
    }

    .mobile-nav ul li a {
        text-decoration: none;
        color: var(--text-color-dark);
        font-size: 1.5rem;
        font-weight: 600;
        font-family: var(--font-header);
        transition: color 0.3s ease-out;
    }

    .mobile-nav ul li a:hover {
        color: var(--primary-color);
    }
    
    .mobile-nav .btn {
        margin-top: 20px;
        font-size: 1.1rem;
    }
    /* --- END NAVIGATION STYLES --- */


    .hero {
        padding: 120px 0;
        background-color: var(--background-main);
        position: relative;
        overflow: hidden;
    }

    .hero-background-wave {
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        max-width: 2200px;
        height: auto;
        z-index: 0;
        opacity: 0.12;
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 1;
    }

    .hero .hero-cta .btn {
        opacity: 1;
    }

    .btn {
        color: white;
        padding: 16px 38px;
        text-decoration: none;
        border-radius: var(--border-radius-md);
        font-size: 1rem;
        font-weight: 600;
        font-family: var(--font-main);
        border: none;
        cursor: pointer;
        display: inline-block;
        box-shadow: 0 4px 15px 0 rgba(var(--primary-color-rgb), 0.35);
        background-image: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color-darker) 55%, var(--primary-color) 100%);
        background-size: 250% 100%;
        background-position: right bottom;
        transition: background-color var(--transition-fast),
            transform var(--transition-fast),
            box-shadow var(--transition-fast),
            background-position 0.6s ease-out;
    }

    .btn:hover {
        background-color: var(--primary-color-darker);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 7px 20px 0 rgba(var(--primary-color-rgb), 0.40);
        background-position: left bottom;
    }

    .btn:active {
        transform: translateY(-1px) scale(0.98);
    }

    .btn-outline {
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        box-shadow: none;
        background-image: none;
    }

    .btn-outline:hover {
        background-color: rgba(var(--primary-color-rgb), 0.08);
        color: var(--primary-color-darker);
        transform: translateY(-3px) scale(1.02);
        box-shadow: none;
        background-position: initial;
    }

    section {
        padding: 90px 0;
        text-align: center;
    }

    section:nth-child(even) {
        background: linear-gradient(170deg, var(--background-accent) 0%, var(--background-accent-end) 100%);
    }

    section.hero,
    section.feature-showcase-section:nth-of-type(odd) {
        /* Odd feature showcase sections get this background */
        background: linear-gradient(180deg,
                rgba(var(--primary-color-rgb), 0.05) 0%,
                var(--background-main) 60%);
    }

    section.feature-showcase-section:nth-of-type(even) {
        /* Even feature showcase sections get this background */
        background: linear-gradient(170deg, var(--background-accent) 0%, var(--background-accent-end) 100%);
    }


    section .section-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
        font-weight: 700;
        color: var(--text-color-dark);
        margin-bottom: 20px;
        letter-spacing: -0.025em;
        font-family: var(--font-header);
    }

    section .section-subtitle {
        font-size: clamp(1.05rem, 2vw, 1.25rem);
        color: var(--text-color-medium);
        font-weight: 400;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.75;
        font-family: var(--font-main);
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 35px;
        margin-top: 50px;
        text-align: left;
        align-items: stretch;
    }

    .step {
        background-color: var(--background-main);
        padding: 35px;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-sm);
        transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
        border: 1px solid var(--border-color-soft);
        display: flex;
        flex-direction: column;
    }

    .step:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg), 0 0 25px rgba(var(--primary-color-rgb), 0.2);
        border-color: rgba(var(--primary-color-rgb), 0.5);
    }

    .step-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .step-number-visual {
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-header);
        font-weight: 700;
        font-size: 0.9rem;
        margin-right: 20px;
        flex-shrink: 0;
        line-height: 1;
        text-transform: uppercase;
    }

    .step h3.step-number {
        display: none;
    }

    .step p.step-title {
        font-family: var(--font-header);
        font-weight: 600;
        font-size: 1.3rem;
        color: var(--text-color-dark);
        margin-bottom: 0;
    }

    .step p.step-description {
        font-size: 0.95rem;
        color: var(--text-color-medium);
        line-height: 1.65;
        font-weight: 400;
        flex-grow: 1;
    }

    #hoe-werkt-het .btn {
        margin-top: 40px;
    }

    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 50px;
        text-align: left;
    }

    .comparison-column {
        background-color: var(--background-main);
        padding: 35px;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color-soft);
    }

    .comparison-column h3 {
        color: var(--text-color-dark);
        font-size: 1.6rem;
        font-weight: 700;
        padding-bottom: 15px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border-color-soft);
    }

    .comparison-column h3 .icon {
        margin-right: 15px;
        font-size: 2em;
        color: var(--primary-color);
    }

    .comparison-column ul {
        list-style: none;
        padding: 0;
    }

    .comparison-column ul li {
        margin-bottom: 18px;
        display: flex;
        align-items: flex-start;
        font-size: 0.95rem;
        color: var(--text-color-medium);
        font-weight: 400;
    }

    .comparison-column ul li .icon {
        margin-right: 12px;
        font-size: 1.4em;
        color: var(--primary-color);
        width: 22px;
        text-align: center;
        margin-top: 3px;
    }

    .comparison-column ul li strong {
        color: var(--text-color-dark);
        font-weight: 600;
        margin-right: 6px;
    }

    .benefits-container {
        margin-top: 70px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .benefit-item {
        background-color: var(--background-main);
        color: var(--text-color-dark);
        padding: 30px;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        text-align: center;
        border: 1px solid var(--border-color-soft);
        transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg), 0 0 20px rgba(var(--primary-color-rgb), 0.15);
    }

    .benefit-item .benefit-icon i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        display: inline-block;
    }

    .benefit-item h4 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 0 8px 0;
    }

    .benefit-item p {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color-medium);
        margin: 0;
    }

    #rekensom .animate-on-scroll.fade-in-up[style*="transition-delay: 0.6s;"] {
        transition-delay: 0.3s !important;
    }

    #rekensom p.animate-on-scroll.fade-in-up[style*="transition-delay: 0.1s;"] {
        transition-delay: 0.4s !important;
    }

    #rekensom a.btn.animate-on-scroll.fade-in-up[style*="transition-delay: 0.2s;"] {
        transition-delay: 0.5s !important;
    }

    .final-pitch {
        margin-top: 50px;
        font-size: 1.15rem;
        color: var(--text-color-dark);
        font-weight: 500;
        line-height: 1.7;
    }

    .final-pitch strong {
        color: var(--primary-color);
        font-weight: 700;
    }

    .feature-table-wrapper {
        overflow-x: auto;
        margin-top: 50px;
        border: 1px solid var(--border-color-soft);
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-md);
        background-color: var(--background-main);
    }

    .feature-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
        min-width: 900px;
    }

    .feature-table th,
    .feature-table td {
        border: 1px solid var(--border-color-soft);
        padding: 18px 20px;
        text-align: left;
        vertical-align: top;
    }

    .feature-table th {
        background-color: var(--background-accent);
        color: var(--text-color-dark);
        font-weight: 600;
        font-size: 0.95em;
    }

    .feature-table td {
        font-weight: 400;
    }

    .feature-table td strong {
        color: var(--text-color-dark);
        font-weight: 600;
    }

    .feature-table td small {
        color: var(--text-color-light);
        display: block;
        margin-top: 5px;
        font-size: 0.9em;
        line-height: 1.5;
    }

    .feature-table td .tooltip {
        position: relative;
        display: inline-block;
        cursor: help;
        font-weight: 700;
        font-size: 1.3em;
    }

    .feature-table td .tooltip .tooltiptext {
        visibility: hidden;
        width: 280px;
        background-color: var(--text-color-dark);
        color: #fff;
        text-align: left;
        border-radius: var(--border-radius-md);
        padding: 12px 15px;
        position: absolute;
        z-index: 10;
        left: 50%;
        margin-left: -140px;
        opacity: 0;
        transition: opacity var(--transition-medium), visibility var(--transition-medium), transform var(--transition-medium);
        font-size: 0.85rem;
        line-height: 1.5;
        box-shadow: var(--shadow-lg);
        font-weight: 400;
        transform: translateY(10px);
    }

    .feature-table td .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .feature-table .check {
        color: #34d399;
    }

    .feature-table .cross {
        color: #f87171;
    }

    .feature-table .neutral {
        color: #fbbf24;
    }

    .table-disclaimer {
        font-size: 0.85rem;
        color: var(--text-color-light);
        margin-top: 25px;
        text-align: left;
        font-weight: 400;
    }

    #waarom-ons .section-subtitle {
        margin-bottom: 70px;
    }

    .why-us-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 0;
        text-align: left;
    }

    .why-us-item {
        display: flex;
        align-items: flex-start;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        gap: 25px;
    }

    .why-us-item .why-us-icon i {
        font-size: 2.1rem;
        color: var(--primary-color);
        line-height: 1.2;
        transition: transform var(--transition-medium);
        display: inline-block;
        margin-top: 0px;
    }

    .why-us-item:hover .why-us-icon i {
        transform: scale(1.15) rotate(-5deg);
    }

    .why-us-content h3 {
        color: var(--primary-color);
        font-size: 1.3rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 8px;
    }

    .why-us-content p {
        font-size: 0.95rem;
        color: var(--text-color-medium);
        font-weight: 400;
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* --- FEATURE SHOWCASE SECTIES --- */
    .feature-showcase-section {
        padding: 90px 0;
        overflow: hidden;
    }

    .feature-showcase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        align-items: center;
    }

    .feature-text-content .section-title {
        margin-bottom: 25px;
        font-size: clamp(2rem, 4vw, 2.8rem);
        text-align: left;
        max-width: none;
    }

    .feature-text-content p {
        font-size: clamp(1rem, 1.8vw, 1.125rem);
        color: var(--text-color-medium);
        margin-bottom: 35px;
        line-height: 1.75;
        text-align: left;
        max-width: none;
    }

    .feature-text-content .btn {
        font-size: 0.95rem;
    }

    .feature-image-wrapper {
        position: relative;
    }

    .feature-image {
        width: 100%;
        max-width: 550px;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
            box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
            opacity 0.5s ease-out;
        opacity: 0;
        transform: scale(0.95);
    }

    .feature-image-wrapper.is-visible .feature-image {
        opacity: 1;
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 14px 28px rgba(var(--primary-color-rgb), 0.25), 0 10px 10px rgba(var(--primary-color-rgb), 0.22);
    }

    .feature-image-wrapper.is-visible .feature-image:hover {
        transform: scale(1.08) rotate(2deg) translateY(-8px);
        box-shadow: 0 18px 36px rgba(var(--primary-color-rgb), 0.30), 0 14px 16px rgba(var(--primary-color-rgb), 0.25);
        transition-duration: 0.3s;
    }

    #minutes-overview-feature .feature-image-wrapper.is-visible .feature-image {
        transform: scale(1.05) rotate(-2deg);
    }

    #minutes-overview-feature .feature-image-wrapper.is-visible .feature-image:hover {
        transform: scale(1.08) rotate(-2deg) translateY(-8px);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .pricing-card {
        background-color: var(--background-main);
        padding: 40px 30px;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
        border: 1px solid var(--border-color-soft);
    }

    .pricing-card:hover,
    .pricing-card.highlight {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-xl), 0 0 30px rgba(var(--primary-color-rgb), 0.25);
        border-color: var(--primary-color);
    }

    .pricing-card.highlight {
        border-width: 2px;
    }

    .pricing-card h3.plan-name {
        color: var(--text-color-dark);
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .pricing-card .price {
        font-family: var(--font-header);
        font-size: 3.2rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 8px;
        line-height: 1;
    }

    .pricing-card .price span.term {
        font-size: 0.45em;
        font-weight: 500;
        color: var(--text-color-light);
        display: block;
        line-height: 1.3;
        margin-top: 5px;
        font-family: var(--font-main);
    }

    .pricing-card .plan-description {
        font-size: 0.9rem;
        color: var(--text-color-medium);
        margin-bottom: 30px;
        font-weight: 500;
        min-height: 2.7em;
        text-align: center;
    }

    .pricing-card ul.features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 35px 0;
        text-align: left;
        width: 100%;
        font-size: 0.9rem;
        color: var(--text-color-medium);
        font-weight: 400;
    }

    .pricing-card ul.features-list li {
        margin-bottom: 12px;
        padding-left: 28px;
        position: relative;
    }

    .pricing-card ul.features-list li::before {
        content: '✓';
        color: var(--primary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 1px;
        font-size: 1.1em;
    }

    .pricing-card .btn {
        margin-top: auto;
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .pricing-card.free h3.plan-name,
    .pricing-card.free .price {
        color: var(--primary-color);
    }

    .examples-section ul {
        list-style: none;
        padding: 0;
        max-width: 680px;
        margin: 0 auto 50px auto;
        text-align: left;
    }

    .examples-section ul li {
        padding-left: 30px;
        position: relative;
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: var(--text-color-medium);
        font-weight: 400;
    }

    .examples-section ul li::before {
        content: '✓';
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.2em;
        position: absolute;
        left: 0;
        top: 0px;
    }

    .form-container {
        max-width: 500px;
        margin: 40px auto 0 auto;
        background: var(--background-main);
        padding: 40px;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color-soft);
    }

    .form-container input[type="text"],
    .form-container input[type="email"] {
        width: 100%;
        padding: 16px;
        margin-bottom: 20px;
        border: 1px solid var(--border-color-soft);
        border-radius: var(--border-radius-md);
        font-size: 1rem;
        font-family: var(--font-main);
        transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
    }

    .form-container input[type="text"]:focus,
    .form-container input[type="email"]:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.25);
    }

    .form-container .btn {
        width: 100%;
    }

    .form-feedback {
        margin-top: 15px;
        padding: 10px;
        border-radius: var(--border-radius-md);
        font-size: 0.9rem;
        font-weight: 500;
        text-align: center;
    }

    .form-feedback.success {
        background-color: #e6fffa;
        color: #257967;
        border: 1px solid #a1efdd;
    }

    .form-feedback.error {
        background-color: #fff5f5;
        color: #c53030;
        border: 1px solid #fc8181;
    }

    .form-disclaimer {
        font-size: 0.8rem;
        color: var(--text-color-light);
        margin-top: 20px;
        line-height: 1.5;
        font-weight: 400;
    }

    .compliance-section {
        text-align: left;
    }

    .compliance-section .container {
        max-width: 850px;
    }

    .compliance-section .section-title .icon {
        color: var(--primary-color);
        margin-right: 12px;
        font-size: 0.85em;
    }

    .compliance-section p {
        margin-bottom: 20px;
        font-size: 1rem;
        color: var(--text-color-medium);
        font-weight: 400;
    }

    .compliance-signature {
        margin-top: 35px;
        font-weight: 600;
        color: var(--text-color-dark);
        font-size: 1.05rem;
    }

    .compliance-signature span {
        color: var(--primary-color);
        font-weight: 600;
    }

    footer {
        background-color: #121826;
        color: #a0aec0;
        padding: 80px 0 40px 0;
        text-align: center;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px 40px;
        margin-bottom: 60px;
        text-align: left;
    }

    .footer-column .footer-logo img {
        height: 35px;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .footer-column h4.footer-heading {
        color: var(--background-main);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

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

    .footer-column ul li {
        margin-bottom: 12px;
    }

    .footer-column ul li a,
    .footer-column ul li span {
        color: #a0aec0;
        text-decoration: none;
        transition: color var(--transition-fast);
        font-size: 0.95rem;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-column ul li a:hover {
        color: var(--primary-color);
    }

    .footer-column p.footer-text {
        font-size: 0.95rem;
        line-height: 1.6;
        font-weight: 400;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding-top: 30px;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        margin: 8px 0;
        font-weight: 400;
    }

    .footer-bottom a {
        color: #a0aec0;
        text-decoration: none;
        margin: 0 10px;
        font-weight: 400;
    }

    .footer-bottom a:hover {
        color: var(--primary-color);
        text-decoration: underline;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .animate-on-scroll.fade-in-up {
        transform: translateY(30px);
    }

    .animate-on-scroll.fade-in-left {
        transform: translateX(-30px);
    }

    .animate-on-scroll.fade-in-right {
        transform: translateX(30px);
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }

    /* HERO v2 AANGEPASTE STYLES */
    .hero-flex {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        align-items: center;
        gap: 40px;
    }

    .hero-title {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        text-align: left;
        font-size: clamp(2.3rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.15;
        margin: 0 0 18px;
        font-family: var(--font-header);
        color: var(--text-color-dark);
    }

    .hero-title .accent {
        color: var(--primary-color);
    }

    .hero-sub-details {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        text-align: left;
    }

    .hero-sub-details .hero-sub {
        font-size: clamp(1.05rem, 2.2vw, 1.25rem);
        color: var(--text-color-medium);
        margin-bottom: 28px;
    }

    .hero-sub-details .hero-badges {
        list-style: none;
        padding: 0;
        margin: 0 0 35px;
        display: flex;
        flex-wrap: wrap;
        gap: 18px 30px;
        font-size: 0.95rem;
        color: var(--text-color-light);
    }

    .hero-sub-details .hero-badges i {
        color: var(--primary-color);
        margin-right: 6px;
    }

    .hero-sub-details .hero-cta {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-visual {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        text-align: center;
        align-self: center;
    }

    .hero-img {
        max-width: 550px;
        box-shadow: var(--shadow-lg);
        border-radius: var(--border-radius-lg);
        transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    }

    .hero-img:hover {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 14px 28px rgba(var(--primary-color-rgb), 0.25), 0 10px 10px rgba(var(--primary-color-rgb), 0.22);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.8rem;
        color: var(--primary-color);
        animation: bounce 2.6s infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translate(-50%, 0);
        }

        50% {
            transform: translate(-50%, 8px);
        }
    }

    .hero-bg-blob {
        position: absolute;
        top: -120px;
        right: -160px;
        width: 580px;
        height: 580px;
        background: radial-gradient(circle at 30% 30%,
                rgba(var(--primary-color-rgb), 0.18) 0%, transparent 70%);
        filter: blur(60px);
        z-index: 0;
    }
    
    .text-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    /* --- Feature Table Styling --- */
    .feature-table-section {
        background-color: #ffffff;
        border-radius: 20px;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: visible;
    }

    .feature-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        padding-bottom: 10px;
    }

    .feature-table-wrapper::-webkit-scrollbar {
        height: 5px;
    }

    .feature-table-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .feature-table-wrapper::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .feature-table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

    .feature-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 900px;
    }

    .feature-table thead th {
        font-family: 'Urbanist', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: #333;
        white-space: nowrap;
        border-bottom-width: 2px;
        border-bottom-color: #dee2e6;
    }

    .feature-table td:not(:first-child),
    .feature-table th:not(:first-child) {
        text-align: center;
    }

    .feature-table th:first-child,
    .feature-table td:first-child {
        text-align: left;
        width: 30%;
        min-width: 250px;
    }

    .tooltip {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        cursor: default;
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 250px;
        background-color: #333;
        color: #fff;
        border-radius: 6px;
        padding: 10px;
        position: absolute;
        z-index: 10;
        bottom: 150%;
        left: 50%;
        margin-left: -125px;
        opacity: 0;
        transition: opacity 0.3s, visibility 0.3s;
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.5;
        pointer-events: none;
        text-align: left;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    .feature-table td:nth-child(n+5) .tooltip .tooltiptext {
        left: auto;
        right: 0;
        margin-left: 0;
    }

    .feature-table td:nth-child(n+5) .tooltip .tooltiptext::after {
        left: auto;
        right: 10px;
    }

    .tooltip-down .tooltip .tooltiptext {
        bottom: auto;
        top: 150%;
    }

    .tooltip-down .tooltip .tooltiptext::after {
        top: auto;
        bottom: 100%;
        border-color: transparent transparent #333 transparent;
    }

    .icon-check {
        color: #00BBFF;
    }

    .icon-cross {
        color: #ff6b6b;
    }

    .icon-neutral {
        color: #adb5bd;
    }


    /* --- RESPONSIVE MEDIA QUERIES --- */
    @media (min-width: 992px) {
        .main-nav {
            display: flex;
        }
        .mobile-menu-toggle {
            display: none;
        }
    }

    @media (min-width: 768px) {
        .why-us-list {
            grid-template-columns: 1fr 1fr;
            gap: 35px 55px;
        }
    }
    
    @media (max-width: 991px) {
        .header-cta .btn-outline {
            display: none;
        }
        .logo .desktop-logo {
            display: none;
        }
        .logo .mobile-logo {
            display: block;
        }
        
        .hero-flex {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0;
        }

        .hero-title {
            order: 1;
            width: 100%;
            margin-bottom: 30px;
            text-align: center;
        }

        .hero-visual {
            order: 2;
            width: 100%;
            margin-bottom: 30px;
        }

        .hero-sub-details {
            order: 3;
            width: 100%;
            text-align: center;
        }

        .hero-sub-details .hero-badges {
            justify-content: center;
        }

        .hero-sub-details .hero-cta {
            justify-content: center;
        }

        .desktop-break {
            display: none;
        }
        
        .comparison-grid {
            grid-template-columns: 1fr;
        }
        
        .feature-showcase-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .feature-text-content .section-title,
        .feature-text-content p {
            text-align: center !important;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-text-content .btn {
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-showcase-section.text-left-image-right .feature-image-wrapper {
            order: 1;
        }

        .feature-showcase-section.text-left-image-right .feature-text-content {
            order: 0;
        }

        .feature-showcase-section.image-left-text-right .feature-image-wrapper {
            order: 0;
        }

        .feature-showcase-section.image-left-text-right .feature-text-content {
            order: 1;
        }

        .feature-showcase-grid>.feature-image-wrapper {
            order: 0;
        }

        .feature-showcase-grid>.feature-text-content {
            order: 1;
        }

        .feature-image {
            max-width: 85%;
        }
        
        .section-title {
            font-size: 2rem;
        }

        .feature-table th:first-child,
        .feature-table td:first-child {
            width: 200px;
            min-width: 200px;
        }

        .feature-table-wrapper {
            position: relative;
        }
    }

    @media (max-width: 768px) {
        body {
            font-size: 15px;
        }

        .container {
            width: 95%;
            padding: 0 15px;
        }

        section {
            padding: 70px 0;
        }

        section .section-subtitle {
            margin-bottom: 50px;
        }

        .steps-container,
        .pricing-grid,
        .benefits-container {
            grid-template-columns: 1fr;
        }

        .step,
        .pricing-card,
        .benefit-item {
            width: auto;
            margin-bottom: 30px;
        }

        .footer-grid {
            text-align: center;
        }

        .footer-column h4.footer-heading {
            text-align: center;
        }
        
        .footer-column ul li a,
        .footer-column ul li span {
            justify-content: center;
        }

        .why-us-list {
            grid-template-columns: 1fr;
        }

        .why-us-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
        }

        .why-us-item .why-us-icon i {
            font-size: 2.1rem;
            margin-top: 0;
        }

        .hero-img {
            width: 90%;
        }
        
        .logo img {
            transform: scale(0.9);
        }

        .feature-showcase-section {
            padding: 70px 0;
        }

        .feature-image {
            max-width: 95%;
        }

        .feature-table-section {
            padding: 30px 0;
        }

        .container {
            padding: 0 15px;
        }

        .section-subtitle,
        .table-disclaimer {
            padding: 0 15px;
        }
    }
    
    @media (max-width: 575px) {
        .hero {
            padding: 60px 0 110px;
        }

        .hero-sub-details .hero-badges {
            flex-direction: column;
            align-items: center;
            gap: 10px 0;
        }
    }