/* ==========================================================================
   SaniSafe Badkamers - Main Stylesheet
   GROEN/WIT Theme - Natuur & Wellness
   2000+ lines - Complete responsive design
   ========================================================================== */

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

strong {
    font-weight: 600;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */

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

.container-narrow {
    max-width: var(--container-narrow);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta {
    background: var(--cta);
    color: var(--text-white);
    border-color: var(--cta);
}

.btn-cta:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
}

.link-arrow:hover {
    gap: 8px;
    color: var(--primary-dark);
}

/* ==========================================================================
   4. HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: #FFFFFF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 68px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-accent {
    color: var(--secondary);
    font-weight: 400;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.header-phone:hover {
    color: var(--primary-dark);
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 100001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.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(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #FFFFFF !important;
    padding: calc(var(--header-height) + 20px) 24px 32px;
    z-index: 99999 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    display: flex !important;
    flex-direction: column;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
}

.mobile-nav-list a:hover {
    color: var(--primary);
}

.mobile-nav-list .btn {
    margin-top: 16px;
    text-align: center;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px;
    background: var(--accent);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.hero-highlight {
    display: block;
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
    white-space: nowrap;
}

.badge svg {
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   6. TRUST BLOCK
   ========================================================================== */

.trust-block {
    background: var(--bg-gray);
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon {
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    font-size: 1.2rem;
    color: var(--primary);
}

.trust-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

/* ==========================================================================
   7. PROBLEM-SOLUTION
   ========================================================================== */

.problem-solution {
    padding: 80px 0;
    background: var(--bg);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.ps-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ps-label {
    padding: 8px 16px;
    background: #FEE2E2;
    color: #DC2626;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.ps-label-green {
    background: var(--accent);
    color: var(--primary);
}

.ps-image {
    height: 200px;
    overflow: hidden;
}

.ps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-card h3 {
    padding: 16px 20px 8px;
}

.ps-list {
    padding: 0 20px 20px;
}

.ps-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.ps-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.ps-list-danger li::before {
    background: #FEE2E2;
    border: 2px solid #DC2626;
    width: 14px;
    height: 14px;
    top: 10px;
}

.ps-list-success li::before {
    background: var(--accent);
    border: 2px solid var(--primary);
    width: 14px;
    height: 14px;
    top: 10px;
}

.ps-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   8. SOLUTIONS SECTION
   ========================================================================== */

.solutions-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.solution-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution-image {
    height: 220px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 24px;
}

.solution-content h3 {
    margin-bottom: 12px;
}

.solution-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.solution-features {
    margin-bottom: 20px;
}

.solution-features li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.solution-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 8px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

.solutions-extra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.extra-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.extra-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.extra-icon {
    margin-bottom: 16px;
}

.extra-card h4 {
    margin-bottom: 8px;
}

.extra-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ==========================================================================
   9. PRICING BLOCK
   ========================================================================== */

.pricing-block {
    padding: 80px 0;
    background: var(--gradient-pricing);
    color: var(--text-white);
}

.pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pricing-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.pricing-from {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

.pricing-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   10. WERKWIJZE SECTION
   ========================================================================== */

.werkwijze-section {
    padding: 80px 0;
    background: var(--bg);
}

.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.werkwijze-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.werkwijze-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.werkwijze-icon {
    margin-bottom: 16px;
}

.werkwijze-step {
    display: inline-block;
    padding: 4px 16px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.werkwijze-card h3 {
    margin-bottom: 16px;
}

.werkwijze-card ul {
    text-align: left;
}

.werkwijze-card li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.werkwijze-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

/* ==========================================================================
   11. GARANTIE SECTION
   ========================================================================== */

.garantie-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.garantie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.garantie-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-light);
    transition: all var(--transition);
}

.garantie-card:hover {
    border-color: var(--primary);
}

.garantie-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.garantie-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.garantie-card h3 {
    margin-bottom: 8px;
}

.garantie-card p {
    font-size: 0.95rem;
}

/* ==========================================================================
   12. VOORDELEN SECTION
   ========================================================================== */

.voordelen-section {
    padding: 80px 0;
    background: var(--bg);
}

.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.voordeel-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.voordeel-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.voordeel-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius-sm);
}

.voordeel-card h4 {
    margin-bottom: 4px;
}

.voordeel-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   13. LEAD FORM SECTION
   ========================================================================== */

.lead-form-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lead-form-content h2 {
    margin-bottom: 16px;
}

.lead-form-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.lead-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text);
}

.lead-form-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   14. FORMS
   ========================================================================== */

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    margin: 16px 0 8px;
    color: var(--primary);
}

.form-success p {
    color: var(--text-muted);
}

.form-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.form-option:hover {
    border-color: var(--primary);
}

.form-option input {
    width: auto !important;
    accent-color: var(--primary);
}

.form-option input:checked + span {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================================
   15. EXTRA CTA SECTION
   ========================================================================== */

.extra-cta-section {
    padding: 80px 0;
    background: var(--bg);
}

.extra-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.extra-cta-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.extra-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.extra-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 50%;
    margin-bottom: 20px;
}

.extra-cta-card h3 {
    margin-bottom: 12px;
}

.extra-cta-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ==========================================================================
   16. REVIEWS SECTION
   ========================================================================== */

.reviews-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.stars-large {
    display: flex;
    gap: 4px;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-author strong {
    color: var(--text);
    font-size: 0.95rem;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-author span::before {
    content: '- ';
}

.reviews-extra {
    padding: 0 0 80px;
    background: var(--bg-alt);
}

/* ==========================================================================
   17. PAGE HERO
   ========================================================================== */

.page-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--text-white);
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

/* ==========================================================================
   18. SOLUTION DETAIL PAGES
   ========================================================================== */

.solution-detail {
    padding: 80px 0;
}

.solution-detail.alt-bg {
    background: var(--bg-alt);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.detail-grid-reverse {
    direction: rtl;
}

.detail-grid-reverse > * {
    direction: ltr;
}

.detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detail-label {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content h2 {
    margin-bottom: 16px;
}

.detail-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.detail-features {
    margin-bottom: 24px;
}

.detail-features li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.detail-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 7px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

.detail-price {
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--text-muted);
}

.detail-price strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
}

.detail-note {
    font-size: 0.85rem;
}

/* ==========================================================================
   19. WERKWIJZE TIMELINE
   ========================================================================== */

.werkwijze-timeline {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 8px;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.timeline-content h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 12px;
}

.timeline-content ul {
    padding-left: 0;
}

.timeline-content li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.timeline-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

/* ==========================================================================
   20. CONTACT PAGE
   ========================================================================== */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-cards {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.contact-card-icon {
    margin-bottom: 12px;
}

.contact-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-card a {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.contact-form-box h2 {
    margin-bottom: 24px;
}

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

/* ==========================================================================
   21. OFFERTE PAGE
   ========================================================================== */

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

.offerte-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.offerte-form-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.offerte-form-box h2 {
    margin-bottom: 8px;
}

.offerte-form-box > p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.offerte-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.offerte-trust-box {
    background: var(--accent);
    border-radius: var(--radius);
    padding: 28px;
}

.offerte-trust-box h3 {
    margin-bottom: 16px;
}

.offerte-trust-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 500;
}

.offerte-contact-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.offerte-contact-box h3 {
    margin-bottom: 8px;
}

.offerte-contact-box p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.offerte-contact-box .small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

/* ==========================================================================
   22. ABOUT PAGE
   ========================================================================== */

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 16px;
}

.about-content p {
    font-size: 1.05rem;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.95rem;
}

.numbers-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.number-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.number-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ==========================================================================
   23. PRIVACY PAGE
   ========================================================================== */

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

.privacy-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-content li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
    color: var(--text-light);
}

.privacy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* ==========================================================================
   24. FOOTER
   ========================================================================== */

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--secondary);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.footer-regions li {
    font-size: 0.9rem;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.footer-regions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.footer-links li {
    padding: 4px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* ==========================================================================
   25. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
}

.cookie-inner p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

.cookie-inner a {
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   26. ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   27. EXIT INTENT
   ========================================================================== */

.exit-intent-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.exit-intent-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.exit-intent-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}

.exit-intent-box h3 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.exit-intent-box p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.exit-intent-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ==========================================================================
   28. RESPONSIVE - TABLET (768px+)
   ========================================================================== */

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }

    .badge {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* ==========================================================================
   29. RESPONSIVE - MOBILE (max 767px)
   ========================================================================== */

@media (max-width: 767px) {
    :root {
        --header-height: 64px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: calc(var(--header-height) + 24px) 0 40px;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .badge svg {
        width: 16px;
        height: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .trust-content {
        align-items: center;
    }

    /* Problem-Solution */
    .ps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ps-arrow {
        transform: rotate(90deg);
    }

    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-extra {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .pricing-includes {
        align-items: center;
    }

    /* Werkwijze */
    .werkwijze-grid {
        grid-template-columns: 1fr;
    }

    /* Garantie */
    .garantie-grid {
        grid-template-columns: 1fr;
    }

    .garantie-featured {
        transform: none;
    }

    /* Voordelen */
    .voordelen-grid {
        grid-template-columns: 1fr;
    }

    /* Lead Form */
    .lead-form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lead-form-box {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Extra CTA */
    .extra-cta-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-rating {
        flex-direction: column;
        gap: 6px;
    }

    /* Detail pages */
    .detail-grid,
    .detail-grid-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .detail-image img {
        height: 260px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 24px;
    }

    /* Offerte */
    .offerte-grid {
        grid-template-columns: 1fr;
    }

    .offerte-sidebar {
        position: static;
    }

    .offerte-form-box {
        padding: 24px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 260px;
    }

    /* Numbers */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-value {
        font-size: 2rem;
    }

    /* Cookie */
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    /* Exit intent */
    .exit-intent-box {
        padding: 28px 20px;
    }

    .exit-intent-buttons {
        flex-direction: column;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 56px;
    }

    .timeline-number {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Form options */
    .form-options {
        flex-direction: column;
    }

    /* Sections padding */
    .problem-solution,
    .solutions-section,
    .pricing-block,
    .werkwijze-section,
    .garantie-section,
    .voordelen-section,
    .lead-form-section,
    .extra-cta-section,
    .reviews-section,
    .solution-detail,
    .werkwijze-timeline,
    .contact-section,
    .offerte-section,
    .about-section,
    .values-section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

/* ==========================================================================
   30. LARGE SCREENS (1200px+)
   ========================================================================== */

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 32px;
    }
}

/* ==========================================================================
   31. PRINT STYLES
   ========================================================================== */

@media print {
    .site-header,
    .chatbot-widget,
    .cookie-banner,
    .exit-intent-overlay,
    .hero-cta,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero {
        min-height: auto;
        padding: 20pt 0;
    }

    .hero-overlay {
        background: none;
    }

    .hero-title,
    .hero-subtitle {
        color: #000;
    }
}

/* ==========================================================================
   32. ACCESSIBILITY
   ========================================================================== */

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    z-index: 10001;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 8px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   33. SELECTION
   ========================================================================== */

::selection {
    background: var(--accent);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--accent);
    color: var(--primary-dark);
}

/* ==========================================================================
   34. SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   35. FORM STATES
   ========================================================================== */

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #DC2626;
}

.form-error {
    color: #DC2626;
    font-size: 0.85rem;
    margin-top: 4px;
}

.form-group input.success,
.form-group textarea.success {
    border-color: var(--primary);
}

/* Loading state */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   36. IMAGE PLACEHOLDERS
   ========================================================================== */

.img-placeholder {
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   37. TOOLTIP
   ========================================================================== */

[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 6px 12px;
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* ==========================================================================
   38. MISC UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none !important; }

.relative { position: relative; }

.overflow-hidden { overflow: hidden; }

/* ==========================================================================
   END OF STYLESHEET
   Total: 2000+ lines for complete GROEN/WIT theme
   ========================================================================== */
