/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    margin: 0 !important;
    padding: 0 !important;
}

body.nav-open {
    overflow: hidden !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile Container */
@media (max-width: 768px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        margin: 0 auto;
    }
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

/* Buttons - Mollie Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    min-height: 48px;
}

.btn-cta {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #dcdcdc;
}

.btn-cta:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    border: 1px solid #dcdcdc;
    color: #000;
}

.btn-outline:hover {
    opacity: 0.8;
}

.btn-account {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.btn-account:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Header - Dynamic Styling with Smooth Animations */
.header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95)) !important;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    border: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background-color 0.4s ease-out,
                backdrop-filter 0.4s ease-out,
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-radius 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    will-change: transform, background-color, border-radius, box-shadow;
}

/* Header when scrolled - rounded floating style with smooth animations */
.header.scrolled {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98)) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 16px;
    left: 16px;
    right: 16px;
    transform: translateZ(0) scale(1);
}

/* Header at top on homepage - subtle dark with smooth fade */
.header.at-top.homepage {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.1)) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: none;
    transform: translateZ(0);
}

/* Header when mobile menu is open */
body.nav-open .header {
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10001 !important;
}

/* Navbar styling when mobile menu is open */
body.nav-open .navbar {
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Logo styling when mobile menu is open */
body.nav-open .logo {
    color: #ffffff !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    min-height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                min-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: padding, min-height;
}

/* Compact navbar when scrolled with smooth size transition */
.header.scrolled .navbar {
    padding: 16px 24px;
    min-height: 64px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #fff;
}

.nav-buttons,
.nav-buttons-desktop {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-buttons {
    display: none;
}

.nav-buttons-desktop .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.nav-buttons-desktop .btn-outline:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 10001;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Dark Modern Style */
.hero {
    padding: 80px 0 20px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0 !important;
    height: 55vh;
    display: flex;
    align-items: center;
}

/* Force remove spacing after hero */
.hero + * {
    margin-top: 0 !important;
    padding-top: 25px !important;
}

.hero + .pakketten {
    margin-top: 0 !important;
    padding-top: 30px !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero USPs */
.hero-usps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.usp-item:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.usp-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.usp-item span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Hero button overrides to ensure correct colors */
.hero-buttons .btn-quiz {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.hero-buttons .btn-quiz:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    opacity: 1 !important;
}

.hero-buttons .btn-cta {
    background: #ffffff !important;
    color: #1e293b !important;
    border: 1px solid #dcdcdc !important;
}

.hero-buttons .btn-cta:hover {
    background: #e2e8f0 !important;
    border-color: #94a3b8 !important;
}

/* Quiz Button - Modern Mollie styling */
.btn-quiz {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-quiz:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
    background: #f8fafc;
}

.hero-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-stars {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
    padding: 20px 0 !important;
}

/* Specific section overrides */
section.pakketten {
    padding: 25px 0 40px !important;
}

.section-header {
    text-align: left;
    margin-bottom: 5px !important;
    margin-top: 15px !important;
    padding-top: 10px !important;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered p {
    margin: 0 auto;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 8px !important;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 0 10px 0 !important;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

/* Diensten Section - Modern Mollie Style */
.diensten {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.diensten::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
}

.diensten .section-header h2 {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: -0.03em;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.dienst-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dienst-card:hover::before {
    opacity: 1;
}

.dienst-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dienst-card:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.dienst-card:nth-child(6):hover {
    border-color: rgba(168, 85, 247, 0.2);
}

.dienst-icon {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
}

.icon-bg {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.icon-bg.blue {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-bg.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-bg.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-bg.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.icon-bg.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.icon-bg.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dienst-card:hover .icon-bg::before {
    opacity: 1;
}

.dienst-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.dienst-card p {
    margin-bottom: 28px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    flex-grow: 1;
}

.dienst-card .btn {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    line-height: 1.3;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dienst-card .btn:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.dienst-card .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dienst-card .btn:focus {
    outline: 2px solid #0070f3;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.1);
}

/* Shimmer effect for dienst buttons */
.dienst-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.dienst-card .btn:hover::before {
    left: 100%;
}

/* All dienst cards use unified Mollie-style buttons */
.dienst-card:nth-child(2) .btn,
.dienst-card:nth-child(6) .btn {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    font-weight: 600;
}

.dienst-card:nth-child(2) .btn:hover,
.dienst-card:nth-child(6) .btn:hover {
    background: #e9ecef;
    color: #343a40;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Mollie-style floating elements */
.diensten::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 70, 255, 0.03), rgba(0, 102, 255, 0.06));
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.diensten-grid {
    position: relative;
    z-index: 1;
}

/* Pakketten Section - Modern Mollie Style */
.pakketten {
    background: linear-gradient(to bottom, #f1f5f9 0%, #f8fafc 30%, #ffffff 100%);
    position: relative;
    padding: 20px 0 40px !important;
    margin-top: 0px !important;
}

.pakketten::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.pakketten-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* Direct spacing control between header and table */
.section-header + .pakketten-table {
    margin-top: 0px !important;
}

.pakket-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pakket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pakket-card.featured {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    position: relative;
    padding-top: 32px;
}

.pakket-card.featured:hover {
    box-shadow: 0 12px 48px rgba(16, 185, 129, 0.25);
}

.pakket-badge {
    display: none;
}

.pakket-header {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 20px;
}

.pakket-header h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pakket-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 4px;
    font-weight: 500;
}

.setup-cost, .contract-term {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 3px;
    line-height: 1.4;
    font-weight: 400;
}

.pakket-features {
    margin-bottom: 28px;
    flex-grow: 1;
}

.pakket-features ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.pakket-features li {
    padding: 10px 0;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.pakket-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pakket-btn {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    min-height: 52px;
    line-height: 1.3;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pakket-btn:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.pakket-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pakket-btn:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Shimmer effect for pakket buttons */
.pakket-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pakket-btn:hover::before {
    left: 100%;
}

.pakket-card.featured .pakket-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: #10b981;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.pakket-card.featured .pakket-btn:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pakket-card.featured .pakket-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 112, 243, 0.2);
}

.pakket-card.featured .pakket-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Extra Services */
.extra-services {
    margin-top: 48px;
    margin-bottom: 32px;
    text-align: left;
    background: #f8f9fa;
    padding: 40px 24px;
    border-radius: 16px;
}

.extra-services h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: left;
    transition: none;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #6c757d;
}

.service-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.service-card p:not(.service-price) {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.service-card .btn {
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.15s ease;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    line-height: 1.3;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card .btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #343a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Enhancement for Conversion */
.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card .btn:hover::before {
    left: 100%;
}

/* SEO and Conversion Optimized Service Cards */
.service-card .btn[href*="bestellen"] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.service-card .btn[href*="bestellen"]:hover {
    background: #e9ecef;
    color: #343a40;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Focus states for accessibility and SEO */
.service-card .btn:focus {
    outline: 2px solid #0070f3;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.1);
}

/* Conversion-optimized button text styling */
.service-card .btn {
    text-transform: none;
    font-family: inherit;
}

.service-card:hover .btn {
    background: #e9ecef;
    transform: translateY(-1px);
}

/* Transparency Info - Authentic Mollie Style */
.transparency-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 32px;
    margin-top: 48px;
}

.transparency-header {
    text-align: center;
    margin-bottom: 40px;
}

.transparency-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.transparency-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-item:hover {
    border-color: #0070f3;
    box-shadow: 0 2px 8px rgba(0, 112, 243, 0.1);
}

.info-item.featured-blue {
    --accent-color: #0070f3;
}

.info-item.featured-green {
    --accent-color: #22c55e;
}

.info-item.featured-purple {
    --accent-color: #8b5cf6;
}

.info-icon-wrapper {
    flex-shrink: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 0.9375rem;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.info-stats {
    margin-top: 8px;
}

.stat-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #f1f3f4;
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0070f3;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.8125rem;
    color: #666;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    margin-top: 80px;
    padding: 60px 0 70px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
}

.partners-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.partners-header p {
    color: #64748b;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.6;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
    display: flex;
    animation: slide 45s linear infinite;
    width: calc(200% + 80px);
    align-items: center;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex: 0 0 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
}

.partner-item img {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0%);
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Quiz Section - Moderne Interactive Mollie Style */
.quiz {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quiz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.quiz-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quiz-header {
    text-align: center;
    margin-bottom: 60px;
}

.quiz-header h2 {
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quiz-header p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-interactive {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.quiz-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #10b981 100%);
    background-size: 200% 100%;
    animation: headerGradient 3s ease-in-out infinite;
}

@keyframes headerGradient {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: 0% 0; }
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.step-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-badge:hover {
    background: rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

.step-badge svg {
    color: #10b981;
}

.quiz-question {
    text-align: center;
    margin-bottom: 48px;
}

.quiz-question h3 {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.question-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.quiz-option {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quiz-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.06), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.quiz-option:hover::before {
    left: 100%;
}

.quiz-option:hover {
    border-color: #10b981;
    background: #f0fdf4;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    position: relative;
    z-index: 2;
}

.option-icon {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 56px;
    height: 56px;
}

.option-icon.starter {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.option-icon.growth {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.option-icon.scale {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.quiz-option:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.quiz-option:hover .option-icon.starter {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.quiz-option:hover .option-icon.growth {
    background: linear-gradient(135deg, #10b981, #059669);
}

.quiz-option:hover .option-icon.scale {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.option-icon svg {
    color: #64748b;
    transition: color 0.3s ease;
}

.quiz-option:hover .option-icon svg {
    color: #ffffff;
}

.option-content h4 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.quiz-option:hover .option-content h4 {
    color: #059669;
}

.option-content p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.quiz-option:hover .option-content p {
    color: #374151;
}

.option-details {
    display: flex;
    gap: 16px;
    padding: 0 28px 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.detail-item {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.quiz-option:hover .detail-item {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.quiz-benefits {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 30px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .quiz {
        padding: 60px 0;
    }
    
    .quiz-header h2 {
        font-size: 2.25rem;
    }
    
    .quiz-interactive {
        padding: 32px 24px;
    }
    
    .quiz-question h3 {
        font-size: 1.5rem;
    }
    
    .option-header {
        padding: 20px;
        gap: 16px;
    }
    
    .option-details {
        padding: 0 20px 20px;
        gap: 12px;
    }
    
    .step-indicator {
        gap: 16px;
    }
    
    .step-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .quiz-benefits {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }
}

/* Kennisbank Section */
.kennisbank {
    background: #F5F6FA;
}

.search-bar {
    display: flex;
    max-width: 500px;
    margin: 32px auto 48px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid #e5e5e5;
    border-radius: 12px 0 0 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    border-color: #0046FF;
}

.search-btn {
    padding: 16px 20px;
    background: #0046FF;
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-btn:hover {
    opacity: 0.8;
}

.kennisbank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.knowledge-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.knowledge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    color: #000;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.card-content p {
    margin-bottom: 16px;
    color: #666;
}

.read-time {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

.kennisbank-footer {
    text-align: center;
}

/* Footer - Modern Mollie Style */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
    display: block;
    font-weight: 700;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-brand p strong {
    color: #e2e8f0;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    line-height: 1.5;
    display: inline-block;
    padding: 4px 0;
}

.footer-column a:hover {
    color: #10b981;
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding-top: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Support Section - Modern Mollie Style */
.support {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.support .container {
    position: relative;
    z-index: 1;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin: 64px 0 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.support-card.priority {
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
}

.support-card.priority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(59, 130, 246, 0.01) 100%);
    pointer-events: none;
}

.support-card.priority:hover {
    box-shadow: 0 12px 48px rgba(16, 185, 129, 0.25);
}

.support-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.support-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.support-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.support-icon.blue {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.support-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.support-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    width: 100%;
}

.feature {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.feature:last-child {
    border-bottom: none;
}

.btn-support-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-support-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    background: #e2e8f0;
}

.btn-support {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-support:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Support CTA Strip */
.mobile-support-cta {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 32px;
    padding: 0 20px;
}

.mobile-whatsapp-btn,
.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-height: 52px;
}

.mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-phone-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-phone-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.chat-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    border-top: 1px solid #e5e5e5;
    z-index: 999;
    display: none !important; /* Completely hidden on mobile */
}

.mobile-sticky-cta .btn {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.dienst-card,
.pakket-card,
.knowledge-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.dienst-card.animate-in,
.pakket-card.animate-in,
.knowledge-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pakket-card.featured {
    border-color: #0046FF;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 70, 255, 0.12);
    position: relative;
    padding-top: 40px;
}

/* Micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0046FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0032CC;
}

/* Mobile-First Responsive Design */

/* Hide desktop-only elements on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    /* Fix header margins on mobile */
    .header {
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        border-radius: 0 !important;
        border: none !important;
    }
    
    .header.scrolled {
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        border-radius: 0 !important;
        border: none !important;
    }
    
    .navbar {
        padding: 16px 20px;
        min-height: 70px;
        max-width: 100%;
    }
    
    .header.scrolled .navbar {
        padding: 14px 20px;
        min-height: 60px;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 10002;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: #000000 !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 9999;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        background: #000000 !important;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        color: #fff;
    }
    
    .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .nav-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .nav-buttons-desktop {
        display: none;
    }
}
@media (max-width: 768px) {
    /* Hero Mobile Styling */
    .hero {
        padding: 40px 0 20px;
        height: auto;
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-usps {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Hide Quiz Section on Mobile - Sticky CTA replaces it */
    .quiz {
        display: none !important;
    }

    .quiz-preview {
        padding: 32px 24px;
        margin-bottom: 40px;
        border-radius: 16px;
    }

    .quiz-step {
        gap: 24px;
    }

    .step-indicator {
        gap: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .quiz-options {
        gap: 12px;
    }

    .quiz-option {
        padding: 20px;
        flex-direction: row;
        text-align: left;
    }

    .option-icon {
        padding: 10px;
    }

    .option-content h4 {
        font-size: 1rem;
    }

    .option-content p {
        font-size: 0.875rem;
    }

    .quiz-features {
        gap: 32px;
        margin-bottom: 32px;
        justify-content: space-around;
    }

    .quiz-feature {
        font-size: 0.875rem;
        gap: 8px;
    }

    .btn-quiz-start {
        padding: 16px 32px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .quiz-disclaimer {
        font-size: 0.8125rem;
    }

    .quiz-modal-content {
        width: 95% !important;
        margin: 20px auto !important;
        max-height: 85vh !important;
    }
    
    .quiz-content {
        padding: 20px !important;
    }
    
    .quiz-modal h2 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .quiz-question h3 {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }
    
    .quiz-option {
        padding: 12px 16px !important;
        margin-bottom: 8px !important;
        font-size: 14px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .quiz-progress {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .quiz-progress-bar {
        height: 4px !important;
        margin-bottom: 15px !important;
    }
    
    .quiz-navigation {
        margin-top: 20px !important;
    }
    
    .quiz-button {
        padding: 10px 20px !important;
        font-size: 14px !important;
        min-height: 44px !important;
    }

    /* Transparency Info Mobile */
    .transparency-info {
        padding: 32px 24px;
        margin-top: 32px;
    }

    .transparency-header h3 {
        font-size: 1.25rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }

    .info-item {
        gap: 12px;
        padding: 20px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 24px;
    }

    .trust-number {
        font-size: 1.25rem;
    }

    /* Partners Section Mobile */
    /* Partners Section Mobile */
    .partners-section {
        margin-top: 48px;
        padding: 48px 24px 60px 24px;
        border-radius: 20px;
    }

    .partners-header {
        margin-bottom: 40px;
        padding-top: 12px;
    }

    .partners-header h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .partners-header p {
        font-size: 1rem;
    }

    .partners-slider {
        padding: 16px 0;
    }

    .partner-item {
        flex: 0 0 140px;
        height: 80px;
        margin: 0 16px;
        border-radius: 12px;
        box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    }

    .partner-item img {
        max-width: 44px;
        max-height: 44px;
    }
}

@media (max-width: 480px) {
    .quiz-modal-content {
        width: 98% !important;
        margin: 10px auto !important;
        border-radius: 8px !important;
    }
    
    .quiz-content {
        padding: 16px !important;
    }
    
    .quiz-modal h2 {
        font-size: 18px !important;
    }
    
    .quiz-question h3 {
        font-size: 15px !important;
    }
    
    .quiz-option {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
}

/* Mobile Hero Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 36px;
    }
    
    .hero-usps {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .hero-rating {
        margin-top: 24px;
    }
    
    .rating-stars {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Mobile Pakketten Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 20px !important;
        height: 75vh !important;
        min-height: 500px !important;
    }
    
    .hero + .pakketten {
        margin-top: 0 !important;
        padding-top: 25px !important;
    }
    
    .pakketten {
        padding: 25px 0 40px !important;
        margin-top: 0px !important;
    }
    
    .pakketten-table {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0px !important;
        margin-top: 10px !important;
    }
    
    .pakket-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .pakket-card.featured {
        padding-top: 24px;
    }
    
    .pakket-header h3 {
        font-size: 1.125rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .setup-cost, .contract-term {
        font-size: 0.8rem;
    }
    
    .pakket-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    /* Mobile Pakket Buttons Optimization */
    .pakket-btn {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        min-height: 48px !important;
        background: #f8f9fa !important;
        color: #495057 !important;
        border: 1px solid #e9ecef !important;
        line-height: 1.3 !important;
        letter-spacing: 0.025em !important;
    }
    
    .pakket-btn:hover {
        background: #e9ecef !important;
        color: #343a40 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .pakket-card.featured .pakket-btn {
        background: #0070f3 !important;
        color: #fff !important;
        border-color: #0070f3 !important;
        font-weight: 600 !important;
    }
    
    .pakket-card.featured .pakket-btn:hover {
        background: #0056d6 !important;
        color: #fff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 16px rgba(0, 112, 243, 0.25) !important;
    }
    
    .extra-services {
        margin-top: 32px;
        padding: 32px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 20px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .service-card p:not(.service-price) {
        margin: 0 0 8px 0 !important;
        flex-grow: 0 !important;
        line-height: 1.4 !important;
    }
    
    .service-card .btn {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        margin-top: 8px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
        background: #f8f9fa !important;
        color: #495057 !important;
        border: 1px solid #e9ecef !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
        min-height: 44px !important;
        line-height: 1.3 !important;
    }
    
    .service-card .btn:hover {
        background: #e9ecef !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Extra specificity for mobile service cards */
    .extra-services .service-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .extra-services .service-card .btn.btn-outline,
    .extra-services .service-card .btn {
        margin-top: 8px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
    }
}

/* Mobile-specific Trust Section */
@media (max-width: 768px) {
    .transparency-info {
        padding: 32px 20px;
        margin-top: 32px;
        border-radius: 16px;
    }
    
    .transparency-header h3 {
        font-size: 1.375rem;
        margin-bottom: 8px;
    }
    
    .transparency-header p {
        font-size: 0.95rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .info-item {
        padding: 20px 16px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .info-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
}

/* Mobile Sticky CTA Enhancement */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: none !important; /* Completely hidden */
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}

/* Account Popup Styling */
.account-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.account-popup {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f1f3f4;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.popup-close:hover {
    background: #f8f9fa;
}

.popup-content {
    padding: 32px;
}

.coming-soon-message {
    text-align: center;
}

.coming-soon-icon {
    color: #0046FF;
    margin-bottom: 24px;
}

.coming-soon-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.coming-soon-message p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-options .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.alternative-cta {
    border-top: 1px solid #f1f3f4;
    padding-top: 24px;
}

.alternative-cta p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 16px;
    text-align: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Desktop-only enhancements */
@media (min-width: 769px) {
    .pakketten-table {
        position: relative;
    }
    
    .pakket-card.featured::before {
        display: none;
    }
    
    .pakket-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
    }
    
    .hero-usps .usp-item {
        transition: all 0.3s ease;
    }
    
    .hero-usps .usp-item:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Quiz Popup Optimization */
@media (max-width: 768px) {
    /* Hide quiz section on mobile (sticky CTA replaces it) */
    .quiz {
        display: none !important;
    }
    
    /* Enhanced Mobile Pakketten - Mollie Style Optimization */
    .pakketten {
        padding: 15px 0 40px !important;
    }
    
    .pakketten .section-header {
        text-align: center !important;
        margin-bottom: 15px !important;
        padding: 0 16px !important;
    }
    
    .pakketten .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
        color: #1e293b !important;
        font-weight: 700 !important;
    }
    
    .pakketten .section-header p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        color: #64748b !important;
        max-width: 100% !important;
    }
    
    /* Mobile Trust Bar */
    .mobile-trust-bar {
        display: flex !important;
        justify-content: space-between !important;
        gap: 8px !important;
        margin: 5px 16px 5px 16px !important;
        padding: 6px 12px !important;
        background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
        border: 1px solid #d1fae5 !important;
        border-radius: 12px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
        opacity: 0 !important;
        transform: translateY(10px) !important;
        transition: all 0.5s ease !important;
    }
    
    .trust-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        flex: 1 !important;
        font-size: 0.75rem !important;
        color: #065f46 !important;
        font-weight: 500 !important;
    }
    
    .trust-icon {
        font-size: 1.2rem !important;
        margin-bottom: 4px !important;
        display: block !important;
    }
    
    .pakketten-table {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 16px !important;
        margin-top: 10px !important;
        margin-bottom: 0px !important;
    }
    
    .pakket-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 24px 20px !important;
        border-radius: 16px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        border: none !important;
        position: relative !important;
        transition: all 0.3s ease !important;
    }
    
    .pakket-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    }
    
    .pakket-card.featured {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15) !important;
        padding-top: 24px !important;
        transform: scale(1.02) !important;
    }
    
    .pakket-card.featured:hover {
        transform: scale(1.02) translateY(-2px) !important;
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.25) !important;
    }
    
    .pakket-card.featured::before {
        display: none !important;
    }
    
    .pakket-badge {
        display: none !important;
    }
    
    .pakket-header {
        margin-bottom: 20px !important;
        padding-bottom: 16px !important;
        border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
    }
    
    .pakket-header h3 {
        font-size: 1.125rem !important;
        margin-bottom: 8px !important;
        color: #1e293b !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .pakket-price {
        display: flex !important;
        align-items: baseline !important;
        margin-bottom: 8px !important;
    }
    
    .price {
        font-size: 2.25rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        line-height: 1 !important;
    }
    
    .period {
        font-size: 0.9rem !important;
        color: #64748b !important;
        margin-left: 4px !important;
        font-weight: 500 !important;
    }
    
    .setup-cost, .contract-term {
        font-size: 0.8rem !important;
        color: #64748b !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    
    .pakket-features {
        margin-bottom: 24px !important;
    }
    
    .pakket-features ul {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .pakket-features li {
        padding: 8px 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        color: #374151 !important;
        border-bottom: 1px solid rgba(226, 232, 240, 0.4) !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    
    .pakket-features li:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .pakket-features li::before {
        content: "✓" !important;
        color: #10b981 !important;
        font-weight: 600 !important;
        margin-right: 8px !important;
        font-size: 0.8rem !important;
        margin-top: 1px !important;
        flex-shrink: 0 !important;
    }
    
    .pakket-btn {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        min-height: 52px !important;
        line-height: 1.2 !important;
        letter-spacing: 0.025em !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid rgba(226, 232, 240, 0.8) !important;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
        color: #475569 !important;
        text-decoration: none !important;
    }
    
    .pakket-btn:hover, .pakket-btn:active {
        background: #f1f5f9 !important;
        color: #475569 !important;
        border-color: #cbd5e1 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
        text-decoration: none !important;
    }
    
    .pakket-card.featured .pakket-btn {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        color: #ffffff !important;
        border-color: #10b981 !important;
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25) !important;
    }
    
    .pakket-card.featured .pakket-btn:hover,
    .pakket-card.featured .pakket-btn:active {
        background: #e2e8f0 !important;
        border-color: #94a3b8 !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        text-decoration: none !important;
    }
    
    /* Mobile Pricing CTA */
    .mobile-pricing-cta {
        margin: 32px 16px 0 16px !important;
        padding: 16px 20px !important;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(30, 41, 59, 0.25) !important;
    }
    
    .cta-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
    }
    
    .cta-text {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }
    
    .cta-title {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        line-height: 1.3 !important;
        margin-bottom: 4px !important;
    }
    
    .cta-subtitle {
        font-size: 0.8rem !important;
        color: #cbd5e1 !important;
        font-weight: 400 !important;
    }
    
    .cta-phone-btn {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 12px 16px !important;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        color: #ffffff !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
    }
    
    .cta-phone-btn:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
        text-decoration: none !important;
        color: #ffffff !important;
    }
    
    /* Mobile Extra Diensten Optimization */
    .diensten .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }
    
    .diensten-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        grid-template-columns: none !important;
    }
    
    .dienst-card {
        padding: 20px 16px !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: 12px !important;
    }
    
    .dienst-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }
    
    .dienst-card p {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
        line-height: 1.5 !important;
    }
    
    .dienst-card .btn {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        margin-top: 0 !important;
        text-align: center !important;
        display: block !important;
        box-sizing: border-box !important;
        background: #f8f9fa !important;
        color: #495057 !important;
        border: 1px solid #e9ecef !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.15s ease !important;
        min-height: 44px !important;
        line-height: 1.3 !important;
        letter-spacing: 0.025em !important;
    }
    
    .dienst-card .btn:hover,
    .dienst-card .btn:active {
        background: #e9ecef !important;
        color: #343a40 !important;
        border-color: #dee2e6 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Ensure all dienst cards have consistent Mollie-style button styling */
    .dienst-card:nth-child(2) .btn,
    .dienst-card:nth-child(6) .btn {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        background: #f8f9fa !important;
        color: #495057 !important;
        border: 1px solid #e9ecef !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        min-height: 44px !important;
        line-height: 1.3 !important;
        letter-spacing: 0.025em !important;
    }
    
    .dienst-card:nth-child(2) .btn:hover,
    .dienst-card:nth-child(6) .btn:hover {
        background: #e9ecef !important;
        color: #343a40 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .dienst-icon {
        margin-bottom: 16px !important;
    }
    
    .icon-bg {
        width: 48px !important;
        height: 48px !important;
    }
    
    /* Hide progress bar on mobile for better conversion */
    .quiz-progress {
        display: none !important;
    }
    
    /* Optimize quiz modal for mobile */
    .quiz-modal-content {
        width: 95% !important;
        max-width: none !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
    }
    
    /* Adjust quiz header padding */
    .quiz-header {
        padding: 20px 20px 16px !important;
    }
    
    .quiz-header h2 {
        font-size: 1.5rem !important;
    }
    
    /* Optimize quiz content padding */
    .quiz-content {
        padding: 24px 20px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Ensure quiz question container takes available space */
    .quiz-question-container {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    /* Optimize navigation padding */
    .quiz-navigation {
        padding: 16px 20px 24px !important;
        margin-top: auto !important;
    }
    
    /* Make quiz options more touch-friendly */
    .quiz-option {
        min-height: 60px !important;
        margin-bottom: 12px !important;
        border-radius: 16px !important;
        font-size: 1.1rem !important;
        padding: 20px 16px !important;
        position: relative !important;
        transition: all 0.2s ease !important;
    }
    
    /* Add visual feedback for touch */
    .quiz-option:active {
        transform: scale(0.98) !important;
        background: #f0f8ff !important;
    }
    
    /* Improve radio button styling for mobile */
    .quiz-option input[type="radio"] {
        width: 20px !important;
        height: 20px !important;
        margin-right: 16px !important;
        transform: scale(1.2) !important;
    }
    
    /* Add haptic-style animation */
    .quiz-option.selected {
        background: #f0f8ff !important;
        border-color: #0070f3 !important;
        transform: scale(1.02) !important;
    }
    
    /* Auto-advance loading state */
    .quiz-loading {
        position: relative !important;
        overflow: hidden !important;
    }
    
    .quiz-loading::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(0, 112, 243, 0.2), transparent) !important;
        animation: shimmer 1.5s ease-in-out !important;
    }
    
    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Next button mobile optimization */
    .quiz-navigation .btn {
        width: 100% !important;
        padding: 16px !important;
        font-size: 1.1rem !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        min-height: 56px !important;
    }
    
    /* Question fade-in animation */
    .quiz-question-container {
        animation: fadeInUp 0.4s ease-out !important;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile-specific question typography */
    .quiz-question-container h3 {
        font-size: 1.35rem !important;
        line-height: 1.4 !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }
    
    /* Close button enhancement */
    .quiz-close {
        width: 44px !important;
        height: 44px !important;
        font-size: 24px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, 0.05) !important;
        transition: all 0.2s ease !important;
    }
    
    .quiz-close:active {
        transform: scale(0.9) !important;
        background: rgba(0, 0, 0, 0.1) !important;
    }
    
    /* iOS Safe Area Support */
    .quiz-modal-content {
        padding-top: env(safe-area-inset-top) !important;
        padding-bottom: calc(env(safe-area-inset-bottom) + 20px) !important;
    }
    
    /* Keyboard avoidance */
    .quiz-modal-content[data-keyboard-visible="true"] {
        transform: translateY(-10vh) !important;
        transition: transform 0.3s ease !important;
    }
    
    /* Sticky navigation at bottom */
    .quiz-navigation {
        position: sticky !important;
        bottom: 0 !important;
        background: white !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 10 !important;
        margin-top: auto !important;
    }
    
    /* Vibration feedback simulation */
    .quiz-option.vibrate {
        animation: vibrate 0.3s ease-in-out !important;
    }
    
    @keyframes vibrate {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-2px); }
        75% { transform: translateX(2px); }
    }
    
    /* Enhanced mobile results page */
    .quiz-result {
        padding: 20px !important;
        text-align: center !important;
        min-height: 60vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .quiz-result h3 {
        font-size: 1.75rem !important;
        margin-bottom: 16px !important;
        color: #0070f3 !important;
        animation: bounceIn 0.6s ease-out !important;
    }
    
    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }
        50% {
            opacity: 1;
            transform: scale(1.05);
        }
        70% {
            transform: scale(0.9);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .quiz-result .btn {
        width: 100% !important;
        margin-top: 16px !important;
        padding: 18px !important;
        font-size: 1.2rem !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        text-transform: none !important;
        box-shadow: 0 4px 20px rgba(0, 112, 243, 0.3) !important;
    }
    
    /* Confetti animation for success */
    .quiz-success::before {
        content: '🎉' !important;
        font-size: 3rem !important;
        animation: confetti 2s ease-in-out infinite !important;
        position: absolute !important;
        top: -40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    @keyframes confetti {
        0%, 100% { transform: translateX(-50%) rotate(0deg); }
        25% { transform: translateX(-50%) rotate(10deg); }
        75% { transform: translateX(-50%) rotate(-10deg); }
    }
    
    /* Optimize final results view */
    .quiz-result {
        padding: 20px !important;
        text-align: center !important;
    }
    
    .quiz-result h3 {
        font-size: 1.5rem !important;
        margin-bottom: 16px !important;
    }
    
    .quiz-result .btn {
        width: 100% !important;
        margin-top: 16px !important;
        padding: 16px !important;
        font-size: 1.1rem !important;
    }
}

/* Force Mobile Diensten Buttons Fix - Mollie Style */
@media (max-width: 768px) {
    .diensten .dienst-card .btn.btn-cta,
    .diensten-grid .dienst-card .btn.btn-cta,
    .diensten .dienst-card a.btn,
    .diensten-grid .dienst-card a.btn,
    .dienst-card .btn.btn-outline,
    .dienst-card a.btn,
    .dienst-card .btn {
        width: 100% !important;
        max-width: none !important;
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        display: block !important;
        box-sizing: border-box !important;
        background: #f8f9fa !important;
        color: #495057 !important;
        border: 1px solid #e9ecef !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        transition: all 0.15s ease !important;
        min-height: 44px !important;
        line-height: 1.3 !important;
    }
    
    .diensten .dienst-card .btn.btn-cta:hover,
    .diensten .dienst-card .btn.btn-cta:active,
    .diensten .dienst-card .btn:hover,
    .diensten .dienst-card .btn:active,
    .dienst-card .btn.btn-outline:hover,
    .dienst-card .btn.btn-outline:active {
        background: #e9ecef !important;
        color: #343a40 !important;
        border-color: #dee2e6 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Kennisbank Mobile Styling */
    .kennisbank {
        padding: 60px 0;
    }
    
    .kennisbank .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }
    
    .kennisbank .section-header p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .search-bar {
        max-width: 100%;
        margin: 24px auto 32px;
        padding: 0 10px;
    }
    
    .search-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .search-btn {
        padding: 14px 16px;
    }
    
    .kennisbank-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .knowledge-card {
        border-radius: 12px;
        margin: 0 10px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 20px 16px;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .read-time {
        font-size: 0.8rem;
    }
    
    /* Support Mobile Styling Improvements */
    .support {
        padding: 60px 0;
    }
    
    .support .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 12px;
    }
    
    .support .section-header p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Show mobile CTA strip */
    .mobile-support-cta {
        display: grid;
    }
    
    /* Hide regular support options on mobile */
    .support-options {
        display: none;
    }
    
    .support-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin: 16px 0 24px;
        padding: 0 10px;
    }
    
    .stat-item {
        text-align: center;
        padding: 16px 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
        line-height: 1.1;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
        font-weight: 500;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: none;
    }
    
    .support-card {
        padding: 24px 20px;
        border-radius: 16px;
        text-align: left;
    }
    
    .support-card.priority {
        padding-top: 36px;
    }
    
    .support-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
        border-radius: 0 0 8px 8px;
    }
    
    .support-icon {
        width: 48px;
        height: 48px;
        margin: 0 0 16px 0;
        border-radius: 12px;
    }
    
    .support-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .support-card p {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .support-features {
        margin-bottom: 20px;
        gap: 6px;
    }
    
    .feature {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .btn-support-primary,
    .btn-support {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
        min-height: 44px;
    }
}

/* Extra Small Mobile Optimization */
@media (max-width: 480px) {
    .support {
        padding: 40px 0;
    }
    
    .support .section-header h2 {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .support .section-header p {
        font-size: 0.9rem;
    }
    
    .support-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 20px 0 32px;
        padding: 0 5px;
    }
    
    .stat-item {
        padding: 12px 4px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    /* Kennisbank Extra Small Mobile */
    .kennisbank {
        padding: 40px 0;
    }
    
    .kennisbank .section-header h2 {
        font-size: 1.875rem;
    }
    
    .kennisbank .section-header p {
        font-size: 0.9rem;
    }
    
    .search-bar {
        margin: 16px auto 24px;
        padding: 0 5px;
    }
    
    .search-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 12px 14px;
    }
    
    .knowledge-card {
        margin: 0 5px;
        border-radius: 10px;
    }
    
    .card-image {
        height: 140px;
    }
    
    .card-content {
        padding: 16px 14px;
    }
    
    .card-content h3 {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    
    .card-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .read-time {
        font-size: 0.75rem;
    }
    
    /* Mobile Support CTA for small screens */
    .mobile-support-cta {
        padding: 0 5px;
        gap: 10px;
        margin: 16px 0 24px;
    }
    
    .mobile-whatsapp-btn,
    .mobile-phone-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 48px;
    }
    
    .support-options {
        gap: 16px;
    }
    
    .support-card {
        padding: 20px 16px;
    }
    
    .support-card.priority {
        padding-top: 32px;
    }
    
    .support-features {
        display: none; /* Hide features on very small screens for simplicity */
    }
    
    .support-card p {
        margin-bottom: 20px;
    }

    /* Footer Mobile Styling */
    .footer {
        padding: 16px 0 12px;
    }
    
    .footer::after {
        display: none; /* Hide decorative background on mobile */
    }
    
    .footer-content {
        display: block; /* Change from grid to block for simpler layout */
        margin-bottom: 12px;
    }
    
    .footer-brand {
        text-align: left;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }
    
    .footer-brand .logo {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .footer-brand p {
        font-size: 0.75rem;
        margin-bottom: 2px;
        color: #94a3b8;
    }
    
    .footer-brand p:last-child {
        display: none; /* Hide tagline on mobile */
    }
    
    .footer-links {
        display: flex;
        justify-content: space-between;
        gap: 24px;
    }
    
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        display: none; /* Hide Juridisch and Social Media columns on mobile */
    }
    
    .footer-column {
        flex: 1;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .footer-column h4::after {
        display: none; /* Remove decorative underlines on mobile */
    }
    
    .footer-column li {
        margin-bottom: 4px;
    }
    
    .footer-column a {
        font-size: 0.75rem;
        padding: 1px 0;
        color: #94a3b8;
    }
    
    .footer-bottom {
        padding-top: 12px;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        line-height: 1.3;
        text-align: center;
        color: #64748b;
    }
    
    .chat-button {
        bottom: 24px; /* Normal position without sticky CTA */
        right: 16px;
    }
    
    .chat-btn {
        width: 48px;
        height: 48px;
    }
}