/* =========================================
   MKBter verzuimadvies — Stylesheet
   Modern 2026 design
   ========================================= */

/* --- Custom Properties --- */
:root {
    --clr-primary: #1a56a0;
    --clr-primary-dark: #0f3d7a;
    --clr-primary-light: #2b6ec2;
    --clr-primary-50: #e8f0fa;
    --clr-primary-100: #c5d9f2;
    --clr-accent: #3b82f6;
    --clr-accent-light: #60a5fa;

    --clr-dark: #0b1120;
    --clr-dark-700: #111827;
    --clr-dark-600: #1f2937;
    --clr-dark-500: #374151;

    --clr-light: #f8fafc;
    --clr-light-200: #e2e8f0;
    --clr-light-300: #cbd5e1;
    --clr-gray: #64748b;
    --clr-gray-light: #94a3b8;
    --clr-white: #ffffff;

    --clr-gradient-start: #1a56a0;
    --clr-gradient-end: #3b82f6;

    --ff-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
    --fs-sm: clamp(0.8125rem, 0.76rem + 0.27vw, 0.9375rem);
    --fs-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
    --fs-md: clamp(1.0625rem, 0.97rem + 0.47vw, 1.25rem);
    --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --fs-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
    --fs-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(26, 86, 160, 0.15);

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 4.5rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--clr-dark-600);
    background-color: var(--clr-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--clr-white);
    outline-offset: 2px;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--clr-dark);
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-gradient-start), var(--clr-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(26, 86, 160, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 6px 25px rgba(26, 86, 160, 0.45);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

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

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

.btn--light {
    background: var(--clr-white);
    color: var(--clr-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--light:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--fs-lg);
    font-family: var(--ff-heading);
    color: var(--clr-dark);
    z-index: 1001;
}

.nav__logo img {
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.nav__logo-text {
    font-weight: var(--fw-medium);
    letter-spacing: -0.02em;
}

.nav__logo-text strong {
    font-weight: var(--fw-extrabold);
    color: var(--clr-primary);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-dark-500);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--clr-primary);
    background: var(--clr-primary-50);
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: var(--clr-white) !important;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    box-shadow: 0 4px 15px rgba(26, 86, 160, 0.3);
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26, 86, 160, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(26, 86, 160, 0.03) 0%, transparent 40%);
    z-index: -1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(26, 86, 160, 0.04) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(2deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 3rem;
}

.hero__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    background: var(--clr-primary-50);
    border: 1px solid var(--clr-primary-100);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
}

.hero__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: var(--fs-md);
    color: var(--clr-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero__card {
    padding: 1.5rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-light-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hero__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--clr-primary-100);
}

.hero__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-primary-50), rgba(59, 130, 246, 0.08));
    color: var(--clr-primary);
}

.hero__card h3 {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.hero__card p {
    font-size: var(--fs-xs);
    color: var(--clr-gray);
    line-height: 1.5;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    color: var(--clr-primary);
    transition: all var(--transition-base);
}

.hero__scroll a:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(2px);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   Page Hero (sub pages)
   ========================================= */
.page-hero {
    padding: calc(var(--header-height) + 4rem) 0 3rem;
    background: var(--clr-light);
    text-align: center;
}

.page-hero__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--clr-dark);
}

.page-hero__subtitle {
    font-size: var(--fs-md);
    color: var(--clr-gray);
    line-height: 1.7;
    max-width: 560px;
    margin-inline: auto;
}

/* =========================================
   Section Base Styles
   ========================================= */
.section {
    padding: 6rem 0;
    position: relative;
}

.section--light {
    background: var(--clr-light);
}

.section--dark {
    background: var(--clr-dark);
    color: var(--clr-light-200);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--clr-white);
}

.section--contact {
    background: var(--clr-white);
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.section__label {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary);
    background: var(--clr-primary-50);
    border: 1px solid var(--clr-primary-100);
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section--dark .section__label {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--clr-accent-light);
}

.section__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: var(--fs-md);
    color: var(--clr-gray);
    line-height: 1.7;
}

.section--dark .section__subtitle {
    color: var(--clr-gray-light);
}

/* =========================================
   About / Over Section
   ========================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__content {
    padding-right: 1rem;
}

.about__intro {
    font-size: var(--fs-md);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--clr-dark-600);
}

.about__content p {
    margin-bottom: 1rem;
    color: var(--clr-gray);
}

.about__content p:last-child {
    margin-bottom: 0;
    font-weight: var(--fw-semibold);
    color: var(--clr-dark-600);
}

.about__content a {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

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

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about__highlights-intro {
    margin-bottom: 0.5rem;
}

.about__highlights-intro h2,
.about__highlights-intro h3 {
    font-size: var(--fs-lg);
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.about__highlights-intro p {
    font-size: var(--fs-sm);
    color: var(--clr-gray);
    line-height: 1.7;
}

/* Highlights Row (homepage) */
.highlights__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

/* =========================================
   Wie ben ik? Section
   ========================================= */
.who__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.who__photo {
    width: min(100%, 440px);
    max-width: 440px;
    flex-shrink: 0;
}

.who__photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.who__title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.who__content p {
    color: var(--clr-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.who__quote {
    padding: 1rem 1.5rem;
    background: var(--clr-white);
    border-left: 3px solid var(--clr-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 1.5rem !important;
}

.who__quote em {
    color: var(--clr-dark-500);
}

.who__content .btn {
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .who__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .who__photo {
        width: min(280px, 85vw);
        max-width: 440px;
        margin-inline: auto;
    }

    .who__content .btn {
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .who__photo {
        width: min(260px, 88vw);
    }
}

/* =========================================
   Service Blocks (diensten page)
   ========================================= */
.services__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin-inline: auto;
}

.service-block {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--clr-light);
    border: 1px solid var(--clr-light-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.service-block:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-primary-100);
    transform: translateY(-2px);
}

.service-block__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--clr-primary-50), rgba(59, 130, 246, 0.08));
    color: var(--clr-primary);
}

.service-block__content h2 {
    font-size: var(--fs-lg);
    margin-bottom: 0.75rem;
}

.service-block__content p {
    color: var(--clr-gray);
    line-height: 1.7;
}

.service-block__content p + p {
    margin-top: 1rem;
}

.service-block__content a {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.service-block__content a:hover {
    color: var(--clr-primary-dark);
}

.service-block__result {
    margin-top: 1rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, var(--clr-primary-50), rgba(59, 130, 246, 0.06));
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--clr-primary-dark);
}

.service-block__result strong {
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .service-block {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem;
    }
}

.section--white {
    background: var(--clr-white);
}

.highlight-card {
    padding: 1.5rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-light-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-primary-100);
    transform: translateY(-2px);
}

.highlight-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-primary-50), rgba(59, 130, 246, 0.08));
    color: var(--clr-primary);
}

.highlight-card h3 {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.25rem;
}

.highlight-card p {
    font-size: var(--fs-sm);
    color: var(--clr-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   Services / Diensten Section
   ========================================= */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--clr-dark-700);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card__number {
    font-family: var(--ff-heading);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    letter-spacing: 0.05em;
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(26, 86, 160, 0.2), rgba(59, 130, 246, 0.15));
    color: var(--clr-accent-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card__title {
    font-size: var(--fs-lg);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card__text {
    font-size: var(--fs-sm);
    color: var(--clr-gray-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* =========================================
   Process / Werkwijze Section
   ========================================= */
.process__timeline {
    max-width: 700px;
    margin-inline: auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-primary-100), var(--clr-primary), var(--clr-primary-100));
    border-radius: 1px;
}

.process__step {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.process__step:last-child {
    padding-bottom: 0;
}

.process__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 15px rgba(26, 86, 160, 0.3);
    position: relative;
    z-index: 2;
}

.process__step-content {
    padding-top: 0.5rem;
}

.process__step-content h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
}

.process__step-content p {
    color: var(--clr-gray);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner__content h3 {
    font-size: var(--fs-xl);
    color: var(--clr-white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
    font-weight: var(--fw-semibold);
    line-height: 1.4;
}

/* =========================================
   About — Personal "Wie ben ik?" Block
   ========================================= */
.about__personal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-light-200);
}

.about__personal h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.75rem;
    color: var(--clr-primary);
}

.about__personal p {
    color: var(--clr-gray);
    margin-bottom: 1rem;
}

.about__personal em {
    color: var(--clr-dark-500);
    font-style: italic;
}

.about__personal p:last-child {
    font-weight: var(--fw-semibold);
    color: var(--clr-dark-600);
    margin-bottom: 0;
}

/* =========================================
   Clients / Zij waren u voor Section
   ========================================= */
.clients__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    min-height: 110px;
    box-shadow: var(--shadow-sm);
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.client-logo img {
    max-height: 55px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: all var(--transition-base);
}

.client-logo:hover img {
    opacity: 1;
}

@media (max-width: 1024px) {
    .clients__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .client-logo {
        padding: 1.25rem 1.5rem;
    }
}

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

    .client-logo {
        padding: 1rem;
        min-height: 80px;
    }

    .client-logo img {
        max-height: 45px;
    }
}

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

.contact__card {
    background: var(--clr-light);
    border: 1px solid var(--clr-light-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-primary-50), rgba(59, 130, 246, 0.08));
    color: var(--clr-primary);
}

.contact__card-item h4 {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 0.125rem;
}

.contact__card-item p {
    font-size: var(--fs-sm);
    color: var(--clr-gray);
    line-height: 1.6;
}

.contact__card-item a {
    color: var(--clr-primary);
    font-weight: var(--fw-medium);
}

.contact__card-item a:hover {
    color: var(--clr-primary-dark);
}

.contact__card-item small {
    font-size: var(--fs-xs);
    color: var(--clr-gray-light);
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--clr-light);
    border: 1px solid var(--clr-light-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form__label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-dark-600);
    margin-bottom: 0.375rem;
}

.form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-dark);
    background: var(--clr-white);
    border: 1.5px solid var(--clr-light-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input::placeholder {
    color: var(--clr-light-300);
}

.form__input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 160, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__feedback {
    display: none;
    margin: 0;
    padding: 0.875rem 1rem;
    font-size: var(--fs-sm);
    line-height: 1.5;
    border-radius: var(--radius-md);
}

.form__feedback:not([hidden]) {
    display: block;
}

.form__feedback--success {
    background: var(--clr-primary-50);
    color: var(--clr-primary-dark);
    border: 1px solid var(--clr-primary-100);
}

.form__feedback--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--clr-dark);
    color: var(--clr-gray-light);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-lg);
    font-family: var(--ff-heading);
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.footer__logo img {
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.footer__logo strong {
    color: var(--clr-accent-light);
}

.footer__brand p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    max-width: 320px;
}

.footer__links h4 {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: var(--fs-sm);
    color: var(--clr-gray-light);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--clr-white);
}

.footer__links li {
    font-size: var(--fs-sm);
}

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: var(--fs-xs);
    color: var(--clr-gray);
}

.footer__powered {
    margin-top: 0.5rem;
    font-size: var(--fs-xs);
    color: var(--clr-gray);
}

.footer__powered a {
    color: var(--clr-accent-light);
    font-weight: var(--fw-medium);
    transition: color var(--transition-fast);
}

.footer__powered a:hover {
    color: var(--clr-white);
}

/* =========================================
   Scroll Animations
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* =========================================
   Responsive Design
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero__logo {
        margin-inline: auto;
    }

    .hero__subtitle {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__card {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }

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

    .about__content {
        padding-right: 0;
    }

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

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

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 4rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--clr-white);
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-slow);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        font-size: var(--fs-base);
        padding: 0.75rem 1rem;
    }

    .nav__link--cta {
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section__header {
        margin-bottom: 3rem;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
    }

    .hero__visual {
        flex-direction: column;
    }

    .hero__card {
        max-width: 100%;
    }

    .hero__logo {
        width: 120px;
        height: 120px;
    }

    .hero__scroll {
        display: none;
    }

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

    .process__timeline::before {
        left: 20px;
    }

    .process__step {
        gap: 1.25rem;
    }

    .process__step-number {
        width: 42px;
        height: 42px;
        font-size: var(--fs-sm);
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding-inline: 1rem;
    }

    .hero__badge {
        font-size: 0.6875rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact__card,
    .contact__form-wrapper {
        padding: 1.5rem;
    }
}

/* Mobile menu overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   WhatsApp Button
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #25d366;
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    background: #22c55e;
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.75rem;
    }

    .whatsapp-btn span {
        display: none;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    .header,
    .hero__scroll,
    .cta-banner,
    .contact__form-wrapper,
    .whatsapp-btn {
        display: none;
    }

    .section {
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }

    .section--dark {
        background: white !important;
    }

    .section--dark h2,
    .section--dark h3 {
        color: black !important;
    }

    .text-gradient {
        -webkit-text-fill-color: var(--clr-primary);
    }
}
