:root {
    --bg-color: #ffffff;
    --card-bg: #f8f9fa;
    --text-color: #2d3748;
    --text-muted: #718096;
    --accent-primary: #805AD5;
    /* Professional Purple */
    --accent-secondary: #38B2AC;
    /* Fresh Teal/Green */
    --accent-neon: #805AD5;
    /* Changed from Neon to Feedr Purple */
    --border-color: #e2e8f0;
    --font-main: 'Inter', sans-serif;
    --container-width: 1400px;
    --transition: all 0.3s ease;
    --header-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Mulit-Layer Halftone Parallax */
.halftone-layer {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: -2;
    pointer-events: none;
    background-repeat: repeat;
}

.halftone-layer-1 {
    background-image: radial-gradient(var(--accent-primary) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    opacity: 0.12;
}

.halftone-layer-2 {
    background-image: radial-gradient(var(--accent-secondary) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    background-position: 15px 15px;
    opacity: 0.10;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ... skipped unchanged ... */

/* Header */
header {
    position: fixed;
    top: 0;
    /* Fixed to top */
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a202c;
    letter-spacing: -0.05em;
    font-style: italic;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

nav a:hover {
    color: var(--accent-primary);
}



/* Hero */
.hero {
    min-height: 95vh;
    /* Increased to push content down */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 150px;
    /* Clean spacing from top */
    padding-bottom: 80px;
    /* More breathing room */
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 80px 0;
}

#tarieven {
    padding-top: 20px;
    /* Reduced space */
}

h1,
h2,
h3,
h4 {
    color: #1a202c;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

h1 {
    font-size: 6.5rem;
    /* Increased to fill screen */
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background-color: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 90, 213, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2d3748;
    /* Dark border matched to font */
    color: var(--text-color);
    box-shadow: none;
    border-radius: 50px;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.2);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a202c;
    letter-spacing: -0.05em;
    font-style: italic;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 10px;
    /* Small gap between fixed cells */
}

nav li {
    width: 110px;
    /* FIXED WIDTH CELL - Prevents layout shift */
    text-align: center;
    display: flex;
    /* alignment */
    justify-content: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0;
    text-decoration: none;
    display: block;
    width: 100%;
}

/* Pseudo-element removed - using fixed width li instead */

nav a:hover,
nav a.active {
    color: var(--accent-primary);
    font-weight: 800;
}

/* Hero */
.hero {
    min-height: 95vh;
    /* Increased to push content down */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 150px;
    padding-bottom: 80px;
    /* More breathing room */
    position: relative;
    z-index: 1;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    overflow: visible;
    /* Ensure cards can grow outside bounds */
    padding: 10px;
    /* Buffer for scaling */
}

.pricing-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* Faster, consistent transition */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-3px) scale(1.015);
    /* Very subtle lift and growth */
    border-color: var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    /* Extremely soft shadow */
    z-index: 20;
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    /* transform: scale(1.05); -- Removed per user request to be same size */
    box-shadow: 0 25px 50px rgba(128, 90, 213, 0.15);
    z-index: 2;
    position: relative;
}

/* Badge for "Most Popular" */
.pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #38B2AC 0%, #319795 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(56, 178, 172, 0.3);
}

@media (max-width: 950px) {
    .pricing-card.featured {
        transform: none;
        margin-top: 30px;
        /* More space above for badge */
        z-index: 10;
        /* Ensure on top of other cards */
    }

    /* Ensure badge is visible and doesn't conflict */
    .pricing-card.featured::after {
        top: -10px;
        /* Slightly above border */
        right: 15px;
        /* In the corner */
        left: auto;
        /* Not centered */
        transform: none;
        /* No centering transform */
        padding: 4px 10px;
        font-size: 0.65rem;
        width: max-content;
        white-space: nowrap;
    }
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #1a202c;
    font-style: italic;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-top: 15px;
}

.price-quarterly {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.8;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 14px;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-secondary);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-card .btn,
.pricing-card .btn-secondary {
    align-self: center;
    width: 80%;
    margin-top: auto;
}

.target-audience {
    margin-bottom: 0px;
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 600;
    min-height: 1.5em;
}

/* About Us (Placeholder) */
#over-ons {
    min-height: 10px;
    background: #fcfcfc;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-branding {
    padding-top: 20px;
}

.contact-logo-large {
    font-size: 4rem;
    font-weight: 900;
    color: #1a202c;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item a {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.contact-info-item a:hover {
    color: var(--accent-primary);
}

.contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
}

input,
select,
textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fcfcfc;
    font-weight: 400;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(128, 90, 213, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3748;
}

.input-group {
    margin-bottom: 24px;
}

/* CTA Grid Section (Dual Action - Card Layout) */
.cta-grid-section {
    padding: 100px 0;
    /* Light gray background for whole section */
    background: #F8F9FA;
    border-top: 1px solid #edf2f7;
    position: relative;
    border-bottom: 1px solid #edf2f7;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two exact equal columns */
    gap: 40px;
    /* Gap between cards */
    align-items: stretch;
    /* Cards same height */
    width: 100%;
    /* Full width of container */
    max-width: none;
    /* Removed specific max-width constraint to follow main container */
}

.cta-col {
    background: #ffffff;
    /* White cards */
    padding: 50px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align top */
    text-align: left;
    /* Left align content */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    /* Subtle premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    /* Ensure full height */
}

.left-col,
.right-col {
    /* Reset specific columns to generic card style */
}



.cta-col h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: none;
    -webkit-text-fill-color: #1a202c;
    color: #1a202c;
    line-height: 1.3;
    font-weight: 600;
    /* Reduced from 700/bold */
    text-align: left;
    min-height: 2.6em;
    /* Forces approx 2 lines to keep alignment equal */
    /* Align texts to bottom of their container area */
}

/* Specific text alignment override for right col heading - RESET to left */
.right-col h2 {
    text-align: left;
}

.cta-sub {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
    min-height: 3em;
    /* Balance text area height */
}

/* Newsletter Form Pill Style */
.newsletter-form-inline,
.action-wrapper-centered {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: auto;
    /* Push to bottom of flex container */
}

.right-col .action-wrapper-centered {
    justify-content: flex-end;
}

.wave-emoji {
    display: none;
    /* Removed for cleaner look in card */
}

.input-pill {
    display: flex;
    align-items: center;
    background: #F7FAFC;
    /* Slightly distinct inner bg */
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    flex-grow: 1;
    width: 100%;
    transition: border-color 0.2s;
}

.input-pill:focus-within {
    border-color: var(--accent-primary);
    background: #fff;
}

.input-pill input {
    border: none;
    background: transparent;
    padding: 10px 0;
    flex-grow: 1;
    font-size: 0.95rem;
    color: #2d3748;
    box-shadow: none;
    /* Remove default input shadow */
}

.input-pill input:focus {
    box-shadow: none;
    /* override global input focus */
}

/* Main Contact Btn Override */

/* Main Contact Btn Override */
.contact-section .btn {
    align-self: flex-start;
    width: auto;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.2);
}

.contact-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 90, 213, 0.3);
}

/* Message Area - Taller and Resizable */
textarea#message {
    min-height: 120px;
    /* Reduced from 180px per user request */
    resize: vertical;
    /* Allow vertical resizing only */
    line-height: 1.6;
}

/* Ensure contact form container can expand but margins stay fixed */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: auto;
    /* Let it grow with content */
    overflow: hidden;
    /* Keep content inside bounds */
}

/* Shared Button Styles for Symmetry */
.input-pill button,
.btn-action {
    background: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    /* Matched Padding */
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    /* Matched Font Size */
    white-space: nowrap;
    transition: all 0.2s;
    height: 50px;
    /* Fixed Height for exact symmetry */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.2);
}

.input-pill button:hover,
.btn-action:hover {
    background: #6B46C1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 90, 213, 0.3);
}

.btn-action {
    margin-top: 0;
    width: fit-content;
    /* Let it size naturally like the one on left? Or specific? */
    min-width: 160px;
    /* Give it some body */
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-col {
        padding: 30px;
    }

    .newsletter-form-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .input-pill {
        flex-direction: column;
        padding: 15px;
        border-radius: 12px;
        align-items: stretch;
        gap: 15px;
    }

    .input-pill button {
        width: 100%;
    }
}

/* Floating icons in CTA */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    /* Very subtle in clean mode */
    pointer-events: none;
    animation: floatIcon 6s ease-in-out infinite;
    color: var(--accent-primary);
}

/* Clean Footer */
.site-footer {
    background-color: #fff;
    color: #718096;
    padding: 80px 0 40px;
    font-size: 0.95rem;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 columns */
    gap: 60px;
    margin-bottom: 80px;
    text-align: left;
}

.footer-col h4 {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-primary);
    stroke-width: 2;
    fill: none;
    margin-right: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    /* Center icon with text */
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4a5568;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    color: #1a202c;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    line-height: 1;
    /* Fix alignment */
    margin-top: -6px;
    /* Visual tweak to align cap-height with H4 "COMPANY" */
}

.footer-desc {
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #718096;
    transition: color 0.2s;
    font-weight: 400;
    text-decoration: none;
}

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

/* Mini Form in Footer */
.footer-mini-form {
    display: flex;
    gap: 10px;
}

.footer-mini-form input {
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 12px 20px;
    width: 100%;
}

.footer-mini-form button {
    background: var(--accent-primary);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 0 25px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #718096;
    background: #f7fafc;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta .btn-hit {
        padding: 18px 40px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE STYLES - ENHANCED
   ============================================ */

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Clean X icon - properly aligned */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Footer - Hidden on desktop */
.mobile-menu-footer {
    display: none;
}

/* Blur Overlay for Mobile Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-menu-footer {
        width: 100%;
        padding: 30px 0;
        margin-top: auto;
        display: flex;
        flex-direction: column;
    }

    /* Contact info - left aligned content but centered block */
    .mobile-contact-info {
        margin-bottom: 20px;
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center the column of items */
    }

    /* Container for items to control individual width/alignment */
    a.menu-contact-item,
    div.menu-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0;
        margin-bottom: 16px;
        padding: 0;
        /* Removed large padding-left */
        font-size: 15px;
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.2s ease;
        justify-content: flex-start;
        line-height: 1.4;
        box-sizing: border-box;
        width: 260px;
        /* Fixed max width to keep them neat */
        max-width: 90%;
    }

    .menu-contact-item:last-child {
        margin-bottom: 0;
    }

    a.menu-contact-item:hover {
        color: var(--accent-primary);
    }

    a.menu-contact-item:hover svg {
        stroke: var(--accent-primary);
    }

    .menu-contact-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        stroke: var(--accent-primary);
        stroke-width: 2;
        fill: none;
    }

    .menu-contact-item span {
        font-size: 15px;
        line-height: 1.4;
        display: inline;
        white-space: nowrap;
    }

    /* Remove old emoji icons */
    .icon-mail,
    .icon-phone,
    .icon-location {
        display: none;
    }

    /* Social icons - centered at bottom, purple, no circle */
    .menu-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }

    .menu-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        transition: transform 0.2s ease;
    }

    .menu-socials a:hover {
        transform: scale(1.1);
    }

    .menu-socials svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        fill: var(--accent-primary);
    }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

    .container {
        padding: 0 30px;
    }

    /* Pricing Grid - 2 columns on tablet */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    /* CTA Grid - Stack on tablet */
    .cta-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .cta-col {
        padding: 50px 40px !important;
    }

    /* Hero adjustments */
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* Contact Section Earlier Breakpoint - Center everything */
@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .contact-branding {
        text-align: left;
        display: flex !important;
        flex-direction: row !important;
        /* Force side-by-side */
        align-items: flex-start;
        /* Align top for better reading */
        justify-content: space-between;
        gap: 15px;
        /* Tighter gap */
    }

    .contact-logo-large {
        display: none;
    }

    .contact-text-wrapper {
        flex: 1;
        /* Take available space */
        min-width: 0;
        /* Allow shrinking */
    }

    .contact-branding h2 {
        font-size: 1.4rem;
        /* Smaller title */
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .contact-branding p {
        font-size: 0.8rem;
        /* Smaller text */
        margin-bottom: 0 !important;
        line-height: 1.4;
    }

    .contact-info-list {
        flex: 0 0 auto;
        /* Keep fixed width for info */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        text-align: left;
        padding-top: 5px;
        /* Align with text top */
    }

    /* Make icons/text smaller in info list to fit */
    .contact-info-item {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .contact-info-item svg {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    /* Center contact form elements */
    .contact-card {
        text-align: center;
    }

    .contact-card form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card .input-group {
        width: 100%;
        text-align: left;
    }

    .contact-card .btn {
        margin: 0 auto;
    }
}

/* Global Custom Select Style (Moved out of media query) */
.contact-card select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f7fafc;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' 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 15px center;
    background-size: 16px;
    padding-right: 40px !important;
    /* Space for arrow */
    cursor: pointer;
    border: 2px solid transparent;
    /* Match existing input style placeholder */
    transition: all 0.3s ease;
}

/* Ensure hover/focus states match inputs */
.contact-card select:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(108, 93, 211, 0.1);
}

/* Mobile Breakpoint */
@media (max-width: 768px) {

    /* General Font Scaling */
    body {
        font-size: 14px;
        /* Slightly smaller base font */
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 75%;
        /* Reduced width to show site partially */
        max-width: 320px;
        /* Cap width */
        height: calc(100vh - var(--header-height));
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Left align everything */
        justify-content: flex-start;
        padding-top: 40px;
        padding-left: 40px;
        /* Add padding so content isn't on the edge */
        padding-right: 20px;
        /* Right padding for safety */
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Reset ul inside nav-menu for mobile */
    .nav-menu ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        padding: 0;
        position: static;
        height: auto;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        margin-bottom: 40px;
        align-items: flex-start;
        /* Ensure list items are left aligned */
    }

    .nav-menu ul li {
        width: 100%;
        text-align: left;
    }

    .nav-menu ul li a {
        font-size: 1.5rem;
        /* Larger font for readability */
        font-weight: 600;
        color: var(--text-color);
        display: block;
        width: 100%;
        text-decoration: none;
    }

    /* Allow purple hover color change on mobile */
    .nav-menu ul li a:hover,
    .nav-menu ul li a:active,
    .nav-menu ul li a:focus {
        color: var(--accent-primary) !important;
        background: transparent !important;
        transform: none !important;
        padding-left: 0 !important;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
        /* Center align hero text */
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Smaller hero title */
        line-height: 1.1;
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        font-size: 0.95rem;
        /* Smaller body text */
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    .hero .action-wrapper,
    .hero .btn-group {
        justify-content: center;
        /* Center buttons */
        margin-top: 30px;
    }



    /* Aggressive Price Sizing - Middle Ground */
    .pricing-card .pricing-header .price {
        white-space: nowrap !important;
        font-size: 1.5rem !important;
        /* Increased from 1.2rem */
        font-weight: 800;
        margin-top: 10px;
        margin-bottom: 5px;
        line-height: 1.2;
        color: var(--text-color);
    }

    .pricing-card .pricing-header .price-quarterly {
        font-size: 0.8rem !important;
        opacity: 0.8;
        margin-bottom: 15px;
        /* Space after price block */
    }

    /* Hide quotes */
    .pricing-quote {
        display: none !important;
    }

    /* Reset Featured Card */
    .pricing-card.featured {
        border: 1px solid var(--border-color) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
        z-index: 1 !important;
        margin-top: 0 !important;
        transform: none !important;
    }

    .pricing-card.featured::after {
        display: none !important;
    }

    /* Global Mobile Card Styling - Uniformity */
    .pricing-card {
        flex: 0 0 auto;
        width: 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
        scroll-snap-align: center;
        margin: 0;
        height: auto !important;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        /* Removed justify-content: flex-start; */
        padding: 0 0 20px 0 !important;
        /* Removed padding: 0 0 20px 0 !important; from here, added to individual elements */
        box-sizing: border-box;
        overflow: hidden;
        /* For header radius */
        border-radius: 16px;
        /* Ensure rounded corners */
        background: white;
        position: relative;
        /* Context */
    }

    /* Allow reordering of header elements with card elements */
    .pricing-card .pricing-header {
        display: contents;
        /* Flattens children into flex parent */
    }

    /* ORDERING */
    /* 1. Title Bar */
    .pricing-card h3 {
        order: 1;
        background-color: var(--accent-primary);
        color: white;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        margin: 0 0 15px 0 !important;
        font-size: 1.4rem !important;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* 2. Price */
    .pricing-card .pricing-header .price {
        order: 2;
        padding-left: 20px;
        padding-right: 20px;
        white-space: nowrap !important;
        font-size: 1.5rem !important;
        font-weight: 800;
        margin-top: 10px;
        margin-bottom: 5px;
        line-height: 1.2;
        color: var(--text-color);
    }

    /* 3. Quarterly Price */
    .pricing-card .pricing-header .price-quarterly {
        order: 3;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 0.8rem !important;
        opacity: 0.8;
        margin-bottom: 15px;
    }

    /* 4. Features List */
    .pricing-features {
        order: 4;
        flex-grow: 1;
        margin-bottom: 20px;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        padding-left: 25px;
        /* More space for checks */
        padding-right: 20px;
    }

    /* 5. Tagline (Target Audience) - MOVED TO BOTTOM ABOVE BUTTON */
    .pricing-header .target-audience {
        order: 5;
        font-size: 1rem !important;
        /* Slightly bigger/clearer */
        margin-bottom: 15px;
        /* Space before button */
        font-style: normal !important;
        color: var(--accent-primary);
        /* Use purple to pop */
        font-weight: 700;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        width: 100%;
    }

    /* 6. Button */
    /* 6. Button - Restored to full width style */
    .btn.select-package {
        order: 6;
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    /* Target specific Hero Buttons to be centered and smaller */
    .hero .btn {
        width: auto !important;
        min-width: 160px;
        /* Consistent min width */
        padding: 12px 25px !important;
        /* Slightly smaller than default */
        font-size: 1rem !important;
        margin: 5px !important;
        /* Spacing between stacked buttons */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero .btn-group {
        display: flex;
        flex-direction: column;
        /* Stack them usually on mobile */
        align-items: center;
        gap: 15px;
        /* Breathability */
        width: 100%;
        padding: 0 20px;
        /* Safe side padding */
        box-sizing: border-box;
    }

    /* Ensure pricing grid breaks out of standard padding correctly */
    .pricing-grid {
        align-items: stretch !important;
        padding-bottom: 30px;

        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px;

        /* Standard Full Bleed Technique */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;

        /* Padding to start scroll comfortably */
        padding-left: 12.5vw;
        padding-right: 12.5vw;

        /* Hide Scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Removed Purple Header Bar for Title, moved to h3 */

    /* Removed Content Padding (since card padding is 0 for header) */

    /* Removed Smaller Tagline, moved to .pricing-header .target-audience */

    /* Compact List with Spacing */
    .pricing-features li {
        font-size: 0.9rem !important;
        /* Slightly bigger */
        margin-bottom: 10px !important;
        /* More breathing room */
        line-height: 1.4;
        list-style-position: outside;
        /* Better alignment */
        margin-left: 10px;
        /* Space for bullets */
    }

    /* Removed .btn.select-package, moved to ordered section */

    /* Scroll Indicators (Dots) Container - specific for mobile */
    .pricing-scroll-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        width: 100%;
    }

    .scroll-dot {
        width: 8px;
        height: 8px;
        background-color: #E2E8F0;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .scroll-dot.active {
        background-color: var(--accent-primary);
    }

    /* Contact Layout */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .contact-branding {
        text-align: center;
    }

    .contact-info-list {
        justify-content: center;
    }

    /* Footer - Improved Mobile Grid */
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    /* Logo (1st child) spans full width */
    .footer-col:first-child {
        grid-column: 1 / -1;
        display: flex;
        /* Use flex to control layout */
        flex-direction: column;
        align-items: center;
        /* Center the whole column horizontally */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        /* Subtle divider */
        padding-bottom: 20px;
        margin-bottom: 10px;
        text-align: center;
        /* Default reset */
    }

    .footer-logo {
        margin: 0 auto;
        /* Explicit center logo */
        margin-bottom: 15px;
    }

    /* Paragraph in first column */
    .footer-col:first-child p.footer-desc {
        width: fit-content;
        max-width: 80%;
        /* Don't let it get too wide */
        margin: 0 auto;
        text-align: left;
        /* Text alignment left */
        display: block;
    }

    /* 2nd and 3rd children (Company & Pakketten) */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Items align left to each other */
        justify-self: center;
        /* The whole column sits in center of grid area */
        width: fit-content;
        /* Shrink fit to content layout */
        text-align: left;
    }

    .footer-col h4 {
        text-align: left;
        /* Left align header */
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-links-list {
        width: auto;
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .footer-links-list li {
        margin-bottom: 10px;
        text-align: left;
        display: block;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 40px;
    }

    /* Center the footer bottom links explicitly as well */
    .footer-links-inline {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* CTA Grid */
    .cta-col {
        padding: 40px 30px !important;
        text-align: center;
        /* Center text */
    }

    .cta-col h2 {
        font-size: 1.6rem;
        /* Smaller size */
    }

    .cta-col .action-wrapper-centered,
    .cta-col form,
    .input-pill {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Section padding */
    .section-padding {
        padding: 50px 0;
        /* Reduced padding */
    }

    /* Buttons */
    .btn,
    .btn-secondary {
        width: auto;
        /* Allow buttons to be natural width or fixed but centered? 
                        User said "buttons in het midden". 
                        Usually full width is easier on mobile, but let's center them. */
        min-width: 200px;
        max-width: 100%;
        margin: 10px auto;
        /* Center block */
        display: inline-flex;
        justify-content: center;
    }

    /* Mobile Contact Layout Re-override */
    .mobile-contact-info {
        align-items: flex-start;
        /* Left align items in the container */
        padding-left: 0;
    }

    .mobile-menu-footer {
        width: 100%;
        padding-right: 30px;
        /* Match nav padding */
    }
}

/* Small Phone Breakpoint */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .cta-col h2 {
        font-size: 1.5rem;
    }

    .cta-col {
        padding: 30px 25px !important;
    }

    .contact-logo-large {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }
}