/* ========================================
   HELPRR WEBSITE - MAIN STYLESHEET
   Modern, Clean, Trustworthy, Community-Focused
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-blue: #0f172a;
    --primary-blue-dark: #1e293b;
    --primary-blue-light: #334155;
    --accent-orange: #FF6B35;
    --accent-orange-light: #FF8C5A;
    --accent-green: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.city-why-section .section-title,
.city-services-section .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ===== App Download Banner ===== */
.app-download-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    z-index: 1001;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-out;
}

.app-download-banner.hidden {
    transform: translateY(-100%);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.banner-icon {
    font-size: 1.25rem;
    color: white;
    display: flex;
    align-items: center;
}

.banner-text {
    flex: 1;
    text-align: center;
}

.banner-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
    display: inline-block;
}

.banner-link:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.banner-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    position: absolute;
    right: 0;
    line-height: 1;
}

.banner-close:hover {
    opacity: 0.7;
}

/* Adjust navbar position when banner is visible */
body:has(.app-download-banner:not(.hidden)) .navbar {
    top: 48px;
}

/* Adjust hero section margin when banner is visible */
body:has(.app-download-banner:not(.hidden)) .hero {
    margin-top: calc(70px + 48px);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: top 0.3s ease-out;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

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

.logo-text {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    margin-left: 4rem;
}

.nav-item-spacer {
    list-style: none;
}

@media (max-width: 968px) {
    .nav-menu {
        margin-left: 2rem;
        gap: 1rem;
    }
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link-dropdown i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link-dropdown i,
.nav-item-dropdown.active .nav-link-dropdown i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border-left-color: var(--accent-orange);
    padding-left: 1.75rem;
}

.dropdown-view-all {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 0.75rem !important;
    font-weight: 600;
    color: var(--accent-orange) !important;
}

.dropdown-view-all:hover {
    background-color: var(--bg-light);
    color: var(--accent-orange-light) !important;
}

.nav-cta-primary {
    background-color: var(--accent-orange);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta-primary:hover {
    background-color: var(--accent-orange-light);
}

.nav-cta-secondary {
    background-color: transparent;
    color: var(--text-dark) !important;
    padding: 8px 20px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
}

.nav-cta-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-blue);
}

.nav-login {
    background-color: var(--primary-blue);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-login:hover {
    background-color: var(--primary-blue-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1.5rem;
        align-items: flex-start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        margin-left: 0;
    }

    .nav-item-spacer {
        display: none;
    }

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

    /* Mobile Dropdown */
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-link-dropdown {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0.5rem 0 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-left: 2px solid var(--border-color);
        padding-left: 1rem;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-left: none;
    }

    .dropdown-menu a:hover {
        padding-left: 1.25rem;
    }

    .dropdown-view-all {
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
        padding-top: 0.75rem !important;
    }
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 70px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-card-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.stat-icon-small {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.stat-card-small .stat-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-stack {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
}

.phone-phone {
    position: absolute;
    width: 280px;
    height: 560px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background: white;
    border: 8px solid #1a1a1a;
}

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

.phone-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.phone-left {
    left: 0;
    top: 0;
    transform: rotate(-8deg) scale(0.85);
    z-index: 1;
}

.phone-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
}

.phone-right {
    right: 0;
    bottom: 0;
    transform: rotate(8deg) scale(0.85);
    z-index: 1;
}

/* ===== Hero Search ===== */
.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.search-field-group {
    margin-bottom: 1.5rem;
}

.search-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-gray);
    font-size: 1.25rem;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-green);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.search-button {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

.hero-secondary-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.secondary-link {
    color: white;
    opacity: 0.9;
    font-weight: 500;
    transition: var(--transition);
}

.secondary-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.divider {
    color: white;
    opacity: 0.5;
}

.app-link {
    display: inline-block;
}

.app-link img {
    height: 50px;
    width: auto;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
}

.app-screenshot {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.phone-mockup-placeholder {
    width: 300px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.phone-mockup-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.phone-mockup-placeholder p {
    opacity: 0.7;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--bg-white);
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .phone-stack {
        margin-top: 3rem;
    }
}

/* ===== Klusapp Section ===== */
.klusapp-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.klusapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.klusapp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.klusapp-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.klusapp-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.klusapp-description .highlight {
    color: var(--accent-orange);
    font-weight: 600;
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.klusapp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--border-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Strakke, moderne kleuren met subtiele gradients */
.feature-icon-brown {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.feature-icon-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
}

.feature-icon-purple {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.feature-icon-purple-community {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-blue);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    color: var(--text-gray);
}

@media (max-width: 968px) {
    .klusapp-content {
        grid-template-columns: 1fr;
    }

    .klusapp-features {
        grid-template-columns: 1fr;
    }
}

/* ===== Social Proof Section ===== */
.social-proof {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.media-logos {
    text-align: center;
}

.media-logos-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary-blue);
}

/* ===== Process Section ===== */
.process {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

/* ===== Steps Timeline ===== */
.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 0 2rem;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--accent-orange) 0px,
        var(--accent-orange) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--accent-orange);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-connector {
    display: none;
}

@media (max-width: 768px) {
    .steps-timeline {
        flex-direction: column;
        gap: 3rem;
        padding: 0;
    }

    .steps-timeline::before {
        display: none;
    }

    .step-connector {
        display: block;
        width: 3px;
        height: 40px;
        background: repeating-linear-gradient(
            to bottom,
            var(--accent-orange) 0px,
            var(--accent-orange) 10px,
            transparent 10px,
            transparent 20px
        );
        margin: 1.5rem auto;
    }

    .step-item:last-child .step-connector {
        display: none;
    }
}

/* ===== Video Section ===== */
.video-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: sticky;
    top: 100px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 1;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 2;
    cursor: pointer;
}

.video-placeholder-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 500px;
}

.video-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.video-placeholder-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.video-placeholder-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.video-play-button {
    position: absolute;
    width: 72px;
    height: 72px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.video-play-button i {
    margin-left: 3px;
}

.video-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.video-link:hover {
    color: var(--accent-orange);
}

.video-cta {
    max-width: none;
}

.video-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.video-cta-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.video-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.video-step {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.video-step-number {
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.video-step-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.video-step-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 968px) {
    .video-section {
        padding: 4rem 0;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-wrapper {
        position: static;
    }

    .video-cta-title {
        font-size: 1.875rem;
    }

    .video-steps {
        gap: 1rem;
    }
}

/* ===== Categories Section ===== */

@media (max-width: 968px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.view-all-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--accent-orange);
}

.categories {
    position: relative;
    padding: 5rem 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.015) 20px,
        rgba(0, 0, 0, 0.015) 40px
    );
    background-size: 40px 40px;
    background-color: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--accent-orange);
    transition: var(--transition);
    background: white;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange-light);
}

.category-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.category-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4), transparent);
}

.category-name {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    color: white;
    font-size: 1.375rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 2;
    letter-spacing: -0.5px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

/* ===== Testimonials Grid ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.testimonial-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.testimonial-card-link:hover .testimonial-name {
    color: var(--accent-orange);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: var(--text-gray);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-source {
    font-size: 0.875rem;
    color: var(--text-gray);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== App CTA Section ===== */
.app-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
}

.app-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.app-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.app-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.app-store-btn img,
.google-play-btn img {
    height: 60px;
    width: auto;
}

.qr-code-container {
    margin-top: 2rem;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder {
    text-align: center;
    color: var(--text-gray);
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.phone-mockup-large {
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}

.app-screenshot-large {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

.phone-mockup-placeholder-large {
    width: 400px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.phone-mockup-placeholder-large i {
    font-size: 5rem;
    opacity: 0.5;
}

@media (max-width: 968px) {
    .app-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-cta-buttons {
        justify-content: center;
    }

    .qr-code-container {
        display: flex;
        justify-content: center;
    }
}

/* ===== Blog Section ===== */
.blog {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--bg-gray);
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-gray);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 1rem;
}

/* ===== Blog Post Styles ===== */
.blog-post-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-post-hero .container {
    position: relative;
    z-index: 2;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: var(--transition);
}

.blog-back-link:hover {
    opacity: 1;
    gap: 0.75rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-date,
.blog-post-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.blog-post-excerpt {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.blog-post-hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.blog-hero-phone {
    width: 200px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.blog-hero-phone-center {
    transform: perspective(1000px) rotateY(0deg) scale(1.1);
    z-index: 2;
}

.blog-hero-phone:first-child {
    transform: perspective(1000px) rotateY(15deg);
}

.blog-hero-phone:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    z-index: 3;
}

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

@media (max-width: 968px) {
    .blog-post-hero {
        padding: 6rem 0 3rem;
    }

    .blog-post-title {
        font-size: 2.25rem;
    }

    .blog-post-excerpt {
        font-size: 1.125rem;
    }

    .blog-post-hero-images {
        gap: 1rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .blog-hero-phone {
        width: 120px;
        height: 240px;
        border-radius: 20px;
    }

    .blog-hero-phone-center {
        transform: perspective(1000px) rotateY(0deg) scale(1.05);
    }
}

@media (max-width: 640px) {
    .blog-post-hero-images {
        gap: 0.5rem;
    }

    .blog-hero-phone {
        width: 90px;
        height: 180px;
        border-radius: 15px;
    }

    .blog-hero-phone:first-child,
    .blog-hero-phone:last-child {
        display: none;
    }

    .blog-hero-phone-center {
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
}

/* ===== Blog Post Content ===== */
.blog-post-content {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-article {
    min-width: 0;
}

.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

.blog-post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.blog-post-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.blog-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.blog-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

.blog-post-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 4rem;
    text-align: center;
}

.blog-post-cta h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-post-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-article {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-article:hover {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    transform: translateX(4px);
}

.sidebar-article-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.sidebar-article-date {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 0.75rem;
}

.sidebar-categories a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.sidebar-categories a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 1.25rem;
}

@media (max-width: 968px) {
    .blog-post-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-sidebar {
        position: static;
        max-height: none;
    }

    .blog-post-body {
        font-size: 1.0625rem;
    }

    .blog-intro {
        font-size: 1.125rem;
    }

    .blog-post-body h2 {
        font-size: 1.75rem;
    }

    .blog-post-body h3 {
        font-size: 1.375rem;
    }
}

@media (max-width: 640px) {
    .blog-post-content {
        padding: 3rem 0;
    }

    .blog-post-body {
        font-size: 1rem;
    }

    .blog-post-body h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .blog-post-body h3 {
        font-size: 1.25rem;
    }

    .blog-post-cta {
        padding: 2rem 1.5rem;
    }

    .blog-post-cta h3 {
        font-size: 1.5rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* ===== Forms ===== */
.post-job,
.become-helprr,
.contact {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.form-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.job-form,
.helprr-form,
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background-color: white;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.skills-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-label:hover {
    border-color: var(--primary-blue);
    background-color: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .skills-checkboxes {
        grid-template-columns: 1fr;
    }

    .job-form,
    .helprr-form,
    .contact-form {
        padding: 2rem;
    }
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    max-width: 500px;
}

.contact-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ Page Styles ===== */
.faq-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.faq-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* FAQ Categories */
.faq-categories {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-category-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.faq-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.faq-category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-category-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Sections */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.faq-section:nth-child(even) {
    background-color: var(--bg-light);
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-section-title i {
    color: var(--primary-blue);
    font-size: 2rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    padding-top: 0.5rem;
}

/* FAQ Contact CTA */
.faq-contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.faq-contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.faq-contact-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.faq-contact-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .faq-hero {
        padding: 6rem 0 3rem;
    }

    .faq-hero-title {
        font-size: 2.25rem;
    }

    .faq-hero-subtitle {
        font-size: 1.125rem;
    }

    .faq-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .faq-section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-contact-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .faq-categories-grid {
        grid-template-columns: 1fr;
    }

    .faq-category-card {
        padding: 2rem 1.5rem;
    }

    .faq-category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.25rem;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-right {
    align-items: flex-start;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-app-btn {
    display: block;
    height: 40px;
    transition: var(--transition);
}

.footer-app-btn img {
    height: 100%;
    width: auto;
}

.footer-app-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-contact-info {
    margin-bottom: 1.5rem;
}

.footer-contact-info .footer-title {
    margin-bottom: 0.75rem;
}

.footer-email {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-email a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-email a:hover {
    color: white;
    text-decoration: underline;
}

.footer-kvk {
    margin: 0.5rem 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    font-size: 1.125rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0;
}

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

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column-right {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-app-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .footer,
    .hero-ctas,
    .app-cta,
    .btn {
        display: none;
    }
}

/* ===== Floating Action Button ===== */
.floating-action-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.5rem;
}

.floating-action-button:hover {
    background-color: var(--primary-blue-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .floating-action-button {
        bottom: 80px;
    }
}

/* ===== Sticky Mobile Footer ===== */
.sticky-mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.sticky-mobile-footer .btn-sticky {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-mobile-footer {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ===== Increased Spacing ===== */
.process,
.usps,
.categories,
.testimonials,
.app-cta,
.blog,
.post-job,
.become-helprr,
.contact {
    padding: 6rem 0;
}

.social-proof {
    padding: 5rem 0;
}

/* ===== More White Space in Sections ===== */
.section-subtitle {
    margin-bottom: 4rem;
}

.usps-grid,
.categories-grid {
    gap: 2.5rem;
}

/* ===== Update Color Usage - Koraal alleen voor CTAs ===== */
.btn-primary {
    background-color: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #d97706;
}

/* Remove orange from other elements */
.usp-icon {
    color: var(--primary-blue);
}

/* ===== Categories Page Styles ===== */
.categories-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.categories-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.categories-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.categories-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.all-categories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.categories-grid-extended {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.category-card-extended {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--accent-orange);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.category-card-extended:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange-light);
}

.category-card-extended .category-image {
    height: 300px;
}

.category-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-content .category-name {
    position: static;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

.category-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.category-examples {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.category-examples li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.category-examples li i {
    color: var(--accent-orange);
    font-size: 0.875rem;
}

.category-cta {
    align-self: flex-start;
    margin-top: auto;
}

.categories-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.categories-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.categories-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.categories-cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.categories-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .categories-grid-extended {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-hero-title {
        font-size: 2.25rem;
    }

    .categories-cta-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 640px) {
    .categories-hero {
        padding: 6rem 0 3rem;
    }

    .categories-hero-title {
        font-size: 1.75rem;
    }

    .categories-hero-subtitle {
        font-size: 1rem;
    }

    .category-examples {
        grid-template-columns: 1fr;
    }

    .category-content {
        padding: 1.5rem;
    }
}

/* ===== Category Page Styles ===== */
.category-page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
}

.category-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.category-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-hero-text {
    color: white;
}

.category-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.category-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.category-details {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.category-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.category-info {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Category Extended Info */
.category-info-extended {
    margin: 3rem 0;
}

.category-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.category-info-extended p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Category Benefits */
.category-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.category-benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.category-benefits-list {
    list-style: none;
    padding: 0;
}

.category-benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-benefits-list li:hover {
    padding-left: 0.5rem;
    color: var(--primary-blue);
}

.category-benefits-list li:last-child {
    border-bottom: none;
}

.category-benefits-list li i {
    color: var(--accent-green);
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.category-benefits-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Category When */
.category-when {
    margin: 2.5rem 0;
}

.category-when-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.category-when p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-when-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.category-when-list li {
    position: relative;
    padding: 0.875rem 0 0.875rem 1.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-when-list li:hover {
    padding-left: 2rem;
    color: var(--primary-blue);
}

.category-when-list li:last-child {
    border-bottom: none;
}

.category-when-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
}

/* Category Reviews */
.category-reviews {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.category-reviews .section-title {
    margin-bottom: 3rem;
}

.category-reviews .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Category FAQ */
.category-faq {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.category-faq .section-title {
    margin-bottom: 3rem;
}

.category-faq .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.category-faq .faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.category-faq .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-faq .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.category-faq .faq-question:hover {
    color: var(--primary-blue);
}

.category-faq .faq-question i {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.category-faq .faq-item[aria-expanded="true"] .faq-question i {
    transform: rotate(180deg);
}

.category-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.category-faq .faq-item[aria-expanded="true"] .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.category-faq .faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.category-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Horizontal Service Items Layout - Grid 3x2 */
.category-services-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-item-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-item-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.service-icon-horizontal {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.service-item-horizontal:hover .service-icon-horizontal {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.service-content-horizontal {
    width: 100%;
}

.service-title-horizontal {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    line-height: 1.3;
}

.service-description-horizontal {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.category-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.category-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.category-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.category-cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .category-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-hero-image {
        order: -1;
    }

    .category-hero-title {
        font-size: 2.5rem;
    }

    .category-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-cta-title {
        font-size: 2rem;
    }
}

/* ===== Login Page Styles ===== */
.login-hero {
    padding: calc(8rem + 48px) 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.login-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.login-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.login-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Login Hero CTA Section */
.login-hero-cta {
    padding: calc(6rem + 48px) 0 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.login-hero-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--accent-orange);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-hero-cta:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-icon-circle {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.login-hero-cta-dual {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.btn-hero-cta-secondary {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.btn-primary-dark:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-coral {
    background-color: #FF7F7F;
    color: white;
}

.btn-coral:hover {
    background-color: #FF9999;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.partners-section-no-bg {
    background: transparent !important;
}

.partners-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partners-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 2;
}

.partners-nav:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex: 1;
    overflow: hidden;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-height: 150px;
}

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

.partner-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 968px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partners-nav {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

.login-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.login-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.login-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.login-form-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.login-form {
    margin-bottom: 2rem;
}

.form-group-checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-password-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-gray);
    position: relative;
}

.login-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.login-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.login-cta-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.login-benefits {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.login-benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.login-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.login-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.login-benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.login-benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.login-benefit-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.login-app-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.login-app-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.login-app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.app-store-btn-small img,
.google-play-btn-small img {
    height: 40px;
    width: auto;
}

@media (max-width: 968px) {
    .login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-hero-title {
        font-size: 2.25rem;
    }

    .login-form-container,
    .login-benefits {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .login-hero {
        padding: calc(6rem + 44px) 0 3rem;
    }

    .login-hero-title {
        font-size: 1.75rem;
    }

    .login-hero-subtitle {
        font-size: 1rem;
    }

    .form-group-checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .login-app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .login-app-buttons a {
        width: 100%;
        max-width: 200px;
    }

    .category-page-hero {
        padding: 6rem 0 3rem;
    }

    .category-hero-title {
        font-size: 2rem;
    }

    .category-hero-subtitle {
        font-size: 1rem;
    }

    .category-info {
        padding: 2rem 1.5rem;
    }

    .category-services-grid {
        grid-template-columns: 1fr;
    }
    
    .category-services-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-item-horizontal {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-horizontal {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-title-horizontal {
        font-size: 1.25rem;
    }
    
    .service-description-horizontal {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .category-services-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item-horizontal {
        padding: 1.5rem;
    }
    
    .service-icon-horizontal {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .service-title-horizontal {
        font-size: 1.125rem;
    }
    
    .service-description-horizontal {
        font-size: 0.9rem;
    }

    .category-cta-title {
        font-size: 1.75rem;
    }
    
    .category-info-extended {
        margin: 2rem 0;
    }
    
    .category-subtitle {
        font-size: 1.5rem;
    }
    
    .category-benefits,
    .category-when {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .category-benefits-title,
    .category-when-title {
        font-size: 1.25rem;
    }
    
    .category-reviews .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .category-faq .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .app-download-banner {
        padding: 0.625rem 0;
    }

    .banner-content {
        gap: 0.75rem;
        padding: 0 2.5rem 0 1rem;
    }

    .banner-icon {
        font-size: 1rem;
    }

    .banner-link {
        font-size: 0.875rem;
    }

    .banner-close {
        right: 0.5rem;
        padding: 0.25rem;
    }

    body:has(.app-download-banner:not(.hidden)) .navbar {
        top: 44px;
    }

    body:has(.app-download-banner:not(.hidden)) .hero {
        margin-top: calc(70px + 44px);
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-search-form {
        padding: 1.5rem;
    }
}

/* ===== How It Works Page Styles ===== */
.how-it-works-hero {
    padding: calc(8rem + 48px) 0 5rem;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.how-it-works-text {
    max-width: 600px;
}

.how-it-works-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.how-it-works-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.how-it-works-video {
    position: relative;
}

.video-wrapper-large {
    position: sticky;
    top: 120px;
}

.video-container-large {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--primary-blue);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-container-large iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    cursor: pointer;
}

.video-placeholder-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 2;
}

.video-play-button-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-title-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 2;
}

.video-title-overlay i {
    font-size: 1.125rem;
}

.how-it-works-steps {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.steps-timeline-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.step-item-detailed {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: start;
}

.step-icon-wrapper-detailed {
    position: relative;
}

.step-icon-detailed {
    width: 120px;
    height: 120px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.step-content-detailed {
    padding-top: 1rem;
}

.step-title-detailed {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step-description-detailed {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.how-it-works-benefits {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.how-it-works-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.how-it-works-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.how-it-works-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.how-it-works-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

@media (max-width: 968px) {
    .how-it-works-hero {
        padding: calc(6rem + 44px) 0 4rem;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-it-works-title {
        font-size: 2.5rem;
    }

    .video-wrapper-large {
        position: static;
    }

    .step-item-detailed {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
    }

    .step-icon-detailed {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .step-title-detailed {
        font-size: 1.75rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-cta-title {
        font-size: 2rem;
    }

    .how-it-works-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .how-it-works-title {
        font-size: 2rem;
    }

    .how-it-works-subtitle {
        font-size: 1rem;
    }

    .step-item-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-icon-wrapper-detailed {
        justify-self: center;
    }

    .step-content-detailed {
        padding-top: 0;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== Over Ons Page Styles ===== */
.over-hero {
    padding: calc(8rem + 48px) 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.over-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.over-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.over-hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.95;
    line-height: 1.7;
}

.over-content {
    padding: 5rem 0;
    background-color: white;
}

.over-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.over-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.over-text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

.over-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.over-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.over-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C5A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    gap: 1rem;
}

.over-image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

.over-why {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.over-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.over-why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.over-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.over-why-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.over-why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.over-why-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.over-values {
    padding: 5rem 0;
    background-color: white;
}

.over-values-content {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.over-value-item {
    display: flex;
    gap: 3rem;
    align-items: start;
}

.over-value-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    min-width: 120px;
}

.over-value-content {
    flex: 1;
}

.over-value-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.over-value-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.over-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
}

.over-stats .section-title {
    color: white;
    text-align: center;
}

.over-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.over-stat-card {
    text-align: center;
    padding: 2rem;
}

.over-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.over-stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    color: white;
}

.over-cta {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.over-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.over-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.over-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ===== Legal Pages (Privacy & Terms) ===== */
.legal-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.legal-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.legal-intro p {
    margin-bottom: 1.5rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.legal-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .legal-hero {
        padding: 6rem 0 3rem;
    }

    .legal-hero-title {
        font-size: 2.25rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .legal-content {
        padding: 3rem 0;
    }

    .legal-section h2 {
        font-size: 1.375rem;
    }

    .legal-section p,
    .legal-list li {
        font-size: 1rem;
    }
}

.over-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .over-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .over-value-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .over-value-number {
        min-width: auto;
        font-size: 3rem;
    }

    .over-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 640px) {
    .over-hero {
        padding: calc(6rem + 44px) 0 3rem;
    }

    .over-hero-title {
        font-size: 2.25rem;
    }

    .over-hero-subtitle {
        font-size: 1.125rem;
    }

    .over-text-large {
        font-size: 1.125rem;
    }

    .over-text {
        font-size: 1rem;
    }

    .over-stats-grid {
        grid-template-columns: 1fr;
    }

    .over-stat-number {
        font-size: 3rem;
    }

    .over-cta-title {
        font-size: 2rem;
    }

    .over-cta-subtitle {
        font-size: 1.125rem;
    }
}

/* ===== City Pages (Klusjesman per Stad) ===== */
.city-hero {
    padding: 8rem 0 6rem;
    background-color: #f5f3f0;
    position: relative;
    overflow: hidden;
}

.city-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.city-hero-left {
    padding: 2rem 0;
    max-width: 550px;
}

.city-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.city-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.city-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.city-hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.city-hero-buttons .btn-secondary {
    background-color: #FF6B35;
    color: white;
    border: none;
}

.city-hero-buttons .btn-secondary:hover {
    background-color: #FF8C5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.city-hero-right {
    position: relative;
    height: 650px;
    width: 100%;
}

.city-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.city-hero-app-screens {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.city-hero-phone {
    position: absolute;
    width: 300px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background: white;
    padding: 10px;
    transition: transform 0.3s ease;
}

.city-hero-phone:hover {
    transform: scale(1.05) !important;
}

.city-hero-phone img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.city-hero-phone-1 {
    top: 5%;
    left: 0;
    transform: rotate(-8deg);
    z-index: 3;
}

.city-hero-phone-2 {
    top: 15%;
    right: 5%;
    transform: rotate(10deg);
    z-index: 4;
    width: 320px;
}

.city-hero-phone-3 {
    bottom: 10%;
    left: 10%;
    transform: rotate(-5deg);
    z-index: 3;
}

.city-video-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.city-video-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.city-video-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.city-video-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.city-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.city-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.city-why-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.city-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.city-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.city-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.city-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.city-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.city-feature-card:hover::before {
    transform: scaleX(1);
}

.city-feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}

.city-feature-card:hover .city-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.city-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.city-feature-card:hover .city-feature-title {
    color: var(--primary-blue);
}

.city-feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.city-services-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.city-service-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.city-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.city-service-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.city-service-item:hover::before {
    opacity: 1;
}

.city-service-item i {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Different colors for each service icon */
.city-service-item:nth-child(1) i {
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(2) i {
    color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(3) i {
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(4) i {
    color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(5) i {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(6) i {
    color: #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(7) i {
    color: #06b6d4;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:nth-child(8) i {
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.city-service-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

.city-service-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.city-service-item:hover h3 {
    color: var(--primary-blue);
}

.city-service-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.city-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.city-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.city-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.city-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ===== City Hero Badges & Stats ===== */
.city-hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.city-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.city-hero-badge i {
    color: var(--accent-green);
    font-size: 1rem;
}

.city-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 23, 42, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.city-hero-stat {
    text-align: center;
}

.city-hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.city-hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.city-hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.city-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.city-hero-trust-item i {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* ===== City Pricing Section ===== */
.city-pricing-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.city-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.city-pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.city-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-orange);
}

.city-pricing-card-featured {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    transform: scale(1.05);
}

.city-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.city-pricing-card-featured .city-pricing-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
}

.city-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.city-pricing-range {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.city-pricing-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.city-pricing-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.city-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.city-pricing-features li i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

.city-pricing-note {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.city-pricing-note i {
    color: var(--primary-blue);
    font-size: 1.125rem;
}

/* ===== City Benefits Section ===== */
.city-benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.city-benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.city-benefits-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.city-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.city-benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.city-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.city-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.city-benefit-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.city-benefits-stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.city-benefits-stat {
    text-align: center;
}

.city-benefits-stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
}

.city-benefits-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== City Guarantees Section ===== */
.city-guarantees-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.city-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.city-guarantee-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.city-guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-orange);
}

.city-guarantee-card:hover::before {
    transform: scaleX(1);
}

.city-guarantee-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.city-guarantee-card:hover .city-guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    color: white;
}

.city-guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.city-guarantee-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Service Items as Links ===== */
.service-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.service-item-link:hover {
    color: inherit;
}

.service-link-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-item-link:hover .service-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-item-horizontal.service-item-link {
    cursor: pointer;
}

.service-item-horizontal.service-item-link:hover {
    transform: translateY(-8px);
}

@media (max-width: 968px) {
    .city-hero {
        padding: 5rem 0 4rem;
    }

    .city-hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .city-hero-left {
        max-width: 100%;
        text-align: center;
    }

    .city-hero-right {
        height: 500px;
        order: -1;
    }

    .city-hero-title {
        font-size: 2.5rem;
    }

    .city-hero-subtitle {
        font-size: 1.125rem;
    }

    .city-hero-phone {
        width: 240px;
    }

    .city-hero-phone-2 {
        width: 260px;
    }

    .city-video-title {
        font-size: 2rem;
    }

    .city-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .city-hero {
        padding: 4rem 0 3rem;
    }

    .city-hero-title {
        font-size: 2rem;
    }

    .city-hero-right {
        height: 400px;
    }

    .city-hero-phone {
        width: 200px;
    }

    .city-hero-phone-2 {
        width: 220px;
    }

    .city-hero-buttons {
        flex-direction: column;
    }

    .city-hero-buttons .btn {
        width: 100%;
    }

    .city-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .city-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .city-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .city-hero-trust {
        justify-content: center;
    }
    
    .city-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .city-pricing-card-featured {
        transform: scale(1);
    }
    
    .city-benefits-content {
        grid-template-columns: 1fr;
    }
    
    .city-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .city-benefits-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }
    
    .city-guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) and (min-width: 641px) {
    .city-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .city-why-section,
    .city-services-section {
        padding: 4rem 0;
    }
    
    .city-why-section .section-title,
    .city-services-section .section-title {
        font-size: 2rem;
    }
    
    .city-features-grid,
    .city-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .city-feature-card,
    .city-service-item {
        padding: 2rem 1.5rem;
    }
    
    .city-feature-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .city-service-item i {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}

/* ===== Sticky CTA Button ===== */
.sticky-cta-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.5);
    color: white;
}

.sticky-cta-button i {
    font-size: 1.25rem;
}

.sticky-cta-button span {
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6), 0 0 0 8px rgba(15, 23, 42, 0.1);
    }
}

@media (max-width: 768px) {
    .sticky-cta-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .sticky-cta-button span {
        display: none;
    }

    .sticky-cta-button {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .sticky-cta-button i {
        font-size: 1.5rem;
    }
}


/* ===== Popular Jobs Section (Veelgevraagde Klussen) ===== */
.popular-jobs-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.popular-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.job-card-image {
    height: 180px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.job-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.job-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-card-category {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.job-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.job-card-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.job-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card-price {
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-card-price i {
    color: var(--accent-orange);
}

.job-card-cta {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.job-card:hover .job-card-cta i {
    transform: translateX(3px);
}


/* ===== New Navigation Styles ===== */
.nav-menu {
    gap: 1.5rem; /* Iets minder ruimte tussen items om knoppen te laten passen */
}

.nav-btn-view-jobs {
    background-color: var(--accent-orange);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-btn-view-jobs:hover {
    background-color: var(--accent-orange-light);
}

.nav-btn-register-klusser {
    background-color: white;
    color: var(--primary-blue) !important;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-btn-register-klusser:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}

.nav-btn-login {
    background-color: var(--primary-blue);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-btn-login:hover {
    background-color: var(--primary-blue-dark);
}

/* Navigatie links styling (Over, Hoe werkt het, FAQ) */
.nav-menu a:not(.btn) {
    color: var(--text-dark);
    font-weight: 400;
}

.nav-menu a:not(.btn):hover {
    color: var(--primary-blue);
}

/* Mobile adjustments specific for new buttons */
@media (max-width: 768px) {
    .nav-btn-view-jobs,
    .nav-btn-register-klusser,
    .nav-btn-login {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 16px;
    }

    /* Typography - Mobile */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 3rem 0;
        margin-top: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-ctas {
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card-small {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }

    .stat-text {
        font-size: 0.875rem;
    }

    /* Hero Visual - Mobile */
    .phone-stack {
        max-width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .phone-phone {
        width: 180px;
        height: 360px;
    }

    .phone-left {
        left: 10%;
        transform: rotate(-5deg) scale(0.7);
    }

    .phone-center {
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
    }

    .phone-right {
        right: 10%;
        transform: rotate(5deg) scale(0.7);
    }

    /* Navigation - Mobile Improvements */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        height: 32px;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem;
        gap: 1rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
    }

    /* Buttons - Touch Friendly */
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 44px;
        min-width: 44px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1.125rem;
    }

    /* Popular Jobs Section - Mobile */
    .popular-jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .job-card {
        border-radius: 12px;
    }

    .job-card-image {
        height: 160px;
    }

    .job-card-content {
        padding: 1.25rem;
    }

    .job-card-title {
        font-size: 1.125rem;
    }

    .job-card-description {
        font-size: 0.875rem;
    }

    /* Categories Grid - Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        border-radius: 12px;
    }

    /* Social Proof - Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

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

    .stat-label {
        font-size: 0.875rem;
    }

    /* Klusapp Section - Mobile */
    .klusapp-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .klusapp-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Process Section - Mobile */
    .steps-timeline {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0;
    }

    .steps-timeline::before {
        display: none;
    }

    .step-item {
        width: 100%;
    }

    /* Testimonials - Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* App CTA - Mobile */
    .app-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .app-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .app-cta-image {
        max-width: 100%;
    }

    /* Blog Section - Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    /* Contact Form - Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    /* Footer - Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    .footer-column ul {
        gap: 0.75rem;
    }

    /* Video Section - Mobile */
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    /* Section Padding - Mobile */
    section {
        padding: 3rem 0;
    }

    /* Spacing adjustments */
    .section-title {
        margin-bottom: 1rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .phone-stack {
        height: 300px;
    }

    .phone-phone {
        width: 140px;
        height: 280px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .nav-menu {
        padding: 1rem;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    .hero-content {
        gap: 3rem;
    }

    .popular-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .klusapp-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Simplified How It Works Steps ===== */
.how-it-works-steps {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card-simple {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.step-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.step-badge {
    background: var(--accent-orange);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon-simple {
    width: 70px;
    height: 70px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-card-simple:hover .step-icon-simple {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.step-title-simple {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description-simple {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .steps-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .step-card-simple {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-steps {
        padding: 3rem 0;
    }

    .steps-header {
        margin-bottom: 2.5rem;
    }

    .step-card-simple {
        padding: 2rem 1.5rem;
    }

    .step-icon-simple {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-title-simple {
        font-size: 1.25rem;
    }

    .step-description-simple {
        font-size: 0.95rem;
    }
}

