/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --creative-yellow: #f1c232;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: #03113aff;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

main {
    padding-top: 96px;
}

@media (max-width: 768px) {
    main {
        padding-top: 76px;
    }
}

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

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

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    z-index: 100;
}

.header__container {
    width: min(1400px, 100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header__container {
        padding: 28px 20px 20px;
    }
}

.header__logo img {
    height: 48px;
}

@media (min-width: 768px) {
    .header__logo img {
        height: 60px;
    }
}

.header__nav {
    display: none;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .header__nav {
        display: flex;
    }
}

.nav-link {
    color: #03113aff;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #508991;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #d2d5da;
    background: #ffffff;
    color: #03113aff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.header__phone:hover {
    border-color: #03113aff;
    box-shadow: 0 2px 8px rgba(3, 17, 58, 0.12);
    transform: translateY(-1px);
}

.header__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__phone-number {
    letter-spacing: 0.3px;
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

@media (min-width: 768px) {
    .header__menu-toggle {
        display: none;
    }
}

.header__menu-toggle span {
    width: 24px;
    height: 2px;
    background: #03113aff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__menu-toggle--open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header__menu-toggle--open span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle--open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        align-items: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .header__nav--open {
        display: flex;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #e8eaed;
    }

    .header__phone {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.125rem;
        margin-top: 16px;
    }

    .header--menu-open {
        border-bottom: 1px solid #e8eaed;
    }
}

/* ========================================
   Hero Viewport (awards + hero fills viewport)
   ======================================== */
.hero-viewport {
    min-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    position: relative;
    background: #F8F8FA;
}

@media (max-width: 768px) {
    .hero-viewport {
        min-height: auto;
    }
}

@media (min-width: 1024px) {
    .hero-viewport {
        min-height: calc(100vh - 80px);
    }
}

/* ========================================
   Awards Strip (credibility bar below hero)
   ======================================== */
.awards-header {
    padding: 32px 24px;
    background: #ffffff;
    border-top: 1px solid #E8E8EC;
    overflow: hidden;
}

.awards-header__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.awards-header__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #03113aff;
    opacity: 0.45;
}

.awards-header__awards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.awards-header__awards img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 1;
}

@media (max-width: 480px) {
    .awards-header {
        padding: 24px 16px;
    }

    .awards-header__awards {
        gap: 16px;
    }

    .awards-header__awards img {
        height: 32px;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    --hero-accent-color: #508991;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 24px 60px;
    background: #F8F8FA;
    position: relative;
    min-height: 0;
}

.hero[data-card-state="works"] {
    --hero-accent-color: #508991;
}

.hero[data-card-state="scale"] {
    --hero-accent-color: #508991;
}

.hero__container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    position: relative;
}

@media (min-width: 1024px) {
    .hero {
        padding: 60px 48px;
        align-items: center;
    }

    .hero__container {
        flex-direction: row;
        align-items: center;
        gap: 64px;
        max-width: 1200px;
    }
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .hero__content {
        padding-right: 0;
        overflow: visible;
        text-align: left;
        align-items: flex-start;
        max-width: 560px;
        flex: 1;
    }
}

.hero__title {
    display: flex;
    flex-direction: column;
    font-size: clamp(1.75rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    width: 100%;
}

.hero__title-line {
    display: block;
    white-space: normal;
    opacity: 0;
    animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.12s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.24s;
}


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

@media (min-width: 768px) {
    .hero__title {
        font-size: clamp(3rem, 5vw, 5rem);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: clamp(2.8rem, 3.5vw, 3.75rem);
        line-height: 1.05;
        overflow: visible;
    }

    .hero__title-line {
        white-space: normal;
        overflow: visible;
    }

    .hero__title-line--dark {
        white-space: normal;
    }
}

.hero__rotating-words {
    display: inline-block;
    position: relative;
    min-width: 22ch;
    min-height: 1.2em;
}

.hero__rotating-word {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    animation: heroRotateWords 9s ease-in-out infinite;
}

.hero__rotating-word:nth-child(1) { animation-delay: 0s; }
.hero__rotating-word:nth-child(2) { animation-delay: 3s; }
.hero__rotating-word:nth-child(3) { animation-delay: 6s; }

@keyframes heroRotateWords {
    0% { opacity: 0; }
    8% { opacity: 1; }
    25% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
}

.hero__title-line--blue {
    color: var(--hero-accent-color);
    transition: color 0.3s ease;
}

.hero__title-line--dark {
    color: #03113aff;
}

@media (min-width: 1024px) {
    .hero__title-line--dark,
    .hero__title-line--blue {
        position: relative;
        z-index: 3;
        align-self: flex-start;
        text-align: left;
    }
}

.hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: #03113aff;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
    opacity: 0;
    animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.42s;
}

.hero__toggle {
    display: inline-flex;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.58s;
}

@media (min-width: 1024px) {
    .hero__actions {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}

.hero__scroll-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #03113aff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    padding: 24px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    animation: heroScrollFadeIn 0.6s ease-out 1s forwards;
}

.hero__scroll-icon {
    display: flex;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollFadeIn {
    to { opacity: 1; }
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 140px;
}

@media (min-width: 768px) {
    .btn {
        padding: 14px 32px;
        font-size: 1.125rem;
    }
}

.btn--primary {
    background: #03113aff;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn--primary:hover {
    background: #020d2a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.btn--secondary {
    background: #ffffff;
    color: #03113aff;
    border: 1px solid #dadce0;
}

.btn--secondary:hover {
    background: #f8f9fa;
    border-color: #03113aff;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero__visual {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        margin: 0;
        max-width: none;
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: stretch;
        justify-content: center;
    }
}

.shopping-card {
    --card-size: clamp(260px, 70vw, 420px);
    --card-inner-width: min(260px, 100%);
    --card-bg: linear-gradient(135deg, #d4e8eb 0%, #c1dfe3 100%);
    --card-shadow: 0 20px 60px rgba(80, 137, 145, 0.15);
    --badge-bg: #508991;
    --badge-shadow: rgba(80, 137, 145, 0.3);
    --title-color: #508991;
    position: relative;
    width: var(--card-size);
    height: var(--card-size);
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--card-size) * 0.05);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    animation: heroOrbFloat 6s ease-in-out infinite;
    will-change: transform;
    transition: background 0.6s ease, box-shadow 0.6s ease;
}

.shopping-card__state {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: inherit;
    transition: opacity 0.4s ease-in-out;
}

.hero[data-card-state="more"] .shopping-card__state[data-card-content="works"],
.hero[data-card-state="more"] .shopping-card__state[data-card-content="scale"],
.hero[data-card-state="works"] .shopping-card__state[data-card-content="more"],
.hero[data-card-state="works"] .shopping-card__state[data-card-content="scale"],
.hero[data-card-state="scale"] .shopping-card__state[data-card-content="more"],
.hero[data-card-state="scale"] .shopping-card__state[data-card-content="works"] {
    opacity: 0;
    pointer-events: none;
}

.hero[data-card-state="works"] .shopping-card {
    --card-bg: linear-gradient(135deg, #d4e8eb 0%, #c1dfe3 100%);
    --card-shadow: 0 12px 40px rgba(80, 137, 145, 0.12);
}

.hero[data-card-state="scale"] .shopping-card {
    --card-bg: linear-gradient(135deg, #d4e8eb 0%, #c1dfe3 100%);
    --card-shadow: 0 20px 60px rgba(80, 137, 145, 0.15);
    --badge-bg: #508991;
    --badge-shadow: rgba(80, 137, 145, 0.3);
    --title-color: #508991;
}

@media (min-width: 768px) {
    .shopping-card {
        padding: calc(var(--card-size) * 0.06);
    }
}

.shopping-card__badge {
    display: none;
}


.shopping-card__image {
    width: 92%;
    max-width: 100%;
    height: calc(var(--card-size) * 0.7);
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .shopping-card__image {
        width: 94%;
        height: calc(var(--card-size) * 0.78);
    }
}

@media (min-width: 1024px) {
    .shopping-card__image {
        width: 96%;
        height: calc(var(--card-size) * 0.82);
    }
}

.shopping-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ========================================
   Hero Dashboard Card
   ======================================== */
.hero__dashboard {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(3, 17, 58, 0.08), 0 1px 4px rgba(3, 17, 58, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 380px;
}

.hero__dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__dashboard-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #03113aff;
    opacity: 0.5;
}

.hero__dashboard-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
}

.hero__dashboard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.hero__dashboard-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0F0F4;
}

.hero__stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.hero__stat-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hero__stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #03113aff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero__stat-delta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: #03113aff;
    opacity: 0.55;
}

.hero__chart {
    border-top: 1px solid #F0F0F4;
    padding-top: 16px;
}

.hero__chart svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Hero Award Card
   ======================================== */
.hero__award-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(3, 17, 58, 0.08), 0 1px 4px rgba(3, 17, 58, 0.04);
    width: 100%;
}

.hero__award-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center 25%;
    aspect-ratio: 16 / 9;
}

@media (min-width: 769px) {
    .hero__award-photo img {
        aspect-ratio: 3 / 2;
    }
}

.hero__award-caption {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #F0F0F4;
}

.hero__award-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #508991;
}

.hero__award-text {
    font-size: 0.9rem;
    color: #03113aff;
    line-height: 1.5;
    opacity: 0.75;
    margin: 0;
}

@keyframes heroOrbFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    25% {
        transform: translate3d(-8px, -6px, 0) scale(1.02);
    }
    50% {
        transform: translate3d(0, -16px, 0) scale(1.04);
    }
    75% {
        transform: translate3d(8px, -6px, 0) scale(1.02);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}


:root {
    --feature-tab-accent: #3a8f8f;
    --feature-tab-active-bg: #e7f4ef;
    --feature-tab-inactive-bg: #f4f6fb;
    --feature-loading-duration: 5200ms;
}

@property --feature-tab-progress {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

/* ========================================
   Why PaperDigits Section
   ======================================== */
.why-pd {
    padding: 96px 24px 56px;
    background: #ffffff;
}

.why-pd__container {
    max-width: 820px;
    margin: 0 auto;
}

.why-pd__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}

.why-pd__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.why-pd__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.why-pd__quote {
    font-size: clamp(1.5rem, 3vw, 2.375rem);
    font-weight: 700;
    line-height: 1.25;
    color: #03113aff;
    margin: 0 0 24px;
    font-style: normal;
}

.why-pd__quote-accent {
    color: #508991;
}

.why-pd__body {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(3, 17, 58, 0.55);
    margin: 0 0 32px;
}

.why-pd__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    background: #03113aff;
    color: #ffffff;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s ease;
}

.why-pd__cta:hover {
    opacity: 0.8;
}

.why-pd__stats {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(3, 17, 58, 0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-pd__stat {
    display: flex;
    flex-direction: column;
}

.why-pd__stat-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    display: block;
}

.why-pd__stat-label {
    font-size: 0.875rem;
    color: rgba(3, 17, 58, 0.45);
    line-height: 1.4;
    display: block;
}

@media (max-width: 768px) {
    .why-pd {
        padding: 64px 16px 56px;
    }

    .why-pd__stats {
        gap: 24px;
    }
}

/* ========================================
   Logo Slider
   ======================================== */
.logo-slider {
    background: #ffffff;
    padding: 48px 0;
    overflow: hidden;
    border-top: 1px solid rgba(3, 17, 58, 0.08);
    border-bottom: 1px solid rgba(3, 17, 58, 0.08);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-slider__inner {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: logoScroll 28s linear infinite;
}

.logo-slider__logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.logo-slider__logo:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}

@media (prefers-reduced-motion: reduce) {
    .logo-slider__inner {
        animation: none;
    }
}

/* ========================================
   Herken je dit Section
   ======================================== */
.herken {
    padding: 96px 24px 80px;
    background: #F8F8FA;
}

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

.herken__header {
    margin-bottom: 40px;
}

.herken__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.herken__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.herken__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.herken__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    margin: 0;
}

.herken__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.herken__items {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(3, 17, 58, 0.1);
}

.herken__item {
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(3, 17, 58, 0.1);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    transition: background 0.2s ease, border-left-color 0.2s ease;
    border-left: 3px solid transparent;
}

.herken__item:hover {
    background: rgba(3, 17, 58, 0.025);
}

.herken__item-num {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(3, 17, 58, 0.25);
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 20px;
    transition: color 0.2s ease;
}

.herken__item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.herken__item-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #03113aff;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
    flex: 1;
    transition: color 0.2s ease;
}

.herken__item-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A820;
}

.herken__item-arrow {
    flex-shrink: 0;
    margin-top: 2px;
    color: #03113A;
    opacity: 0.25;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.herken__item:hover .herken__item-arrow {
    opacity: 0.6;
    transform: translateX(3px);
}

/* Active state — regular items */
.herken__item--active:not(.herken__item--accelerate) {
    background: rgba(80, 137, 145, 0.07);
    border-left-color: #508991;
}

.herken__item--active:not(.herken__item--accelerate) .herken__item-num {
    color: #508991;
}

.herken__item--active:not(.herken__item--accelerate) .herken__item-title {
    color: #03113A;
    font-weight: 700;
}

.herken__item--active:not(.herken__item--accelerate) .herken__item-arrow {
    opacity: 1;
    color: #508991;
}

/* Active state — ACCELERATE item */
.herken__item--accelerate.herken__item--active {
    background: #03113aff;
    border-left-color: #F1C232;
}

.herken__item--accelerate.herken__item--active .herken__item-title {
    color: #ffffff;
    font-weight: 700;
}

.herken__item--accelerate.herken__item--active .herken__item-num {
    color: rgba(241, 194, 50, 0.55);
}

.herken__item--accelerate.herken__item--active .herken__item-arrow {
    opacity: 1;
    color: #F1C232;
}

/* Right panel — always visible */
.herken__panel {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 120px;
}

.herken__panel-card {
    background: #03113aff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(3, 17, 58, 0.2);
    display: none;
}

.herken__panel-card--active {
    display: block;
}

.herken__panel-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 4px 10px;
    border-radius: 4px;
}

.herken__panel-card--engine .herken__panel-badge {
    color: #508991;
    background: rgba(80, 137, 145, 0.15);
}

.herken__panel-card--accelerate .herken__panel-badge {
    color: #D4A820;
    background: rgba(241, 194, 50, 0.12);
}

.herken__panel-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 14px;
}

.herken__panel-card-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.herken__panel-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.herken__panel-card--engine .herken__panel-card-link { color: #508991; }
.herken__panel-card--accelerate .herken__panel-card-link { color: #F1C232; }

.herken__panel-card-link:hover {
    opacity: 0.75;
}

/* Mobile panel — no longer needed */
.herken__panel-mobile {
    display: none;
}

/* Accordion details — alleen zichtbaar op mobiel */
.herken__item-detail {
    display: none;
}

/* Footer */
.herken__footer {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.herken__footer-text {
    font-size: 0.875rem;
    color: rgba(3, 17, 58, 0.45);
    margin: 0;
}

.herken__footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    background: #03113aff;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.herken__footer-cta:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .herken {
        padding: 64px 16px;
    }

    .herken__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .herken--panel-visible .herken__panel {
        display: none;
    }

    .herken__panel-mobile {
        display: block;
    }

    .herken__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Testimonial Section
   ======================================== */
.testimonial {
    padding: 96px 24px 56px;
    background: #03113aff;
}

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

.testimonial__header {
    margin-bottom: 40px;
}

.testimonial__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.testimonial__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.testimonial__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.testimonial__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

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

.testimonial__quote-mark {
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: #F1C232;
    opacity: 0.5;
    margin-bottom: 8px;
    margin-left: -4px;
}

.testimonial__quote {
    font-size: clamp(1rem, 1.5vw, 1.375rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial__author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid rgba(80, 137, 145, 0.25);
}

.testimonial__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.testimonial__author-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px;
}

.testimonial__author-role {
    font-size: 0.75rem;
    color: #508991;
    margin: 0;
}

.testimonial__slide {
    display: none;
}

.testimonial__slide--active {
    display: block;
    animation: testimonialFadeIn 0.4s ease;
}

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

.testimonial__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial__dot {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    padding: 0;
    width: 8px;
}

.testimonial__dot--active {
    width: 24px;
    background: #F1C232;
}

/* Visual / image placeholder */
.testimonial__image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    position: relative;
    background: rgba(80, 137, 145, 0.06);
    border: 1.5px solid rgba(80, 137, 145, 0.15);
}

.testimonial__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.testimonial__image-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(80, 137, 145, 0.04) 0px,
        rgba(80, 137, 145, 0.04) 1px,
        transparent 1px,
        transparent 12px
    );
}

.testimonial__image-icon {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial__image-caption {
    font-size: 0.75rem;
    font-family: monospace;
    text-align: center;
    color: #508991;
    opacity: 0.7;
    margin: 0;
}

.testimonial__image-label {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 14px;
    box-shadow: 0 2px 12px rgba(3, 17, 58, 0.08);
}

.testimonial__image-label-result {
    font-size: 0.8rem;
    font-weight: 700;
    color: #03113aff;
    margin: 0 0 2px;
    white-space: nowrap;
}

.testimonial__label-text {
    color: #508991;
}

.testimonial__image-label-sub {
    font-size: 0.7rem;
    color: rgba(3, 17, 58, 0.5);
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .testimonial {
        padding: 64px 16px;
    }

    .testimonial__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial__visual {
        order: -1;
    }
}

/* ========================================
   Intro Video Section
   ======================================== */
.intro-video {
    padding: 80px 24px 40px;
    background: #ffffff;
}

.intro-video__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.intro-video__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113a;
    margin-bottom: 8px;
}

.intro-video__text {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #03113a;
    opacity: 0.8;
    max-width: 720px;
}

.intro-video__player {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.intro-video__media {
    width: 100%;
    border-radius: 20px;
    border: none;
    display: block;
    background: transparent;
    object-fit: cover;
}

.intro-photo-grid {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.intro-photo-grid__featured {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    height: auto;
}

.intro-photo-grid__stack {
    display: none;
}

@media (min-width: 769px) {
    .intro-photo-grid {
        display: grid;
        grid-template-columns: 1.8fr 1fr;
        gap: 8px;
        height: 480px;
    }

    .intro-photo-grid__featured {
        height: 100%;
        border-radius: 0;
    }

    .intro-photo-grid__stack {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .intro-photo-grid__stack img {
        flex: 1;
        width: 100%;
        object-fit: cover;
        display: block;
    }
}

.intro-video__shape {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.intro-video__shape--left {
    background: #f3f4f6;
    left: -12px;
    top: 18px;
    border-radius: 18px;
    padding: 10px 22px;
    height: auto;
    width: auto;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .intro-video__shape--left {
        left: auto;
        top: auto;
        right: -12px;
        bottom: 18px;
    }
}

.intro-video__shape--right {
    width: 50px;
    height: 50px;
    background: #f1c232;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.intro-video__shape-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #03113a;
    text-align: left;
    line-height: 1.4;
}

.intro-video__shape-text--primary {
    font-size: 1.20rem;
}

.intro-video__shape-text--primary strong {
    font-weight: 900;
    letter-spacing: 0.03em;
}

.intro-video__play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 2px;
}

.intro-video__shape--right.is-playing .intro-video__play-icon {
    width: 14px;
    height: 14px;
    border: none;
    position: relative;
}

.intro-video__shape--right.is-playing .intro-video__play-icon::before,
.intro-video__shape--right.is-playing .intro-video__play-icon::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ffffff;
    border-radius: 1px;
}

.intro-video__shape--right.is-playing .intro-video__play-icon::before {
    left: 0;
}

.intro-video__shape--right.is-playing .intro-video__play-icon::after {
    right: 0;
}

@media (max-width: 900px) {
    .intro-video {
        padding: 60px 16px 24px;
    }

    .intro-video__player {
        max-width: 360px;
    }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 100px 24px 100px;
    background: #ffffff;
}

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

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

.features__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113aff;
}

.features__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.features__tablist-shell {
    width: 100%;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.features__tablist-shell::-webkit-scrollbar {
    display: none;
}

.features__tablist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.featuretab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 52px;
    width: 100%;
    padding: 0 18px;
    border: 0;
    background: var(--feature-tab-inactive-bg);
    text-align: left;
    border-radius: 999px;
    cursor: pointer;
    color: #03113aff;
    opacity: 0.6;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    border: 1px solid transparent;
    isolation: isolate;
}

.featuretab:hover {
    color: #3a8f8f;
    opacity: 1;
    background: rgba(58, 143, 143, 0.08);
}

.featuretab.active {
    color: #1a4f43;
    opacity: 1;
    background: var(--feature-tab-active-bg);
    box-shadow: inset 0 0 0 1.5px rgba(58, 143, 143, 0.4);
}

.featuretab--loading {
    color: #2c5e54;
}

.featuretab--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(var(--feature-tab-accent) var(--feature-tab-progress), transparent var(--feature-tab-progress));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
    --feature-tab-progress: 0deg;
    animation: featureTabProgress var(--feature-loading-duration) linear forwards;
}

@keyframes featureTabProgress {
    to {
        --feature-tab-progress: 360deg;
    }
}

.featuretab__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.featuretab__label {
    font-size: 1.125rem;
    font-weight: 500;
}

.features__panels {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.featurepanel {
    display: none;
}

.featurepanel.shown {
    display: block;
    animation: featureFadeIn 0.5s ease-out;
}

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

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

.featurepanel__phone img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.features__text {
    position: relative;
    width: 100%;
}

.featuretext {
    display: none;
}

.featuretext.shown {
    display: block;
    animation: featureFadeIn 0.5s ease-out;
}

.featuretext h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #03113aff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.featuretext p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 900px) {
    .features__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features__tablist-shell {
        overflow-x: auto;
        padding: 4px 12px 8px;
        scroll-padding-left: 12px;
    }

    .features__tablist {
        flex-direction: row;
    }

    .featuretab {
        width: auto;
        min-width: 210px;
    }

    .features__panels {
        order: 2;
        touch-action: pan-y;
    }

    .features__text {
        order: 3;
        text-align: center;
    }

    .features__swipe-hint {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 16px;
    }

    .features__header {
        margin-bottom: 40px;
    }

    .featuretab {
        min-width: 180px;
        padding: 0 16px;
    }

    .featuretab__label {
        font-size: 1.125rem;
    }

    .featuretext h3 {
        font-size: 1.5rem;
    }

    .featuretext p {
        font-size: 1.125rem;
    }
}

/* ========================================
   Case Study Section
   ======================================== */
.case-study {
    padding: 100px 24px 80px;
    background: #f8f9fa;
}

.case-study__container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-study__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #03113aff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Lighter title styling for services pages */
.case-study--services .case-study__title {
    font-size: 2.75rem;
    font-weight: 400;
    margin-bottom: 60px;
    letter-spacing: normal;
    line-height: 1.2;
}

.case-study__carousel {
    position: relative;
    margin-bottom: 48px;
    min-height: 500px;
}

.case-study__card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8eaed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
    min-height: 500px;
}

#case-2,
#case-3,
#case-4,
#case-5 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.case-study__carousel.show-case-2 #case-2 {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.case-study__carousel.show-case-2 #case-1,
.case-study__carousel.show-case-2 #case-3,
.case-study__carousel.show-case-2 #case-4 {
    opacity: 0;
    pointer-events: none;
}

.case-study__carousel.show-case-3 #case-3 {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.case-study__carousel.show-case-3 #case-1,
.case-study__carousel.show-case-3 #case-2,
.case-study__carousel.show-case-3 #case-4,
.case-study__carousel.show-case-3 #case-5 {
    opacity: 0;
    pointer-events: none;
}

.case-study__carousel.show-case-4 #case-4 {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.case-study__carousel.show-case-4 #case-1,
.case-study__carousel.show-case-4 #case-2,
.case-study__carousel.show-case-4 #case-3,
.case-study__carousel.show-case-4 #case-5 {
    opacity: 0;
    pointer-events: none;
}

.case-study__carousel.show-case-5 #case-5 {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.case-study__carousel.show-case-5 #case-1,
.case-study__carousel.show-case-5 #case-2,
.case-study__carousel.show-case-5 #case-3,
.case-study__carousel.show-case-5 #case-4 {
    opacity: 0;
    pointer-events: none;
}

.case-study__content {
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.case-study__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.case-study__logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.case-study__logo-box {
    width: 56px;
    height: 56px;
    background: #03113aff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study__logo-text {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
    transform: scaleX(0.85);
    display: inline-block;
}

.case-study__heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
}

.case-study__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.8;
    margin: 0;
}

.case-study__intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.7;
    margin: 0;
    max-width: 600px;
}

.case-study__quote-icon-large {
    opacity: 0.9;
    color: #03113aff;
    transform: rotate(180deg);
    margin-bottom: 24px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.case-study__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    padding: 32px 64px;
}

.case-study__quote-icon {
    flex-shrink: 0;
    opacity: 0.25;
    color: #0066FF;
}

.case-study__quote-icon--open {
    transform: rotate(180deg);
}

.case-study__quote-icon--close {
    /* No special styling needed */
}

.case-study__quote-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #03113aff;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.case-study__image-wrapper {
    position: relative;
    display: flex;
    align-self: stretch;
}

.case-study__image {
    width: 100%;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    position: relative;
}

.case-study__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.case-study__stat {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(12px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    width: 50%;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.case-study__stat-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.case-study__stat-logo img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.case-study__stat-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #03113aff;
    line-height: 1.3;
    text-align: center;
}

.case-study__stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #03113aff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.case-study__stat-label {
    font-size: 1.125rem;
    color: #03113aff;
    line-height: 1.4;
    font-weight: 400;
}

.case-study__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.case-study__toggle-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadce0;
    border-radius: 50%;
    color: #03113aff;
    transition: all 0.2s ease;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.case-study__toggle-btn:hover {
    background: #f8f9fa;
    border-color: #508991;
    color: #508991;
}

.case-study__carousel.show-case-2 .case-study__toggle-btn svg,
.case-study__carousel.show-case-3 .case-study__toggle-btn svg,
.case-study__carousel.show-case-4 .case-study__toggle-btn svg,
.case-study__carousel.show-case-5 .case-study__toggle-btn svg {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .case-study {
        padding: 80px 24px 60px;
    }

    .case-study__title {
        margin-bottom: 60px;
    }

    .case-study--services .case-study__title {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }

    .case-study__card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .case-study__content {
        gap: 24px;
        padding: 40px 24px;
        margin-left: 0;
        align-items: center;
        display: flex;
    }

    .case-study__logo {
        justify-content: center;
        order: 1;
    }

    .case-study__quote-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .case-study__quote {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .case-study__quote-text {
        font-size: 1.2rem;
        width: 100%;
    }

    .case-study__quote-icon {
        width: 28px;
        height: 28px;
    }

    .case-study__heading {
        text-align: center;
        order: 2;
    }

    .case-study__image-wrapper {
        justify-content: center;
        margin: 0;
        align-self: auto;
        order: 3;
    }

    .case-study__text {
        text-align: center;
        order: 4;
    }

    .case-study__intro {
        text-align: center;
        order: 2;
    }

    .case-study__image {
        width: 100%;
        max-width: 400px;
        aspect-ratio: 4/5;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .case-study {
        padding: 60px 16px 48px;
    }

    .case-study__title {
        margin-bottom: 48px;
        font-size: 2rem;
    }

    .case-study--services .case-study__title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .case-study__card {
        padding: 32px 24px;
        gap: 32px;
        border-radius: 16px;
    }

    .case-study__content {
        gap: 20px;
        padding: 32px 16px;
    }

    .case-study__quote-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .case-study__quote {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .case-study__quote-text {
        font-size: 1.2rem;
        line-height: 1.6;
        width: 100%;
    }

    .case-study__quote-icon {
        width: 24px;
        height: 24px;
    }

    .case-study__logo-box {
        width: 48px;
        height: 48px;
    }

    .case-study__logo-text {
        font-size: 1.5rem;
    }

    .case-study__heading {
        font-size: 1.5rem;
    }

    .case-study__text {
        font-size: 1.125rem;
    }

    .case-study__intro {
        font-size: 1.125rem;
    }

    .case-study__stat {
        bottom: 20px;
        right: 20px;
        width: 50%;
        max-width: 140px;
    }

    .case-study__stat-number {
        font-size: 2.5rem;
    }

    .case-study__stat-label {
        font-size: 1.125rem;
    }
}

/* ========================================
   Painpoints Section
   ======================================== */
.painpoints {
    padding: 80px 24px;
    background: #ffffff;
}

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

.painpoints__title {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}


.painpoints__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.painpoints__item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: center;
    border-radius: 16px;
    padding: 24px;
}

.painpoints__graphic {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
}

.painpoints__graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.painpoints__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.painpoints__item-title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    color: #03113aff;
    margin: 0;
    line-height: 1.3;
}

.painpoints__item-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 900px) {
    .painpoints__item {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
        padding: 32px 24px;
    }

    .painpoints__content {
        align-items: center;
    }

    .painpoints__graphic {
        min-height: 180px;
    }

    .painpoints__item-title {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .painpoints {
        padding: 60px 16px;
    }

    .painpoints__title {
        margin-bottom: 40px;
    }

    .painpoints__grid {
        gap: 24px;
    }

    .painpoints__item {
        padding: 24px;
    }

    .painpoints__graphic {
        padding: 24px;
        min-height: 160px;
    }

    .painpoints__item-title {
        font-size: 1.25rem;
    }

    .painpoints__item-text {
        font-size: 1.125rem;
    }
}

/* ========================================
   About Team Section
   ======================================== */
.about-team {
    padding: 72px 24px 64px;
    background: #F8F8FA;
}

.about-team__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-team__header {
    margin-bottom: 48px;
    text-align: left;
}

.about-team__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-team__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.about-team__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.about-team__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.1;
    margin: 0;
}

.about-team__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-height: 520px;
}

.about-team__main {
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
}

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

.about-team__side {
    border-radius: 16px;
    overflow: hidden;
}

.about-team__side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-team__stat {
    background: #F8F8FA;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.about-team__stat-number {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: #03113A;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-team__stat-unit {
    font-size: 0.55em;
    color: #508991;
    vertical-align: super;
}

.about-team__stat-label {
    font-size: 0.9375rem;
    color: rgba(3, 17, 58, 0.55);
    line-height: 1.45;
}

.about-team__footer {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.about-team__caption {
    font-size: 0.875rem;
    color: rgba(3, 17, 58, 0.45);
    margin: 0;
}

.about-team__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #03113aff;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.about-team__link:hover {
    color: #508991;
}

@media (max-width: 768px) {
    .about-team {
        padding: 56px 16px 48px;
    }

    .about-team__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
        gap: 12px;
    }

    .about-team__main {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }

    .about-team__side {
        aspect-ratio: 1 / 1;
    }

    .about-team__stat {
        padding: 24px;
    }

    .about-team__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Three Layers Section
   ======================================== */
.three-layers {
    padding: 96px 24px 80px;
    background: #F8F8FA;
}

.three-layers__container {
    max-width: 1200px;
    margin: 0 auto;
}

.three-layers__header {
    margin-bottom: 48px;
}

.three-layers__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.three-layers__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.three-layers__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.three-layers__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.1;
    margin: 0;
}

.three-layers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.three-layers__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(3, 17, 58, 0.05), 0 1px 3px rgba(3, 17, 58, 0.04);
}

.three-layers__card:hover {
    box-shadow: 0 12px 40px rgba(3, 17, 58, 0.12), 0 4px 12px rgba(3, 17, 58, 0.06);
    transform: translateY(-5px);
}

.three-layers__card--engine  { border: 2px solid rgba(80, 137, 145, 0.22); }
.three-layers__card--intelligence { border: 2px solid rgba(3, 17, 58, 0.1); }
.three-layers__card--accelerate { border: 2px solid rgba(241, 194, 50, 0.35); }

.three-layers__card--engine:hover  { border-color: rgba(80, 137, 145, 0.7); }
.three-layers__card--intelligence:hover { border-color: rgba(3, 17, 58, 0.35); }
.three-layers__card--accelerate:hover { border-color: rgba(241, 194, 50, 0.8); }

.three-layers__card-header {
    padding: 24px 24px 20px;
    border-bottom: 1.5px solid;
}

.three-layers__card--engine .three-layers__card-header {
    background: linear-gradient(160deg, rgba(80, 137, 145, 0.1) 0%, rgba(80, 137, 145, 0.04) 100%);
    border-bottom-color: rgba(80, 137, 145, 0.2);
}

.three-layers__card--intelligence .three-layers__card-header {
    background: linear-gradient(160deg, rgba(3, 17, 58, 0.06) 0%, rgba(3, 17, 58, 0.02) 100%);
    border-bottom-color: rgba(3, 17, 58, 0.1);
}

.three-layers__card--accelerate .three-layers__card-header {
    background: linear-gradient(160deg, rgba(241, 194, 50, 0.1) 0%, rgba(241, 194, 50, 0.03) 100%);
    border-bottom-color: rgba(241, 194, 50, 0.28);
}

.three-layers__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.three-layers__card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.three-layers__card--engine .three-layers__card-label { color: #508991; }
.three-layers__card--intelligence .three-layers__card-label { color: #03113aff; }
.three-layers__card--accelerate .three-layers__card-label { color: #d4a820; }

.three-layers__card-number {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.three-layers__card--engine .three-layers__card-number { color: rgba(80, 137, 145, 0.25); }
.three-layers__card--intelligence .three-layers__card-number { color: rgba(3, 17, 58, 0.18); }
.three-layers__card--accelerate .three-layers__card-number { color: rgba(212, 168, 32, 0.35); }

.three-layers__card-visual {
    height: 140px;
    display: flex;
    align-items: center;
}

.three-layers__card-visual svg {
    width: 100%;
    height: 100%;
}

.three-layers__card-body {
    padding: 24px 24px 28px;
}

.three-layers__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #03113aff;
    line-height: 1.3;
    margin: 0 0 8px;
}

.three-layers__card-desc {
    font-size: 0.8125rem;
    font-weight: 600;
    margin: 0 0 14px;
}

.three-layers__card--engine .three-layers__card-desc { color: #508991; }
.three-layers__card--intelligence .three-layers__card-desc { color: rgba(3, 17, 58, 0.5); }
.three-layers__card--accelerate .three-layers__card-desc { color: #d4a820; }

.three-layers__card-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(3, 17, 58, 0.55);
    margin: 0 0 22px;
}

.three-layers__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.three-layers__card--engine .three-layers__card-link { color: #508991; }
.three-layers__card--intelligence .three-layers__card-link { color: #03113aff; }
.three-layers__card--accelerate .three-layers__card-link { color: #d4a820; }

@media (max-width: 900px) {
    .three-layers__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .three-layers {
        padding: 56px 16px 48px;
    }

    .three-layers__card-visual {
        height: 100px;
    }
}

/* ========================================
   Cases Section
   ======================================== */
.cases {
    padding: 96px 24px 80px;
    background: #ffffff;
}

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

.cases__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.cases__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cases__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.cases__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.cases__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113A;
    line-height: 1.1;
    margin: 0;
}

.cases__all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #508991;
    flex-shrink: 0;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.cases__all-link:hover {
    color: #03113A;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cases__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 4;
    background: #03113A;
}

.cases__card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease;
}

.cases__card:hover .cases__card-bg {
    transform: scale(1.04);
}

.cases__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(3, 17, 58, 0.1) 0%,
        rgba(3, 17, 58, 0.35) 45%,
        rgba(3, 17, 58, 0.88) 100%
    );
    transition: background 0.3s ease;
}

.cases__card:hover .cases__card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(3, 17, 58, 0.25) 0%,
        rgba(3, 17, 58, 0.52) 45%,
        rgba(3, 17, 58, 0.93) 100%
    );
}

.cases__card-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.cases__card-tags .cases__tag:not(:first-child) {
    display: none;
}

.cases__tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: fit-content;
}

.cases__tag--teal {
    color: #7bb8be;
    border: 1px solid rgba(80, 137, 145, 0.4);
}

.cases__tag--yellow {
    color: #F1C232;
    border: 1px solid rgba(241, 194, 50, 0.4);
}

.cases__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.cases__card-client {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 8px;
    letter-spacing: 0.03em;
}

.cases__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.cases__card-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.cases__card:hover .cases__card-reveal {
    max-height: 180px;
}

.cases__card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 12px 0 16px;
}

.cases__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    color: #03113A;
}

.cases__card-cta--teal { background: #508991; }
.cases__card-cta--yellow { background: #F1C232; }

@media (max-width: 900px) {
    .cases__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cases__card {
        aspect-ratio: 4 / 3;
    }

    .cases__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .cases__card {
        aspect-ratio: 3 / 2;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 96px 24px 80px;
    background: #ffffff;
}

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

.services__header {
    margin-bottom: 40px;
}

.services__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.services__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.services__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.services__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.1;
    margin: 0;
}

.services__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(3, 17, 58, 0.08);
    margin-bottom: 40px;
}

.services__tab {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid rgba(3, 17, 58, 0.12);
    background: transparent;
    color: rgba(3, 17, 58, 0.5);
}

.services__tab--active {
    background: #03113aff;
    color: #ffffff;
    border-color: #03113aff;
}

.services__tab:not(.services__tab--active):hover {
    border-color: rgba(3, 17, 58, 0.3);
    color: #03113aff;
}

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

.services__intro-text {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
    color: #03113aff;
    margin: 0 0 24px;
}

.services__all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #508991;
    text-decoration: none;
    transition: color 0.2s ease;
}

.services__all-link:hover {
    color: #03113aff;
}

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

.services__card {
    display: block;
    padding: 24px;
    background: #F8F8FA;
    border: 1.5px solid rgba(3, 17, 58, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.services__card:hover {
    background: #ffffff;
    border-color: rgba(3, 17, 58, 0.2);
    box-shadow: 0 4px 16px rgba(3, 17, 58, 0.07);
    transform: translateY(-2px);
}

.services__card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #03113aff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.services__card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(3, 17, 58, 0.5);
    margin: 0 0 16px;
}

.services__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #508991;
}

@media (max-width: 768px) {
    .services {
        padding: 56px 16px 48px;
    }

    .services__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

/* ========================================
   Support CTA
   ======================================== */
.support-cta {
    padding: 96px 24px 96px;
    background: #03113aff;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.support-cta__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-cta__card {
    background: transparent;
    padding: 0;
}

.support-cta__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.support-cta__text {
    max-width: 580px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.support-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.support-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    border: none;
    background: #508991;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.support-cta__phone:hover {
    opacity: 0.85;
}

.support-cta__email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.support-cta__email:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.support-cta__phone-icon,
.support-cta__email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-cta__phone-number,
.support-cta__email-text {
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .support-cta {
        padding: 72px 16px 96px;
    }

    .support-cta__card {
        border-radius: 32px;
    }

    .support-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .support-cta__phone,
    .support-cta__email {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Hero Responsive Adjustments
   ======================================== */
@media (max-width: 1023px) {
    .hero__content {
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero__container {
        gap: 20px;
    }

    .hero__content {
        padding: 0;
        gap: 24px;
    }

    .hero__title {
        order: 1;
        margin-top: 0;
        position: relative;
        z-index: 2;
        font-size: clamp(2.6rem, 11vw, 3.5rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .hero__subtitle,
    .hero__actions {
        position: relative;
        z-index: 2;
    }

    .hero__visual {
        display: none;
    }

    .hero__title-line {
        white-space: normal;
    }

    .hero__rotating-words {
        width: 100%;
        min-width: 0;
        min-height: 2.2em;
    }

    .hero__rotating-word {
        white-space: normal;
        width: 100%;
        left: 0;
        transform: none;
        text-align: center;
    }

    .hero__subtitle {
        order: 3;
    }

    .hero__actions {
        order: 4;
    }

    .hero__visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 24px auto 0;
        width: 100%;
        max-width: 420px;
        z-index: 0;
    }

    .shopping-card {
        padding: 16px;
        position: relative;
        z-index: 0;
    }

    .shopping-card__state {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .shopping-card__image {
        width: 92%;
        max-width: none;
        height: calc(var(--card-size) * 0.8);
        min-height: 200px;
        margin: 0 auto;
    }

    .shopping-card__image img {
        object-fit: contain;
    }

    .hero__scroll-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 32px 16px;
    }

    .hero__rotating-words {
        min-height: 2.4em;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero__visual {
        max-width: 360px;
    }
}

@media (max-width: 360px) {
    .shopping-card {
        padding: 12px;
    }

    .shopping-card__image {
        width: 95%;
        height: calc(var(--card-size) * 0.84);
    }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    width: 100%;
    background: #f5f7fb;
    padding: 48px 24px;
    color: #03113a;
}

.site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.site-footer__social-section,
.site-footer__awards-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2435;
    margin: 0;
    display: none;
}

.site-footer__social {
    display: flex;
    gap: 12px;
}

.site-footer__social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dfe3ea;
    background: #ffffff;
    color: #03113a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-footer__social-icon:hover {
    background: #03113a;
    color: #ffffff;
    border-color: #03113a;
}

.site-footer__awards {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer__awards img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .site-footer__section-title {
        display: block;
    }

    .site-footer__social-section {
        width: 100%;
        order: 1;
    }

    .site-footer__awards-section {
        width: 100%;
        order: 2;
    }

    .site-footer__social {
        justify-content: flex-start;
    }

    .site-footer__awards {
        justify-content: flex-start;
    }

    .site-footer__awards img {
        height: 32px;
    }
}

.site-footer__divider {
    width: 100%;
    height: 1px;
    background: #e2e6ef;
    margin: 32px 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 32px;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    color: #1f2435;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
}

.site-footer__column-header:focus-visible {
    outline: 2px solid #2e74c7;
    outline-offset: 4px;
    border-radius: 4px;
}

.site-footer__column-title {
    flex: 1;
}

.site-footer__column-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.site-footer__column--open .site-footer__column-icon {
    transform: rotate(180deg);
}

.site-footer__column-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__column a {
    display: block;
    font-size: 1.125rem;
    color: #495067;
    text-decoration: none;
}

.site-footer__column a:hover {
    color: #2e74c7;
}

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

@media (max-width: 480px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer__column {
        padding: 12px 0;
        border-bottom: 1px solid #e2e6ef;
    }

    .site-footer__column:last-child {
        border-bottom: none;
    }

    .site-footer__column-content {
        display: none;
    }

    .site-footer__column--open .site-footer__column-content {
        display: flex;
    }
}

@media (min-width: 769px) {
    .site-footer__column {
        padding: 0;
        border-bottom: none;
    }

    .site-footer__column-header {
        cursor: default;
        pointer-events: none;
    }

    .site-footer__column-icon {
        display: none;
    }

    .site-footer__column-content {
        display: flex;
    }
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.125rem;
}

.site-footer__brand {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__links a {
    color: #495067;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: #2e74c7;
}

.site-footer__help {
    color: #495067;
    text-decoration: none;
    font-weight: 500;
}

.site-footer__help:hover {
    color: #2e74c7;
}

/* ========================================
   About Page - Hero Section
   ======================================== */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 72px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.about-hero__container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.about-hero__content {
    text-align: center;
}

.about-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.about-hero__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.about-hero__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.about-hero__title {
    display: flex;
    flex-direction: column;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-hero__title-line {
    color: #03113aff;
}

.about-hero__title-line--accent {
    color: #508991;
}

.about-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(3, 17, 58, 0.65);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px 64px;
    }
}

/* ========================================
   About Page - Story Section
   ======================================== */
.about-story {
    padding: 96px 24px 80px;
    background: #ffffff;
}

.about-story__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "label visual"
        "title visual"
        "intro visual"
        "text visual";
    gap: 0 80px;
    align-items: start;
}

.about-story__label {
    grid-area: label;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.about-story__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.about-story__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.about-story__title {
    grid-area: title;
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-story__intro {
    grid-area: intro;
    margin-bottom: 24px;
}

.about-story__intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.85;
    margin: 0;
}

.about-story__text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-story__text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.85;
    margin: 0;
}

.about-story__visual {
    grid-area: visual;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story__visual img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    border-radius: 24px;
}

@media (max-width: 900px) {
    .about-story__container {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .about-story__label { order: 1; }
    .about-story__title { order: 2; }
    .about-story__intro { order: 3; }
    .about-story__visual { order: 4; margin: 24px 0 32px; }
    .about-story__text { order: 5; }
}

@media (max-width: 768px) {
    .about-story {
        padding: 56px 20px 48px;
    }

    .about-story__intro p,
    .about-story__text p {
        font-size: 1rem;
    }
}

/* ========================================
   About Page - Current Section
   ======================================== */
.about-current {
    padding: 96px 24px 80px;
    background: #F8F8FA;
}

.about-current__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "visual label"
        "visual title"
        "visual intro"
        "visual text";
    gap: 0 80px;
    align-items: start;
}

.about-current__label {
    grid-area: label;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.about-current__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.about-current__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.about-current__visual {
    grid-area: visual;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-current__visual img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    border-radius: 24px;
}

.about-current__title {
    grid-area: title;
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-current__intro {
    grid-area: intro;
    margin-bottom: 24px;
}

.about-current__intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.85;
    margin: 0;
}

.about-current__text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-current__text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 900px) {
    .about-current__container {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .about-current__label { order: 1; }
    .about-current__title { order: 2; }
    .about-current__intro { order: 3; }
    .about-current__visual { order: 4; margin: 24px 0 32px; }
    .about-current__text { order: 5; }
}

@media (max-width: 768px) {
    .about-current {
        padding: 56px 20px 48px;
    }

    .about-current__intro p,
    .about-current__text p {
        font-size: 1rem;
    }
}

/* ========================================
   About Page - Values Section
   ======================================== */
.about-values {
    padding: 96px 24px 80px;
    background: #ffffff;
}

.about-values__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values__header {
    margin-bottom: 56px;
    text-align: center;
}

.about-values__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-values__label-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #508991;
}

.about-values__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #508991;
}

.about-values__carousel {
    position: relative;
    overflow: visible;
}

.about-values__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    margin: 0;
}

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

.about-values__grid--two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.about-values__item {
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    background: #f8f9fa;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-values__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-values__icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-values__icon--yellow {
    background: rgba(241, 194, 50, 0.12);
    color: #d4a820;
}

.about-values__icon--teal {
    background: rgba(80, 137, 145, 0.12);
    color: #508991;
}

.about-values__icon--navy {
    background: rgba(3, 17, 58, 0.07);
    color: #03113aff;
}

.about-values__icon--gold {
    background: rgba(241, 194, 50, 0.12);
    color: #d4a820;
}

.about-values__item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #03113aff;
    margin: 0;
    line-height: 1.3;
}

.about-values__item-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(3, 17, 58, 0.65);
    margin: 0;
}

@media (max-width: 768px) {
    .about-values {
        padding: 56px 20px 48px;
        overflow: hidden;
    }

    .about-values__header {
        margin-bottom: 40px;
        text-align: left;
    }

    .about-values__carousel {
        margin: 0 -20px;
        padding: 0 20px;
    }

    .about-values__carousel::before {
        content: 'Swipe voor meer';
        display: block;
        text-align: left;
        font-size: 0.6875rem;
        color: rgba(3, 17, 58, 0.35);
        margin-bottom: 16px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .about-values__grid.about-values__track {
        display: flex;
        grid-template-columns: unset;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        padding: 8px 0 24px;
        margin: 0 -24px;
        padding-left: calc(50vw - 140px);
        padding-right: calc(50vw - 140px);
        will-change: scroll-position;
    }

    .about-values__grid.about-values__track::-webkit-scrollbar {
        display: none;
    }

    .about-values__grid.about-values__track {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .about-values__item {
        flex: 0 0 280px;
        scroll-snap-align: center;
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-values__grid.about-values__track {
        padding-left: 7.5vw;
        padding-right: 7.5vw;
    }

    .about-values__item {
        flex: 0 0 85vw;
        min-width: 85vw;
    }
}

/* ========================================
   About Page - Team Section
   ======================================== */
.about-team {
    padding: 100px 24px;
    background: #ffffff;
}

.about-team__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-team__header {
    text-align: center;
    margin-bottom: 80px;
}

.about-team__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.about-team__subtitle {
    font-size: 1.25rem;
    color: #03113aff;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-team__member {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.about-team__member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4e8eb 0%, #c1dfe3 100%);
}

.about-team__member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #508991;
}

.about-team__member-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-team__member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #03113aff;
    margin: 0;
    line-height: 1.3;
}

.about-team__member-role {
    font-size: 1.125rem;
    color: #508991;
    font-weight: 500;
    margin: 0;
}

.about-team__member-bio {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.75;
    margin: 0;
}

@media (max-width: 768px) {
    .about-team {
        padding: 80px 24px;
    }

    .about-team__header {
        margin-bottom: 60px;
    }

    .about-team__member-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .about-team__member-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ========================================
   About Page - CTA Section
   ======================================== */
.about-cta {
    padding: 96px 24px 120px;
}

.about-cta__container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-cta__card {
    background: #f2f4f7;
    border-radius: 32px;
    padding: clamp(48px, 6vw, 72px);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.about-cta__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #202124;
    margin-bottom: 16px;
}

.about-cta__text {
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #5f6368;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.about-cta__phone,
.about-cta__email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid #d2d5da;
    background: #ffffff;
    color: #03113aff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.about-cta__phone:hover,
.about-cta__email:hover {
    border-color: #03113aff;
    box-shadow: 0 4px 12px rgba(3, 17, 58, 0.15);
}

.about-cta__phone-icon,
.about-cta__email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-cta__phone-number,
.about-cta__email-text {
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .about-cta {
        padding: 72px 16px 96px;
    }

    .about-cta__card {
        border-radius: 32px;
    }

    .about-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .about-cta__phone,
    .about-cta__email {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Article Pages (Knowledge Base)
   ======================================== */
.article-hero {
    padding: 120px 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
}

.article-hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.article-hero__category {
    display: inline-block;
    padding: 6px 12px;
    background: #4285F4;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-hero__date {
    font-size: 1.125rem;
    color: #5f6368;
}

.article-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.article-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5f6368;
    margin-bottom: 40px;
}

.article-hero__image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 100px 20px 40px;
    }

    .article-hero__title {
        font-size: 1.75rem;
    }

    .article-hero__subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .article-hero__image {
        border-radius: 8px;
    }
}

/* Article Content */
.article-content {
    padding: 80px 24px 100px;
    background: #ffffff;
}

.article-content__container {
    max-width: 800px;
    margin: 0 auto;
}

.article-content__body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #03113aff;
    margin: 48px 0 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-content__body h2:first-child {
    margin-top: 0;
}

.article-content__body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #03113aff;
    margin-bottom: 24px;
}

.article-content__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .article-content__body h2 {
        font-size: 1.5rem;
        margin: 40px 0 16px;
    }

    .article-content__body p {
        font-size: 1.125rem;
    }
}

@media (max-width: 600px) {
    .article-content {
        padding: 60px 16px 80px;
    }
}

/* ========================================
   Blog Post Structure
   ======================================== */
.blog-post {
    background: #ffffff;
}

.post-header {
    padding: 120px 24px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.post-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.post-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #508991;
    margin-bottom: 25px;
}

.post-label--breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post-label__link {
    color: #508991;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.post-label__link:hover {
    opacity: 0.7;
}

.post-label__separator {
    color: #508991;
    opacity: 0.6;
}

.post-label__current {
    color: #508991;
}

.case-study-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
    padding: 32px 0;
}

.case-study-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.case-study-stat__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #508991;
    line-height: 1.2;
}

.case-study-stat__label {
    font-size: 0.9375rem;
    color: #5f6368;
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.post-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #03113aff;
    margin-bottom: 32px;
}

.post-disclaimer {
    font-size: 0.9375rem;
    color: #5f6368;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e8eaed;
}

.post-cta {
    margin-bottom: 40px;
}

.post-cta .btn--primary {
    background: #f4f6fb;
    color: #03113aff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.post-cta .btn--primary:hover {
    background: #e8ecf5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.post-cta-double {
    display: flex;
    gap: 16px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.post-content .hero__actions {
    justify-content: flex-start;
    margin: 48px 0;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #4285F4;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.cta-link:hover {
    background: #3367d6;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

/* Post Divider */
.post-divider {
    border: none;
    border-top: 1px solid #e8eaed;
    margin: 12px 0;
}

/* Post Meta */
.post-meta {
    margin: 0;
    padding: 16px 0;
    display: flex;
    align-items: center;
}

.post-meta .meta {
    width: 100%;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.meta.fl {
    justify-content: space-between;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    color: #5f6368;
}

.meta-author {
    gap: 12px;
}

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8eaed;
}

.author-name {
    font-weight: 600;
    color: #03113aff;
}

.meta-other {
    display: flex;
    gap: 20px;
}

/* Hero Image */
.hero-image {
    margin-bottom: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.post-featured-image {
    margin: 32px 0 48px;
}

.post-featured-image img,
.post-featured-image .image-placeholder {
    width: 100%;
    border-radius: 8px;
}

.post-featured-image img {
    height: auto;
}

.post-image {
    margin: 40px 0;
}

.post-image__with-overlay {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.post-image__with-overlay img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.post-image__with-overlay--svg img {
    max-width: 100%;
    background: #f8f9fa;
    border-radius: 12px;
}

.post-image__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(3, 17, 58, 0.9), transparent);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.post-image__overlay-metric {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.post-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.post-image .image-placeholder {
    width: 100%;
}

.post-image figcaption {
    margin-top: 12px;
    font-size: 0.9375rem;
    color: #5f6368;
    font-style: italic;
}

/* Content Typography */
.post-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #03113aff;
    margin: 48px 0 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.post-content h2:first-of-type {
    margin-top: 0;
}

.post-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #03113aff;
    margin-bottom: 24px;
}

.post-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.post-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #03113aff;
    margin-bottom: 12px;
}

.post-content strong {
    font-weight: 600;
    color: #03113aff;
}

.post-content a {
    color: #4285F4;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.post-content a:hover {
    color: #3367d6;
}

/* Guide comparison table */
.guide-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    border: 1px solid #e8eaed;
    border-radius: 8px;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.guide-table th,
.guide-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e8eaed;
    color: #03113aff;
}

.guide-table th {
    font-weight: 600;
    background: #f8f9fa;
}

.guide-table th:first-child {
    width: 140px;
}

.guide-table tbody tr:last-child td {
    border-bottom: none;
}

.guide-table td:first-child {
    font-weight: 500;
}

@media (max-width: 640px) {
    .guide-table th,
    .guide-table td {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }

    .guide-table th:first-child {
        width: 100px;
    }
}

/* FAQ Section */
.faq-container {
    padding: 60px 20px;
    background: #ffffff;
}

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

.faq-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 40px;
    text-align: center;
}

.faq-section {
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid #e8eaed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #03113aff;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #4285F4;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: #5f6368;
}

.faq-question:hover .faq-icon {
    stroke: #4285F4;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    margin: 0;
}

/* Related Posts */
.related-posts {
    margin-top: 64px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.related-posts h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #03113aff;
    margin: 0 0 24px;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.related-list li {
    margin: 0;
}

.related-list a {
    display: block;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    color: #03113aff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e8eaed;
}

.related-list a:hover {
    border-color: #4285F4;
    background: #f0f7ff;
    transform: translateX(4px);
}

/* WhatsApp Contact Section */
.whatsapp-contact-section {
    margin-top: 64px;
    padding: 48px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.whatsapp-contact-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.whatsapp-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.whatsapp-icon svg {
    color: #ffffff;
}

.whatsapp-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.whatsapp-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #ffffff;
    color: #25D366;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

/* Reviews Section */
.reviews-section {
    margin-top: 64px;
    padding: 48px 0;
}

.reviews-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #03113aff;
    margin: 0 0 40px;
    text-align: center;
}

.reviews-list {
    display: grid;
    gap: 32px;
}

.review-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    transition: all 0.2s ease;
}

.review-card:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.1);
}

.review-avatar {
    flex-shrink: 0;
}

.review-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-content {
    flex: 1;
}

.review-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    margin: 0 0 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #03113aff;
}

.review-role {
    font-size: 1.125rem;
    color: #5f6368;
}

/* About Section */
.about-section {
    margin-top: 64px;
    padding: 48px;
    background: #f8f9fa;
    border-radius: 12px;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #03113aff;
    margin: 0 0 24px;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    margin: 0;
    max-width: 700px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .post-header {
        padding: 45px 20px 24px;
    }

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

    .post-content {
        padding: 0 20px 60px;
    }

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

    .post-content h2 {
        font-size: 1.5rem;
        margin: 40px 0 16px;
    }

    .post-content p,
    .post-content li {
        font-size: 1.125rem;
    }

    .meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        padding: 8px 0;
    }

    .meta-other {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        margin-left: auto;
    }

    .related-posts {
        padding: 32px 24px;
    }

    .whatsapp-contact-section {
        padding: 32px 24px;
    }

    .whatsapp-text h3 {
        font-size: 1.25rem;
    }

    .whatsapp-text p {
        font-size: 1.125rem;
    }

    .review-card {
        flex-direction: column;
        padding: 24px;
    }

    .review-avatar img {
        width: 64px;
        height: 64px;
    }

    .about-section {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .post-header,
    .post-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-image {
        border-radius: 8px;
    }

    .related-posts,
    .whatsapp-contact-section,
    .about-section {
        border-radius: 8px;
    }
}

/* ========================================
   Kennis Page (Knowledge Base)
   ======================================== */
.knowledge-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.knowledge-hero__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.knowledge-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.knowledge-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #03113aff;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 48px;
}

.knowledge-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.knowledge-search__icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #03113aff;
    opacity: 0.5;
    pointer-events: none;
}

.knowledge-search__input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    font-size: 1.125rem;
    font-family: 'DM Sans', sans-serif;
    border: 2px solid #e8eaed;
    border-radius: 999px;
    background: #ffffff;
    color: #03113aff;
    transition: all 0.2s ease;
    outline: none;
}

.knowledge-search__input:focus {
    border-color: #508991;
    box-shadow: 0 0 0 4px rgba(80, 137, 145, 0.1);
}

.knowledge-search__input::placeholder {
    color: #03113aff;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .knowledge-hero {
        min-height: 50vh;
        padding: 100px 24px 60px;
    }
}

.knowledge-filters {
    padding: 40px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    position: sticky;
    top: 96px;
    z-index: 50;
}

.knowledge-filters__container {
    max-width: 1200px;
    margin: 0 auto;
}

.knowledge-filters__tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.knowledge-filter-tab {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #e8eaed;
    background: #ffffff;
    color: #03113aff;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.knowledge-filter-tab:hover {
    background: #f8f9fa;
    border-color: #508991;
}

.knowledge-filter-tab.active {
    background: #508991;
    color: #ffffff;
    border-color: #508991;
}

@media (max-width: 768px) {
    .knowledge-filters {
        top: 76px;
        padding: 24px 16px;
    }

    .knowledge-filters__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .knowledge-filters__tabs::-webkit-scrollbar {
        display: none;
    }

    .knowledge-filter-tab {
        flex-shrink: 0;
    }
}

.knowledge-content {
    padding: 80px 24px 120px;
    background: #ffffff;
}

.knowledge-content__container {
    max-width: 1200px;
    margin: 0 auto;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .knowledge-content {
        padding: 60px 24px 100px;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.knowledge-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.knowledge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #508991;
}

.knowledge-card__link {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-height: 100%;
}

.knowledge-card__image {
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.knowledge-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.knowledge-card:hover .knowledge-card__image img {
    transform: scale(1.05);
}

.knowledge-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 24px 0;
}

.knowledge-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.knowledge-card__badge--guides {
    background: #E8F0FE;
    color: #4285F4;
}

.knowledge-card__badge--case {
    background: #E6F4EA;
    color: #34A853;
}

.knowledge-card__badge--blog {
    background: #FEF3E2;
    color: #E5A000;
}

.knowledge-card__badge--webinar {
    background: #FCE8E6;
    color: #D93025;
}

.knowledge-card__badge--case-studies {
    background: #E6F4EA;
    color: #34A853;
}

.knowledge-card__title {
    padding: 12px 24px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #03113aff;
    line-height: 1.3;
    margin: 0;
}

.knowledge-card__excerpt-wrap {
    padding: 12px 24px 0;
    flex: 1;
}

.knowledge-card__excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.75;
    margin: 0;
}

.knowledge-card__excerpt-full[hidden] {
    display: none;
}

.knowledge-card__excerpt-short[hidden] {
    display: none;
}

.knowledge-card__toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #508991;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.knowledge-card__toggle:hover {
    color: #03113a;
}

.knowledge-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px 24px;
    margin-top: auto;
    border-top: 1px solid #f3f3f3;
}

.knowledge-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.knowledge-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.knowledge-card__author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #03113aff;
}

.knowledge-card__reads {
    font-size: 0.85rem;
    color: #03113aff;
    opacity: 0.6;
}

.knowledge-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.knowledge-card__date {
    font-size: 0.85rem;
    color: #03113aff;
    opacity: 0.6;
}

.knowledge-card.hidden {
    display: none;
}

.knowledge-empty {
    text-align: center;
    padding: 80px 24px;
    color: #03113aff;
}

.knowledge-empty svg {
    margin: 0 auto 24px;
    opacity: 0.3;
}

.knowledge-empty h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 12px;
}

.knowledge-empty p {
    font-size: 1.125rem;
    opacity: 0.7;
    margin: 0;
}

/* ========================================
   Vacatures Page
   ======================================== */
.vacatures-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.vacatures-hero__container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.vacatures-hero__content {
    text-align: center;
}

.vacatures-hero__title {
    display: flex;
    flex-direction: column;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.vacatures-hero__title-line {
    color: #03113aff;
}

.vacatures-hero__title-line--accent {
    color: #508991;
}

.vacatures-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #03113aff;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vacatures-hero {
        min-height: 50vh;
        padding: 100px 24px 60px;
    }
}

.vacatures-positions {
    padding: 100px 24px;
    background: #f8f9fa;
}

.vacatures-positions__container {
    max-width: 900px;
    margin: 0 auto;
}

.vacatures-positions__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #03113aff;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.1;
}

.vacatures-positions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .vacatures-positions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vacatures-positions__container {
        max-width: 1024px;
    }
}

.vacature-preview {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.vacature-preview:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vacature-preview__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f8f9fa;
}

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

.vacature-preview__content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vacature-preview__tags {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vacature-preview__tag {
    display: inline-block;
    padding: 6px 14px;
    background: #508991;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
}

.vacature-preview__tag--location {
    background: #e8eaed;
    color: #03113aff;
}

.vacature-preview__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.vacature-preview__summary {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.8;
    margin-bottom: 24px;
}

.vacature-preview__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #508991;
    font-weight: 600;
    font-size: 1.125rem;
}

.vacature-preview__link svg {
    transition: transform 0.3s ease;
}

.vacature-preview:hover .vacature-preview__link svg {
    transform: translateX(4px);
}

.vacatures-positions__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vacature-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.vacature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vacature-card__header {
    padding: 40px 40px 32px;
    border-bottom: 1px solid #e8eaed;
}

.vacature-card__tags {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vacature-card__tag {
    display: inline-block;
    padding: 6px 14px;
    background: #508991;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
}

.vacature-card__tag--location {
    background: #e8eaed;
    color: #03113aff;
}

.vacature-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.vacature-card__summary {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.8;
    margin: 0;
}

.vacature-card__details {
    padding: 40px;
}

.vacature-card__section {
    margin-bottom: 32px;
}

.vacature-card__section:last-of-type {
    margin-bottom: 40px;
}

.vacature-card__section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #03113aff;
    margin-bottom: 16px;
}

.vacature-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacature-card__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.85;
}

.vacature-card__list li:last-child {
    margin-bottom: 0;
}

.vacature-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #508991;
    border-radius: 50%;
}

.vacature-card__actions {
    display: flex;
    gap: 16px;
    padding-top: 8px;
}

@media (max-width: 768px) {
    .vacatures-positions {
        padding: 80px 24px;
    }

    .vacatures-positions__title {
        margin-bottom: 60px;
    }

    .vacature-card__header {
        padding: 32px 24px 24px;
    }

    .vacature-card__details {
        padding: 32px 24px;
    }

    .vacature-card__title {
        font-size: 1.5rem;
    }

    .vacature-card__summary {
        font-size: 1.125rem;
    }
}

.vacatures-open {
    padding: 100px 24px;
    background: #ffffff;
}

.vacatures-open__container {
    max-width: 800px;
    margin: 0 auto;
}

.vacatures-open__card {
    background: linear-gradient(135deg, #d4e8eb 0%, #c1dfe3 100%);
    border-radius: 24px;
    padding: clamp(48px, 6vw, 72px);
    text-align: center;
    box-shadow: 0 8px 32px rgba(80, 137, 145, 0.15);
}

.vacatures-open__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #03113aff;
    margin-bottom: 16px;
}

.vacatures-open__text {
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.85;
}

.vacatures-open__actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .vacatures-open {
        padding: 80px 24px;
    }

    .vacatures-open__actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

.vacatures-cta {
    padding: 96px 24px 120px;
    background: #f8f9fa;
}

.vacatures-cta__container {
    max-width: 1400px;
    margin: 0 auto;
}

.vacatures-cta__card {
    background: #ffffff;
    border-radius: 32px;
    padding: clamp(48px, 6vw, 72px);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vacatures-cta__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #03113aff;
    margin-bottom: 16px;
}

.vacatures-cta__text {
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #5f6368;
}

.vacatures-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.vacatures-cta__phone,
.vacatures-cta__email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid #d2d5da;
    background: #ffffff;
    color: #03113aff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.vacatures-cta__phone:hover,
.vacatures-cta__email:hover {
    border-color: #03113aff;
    box-shadow: 0 4px 12px rgba(3, 17, 58, 0.15);
}

.vacatures-cta__phone-icon,
.vacatures-cta__email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vacatures-cta__phone-number,
.vacatures-cta__email-text {
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .vacatures-cta {
        padding: 72px 16px 96px;
    }

    .vacatures-cta__card {
        border-radius: 24px;
    }

    .vacatures-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .vacatures-cta__phone,
    .vacatures-cta__email {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    padding: 100px 24px 32px;
    background: #f8f9fa;
}

.breadcrumb__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
}

.breadcrumb__link {
    color: #508991;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.breadcrumb__link:hover {
    opacity: 0.7;
}

.breadcrumb__separator {
    color: #5f6368;
    opacity: 0.5;
}

.breadcrumb__current {
    color: #03113aff;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding-top: 80px;
    }
}

/* ========================================
   Vacature Detail
   ======================================== */
.vacature-detail {
    padding: 0 24px 100px;
    background: #f8f9fa;
}

.vacature-detail__container {
    max-width: 1200px;
    margin: 0 auto;
}

.vacature-detail__header {
    margin-bottom: 60px;
}

.vacature-detail__tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vacature-detail__tag {
    display: inline-block;
    padding: 8px 16px;
    background: #508991;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
}

.vacature-detail__tag--location {
    background: #e8eaed;
    color: #03113aff;
}

.vacature-detail__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.vacature-detail__intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.85;
    max-width: 800px;
    margin-bottom: 40px;
}

.vacature-detail__hero-image {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

@media (min-width: 1024px) {
    .vacature-detail__content {
        grid-template-columns: 2fr 1fr;
    }
}

.vacature-detail__main {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vacature-detail__section {
    margin-bottom: 48px;
}

.vacature-detail__section:last-child {
    margin-bottom: 0;
}

.vacature-detail__section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vacature-detail__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.85;
    margin-bottom: 20px;
}

.vacature-detail__text:last-child {
    margin-bottom: 0;
}

.vacature-detail__list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.vacature-detail__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.85;
}

.vacature-detail__list li:last-child {
    margin-bottom: 0;
}

.vacature-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #508991;
    border-radius: 50%;
}

.vacature-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vacature-detail__apply {
    background: linear-gradient(135deg, #508991 0%, #3d6d74 100%);
    border-radius: 16px;
    padding: 32px;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(80, 137, 145, 0.25);
}

.vacature-detail__apply-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.vacature-detail__apply-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

.vacature-detail__info {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vacature-detail__info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 20px;
}

.vacature-detail__info-list {
    margin: 0;
}

.vacature-detail__info-list dt {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    margin-top: 20px;
}

.vacature-detail__info-list dt:first-child {
    margin-top: 0;
}

.vacature-detail__info-list dd {
    font-size: 1.125rem;
    color: #03113aff;
    margin: 0;
    font-weight: 500;
}

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

@media (max-width: 1023px) {
    .vacature-detail__main {
        padding: 32px 24px;
    }

    .vacature-detail__apply,
    .vacature-detail__info {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .vacature-detail {
        padding-bottom: 80px;
    }

    .vacature-detail__section-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   Goals Section
   ======================================== */
.goals-section {
    padding: 100px 24px;
    background: #ffffff;
}

.goals-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.goals-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.goals-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113aff;
}

.goals-section__title-text {
    color: #03113aff;
}

.goals-section__content {
    width: 100%;
}

.goals-tabpanels {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.goals-tabpanels__button-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0 20px;
}

.goals-tabpanels__button {
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid #dadce0;
    background: #ffffff;
    color: #03113aff;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.goals-tabpanels__button:hover {
    background: #f8f9fa;
    border-color: #508991;
    color: #508991;
}

.goals-tabpanels__button.active {
    background: #508991;
    border-color: #508991;
    color: #ffffff;
}

.goals-tabpanels__panel-list {
    position: relative;
    min-height: 400px;
}

.goals-tabpanels__panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.goals-tabpanels__panel.active {
    display: block;
}

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

.goals-callout {
    width: 100%;
}

.goals-callout__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.goals-callout__image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.goals-callout__image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.goals-callout__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.goals-callout__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.goals-callout__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goals-callout__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goals-callout__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #03113aff;
    margin: 0;
    line-height: 1.3;
}

.goals-callout__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 900px) {
    .goals-section {
        padding: 80px 24px;
    }

    .goals-section__header {
        margin-bottom: 48px;
    }

    .goals-callout__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .goals-callout__content {
        order: 1;
        text-align: center;
        align-items: center;
    }

    .goals-callout__image-container {
        order: 2;
    }

    .goals-tabpanels__button-list {
        padding: 0;
        gap: 8px;
    }

    .goals-tabpanels__button {
        padding: 12px 20px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .goals-section {
        padding: 60px 16px;
    }

    .goals-section__header {
        margin-bottom: 32px;
    }

    .goals-tabpanels__button-list {
        flex-direction: column;
        align-items: stretch;
    }

    .goals-tabpanels__button {
        width: 100%;
        text-align: center;
    }

    .goals-callout__title {
        font-size: 1.5rem;
    }

    .goals-callout__text {
        font-size: 1.125rem;
    }
}

/* ========================================
   Diensten Hero Section
   ======================================== */
.diensten-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.diensten-hero__container {
    max-width: 900px;
    margin: 0 auto;
}

.diensten-hero__header {
    text-align: center;
}

.diensten-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.diensten-hero__title-accent {
    color: #508991;
}

.diensten-hero__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #03113aff;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .diensten-hero {
        min-height: 50vh;
        padding: 100px 24px 60px;
    }
}

/* ========================================
   Diensten Cards Section
   ======================================== */
.diensten-cards {
    padding: 80px 24px 100px;
    background: #ffffff;
}

.diensten-cards__container {
    max-width: 1200px;
    margin: 0 auto;
}

.diensten-cards__header {
    text-align: center;
    margin-bottom: 60px;
}

.diensten-cards__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
}

.diensten-cards__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0;
    margin: 0;
}

/* Two column layout for data page */
.diensten-cards__grid--two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.diensten-cards__item {
    margin: 0;
}

.diensten-cards__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.diensten-cards__image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.diensten-cards__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.diensten-cards__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.diensten-cards__item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #03113aff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.diensten-cards__item-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #03113aff;
    opacity: 0.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.diensten-cards__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #508991;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    margin-top: auto;
}

@media (max-width: 900px) {
    .diensten-cards {
        padding: 60px 24px 80px;
    }

    .diensten-cards__header {
        margin-bottom: 48px;
    }

    .diensten-cards__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .diensten-cards__card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .diensten-cards {
        padding: 48px 16px 60px;
    }

    .diensten-cards__header {
        margin-bottom: 32px;
    }

    .diensten-cards__item-title {
        font-size: 1.25rem;
    }

    .diensten-cards__item-text {
        font-size: 1.125rem;
    }
}
/* ========================================
   END of Diensten Cards Section
   ======================================== */

/* ========================================
   Data Hero - Two Column Layout
   ======================================== */

.data-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.data-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.data-hero__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.data-hero__content {
    padding: 20px 0;
    text-align: left;
}

.data-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #03113aff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.data-hero__subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .data-hero {
        min-height: 50vh;
        padding: 100px 24px 60px;
    }

    .data-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .data-hero__title {
        font-size: 2rem;
    }

    .data-hero__text {
        font-size: 1.125rem;
    }
}

/* ========================================
   END Data Hero - Two Column Layout
   ======================================== */

/* ========================================
   Data Features - Carousel
   ======================================== */

.data-features {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.data-features__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.data-features__title {
    font-size: 2.75rem;
    font-weight: 400;
    color: #03113aff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.data-features__carousel {
    position: relative;
    overflow: visible;
    margin: 0 -24px;
    padding: 0 24px;
}

.data-features__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 40px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    will-change: scroll-position;
}

/* Hide scrollbar but keep functionality */
.data-features__track::-webkit-scrollbar {
    display: none;
}

.data-features__track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.data-feature-card {
    flex: 0 0 520px;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    will-change: transform;
    overflow: hidden;
    position: relative;
}

.data-feature-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: #d2d3d5;
}

.data-feature-card__visual {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 30px;
    border-bottom: 1px solid #e8eaed;
    position: relative;
    overflow: hidden;
}

.data-feature-card__badge {
    position: absolute;
    top: 40px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #508991;
    color: #ffffff;
    z-index: 1;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
}

.data-feature-card__badge svg {
    flex-shrink: 0;
}

.data-feature-card__visual img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-feature-card:hover .data-feature-card__visual img {
    transform: scale(1.05);
}

.data-feature-card__content {
    flex: 1;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
}

.data-feature-card__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5f6368;
    margin-bottom: 12px;
}

.data-feature-card__label svg {
    width: 18px;
    height: 18px;
}

.data-feature-card__title {
    font-size: 1.625rem;
    font-weight: 600;
    color: #03113aff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.data-feature-card__text {
    font-size: 1.125rem;
    color: #5f6368;
    line-height: 1.65;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .data-feature-card {
        flex: 0 0 340px;
    }

    .data-features__title {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }

    .data-feature-card__visual {
        height: 200px;
        padding: 30px;
    }
}

/* Mobile responsive - swipe carousel (768px, matches klanten) */
@media (max-width: 768px) {
    .data-features__carousel.data-features__carousel--swipe {
        overflow: hidden;
        margin: 0 -24px;
        padding: 0 24px;
    }

    .data-features__carousel.data-features__carousel--swipe::before {
        content: '← swipe →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: #94a3b8;
        margin-bottom: 12px;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .data-features__carousel.data-features__carousel--swipe .data-features__track {
        gap: 16px;
        margin: 0;
        padding-left: calc(50vw - 148px);
        padding-right: calc(50vw - 148px);
    }

    .data-features__carousel.data-features__carousel--swipe .data-feature-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: center;
    }
}

@media (max-width: 640px) {
    .data-features {
        padding: 60px 0;
    }

    .data-features__container {
        padding: 0 16px;
    }

    .data-features__carousel {
        margin: 0;
        padding: 0;
    }

    .data-features__track {
        gap: 16px;
        margin: 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .data-feature-card {
        flex: 0 0 300px;
    }

    .data-features__title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .data-feature-card__visual {
        height: 180px;
        padding: 24px;
    }

    .data-feature-card__badge {
        top: 10px;
    }

    .data-feature-card__content {
        padding: 24px 20px 20px;
    }

    .data-feature-card__title {
        font-size: 1.25rem;
    }

    .data-feature-card__text {
        font-size: 1.125rem;
    }
}

/* ========================================
   END Data Features - Feature Cards Grid
   ======================================== */

/* ========================================
   Header - About Hero Style (Centered)
   ======================================== */

.header--centered {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0 20px;
    min-height: auto;
}

.header--centered .header__container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.header--centered .header__logo {
    order: 1;
}

.header--centered .header__nav {
    order: 2;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.header--centered .header__menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .header--centered {
        padding: 30px 0 15px;
    }

    .header--centered .header__nav {
        display: none;
    }

    .header--centered .header__menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

/* ========================================
   END Header - About Hero Style
   ======================================== */


/* ========================================
   Ad Showcase Grid
   ======================================== */

.ad-showcase {
    padding: 80px 20px;
    background: #ffffff;
}

.ad-showcase__container {
    max-width: 1024px;
    margin: 0 auto;
}

.ad-showcase__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #03113aff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ad-showcase__grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ad-showcase__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ad-showcase__item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ad-showcase__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ad-showcase__image-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.ad-showcase__image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.ad-showcase__label {
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    background: #ffffff;
}

/* Story ads maintain 9:16 ratio */
.ad-showcase__item--story .ad-showcase__image-wrapper {
    aspect-ratio: 9 / 16;
}

/* Square ads maintain 1:1 ratio */
.ad-showcase__item--square .ad-showcase__image-wrapper {
    aspect-ratio: 1 / 1;
}

/* Mobile CTA - hidden by default */
.ad-showcase__mobile-cta {
    display: none;
}

/* Mobile CTA within column - always visible on mobile */
.ad-showcase__mobile-cta--column {
    display: none;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .ad-showcase__grid {
        gap: 12px;
    }

    .ad-showcase__column {
        gap: 12px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .ad-showcase {
        padding: 60px 16px;
    }

    .ad-showcase__title {
        margin-bottom: 40px;
    }

    .ad-showcase__grid {
        gap: 8px;
        flex-wrap: wrap;
    }

    .ad-showcase__column {
        gap: 8px;
        flex: 0 0 calc(50% - 4px);
    }

    /* Show mobile CTA between rows */
    .ad-showcase__mobile-cta {
        display: block;
        flex: 0 0 100%;
    }

    /* Show mobile CTA within column */
    .ad-showcase__mobile-cta--column {
        display: block;
        margin-top: 8px;
    }

    .ad-showcase__cta-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
        background: #ffffff;
        border-radius: 8px;
        color: #03113aff;
        text-decoration: none;
        transition: transform 0.2s ease;
        border: none;
        text-align: center;
    }

    .ad-showcase__cta-button:active {
        transform: scale(0.98);
    }

    .ad-showcase__cta-text {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        color: #03113aff;
    }

    .ad-showcase__cta-link {
        font-size: 13px;
        font-weight: 500;
        color: #03113aff;
        text-decoration: underline;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .ad-showcase__cta-icon {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .ad-showcase__label {
        font-size: 10px;
        padding: 8px;
    }
}

/* ========================================
   END Ad Showcase Grid
   ======================================== */

/* ========================================
   Process Section
   ======================================== */

.process-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.process-section__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #03113aff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.process-section__text {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-section__visual {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.process-section__visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 0;
    }

    .process-section__title {
        font-size: 24px;
        margin-bottom: 12px;
        padding: 0 16px;
    }

    .process-section__container {
        display: flex;
        flex-direction: column;
    }

    .process-section__text {
        font-size: 16px;
        margin-bottom: 16px;
        padding: 0 16px;
        order: 1;
    }

    .process-section__container::after {
        content: '← swipe →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: #94a3b8;
        margin-bottom: 16px;
        font-weight: 400;
        letter-spacing: 2px;
        order: 2;
    }

    .process-section__visual {
        position: relative;
        max-width: none;
        margin: 0;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 16px;
        order: 3;
    }

    .process-section__visual::-webkit-scrollbar {
        display: none;
    }

    .process-section__visual img {
        width: 200%;
        max-width: none;
        border-radius: 0;
        display: block;
    }
}

/* ========================================
   END Process Section
   ======================================== */

/* ========================================
   Team Page
   ======================================== */

/* Team Hero Section */
.team-hero {
    padding: 80px 24px 60px 24px;
    background: #ffffff;
}

@media (min-width: 768px) {
    .team-hero {
        padding: 100px 24px 80px 24px;
    }
}

.team-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.team-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.team-hero__title {
    display: flex;
    flex-direction: column;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.team-hero__title-line {
    display: block;
    color: #03113aff;
}

.team-hero__title-line--accent {
    color: #508991;
}

.team-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #03113aff;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Team Grid Section */
.team-grid {
    padding: 60px 24px 80px 24px;
    background: #f8f9fa;
}

@media (min-width: 768px) {
    .team-grid {
        padding: 80px 24px 100px 24px;
    }
}

.team-grid__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .team-grid__container {
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .team-grid__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1280px) {
    .team-grid__container {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

/* Team Member Card */
.team-member {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-member__image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f3f4f6;
}

.team-member__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-member__image img {
    transform: scale(1.05);
}

.team-member__info {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-member__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #03113aff;
    margin: 0;
    line-height: 1.3;
}

.team-member__role {
    font-size: 1rem;
    color: #508991;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    flex-grow: 1;
}

.team-member__linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #03113aff;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.team-member__linkedin:hover {
    background: #508991;
    color: #ffffff;
    transform: translateY(-2px);
}

.team-member__linkedin svg {
    width: 18px;
    height: 18px;
}

/* Team CTA Section */
.team-cta {
    padding: 80px 24px;
    background: #ffffff;
}

@media (min-width: 768px) {
    .team-cta {
        padding: 100px 24px;
    }
}

.team-cta__container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-cta__card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #508991 0%, #03113aff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(80, 137, 145, 0.3);
}

@media (max-width: 640px) {
    .team-cta__card {
        padding: 40px 24px;
    }
}

.team-cta__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.team-cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.team-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.team-cta__actions .btn--primary {
    background: #ffffff;
    color: #03113aff;
}

.team-cta__actions .btn--primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.team-cta__actions .btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.team-cta__actions .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   END Team Page
   ======================================== */

/* ========================================
   Mobile Text Reduction
   ======================================== */
@media (max-width: 768px) {
    /* Verberg lange uitleg in Herken-panelen — titel + link blijven */
    .herken__panel-card-text {
        display: none;
    }

    /* Verberg body-zin onder de Why-PD quote — quote is genoeg */
    .why-pd__body {
        display: none;
    }

    /* Verberg beschrijvingszin in drie-lagen kaarten — titel + subtitel volstaan */
    .three-layers__card-text {
        display: none;
    }

    /* Verberg intro-alinea boven diensten-kaarten per tab */
    .services__intro-text {
        display: none;
    }

    /* Herken je dit — mobiel accordion redesign */
    .herken__panel {
        display: none !important;
    }

    /* Wrap draagt de border op mobiel */
    .herken__item-wrap {
        border-bottom: 1px solid rgba(3, 17, 58, 0.1);
    }

    .herken__item {
        border-bottom: none;
        padding: 20px 4px;
    }

    /* Reset alle active-states — desktop highlight niet op mobiel */
    .herken__item--active,
    .herken__item--accelerate.herken__item--active {
        background: transparent !important;
        border-left-color: transparent !important;
    }

    .herken__item--active .herken__item-num,
    .herken__item--accelerate.herken__item--active .herken__item-num {
        color: rgba(3, 17, 58, 0.25) !important;
    }

    .herken__item--active .herken__item-title,
    .herken__item--accelerate.herken__item--active .herken__item-title {
        color: #03113A !important;
        font-weight: 600 !important;
    }

    .herken__item--accelerate.herken__item--active .herken__item-arrow {
        color: #03113A !important;
    }

    /* Verberg ACCELERATE-badge in button — badge zit al in accordion-detail */
    .herken__item-badge {
        display: none;
    }

    /* Pijl altijd zichtbaar als klik-hint */
    .herken__item-arrow {
        opacity: 0.4 !important;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease !important;
    }

    /* Pijl draait 90° als item open is */
    .herken__item--open .herken__item-arrow {
        transform: rotate(90deg) !important;
        opacity: 0.7 !important;
    }

    /* Accordion detail — standaard dicht */
    .herken__item-detail {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
        padding: 0 4px;
    }

    .herken__item-detail--open {
        max-height: 260px;
        padding: 16px 4px 24px;
    }

    /* Badge — verborgen in accordion, nog onbekende context voor gebruiker */
    .herken__item-detail-badge {
        display: none;
    }

    .herken__item-detail-badge--engine {
        color: #508991;
        background: rgba(80, 137, 145, 0.12);
    }

    .herken__item-detail-badge--intelligence {
        color: #03113A;
        background: rgba(3, 17, 58, 0.07);
    }

    .herken__item-detail-badge--accelerate {
        color: #D4A820;
        background: rgba(212, 168, 32, 0.12);
    }

    /* Tekst en link */
    .herken__item-detail-text {
        font-size: 0.875rem;
        line-height: 1.65;
        color: rgba(3, 17, 58, 0.6);
        margin: 0 0 14px;
    }

    .herken__item-detail-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.875rem;
        font-weight: 600;
        color: #03113A;
        text-decoration: none;
    }
}

/* ========================================
   Diensten pagina — v2 (wireframe 2026-05)
   ======================================== */

/* ① Hero */
.ds-hero {
    padding: 100px 24px 72px;
    background: #F3F3F3;
}

.ds-hero__container {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.ds-hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #508991;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds-hero__eyebrow::before {
    content: '—';
    opacity: 0.4;
}

.ds-hero__title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: #03113A;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ds-hero__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(3, 17, 58, 0.65);
    margin-bottom: 28px;
}

.ds-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ds-hero__right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mini layer cards — same DNA as homepage three-layers__card */
.ds-lcard {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 16px rgba(3, 17, 58, 0.08), 0 1px 4px rgba(3, 17, 58, 0.05);
}

.ds-lcard:hover {
    box-shadow: 0 12px 36px rgba(3, 17, 58, 0.14), 0 4px 12px rgba(3, 17, 58, 0.07);
    transform: translateY(-3px);
}

.ds-lcard--engine      { border: 1.5px solid rgba(80, 137, 145, 0.3); border-top: 3px solid #508991; }
.ds-lcard--intelligence { border: 1.5px solid rgba(3, 17, 58, 0.15); border-top: 3px solid #03113A; }
.ds-lcard--activation  { border: 1.5px solid rgba(241, 194, 50, 0.5); border-top: 3px solid #F1C232; }

.ds-lcard--engine:hover      { border-color: rgba(80, 137, 145, 0.6); border-top-color: #508991; }
.ds-lcard--intelligence:hover { border-color: rgba(3, 17, 58, 0.3); border-top-color: #03113A; }
.ds-lcard--activation:hover  { border-color: rgba(241, 194, 50, 0.8); border-top-color: #F1C232; }

.ds-lcard__header {
    padding: 14px 18px 12px;
    border-bottom: 1px solid;
}

.ds-lcard--engine .ds-lcard__header {
    background: linear-gradient(160deg, rgba(80, 137, 145, 0.08) 0%, rgba(80, 137, 145, 0.02) 100%);
    border-bottom-color: rgba(80, 137, 145, 0.15);
}

.ds-lcard--intelligence .ds-lcard__header {
    background: linear-gradient(160deg, rgba(3, 17, 58, 0.05) 0%, rgba(3, 17, 58, 0.01) 100%);
    border-bottom-color: rgba(3, 17, 58, 0.07);
}

.ds-lcard--activation .ds-lcard__header {
    background: linear-gradient(160deg, rgba(241, 194, 50, 0.1) 0%, rgba(241, 194, 50, 0.02) 100%);
    border-bottom-color: rgba(241, 194, 50, 0.22);
}

.ds-lcard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ds-lcard__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ds-lcard--engine .ds-lcard__label      { color: #508991; }
.ds-lcard--intelligence .ds-lcard__label { color: #03113A; }
.ds-lcard--activation .ds-lcard__label  { color: #d4a820; }

.ds-lcard__number {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ds-lcard--engine .ds-lcard__number      { color: rgba(80, 137, 145, 0.22); }
.ds-lcard--intelligence .ds-lcard__number { color: rgba(3, 17, 58, 0.15); }
.ds-lcard--activation .ds-lcard__number  { color: rgba(212, 168, 32, 0.32); }

.ds-lcard__visual {
    height: 52px;
    display: flex;
    align-items: center;
}

.ds-lcard__visual svg {
    width: 100%;
    height: 100%;
}

.ds-lcard__body {
    padding: 14px 18px 16px;
}

.ds-lcard__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #03113A;
    line-height: 1.3;
    margin: 0 0 4px;
}

.ds-lcard__desc {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

.ds-lcard--engine .ds-lcard__desc      { color: #508991; }
.ds-lcard--intelligence .ds-lcard__desc { color: rgba(3, 17, 58, 0.45); }
.ds-lcard--activation .ds-lcard__desc  { color: #d4a820; }

@media (max-width: 900px) {
    .ds-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ds-hero {
        padding: 100px 24px 60px;
    }
}

/* ② Diensten grid */
.ds-grid {
    padding: 72px 24px 60px;
    background: #ffffff;
}

.ds-grid__container {
    max-width: 1160px;
    margin: 0 auto;
}

/* Filter tabs */
.ds-ftabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ds-ftab {
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    color: rgba(3, 17, 58, 0.5);
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.ds-ftab:hover {
    border-color: #03113A;
    color: #03113A;
}

.ds-ftab--active {
    background: #03113A;
    color: #ffffff;
    border-color: #03113A;
}

/* Layer headers */
.ds-layer-header {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 10px;
    border-bottom: 2px solid;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ds-layer-header:first-of-type { margin-top: 0; }

.ds-layer-header--engine       { color: #508991; border-color: #508991; }
.ds-layer-header--intelligence  { color: #03113A; border-color: #03113A; }
.ds-layer-header--activation   { color: #9a7a00; border-color: #F1C232; }

/* Cards grid */
.ds-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

/* Last card in odd-count grids stays left-aligned, not stretched */
.ds-cards-grid > .dcard:last-child:nth-child(3n+1) {
    grid-column: 1;
}
.ds-cards-grid > .dcard:last-child:nth-child(3n+2) {
    grid-column: span 1;
}

/* Dienst card */
.dcard {
    background: #ffffff;
    border: 1px solid rgba(3, 17, 58, 0.08);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 1px 4px rgba(3, 17, 58, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.dcard:hover {
    border-color: rgba(80, 137, 145, 0.5);
    box-shadow: 0 6px 20px rgba(3, 17, 58, 0.09);
    transform: translateY(-2px);
}

.dcard__tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.dcard__tag--engine       { background: rgba(80, 137, 145, 0.12); color: #508991; }
.dcard__tag--intelligence  { background: rgba(3, 17, 58, 0.07);   color: #03113A; }
.dcard__tag--activation   { background: rgba(241, 194, 50, 0.15); color: #9a7a00; }

.dcard__title {
    font-size: 1rem;
    font-weight: 700;
    color: #03113A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.dcard__body {
    font-size: 0.8125rem;
    color: rgba(3, 17, 58, 0.55);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

.dcard__link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #508991;
    text-decoration: none;
    margin-top: auto;
}

.dcard__link:hover { text-decoration: underline; }

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

@media (max-width: 600px) {
    .ds-ftabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        padding-bottom: 4px;
        margin-bottom: 32px;
    }
    .ds-ftabs::-webkit-scrollbar { display: none; }
    .ds-ftab { flex-shrink: 0; font-size: 0.75rem; padding: 8px 14px; }
    .ds-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ③ Testimonial + Cases */
.ds-social-proof {
    padding: 64px 24px;
    background: #ffffff;
}

.ds-social-proof__container {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
}

.ds-testi {
    background: #03113A;
    border-radius: 10px;
    padding: 32px;
}

.ds-testi__qmark {
    font-size: 48px;
    color: #F1C232;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.ds-testi__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.ds-testi__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ds-testi__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.ds-testi__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
}

.ds-testi__role {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
}

.ds-cases-promo {
    padding: 0 8px;
}

.ds-cases-promo__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #508991;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds-cases-promo__eyebrow::before {
    content: '—';
    opacity: 0.4;
}

.ds-cases-promo__title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #03113A;
    line-height: 1.25;
    margin-bottom: 14px;
}

.ds-cases-promo__text {
    font-size: 0.9375rem;
    color: rgba(3, 17, 58, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

@media (max-width: 860px) {
    .ds-social-proof__container {
        grid-template-columns: 1fr;
    }
}

/* ④ CTA */
.ds-cta {
    background: #03113A;
    padding: 72px 24px;
}

.ds-cta__container {
    max-width: 720px;
    margin: 0 auto;
}

.ds-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.ds-cta__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    line-height: 1.65;
}

.ds-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn--ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: transparent;
    transition: border-color 0.2s, background 0.2s;
}

.btn--ghost-white:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
}

/* ② Bridge section — systeem uitleg */
.ds-bridge {
    padding: 52px 24px;
    background: #ffffff;
    border-bottom: 1px solid rgba(3, 17, 58, 0.06);
}

.ds-bridge__container {
    max-width: 1160px;
    margin: 0 auto;
}

.ds-bridge__intro {
    font-size: 1rem;
    color: rgba(3, 17, 58, 0.55);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
    text-align: center;
}

.ds-bridge__pillars {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.ds-bridge__pillar {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 24px 20px;
    border-radius: 12px;
    transition: background 0.2s;
}

.ds-bridge__pillar:hover {
    background: rgba(3, 17, 58, 0.03);
}

.ds-bridge__pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ds-bridge__pillar--engine .ds-bridge__pillar-icon   { background: rgba(80, 137, 145, 0.1); color: #508991; }
.ds-bridge__pillar--intelligence .ds-bridge__pillar-icon { background: rgba(3, 17, 58, 0.07); color: #03113A; }
.ds-bridge__pillar--activation .ds-bridge__pillar-icon  { background: rgba(241, 194, 50, 0.15); color: #d4a820; }

.ds-bridge__pillar-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #03113A;
    margin-bottom: 2px;
}

.ds-bridge__pillar--engine .ds-bridge__pillar-name   { color: #508991; }
.ds-bridge__pillar--activation .ds-bridge__pillar-name { color: #b8860b; }

.ds-bridge__pillar-sub {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(3, 17, 58, 0.35);
    margin-bottom: 10px;
}

.ds-bridge__pillar-desc {
    font-size: 0.8125rem;
    color: rgba(3, 17, 58, 0.55);
    line-height: 1.6;
}

.ds-bridge__arrow {
    color: rgba(3, 17, 58, 0.2);
    display: flex;
    align-items: center;
    padding-top: 28px;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .ds-bridge__pillars {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .ds-bridge__arrow {
        transform: rotate(90deg);
        padding-top: 0;
        padding: 4px 0;
    }
    .ds-bridge__pillar {
        max-width: 320px;
        width: 100%;
    }
}

/* Card icons */
.dcard__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.dcard__icon--engine       { background: rgba(80, 137, 145, 0.1); color: #508991; }
.dcard__icon--intelligence  { background: rgba(3, 17, 58, 0.06); color: #03113A; }
.dcard__icon--activation   { background: rgba(241, 194, 50, 0.12); color: #b8860b; }

/* Featured card variant */
.dcard--featured {
    border-color: rgba(3, 17, 58, 0.12);
    box-shadow: 0 2px 8px rgba(3, 17, 58, 0.07);
}

.dcard--featured:hover {
    border-color: rgba(80, 137, 145, 0.6);
    box-shadow: 0 8px 24px rgba(3, 17, 58, 0.11);
}

.dcard__toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dcard__toprow .dcard__tag {
    margin-bottom: 0;
}

.dcard__badge {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 7px;
    border-radius: 4px;
    background: rgba(80, 137, 145, 0.1);
    color: #508991;
}

.dcard__badge--activation {
    background: rgba(241, 194, 50, 0.15);
    color: #b8860b;
}

/* Cases promo stats */
.ds-cases-promo__stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.ds-cases-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ds-cases-stat__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #03113A;
    letter-spacing: -0.03em;
    line-height: 1;
    min-width: 64px;
}

.ds-cases-stat__label {
    font-size: 0.8125rem;
    color: rgba(3, 17, 58, 0.55);
    line-height: 1.4;
}

/* Footer diensten-kolom: dubbele breedte + 2 kolommen om telefoonboek-effect te voorkomen */
@media (min-width: 769px) {
    .site-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    #footer-panel-services {
        display: block;
        columns: 2;
        column-gap: 16px;
    }

    #footer-panel-services a {
        break-inside: avoid;
    }
}

/* Grid sectie lichtgrijs om scheiding met witte hero te maken */
.ds-grid {
    background: #F3F3F3;
}

/* Gebalanceerde regelafbreking op de hero titel */
.ds-hero__title {
    text-wrap: balance;
}

/* CTA centered */
.ds-cta__container {
    text-align: center;
}

.ds-cta__actions {
    justify-content: center;
}

/* Hero — v4: compacte witte page-header, cards in een rij */
.ds-hero {
    padding: 56px 24px 52px;
    background: #ffffff;
    border-bottom: 1px solid rgba(3, 17, 58, 0.07);
}

.ds-hero__container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: unset;
    grid-template-columns: unset;
}

.ds-hero__intro {
    max-width: 640px;
}

.ds-hero__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.ds-hero__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .ds-hero__container {
        gap: 28px;
    }
    .ds-hero__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ds-hero {
        padding: 40px 24px 36px;
    }
}

/* Hero layer cards — v3: horizontale icon+text layout, geen SVG-zone */
.ds-lcard__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
}

.ds-lcard__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-lcard--engine .ds-lcard__icon-wrap      { background: rgba(80, 137, 145, 0.12); color: #508991; }
.ds-lcard--intelligence .ds-lcard__icon-wrap { background: rgba(3, 17, 58, 0.07);   color: #03113A; }
.ds-lcard--activation .ds-lcard__icon-wrap  { background: rgba(241, 194, 50, 0.18); color: #b8860b; }

.ds-lcard__content {
    flex: 1;
    min-width: 0;
}

/* Override old padding-based layout */
.ds-lcard__body { padding: 0; }
.ds-lcard__header { display: none; }

/* ── Active nav state ── */
.nav-link--active,
a.nav-link[aria-current="page"] {
    color: #508991;
    font-weight: 600;
}

/* ── Show-more button (progressive disclosure) ── */
.ds-show-more-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 8px 0 16px;
}

.ds-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid rgba(3, 17, 58, 0.18);
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #03113A;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.ds-show-more:hover {
    border-color: #508991;
    color: #508991;
    background: rgba(80, 137, 145, 0.05);
}

.ds-show-more svg {
    flex-shrink: 0;
    transition: transform 0.18s;
}
