/* ==========================================================================
   1. RESET & ROOT VARIABLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    /* Brand blues */
    --color-primary: #0360ce;
    --color-primary-dark: #06357a;
    --color-primary-darker: #024fa8;
    --color-accent: #3b82f6;
    --color-accent-hover: #2563eb;

    /* Neutrals */
    --color-text-dark: #0f172a;
    --color-text-body: #475569;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-bg-tint: #f8fafc;
    --color-bg-hover-tint: #f0f7ff;
    --color-white: #ffffff;

    /* Overlay / dark surfaces */
    --color-overlay-dark: rgba(15, 23, 42, 0.9);
    --color-overlay-glass: rgba(15, 23, 42, 0.65);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);

    --header-height-desktop: 120px;
    --header-height-mobile: 70px;
}

body {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1800px;
    width: 100%;
    margin: 50px auto 150px auto;
    padding-left: 24px;
    padding-right: 24px;
    gap: 140px;

	
}

/* ==========================================================================
   2. HEADER / NAVIGATION
   ========================================================================== */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    height: var(--header-height-desktop);
    box-sizing: border-box;
    padding-bottom: 10px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    height: 100px;
}

.logo-img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.mobile-nav-wrapper {
    display: none; /* only shown on mobile, see media query */
}

.header-slogan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.header-slogan::before,
.header-slogan::after {
    content: "";
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    color: var(--color-text-body);
    padding: 0 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.arrow {
    font-size: 10px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 240px;
    box-shadow: var(--shadow-md);
    list-style: none;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.dropdown-content li a {
    padding: 14px 20px;
    color: var(--color-text-body);
    border-bottom: 1px solid #f1f5f9;
    font-weight: normal;
}

.dropdown-content li:last-child a {
    border-bottom: none;
}

.dropdown-content li a:hover {
    background-color: var(--color-bg-hover-tint);
    color: var(--color-accent);
    padding-left: 24px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile hamburger menu (hidden on desktop, activated in media query) */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
}

.mobile-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: var(--color-white);
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-dropdown li a {
    display: block;
    padding: 14px 20px;
    color: var(--color-text-body);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-dropdown li:last-child a {
    border-bottom: none;
}

.mobile-dropdown li a:hover {
    background-color: var(--color-bg-hover-tint);
    color: var(--color-accent);
}

.menu-toggle:checked ~ .mobile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle:checked ~ .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle:checked ~ .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Shared button used in header + hero */
.hero-actions .btn-primary,
header .demo-btn,
header .btn-primary {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: inline-block;
}

.hero-actions .btn-primary:hover,
header .demo-btn:hover,
header .btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   3. HERO SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-text-dark);
    margin-top: 80px;
}

.hero-container {
    /* base (desktop) layout; overridden to column on mobile */
    text-align: left;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.slide-1 {
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.3) 100%),
        url('../images/kantoor-ingang.webp');
    background-size: cover;
    background-position: center center;
}

.slide-2 {
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.3) 100%),
        url('../images/intercom.webp');
    background-size: cover;
    background-position: center center;
}

.slide-3 {
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.3) 100%),
        url('../images/mensen-gesprek.webp');
    background-size: cover;
    background-position: center center;
}

.hero-glass-card {
    position: absolute;
    bottom: clamp(48px, 8vh, 120px);
    left: 5%;
    width: clamp(420px, 48vw, 800px);
    min-height: clamp(300px, 34vh, 420px);
    max-width: 90%;
    background: var(--color-overlay-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: clamp(32px, 4vw, 60px);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}

.hero-glass-card h1 {
    color: var(--color-white);
    font-size: clamp(2.25rem, 1.2rem + 2.8vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-glass-card p {
    color: #e2e8f0;
    font-size: clamp(1.15rem, 0.95rem + 0.6vw, 1.4rem);
    line-height: 1.55;
    max-width: 42ch;
}

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

/* Standaard is de mobiele hero tekst verborgen op desktop */
.hero-mobile-content {
    display: none;
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.hero-mobile-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-mobile-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-wrapper {
    display: none;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: clamp(14px, 2vw, 22px);
}

.content-wrapper.active {
    display: flex;
    animation: fadeInText 0.6s ease forwards;
}

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

.btn-hero-primary {
    background: var(--color-accent);
    color: var(--color-white) !important;
    font-weight: 700;
    padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 42px);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
    letter-spacing: 0.2px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.25s ease;
}

.btn-hero-primary:hover {
    background: var(--color-accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.5);
}

/* Slider progress navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 5%;
    right: 5%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-bar {
    flex: 1;
    height: 24px;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.nav-bar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: background 0.2s ease;
}

.nav-bar .progress {
    width: 0%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: none;
}

.nav-bar.active .progress {
    width: 100%;
    transition: width 6000ms linear;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.nav-bar:hover {
    transform: translateY(-1px);
}

.nav-bar:hover::before {
    background: rgba(255, 255, 255, 0.4);
}

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

.hero-visual iframe,
.hero-visual video,
.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   4. GENERIC BUTTONS
   ========================================================================== */
.btn {
    padding: 30px 80px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
    text-shadow: none;
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(3, 96, 206, 0.3);
}

.btn-primary {
    background: var(--color-primary-dark);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

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

/* ==========================================================================
   5. SECTION HEADERS (shared across sections)
   ========================================================================== */
.section-title {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    font-weight: 800;
    margin-top: 100px;
    margin-bottom: 16px;
    text-align: center;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-badge {
    background-color: #fef2f2;
    color: #ef4444;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-body);
    max-width: 640px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* ==========================================================================
   6. CHALLENGES SECTION
   ========================================================================== */
.challenges-section {
    margin-bottom: 140px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1800px;
    margin: 0 auto;
}

.challenge-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04),
                0 2px 4px rgba(15, 23, 42, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.challenge-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    flex-shrink: 0;
}

.challenge-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.challenge-card h3 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 14px;
    font-weight: 700;
}

.challenge-card p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

/* ==========================================================================
   7. PROBLEMS / PAIN POINTS SECTION
   ========================================================================== */
.problems-container {
    padding: 20px 20px;
}

.problems-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.problems-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 48px 0 200px 0;
    box-sizing: border-box;
}

.problem-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.tf-feature-card:hover,
.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 25px -5px rgba(59, 130, 246, 0.12);
}

.tf-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tf-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.tf-card-title,
.problem-card h3 {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.tf-card-text,
.problem-card p {
    font-size: 1.25rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ==========================================================================
   8. FEATURE ROWS (image + text alternating)
   ========================================================================== */
.tf-features-container {
    width: 100%;
    margin: 150px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.tf-features-container .tf-feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 150px;
    width: 100%;
}

.tf-features-container .tf-row-reverse {
    flex-direction: row-reverse;
}

.tf-features-container .tf-feature-media {
    flex: 0 0 45%;
    width: 45%;
}

.tf-features-container .tf-row-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.tf-features-container .tf-feature-content {
    flex: 1;
}

.tf-features-container .tf-row-tag {
    display: block;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tf-features-container .tf-row-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-dark) !important;
    margin-bottom: 30px;
    line-height: 1.3;
}

.tf-features-container .tf-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tf-features-container a.tf-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none !important;
    color: var(--color-text-body) !important;
    font-size: 15px;
    line-height: 1.6;
    padding: 10px 12px;
    border-radius: 12px;
    background: transparent;
    transition: all 0.25s ease;
}

.tf-features-container a.tf-feature-card:hover {
    background-color: var(--color-bg-tint) !important;
    transform: translateX(4px);
}

.tf-features-container .tf-card-body {
    color: var(--color-text-body) !important;
	font-size:1.25rem;
}

.tf-features-container .tf-card-body strong {
    color: var(--color-text-dark) !important;
    font-weight: 700;
}

.tf-features-container .tf-list-icon {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    margin-top: 3px;
}

.cta-card-reverse .cta-image-wrapper {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

/* Responsive fix: Mocht je cta-card een flexbox of grid zijn op mobiel, 
   dan zorgt dit ervoor dat de tekst op telefoons toch netjes als eerste (boven) verschijnt */
@media (max-width: 768px) {
    .cta-card--reversed {
        display: flex;
        flex-direction: column-reverse; /* Duwt de afbeelding op mobiel weer onder de tekst */
    }
    
    .cta-card--reversed .cta-image-wrapper {
        clip-path: none; /* Haal de schuine lijn weg op mobiel voor betere vulling */
    }
}

/* ==========================================================================
   9. REVIEWS CAROUSEL
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 45px 40px 45px;
    box-sizing: border-box;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

.reviews-carousel:active {
    cursor: grabbing;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-120%);
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease, opacity 0.3s ease;
}

.carousel-arrow:hover {
    transform: translateY(-120%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

.prev-btn {
    left: -5px;
}

.next-btn {
    right: -5px;
}

.carousel-scrollbar-container {
    position: absolute;
    bottom: 10px;
    left: 60px;
    width: calc(100% - 90px);
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}

.carousel-scrollbar-thumb {
    height: 100%;
    width: 20%;
    background: var(--color-primary);
    border-radius: 2px;
    transform-origin: left;
    transition: transform 0.1s linear;
}

.review-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.review-text {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0 0 24px 0;
    font-style: italic;
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    font-weight: 700;
    margin: 0 0 4px 0;
}

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

/* ==========================================================================
   10. SECTORS / USE CASES
   ========================================================================== */
.sectors-section {
    padding: 100px 0;
}

.usecases-grid {
    display: grid;
 grid-template-columns: repeat(4, 1fr);
    
    row-gap: 24px;
    column-gap: 24px;
    
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px 24px;
    box-sizing: border-box;
}

.usecase-box {
    background: var(--color-white);
    border: 1px solid #e2e8f0; 
    border-radius: 20px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04), 
                0 2px 4px rgba(15, 23, 42, 0.02);
    
    box-sizing: border-box;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}
.usecase-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.usecase-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    flex-shrink: 0;
}

.usecase-content {
    padding: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    box-sizing: border-box;
}
.usecase-content h4 {
    font-size: 1.45rem;
    color: var(--color-text-dark);
    font-weight: 700;
    margin: 0 0 12px 0;
}
.usecase-content p {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   11. CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

/* GEMEENSCHAPPELIJKE STYLING VOOR BEIDE KAARTEN (Garandeert gelijke grootte) */
.cta-card,
.cta-card-reverse {
    display: grid;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: stretch; /* Zorgt dat content en afbeelding altijd even hoog zijn */
}

/* DE VERHOUDINGSFIX: Spiegel de grid-kolommen */
.cta-card {
    grid-template-columns: 1.2fr 1fr; /* Tekst links (breder), Afbeelding rechts */
}

.cta-card-reverse {
    grid-template-columns: 1fr 1.2fr; /* Afbeelding links, Tekst rechts (breder) */
}

/* INHOUD (Identiek voor beide kaarten) */
.cta-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.cta-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(3, 96, 206, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--color-primary-darker);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 96, 206, 0.4);
}

/* AFBEELDING WRAPPERS (Gedeelde basis) */
.cta-image-wrapper,
.cta-image-wrapper-reverse {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px; /* Bepaalt de minimale hoogte van de kaarten */
    overflow: hidden;
    background: #1e293b;
}

/* Gespiegelde Clip-paths */
.cta-image-wrapper {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); /* Schuine rand links */
}

.cta-image-wrapper-reverse {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);   /* Schuine rand rechts */
}

/* DYNAMISCHE AFBEELDING (Schaalt perfect mee met de div) */
.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Snijdt de afbeelding perfect bij zonder te vervormen */
    object-position: center;
    filter: brightness(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    display: block; /* Voorkomt loze witruimte onder de foto */
}


/* RESPONSIVE DESIGN (Voor mobiel en tablet) */
@media (max-width: 992px) {
    .cta-card,
    .cta-card-reverse {
        grid-template-columns: 1fr; /* Stapel alles onder elkaar */
    }

    .cta-card-reverse {
        /* Zorgt dat op mobiel de afbeelding toch boven de tekst staat */
        display: flex;
        flex-direction: column-reverse; 
    }

    .cta-image-wrapper,
    .cta-image-wrapper-reverse {
        min-height: 300px;
        clip-path: none; /* Schuinten weghalen op mobiel voor beter zicht */
    }

    .cta-content {
        padding: 40px 30px;
    }
}

//* ==========================================================================
   12. ONZE EXPERT SECTIE (3-KOLOMS GRID)
   ========================================================================== */
.expert-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Header boven het grid */
.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header-center h2 {
    font-size: 36px;
    color: #0f172a;
    font-weight: 700;
    margin: 10px 0 20px 0;
    letter-spacing: -0.02em;
}

.section-header-center p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* HET GRID */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 gelijke kolommen */
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
}

/* DE NIEUWE VERTICALE KAART */
.expert-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column; /* Stapelt afbeelding en tekst verticaal */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Afbeelding (Bovenkant kaart) */
.expert-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px; /* Vaste hoogte voor een strakke uitlijning */
    background-color: #f1f5f9;
    overflow: hidden;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto vervormt nooit en vult de ruimte */
    object-position: center top;
    display: block;
}

/* Inhoud (Onderkant kaart) */
.expert-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Duwt de contact-info automatisch naar de bodem */
}

.expert-badge {
    color: var(--color-primary, #0360ce);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-block;
}

.expert-content h3 {
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.expert-role {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    display: block;
}

.expert-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Zorgt dat de tekstruimte flexibel is */
}

/* Contact & knop onderaan de kaart */
.expert-contact-info {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-availability {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 600;
}

/* Subtiele, professionele link in plaats van een grote zware knop per kaart */
.btn-expert-link {
    color: var(--color-primary, #0360ce);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-expert-link:hover {
    color: var(--color-primary-darker, #0056b3);
    transform: translateX(4px); /* Subtiele verschuiving naar rechts bij hover */
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .expert-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolommen op tablets */
    }
}

@media (max-width: 768px) {
    .expert-grid {
        grid-template-columns: 1fr; /* 1 kolom op mobiel */
        gap: 20px;
    }
    
    .expert-section {
        padding: 60px 0;
    }
    
    .section-header-center h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    background-color: #F8FAFC;
}

.footer p {
    color: #000000;
}

@media (max-width: 1280px) {

	.usecases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   OVER ONS - ALGEMENE STYLING
   ========================================================================== */
.about-container {
    width: 100%;
    max-width: 1200px; /* Mooie, compacte breedte voor leesbaarheid */
    margin: 0 auto;
    padding: 60px 24px;
    box-sizing: border-box;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark, #0f172a);
    margin-bottom: 15px;
}

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

/* ==========================================================================
   KONTOREN PAGINA - MERKSTIJL GEALINEERD (NIEUW)
   ========================================================================== */

/* Kleuren & Variabelen (Als richtlijn) */
:root {
    --brand-blue: #007bff;
    --brand-blue-hover: #0056b3;
    --brand-dark: #333333;
    --brand-muted: #555555;
    --brand-light-bg: #f8f9fa;
    --brand-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Knoppen specifiek voor deze pagina */
.btn-office-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--brand-blue);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-office-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-1px);
}

.btn-office-text {
    display: inline-block;
    padding: 14px 20px;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.btn-office-text:hover {
    color: var(--brand-blue-hover);
}


/* ==========================================================================
   1. SPLIT HERO
   ========================================================================== */
.office-hero {
    background-color: #ffffff;
    padding: 80px 20px;
	background-color:#0f172a;
	
}

.office-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.office-hero-content {
    flex: 1;
}

.office-badge {
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.office-hero-title {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 20px;
    margin-top: 0;
	color: var(--color-white, #ffffff);
}

.office-hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--brand-muted);
    margin-bottom: 35px;
	
}

.office-hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.office-hero-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--brand-shadow);
}

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


/* ==========================================================================
   2. BENEFITS GRID (VOORDELEN)
   ========================================================================== */
.benefits-section {
    background-color: var(--brand-light-bg);
    padding: 80px 20px;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    margin-top: 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--brand-muted);
}

/* Grid layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* De <a> wrapper */
.benefit-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.benefit-card-wrapper:hover {
    transform: translateY(-5px);
}

/* De kaart zelf */
.benefit-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--brand-shadow);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin: 0 0 15px 0;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--brand-muted);
    margin-bottom: 25px;
    flex-grow: 1; /* Duwt de link netjes naar de onderkant */
}

.benefit-link {
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 0.95rem;
}

.benefit-card-wrapper:hover .benefit-link {
    text-decoration: underline;
}


/* ==========================================================================
   3. STAPPENPLAN (HOE HET WERKT)
   ========================================================================== */
.steps-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--brand-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.step-item h4 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin: 0 0 10px 0;
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--brand-muted);
}


/* ==========================================================================
   4. CONTACT BANNER (CTA)
   ========================================================================== */
.office-cta {
    background-color: #ebf5ff; /* Zacht blauw in plaats van hard blauw */
    padding: 80px 20px;
    text-align: center;
}

.office-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.office-cta h2 {
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-top: 0;
    margin-bottom: 15px;
}

.office-cta p {
    font-size: 1.15rem;
    color: var(--brand-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
    .office-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .office-hero-image {
        width: 100%;
        height: 300px;
    }

    .office-hero-buttons {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* Naar 2 kolommen */
    }

    .steps-flow {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .office-hero-title {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Naar 1 kolom op mobiel */
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
/* ==========================================================================
   1. OVER ONS PAGINA
   ========================================================================== */
/* ==========================================================================
   1. ABOUT HERO (Inclusief de herkenbare gespiegelde schuine hoek)
   ========================================================================== */
.about-hero {
    background: #0f172a; /* Zelfde donkere kleur als je CTA kaart */
    color: var(--color-white, #ffffff);
    overflow: hidden;
    position: relative;
	margin-top:120px;
}

.about-hero-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-content {
    padding: 60px 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    align-self: flex-start;
    background: rgba(3, 96, 206, 0.15); /* Zachtblauw */
    color: #38bdf8; /* Lichter blauw accent */
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.about-hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 550px;
    margin: 0;
}

/* De schuine foto rechts */
.about-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%); /* Schuine afsnijding op mobiel */
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop weergave voor de Hero */
@media (min-width: 900px) {
    .about-hero-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        min-height: 500px;
    }
    
    .about-hero-content {
        padding: 80px 40px 80px 24px;
    }
    
    .about-hero-image-wrapper {
        height: 100%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); /* Matcht perfect met je CTA kaart */
    }
}

/* ==========================================================================
   2. MISSIE & VISIE CARDS (Grote, prominente boxen met hover-effect)
   ========================================================================== */
.about-values-section {
    background: #f8fafc; /* Heel zachtgrijze achtergrond om de witte kaarten te laten 'poppen' */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-card {
    background: var(--color-white, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 20px; /* Zelfde rondere hoeken als de usecases */
    padding: 40px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03), 
                0 2px 4px rgba(15, 23, 42, 0.01);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.06);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(3, 96, 206, 0.08); /* Zachtblauwe cirkel */
    color: var(--color-primary, #0360ce);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-card-icon .icon {
    width: 28px;
    height: 28px;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark, #0f172a);
    margin: 0 0 14px 0;
}

.about-card p {
    font-size: 1.05rem;
    color: var(--color-text-body, #475569);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr); /* Netjes naast elkaar op grotere schermen */
    }
}

/* ==========================================================================
   3. KERNWAARDEN SECTIE
   ========================================================================== */
.core-values-section {
    background: var(--color-white, #ffffff);
}

.core-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.value-item {
    position: relative;
    padding-top: 20px;
}

/* Grote, subtiele nummers om een modern magazine-gevoel te creëren */
.value-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(3, 96, 206, 0.15); /* Transparant blauw */
    font-family: monospace, sans-serif;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark, #0f172a);
    margin: 0 0 12px 0;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--color-text-body, #475569);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .core-values-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 strakke kolommen op grotere schermen */
        gap: 30px;
    }
}



/* ==========================================================================
   13. RESPONSIVE — TABLET (<= 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
		/* 1. Verberg de glass card op mobiel */
    .hero-glass-card {
        display: none !important;
    }

    /* 2. Toon de tekstsectie onder de hero op mobiel */
    .hero-mobile-content {
        display: block;
    }


    /* Pas de hoogte van de hero slider aan op mobiel zodat deze niet teveel ruimte inneemt */
    .hero-slider {
        height: 50vh; /* 50% van het scherm */
        min-height: 300px;
    }
	
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

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

    .problems-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

@media (max-width: 992px) {

	.usecases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 40px 50px;
    }

    .cta-image-wrapper {
        min-height: 300px;
        clip-path: none;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}

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

    .section-title {
        font-size: 1.75rem;
        margin-top: 60px;
    }
}

@media (max-width: 580px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ==========================================================================
   14. RESPONSIVE — MOBILE (<= 768px)
   All mobile rules consolidated into a single media query.
   ========================================================================== */
@media (max-width: 768px) {

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

/* 3. Maak de feature-rijen responsive (onder elkaar in plaats van naast elkaar) */
    .tf-feature-row {
        flex-direction: column !important; /* Stapel afbeelding en tekst onder elkaar */
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Zorg dat de afbeeldingen op mobiel de volledige breedte pakken en een mooie verhouding hebben */
    .tf-feature-media {
        width: 100% !important; 
        max-height: 300px; /* Voorkomt dat de foto te hoog wordt op mobiel */
        overflow: hidden;
        border-radius: 12px;
    }

    .tf-row-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Zorgt ervoor dat de foto mooi gecentreerd vult */
    }

    .tf-feature-content {
        width: 100%;
    }
	
    /* --- Layout: feature rows stack vertically --- */
    .tf-feature-container,
    .tf-feature-row-reverse,
    .tf-features-container .tf-feature-row,
    .container > .row,
    .tf-features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
    }

    .feature-image-wrapper,
    .feature-text-block,
    .container > .row > div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature-row-second,
    .row-reversed-on-desktop {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .feature-text-block h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .feature-text-block ul,
    .feature-text-block li {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5;
    }

    /* --- Header --- */
    .header {
        padding: 15px 20px;
    }

    .header-container {
        height: var(--header-height-mobile);
        padding: 0 16px;
    }

    .logo-wrapper {
        margin-left: 0 !important;
        padding-left: 0 !important;
        gap: 10px;
    }

    .logo-box {
        margin-left: 0 !important;
        padding-left: 0 !important;
        height: 45px;
    }

    .header-slogan {
        display: none !important;
    }

    .nav-links {
        display: none !important;
    }

    /* --- Mobile hamburger nav --- */
    .mobile-nav-wrapper {
        display: block;
        position: relative;
        margin-right: 20px;
    }

    /* --- Hero container / slider --- */
    .hero-container {
        display: flex;
        flex-direction: column;
        height: auto;
        margin-top: var(--header-height-mobile);
        text-align: center;
    }

    .hero-image-wrapper {
        width: 100% !important;
        height: 50vh !important;
        position: relative;
    }

    .hero-image {
        object-fit: cover;
        object-position: center;
    }

    .hero-slider {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        margin-top: var(--header-height-mobile) !important;
        height: 80vh !important;
    }

    .hero-slider .slide,
    .hero-slider .slide-img,
    .hero-slider .slide-background {
        width: 100% !important;
        min-width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }

    /* --- Hero glass card becomes a bottom "dock" --- */
    .hero-glass-card {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        top: auto !important;
        transform: none !important;
        padding: 24px 20px !important;
        box-sizing: border-box !important;
        background: var(--color-overlay-dark) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 20px 20px 0 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: none !important;
        z-index: 10 !important;
    }

    .hero-glass-card h1,
    .hero-glass-card h2,
    .hero-glass-card p,
    .hero-glass-card .hero-title,
    .hero-glass-card .hero-subtitle {
        color: var(--color-white) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-glass-card h1 {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }

    .hero-glass-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: left;
    }

    /* --- General text scaling --- */
    h1,
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    /* --- Challenges --- */
    .challenges-section {
        margin-bottom: 80px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .challenge-image {
        height: 220px;
    }

    .challenge-content {
        padding: 28px 24px;
    }

    /* --- Problem cards --- */
    .problems-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .problem-card {
        padding: 24px;
    }

    /* --- Use case cards --- */
    .usecases-grid {
        gap: 16px;
        padding: 10px 16px;
    }

    .usecase-box {
        flex: 0 0 280px;
        max-width: 280px;
    }
}