/* ==========================================================================
   1. Font Faces
   ========================================================================== */
@font-face {
    font-family: 'Google Sans';
    src: url('/fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('/fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   2. CSS Custom Properties
   ========================================================================== */
:root {
    --highlighter-green: #c1ff00;
    --color-blue: #1c75bc;
    --magma-red: #ff4e00;
    --fresh-grey: #adbbc4;
    --ambient-grey: #3c4b4c;
    --dark-blue: #262330;
    --white: #ffffff;

    --font-display: 'Syncopate', sans-serif;
    --font-body: 'Google Sans', sans-serif;
}

/* ==========================================================================
   3a. Layout container
   ========================================================================== */
.container {
    width: 100%;
    max-width: clamp(1200px, 80vw, 1920px);
    margin: 0 auto;
    padding: 0 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: var(--dark-blue);
    background-color: var(--fresh-grey);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

input, select {
    font: inherit;
    border: none;
    outline: none;
}
:is(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--highlighter-green);
    outline-offset: 3px;
}

/* ==========================================================================
   4. Typography
   ========================================================================== */
.h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1;
}

.h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1;
}

.h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1;
}

.h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

.h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

:is(h1,h2,h3,h4,h5,h6) {
    hyphens: auto;
}

.text-body {
    font-size: 16px;
    line-height: 1.5;
}

.text-small {
    font-size: 14px;
    line-height: 1.5;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1;
}

.btn:hover {
    opacity: 0.9;
}

.btn:active {
    transform: scale(0.98);
}

/* Green button */
.btn--green {
    background-color: var(--highlighter-green);
    color: #000;
    border-color: var(--highlighter-green);
}

.btn--green-outlined {
    background-color: transparent;
    color: var(--highlighter-green);
    border-color: var(--highlighter-green);
}

/* Red button */
.btn--red {
    background-color: var(--magma-red);
    color: var(--white);
    border-color: var(--magma-red);
}

.btn--red-outlined {
    background-color: transparent;
    color: var(--magma-red);
    border-color: var(--magma-red);
}

/* Blue button */
.btn--blue {
    background-color: var(--color-blue);
    color: var(--white);
    border-color: var(--color-blue);
}

.btn--blue-outlined {
    background-color: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

/* White button */
.btn--white {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.btn--white-outlined {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ==========================================================================
   6. Form Elements
   ========================================================================== */
.form-input {
    width: 100%;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--ambient-grey);
    background-color: var(--white);
    border-radius: 10px;
    min-width: 300px;
}

.form-input::placeholder {
    color: var(--ambient-grey);
}

.form-select {
    width: 100%;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--ambient-grey);
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border: none;
    text-align: center;
}

.form-select__icon {
    width: 19px;
    height: 9px;
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
}

.form-select__icon--rotated {
    transform: rotate(180deg);
}

.form-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
}

.form-consent__input {
    grid-column: 1;
    grid-row: 1;
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    margin: 1px 0 0;
    background-color: var(--white);
    border: 2px solid currentColor;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-grid;
    place-content: center;
}

.form-consent__input::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--color-blue);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transition: transform 0.12s ease-in-out;
}

.form-consent__input:checked::before {
    transform: scale(1);
}

.form-consent__label {
    grid-column: 2;
    grid-row: 1;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.form-consent ul {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    color: var(--magma-red);
    font-size: 14px;
}

.conversion-hero__form > ul {
    margin: -4px 0 0;
    padding: 0;
    list-style: none;
    color: var(--magma-red);
    font-size: 14px;
}

.conversion-hero__form .form-consent {
    color: var(--dark-blue);
}

.leermeesters__form .form-consent {
    color: var(--white);
}

/* ==========================================================================
   7. Navigation
   ========================================================================== */
.nav {
    background-color: var(--white);
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    padding: 50px;
}

.nav__logo {
    width: 269px;
    flex-shrink: 0;
}

.nav__logo img {
    width: 100%;
    height: auto;
}

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

.nav__link {
    font-family: var(--font-body);
    font-size: 16px;
    color: #000;
    padding: 10px;
    transition: opacity 0.2s;
}

.nav__link:hover {
    opacity: 0.7;
}

.nav__link--active {
    text-decoration: underline;
}

/* ==========================================================================
   8. Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;
    width: 100%;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero__bg img {
    position: absolute;
    width: 100%;
    height: 245%;
    top: -71%;
    left: 0;
    max-width: none;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1;
    max-width: 800px;
}

.hero--thanks {
    padding: 100px 0;
}

.hero--thanks .hero__title {
    max-width: none;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    max-width: 600px;
}

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

.hero__phone {
    position: absolute;
    right: 0;
    top: 172px;
    width: 500px;
    max-width: 40vw;
    aspect-ratio: 655 / 778;
    z-index: 1;
    pointer-events: none;
}

.hero__phone img {
    position: absolute;
    width: 118%;
    height: 128%;
    top: -12%;
    left: -18%;
    max-width: none;
}

.hero__media {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero__media-shape {
    position: absolute;
    top: 45%;
    left: 52%;
    width: 160%;
    max-width: 1100px;
    height: auto;
    aspect-ratio: 1057 / 1292;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero__video {
    position: relative;
    z-index: 1;
    width: 500px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px 10px 10px 10px;
    object-fit: cover;
    background-color: #000;
    display: block;
}

/* Hero theme: wat-is-mijn-dsp (dark with green accents) */
.hero--wat-is-mijn-dsp {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--ambient-grey) 100%);
}

.hero--wat-is-mijn-dsp .hero__title,
.hero--wat-is-mijn-dsp .hero__subtitle {
    color: var(--white);
}

/* Hero theme: volandis (light gradient with blue accents) */
.hero--volandis {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero--volandis .hero__bg img {
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}

.hero--volandis .hero__title,
.hero--volandis .hero__subtitle {
    color: var(--dark-blue);
}

.hero__volandis-logo {
    flex: 0 0 auto;
    width: 422px;
    max-width: 100%;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.hero__volandis-logo img {
    width: 100%;
    height: auto;
}

/* Hero theme: leermeesters (orange gradient with red accents) */
.hero--leermeesters {
    background: radial-gradient(ellipse at bottom right, var(--magma-red) 0%, #c9430c 25%, #93391800 50%, var(--dark-blue) 100%);
    background-color: var(--dark-blue);
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero--leermeesters .hero__title,
.hero--leermeesters .hero__subtitle {
    color: var(--white);
}

.hero__decorative-vectors {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
    max-width: 576px;
    aspect-ratio: 576 / 671;
}

.hero__decorative-vector {
    position: absolute;
    max-width: none;
}

.hero__decorative-vector--1 {
    top: 0;
    left: 0;
}

.hero__decorative-vector--2 {
    top: 251px;
    left: 268px;
}

/* ==========================================================================
   9. Signup Form Section
   ========================================================================== */
.signup {
    background-color: var(--fresh-grey);
    padding: 100px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.signup__card {
    background-color: var(--ambient-grey);
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    display: flex;
    gap: 50px;
}

.signup__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup__info .h2 {
    color: var(--white);
    max-width: 700px;
}

.signup__info .text-body {
    color: var(--white);
    font-size: 20px;
}

.signup__info .btn {
    margin-right: auto;
}

.signup__form {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup__form-submit {
    padding-top: 32px;
}

/* Sector dropdown panel */
.sector-panel {
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 10px;
}

.sector-panel--open {
    max-height: 500px;
    opacity: 1;
    padding: 10px;
    overflow-y: auto;
}

.sector-panel__grid {
    display: flex;
    gap: 20px;
}

.sector-panel__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sector-panel__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-blue);
}

.sector-panel__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
}

.sector-pill {
    background-color: var(--fresh-grey);
    padding: 10px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--dark-blue);
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border: 2px solid transparent;
    min-width: 0;
    overflow-wrap: break-word;
    hyphens: auto;
}

.sector-pill:hover {
    border-color: var(--dark-blue);
}

.sector-pill--active {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Grid layout used by the form-bound sector dropdown (flat list, no category grouping). */
.sector-dropdown {
    position: relative;
}

.sector-panel > .sector-panel__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 0;
}

.sector-dropdown--full-width .sector-panel > .sector-panel__items {
    grid-template-columns: 1fr;
}

/* Visually hide the real <select>. tabindex="-1" and aria-hidden="true" in the
   template keep it out of keyboard/AT focus; the controller redirects HTML5
   validation errors to the visible .form-select trigger. */
.sector-dropdown__select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Dark theme form card (used on Volandis page) */
.signup__card--dark {
    background-color: var(--dark-blue);
}

/* ==========================================================================
   10. How It Works / Carousel Section
   ========================================================================== */
.steps {
    background-color: var(--fresh-grey);
    background-image: url("../images/pattern-dsp-32SzRoq.svg");
    background-repeat: repeat;
    background-size: 556px 643px;
    padding: 100px 0;
    width: 100%;
}

.steps__inner {
    display: flex;
    gap: 46px;
    align-items: center;
}

.steps__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.steps__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    text-transform: uppercase;
    color: var(--dark-blue);
    text-align: center;
    width: 100%;
}

.steps__nav {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.steps__arrow {
    width: 60px;
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.steps__arrow:hover {
    opacity: 0.7;
}

.steps__arrow img {
    width: 60px;
    height: auto;
}

.steps__middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.steps__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    color: var(--highlighter-green);
}

.steps__description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark-blue);
    line-height: 1.5;
}

.steps__dots {
    display: flex;
    gap: 5px;
    padding: 32px 0;
}

.steps__dot {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--dark-blue);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.steps__dot--active {
    background-color: var(--highlighter-green);
}

.steps__image {
    flex: 1;
    display: flex;
    align-items: center;
}

.steps__image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 1;
}

.steps .btn {
    padding: 6px 12px;
    font-size: 24px;
    margin-top: 12px;
}

/* ==========================================================================
   11. Info Block (What is DSP)
   ========================================================================== */
.info-block {
    background-color: var(--dark-blue);
    padding: 50px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.info-block__inner {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
}

.info-block__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-block__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

.info-block__subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--highlighter-green);
    line-height: 1;
}

.info-block__body {
    color: var(--white);
    line-height: 1.6;
}

.info-block__body h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.info-block__body ul {
    list-style: disc;
    padding-left: 24px;
}

.info-block__body li {
    margin-bottom: 4px;
    font-size: 24px;
}

.info-block__body p {
    font-size: 24px;
    margin-bottom: 8px;
}

.info-block__body--small p,
.info-block__body--small li {
    font-size: 16px;
}

.info-block__images {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 560px;
    aspect-ratio: 800 / 562;
    border-radius: 20px;
    overflow: hidden;
}

.info-block__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-block__overlay {
    position: absolute;
    width: 57.625%;
    height: 111.388%;
    pointer-events: none;
}

.info-block__overlay--top-left {
    top: -48.932%;
    left: -30.375%;
}

.info-block__overlay--bottom-right {
    top: 66.014%;
    left: 81.125%;
}

/* ==========================================================================
   12. Info Block Basic (Volandis/Leermeesters pages)
   ========================================================================== */
.info-block-basic {
    background-color: var(--white);
    padding: 100px 0;
    min-height: 712px;
    width: 100%;
}

.info-block-basic__inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.info-block-basic--reversed .info-block-basic__inner {
    flex-direction: row-reverse;
}

.info-block-basic__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: var(--dark-blue);
}

.info-block-basic__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    max-width: 600px;
}

.info-block-basic__subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    max-width: 600px;
    margin-top: 8px;
}

.info-block-basic__body {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 8px;
}

.info-block-basic__body p {
    margin-bottom: 8px;
}

.info-block-basic__images {
    flex: 1;
    position: relative;
    display: grid;
    min-height: 631px;
}

.info-block-basic__img {
    border-radius: 20px;
    background-color: #d9d9d9;
    position: absolute;
    box-shadow: 10px 19px 42px rgba(0, 0, 0, 0.25);
}

.info-block-basic__img--1 {
    width: 41.5%;
    height: 254px;
    top: 0;
    left: 0;
}

.info-block-basic__img--2 {
    width: 55.4%;
    height: 339px;
    top: 292px;
    left: 6.4%;
}

.info-block-basic__img--3 {
    width: 49%;
    height: 264px;
    top: 109px;
    left: 51%;
}

/* Reversed variant image positions */
.info-block-basic--reversed .info-block-basic__img--1 {
    width: 37%;
    height: 226px;
    top: 0;
    left: 51%;
}

.info-block-basic--reversed .info-block-basic__img--2 {
    width: 49.3%;
    height: 301px;
    top: 276px;
    left: 50.7%;
}

.info-block-basic--reversed .info-block-basic__img--3 {
    width: 43.7%;
    height: 344px;
    top: 151px;
    left: 0;
}

/* Theme images */
.info-block-basic--leermeesters .info-block-basic__img,
.info-block-basic--volandis .info-block-basic__img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.info-block-basic--leermeesters .info-block-basic__img--1 {
    background-image: url("../images/info-block-leermeesters-1-kM0o3e4.jpg");
}

.info-block-basic--leermeesters .info-block-basic__img--2 {
    background-image: url("../images/info-block-leermeesters-2-VD9rgU3.jpg");
}

.info-block-basic--leermeesters .info-block-basic__img--3 {
    background-image: url("../images/info-block-leermeesters-3-aaKvHx8.jpg");
}

.info-block-basic--volandis .info-block-basic__img--1 {
    background-image: url("../images/info-block-volandis-1-FtbaRFB.jpg");
}

.info-block-basic--volandis .info-block-basic__img--2 {
    background-image: url("../images/info-block-volandis-2-MnZSJ1g.jpg");
}

.info-block-basic--volandis .info-block-basic__img--3 {
    background-image: url("../images/info-block-volandis-3-zRSqC5D.jpg");
}

/* ==========================================================================
   13. Leermeesters Form Section
   ========================================================================== */
.leermeesters {
    background: linear-gradient(-37deg, rgba(255, 78, 0, 0.5) 3%, rgba(38, 35, 48, 0.5) 37%), linear-gradient(90deg, var(--dark-blue), var(--dark-blue));
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.leermeesters__inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.leermeesters__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.leermeesters__form > * {
    align-self: stretch;
    width: auto;
}

.leermeesters__form > .btn {
    align-self: flex-end;
    width: auto;
}

.leermeesters__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.leermeesters__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

.leermeesters__subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--magma-red);
    line-height: 1;
}

.leermeesters__body {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

.leermeesters__body h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.leermeesters__body ul {
    list-style: disc;
    padding-left: 24px;
}

.leermeesters__body li {
    margin-bottom: 4px;
}

/* ==========================================================================
   14. FAQ Section
   ========================================================================== */
.faq {
    background-color: var(--dark-blue);
    padding: 100px 0;
    width: 100%;
}

.faq__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    color: var(--white);
}

.faq__item {
    background-color: var(--fresh-grey);
    border-radius: 10px;
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 27px 31px;
    width: 100%;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}

.faq__question-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 32px;
    color: var(--dark-blue);
    white-space: nowrap;
}

.faq__question-spacer {
    flex: 1;
}

.faq__question-icon {
    width: 60px;
    height: 52px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__question-icon--rotated {
    transform: rotate(180deg);
}

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

.faq__answer-content {
    padding: 0 31px 27px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
.footer {
    background-color: var(--white);
    overflow: hidden;
    width: 100%;
}

.footer__inner {
    display: flex;
    gap: 115px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
    padding: 114px 84px;
}

.footer__logo {
    width: 375px;
    height: 101px;
    flex-shrink: 0;
}

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

.footer__columns {
    display: flex;
    gap: 100px;
    flex-shrink: 0;
    align-items: flex-start;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 126px;
}

.footer__column-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    white-space: nowrap;
}

.footer__column-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-blue);
    transition: opacity 0.2s;
}

.footer__column-link:hover {
    opacity: 0.7;
}

.footer__socials {
    width: auto;
    gap: 10px;
}

.footer__socials-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
}

.footer__socials-row {
    display: flex;
    gap: 10px;
    height: 36px;
}

.footer__social-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer__social-icon img {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   16. Page Layouts
   ========================================================================== */
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.page--wat-is-mijn-dsp {
    background-color: var(--fresh-grey);
}

.page--volandis,
.page--leermeesters {
    background-color: var(--white);
}


/* ==========================================================================
   18. Home Page: Conversion Hero
   ========================================================================== */
.page--home {
    background-color: var(--dark-blue);
}

/* Dark button variant used by the conversion form submit. */
.btn--dark {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.conversion-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.conversion-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

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

.conversion-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(38, 35, 48, 0.55) 0%, rgba(38, 35, 48, 0.15) 60%, rgba(38, 35, 48, 0.1) 100%);
}

.conversion-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(520px, 576px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "tiles form"
        "text  form";
    align-items: center;
    justify-items: start;
    column-gap: 60px;
    row-gap: 40px;
    padding: 120px 0 0 160px;
}

.conversion-hero__tiles { grid-area: tiles; }
.conversion-hero__content {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: stretch;
}
.conversion-hero__form-panel { grid-area: form; }

.conversion-hero__tiles {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 520 / 324;
    justify-self: start;
}

.conversion-hero__tile {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 4px 19.8px 0 rgba(0, 0, 0, 0.25);
    object-fit: cover;
    max-width: none;
}

.conversion-hero__tile--1 {
    top: 28.1%;
    left: 58.2%;
    width: 41.8%;
    height: 72.0%;
}

.conversion-hero__tile--2 {
    top: 0;
    left: 35.1%;
    width: 29.6%;
    height: 56.2%;
}

.conversion-hero__tile--3 {
    top: 28.1%;
    left: 0;
    width: 37.7%;
    height: 65.7%;
}

.conversion-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-top: 364px;
    color: var(--white);
    max-width: 576px;
}

.conversion-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2.56px;
    color: var(--white);
}

.conversion-hero__title-accent {
    color: var(--highlighter-green);
}

.conversion-hero__body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
}

.conversion-hero__body--bold {
    font-weight: 700;
}

.conversion-hero__form-panel {
    position: relative;
    align-self: stretch;
    justify-self: end;
    padding: 100px 84px 100px 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(50vw, 1600px);
    min-height: 100%;
    overflow: visible;
}

@media screen and (min-width: 1200px) {
    .conversion-hero__form-panel {
        min-height: 100vh;
    }
}

.conversion-hero__form-panel-shape {
    position: absolute;
    top: -70px;
    right: 0;
    width: 100%;
    height: calc(100vh + 300px);
    object-fit: fill;
    pointer-events: none;
    z-index: 0;
    display: block;
    max-width: none;
}

.conversion-hero__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 200px;
    width: 100%;
    max-width: 600px;
    container-type: inline-size;
}

.conversion-hero__form :is(a, button, input, select, textarea):focus-visible {
    outline-color: var(--color-blue);
}

.conversion-hero__form .form-input,
.conversion-hero__form .form-select {
    min-width: 0;
    text-align: center;
}

.conversion-hero__submit {
    margin-top: 12px;
    padding: 24px;
    width: 100%;
    letter-spacing: -0.96px;
    font-size: clamp(20px, 5cqi, 2rem);
    white-space: normal;
}

/* ==========================================================================
   19. Hamburger Navigation
   ========================================================================== */
.hamburger-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
}

.hamburger-nav__button {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 40px;
    margin: 50px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}

.hamburger-nav__bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    box-shadow: 0 4px 9.1px rgba(0, 0, 0, 1);
    transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center center;
}

.hamburger-nav__button--open .hamburger-nav__bar {
    background-color: var(--dark-blue);
    border-radius: 0;
    box-shadow: none;
}

.hamburger-nav__button--open .hamburger-nav__bar:nth-child(1) {
    transform: translate(-18.5px, 13.5px) rotate(-45deg) scaleX(0.28);
}

.hamburger-nav__button--open .hamburger-nav__bar:nth-child(3) {
    transform: translate(-18.5px, -13.5px) rotate(45deg) scaleX(0.28);
}

.hamburger-nav__panel {
    position: fixed;
    top: -4px;
    left: -58px;
    width: 500px;
    max-width: calc(90vw + 58px);
    height: 962px;
    max-height: calc(100vh + 4px);
    padding: 160px 50px 50px 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.hamburger-nav__shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
    pointer-events: none;
    display: block;
    max-width: none;
}

.hamburger-nav__panel--open {
    transform: translateX(0);
}

.hamburger-nav__menu {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hamburger-nav__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hamburger-nav__link:hover {
    opacity: 0.7;
}

.hamburger-nav__link--active {
    text-decoration: underline;
}

.hamburger-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    background-color: var(--dark-blue);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.hamburger-nav__cta:hover {
    opacity: 0.9;
}

.hamburger-nav__cta:active {
    transform: scale(0.98);
}

/* ==========================================================================
   20. Home Page Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .conversion-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
        grid-template-areas:
            "text form"
            "text form";
        padding: 100px 0 100px 100px;
        column-gap: 40px;
        row-gap: 0;
    }

    .conversion-hero__tiles {
        display: none;
    }

    .conversion-hero__form-panel {
        padding: 60px 60px 60px 120px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .conversion-hero__form-panel {
        padding-left: 60px;
        padding-right: 30px;
    }
}

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

    .conversion-hero__inner {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        padding: 100px 60px 60px;
        gap: 40px;
        height: auto;
        min-height: auto;
    }

    .conversion-hero__tiles,
    .conversion-hero__content,
    .conversion-hero__form-panel {
        grid-area: auto;
    }

    .conversion-hero__content {
        padding-top: 0;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .conversion-hero__tiles {
        display: block;
        max-width: 100%;
        justify-self: center;
    }

    .conversion-hero__form-panel {
        padding: 40px 0;
        min-height: 0;
        max-width: none;
        justify-self: stretch;
        overflow: hidden;
    }

    .conversion-hero__form-panel-shape {
        display: none;
    }

    .sector-panel > .sector-panel__items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .conversion-hero__inner {
        padding: 120px 20px 40px;
        gap: 30px;
    }

    .conversion-hero__title {
        font-size: 40px;
        letter-spacing: -1.6px;
    }

    .conversion-hero__submit {
        font-size: 20px;
        padding: 16px;
    }

    .hamburger-nav__panel {
        max-width: calc(90vw + 58px);
        height: 793px;
        max-height: calc(100vh + 4px);
        padding: 100px 30px 30px 80px;
        border-radius: 0 0 40px 0;
    }

    .hamburger-nav__link {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .conversion-hero__title {
        font-size: 32px;
    }

    .conversion-hero__inner {
        padding: 100px 16px 40px;
    }
}


/* ==========================================================================
   17. Responsive
   ========================================================================== */

@media (max-width: 1440px) {

    .hero--wat-is-mijn-dsp {
        & .hero__media-shape {
            width: 140%;
        }

        & .hero__video {
            width: 300px;
        }
    }
}


@media (max-width: 1024px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero__inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__phone {
        display: none;
    }

    .hero--volandis,
    .hero--leermeesters {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .signup__card {
        flex-direction: column;
    }

    .signup__info,
    .signup__form {
        width: 100%;
    }

    .steps {
        padding: 60px 0;
    }

    .steps__inner {
        flex-direction: column;
    }

    .steps__label {
        font-size: 48px;
    }

    .steps__title {
        font-size: 36px;
    }

    .info-block {
        padding: 60px 0;
    }

    .info-block__inner {
        flex-direction: column;
    }

    .info-block__images {
        width: 100%;
        max-width: 100%;
    }

    .info-block__photo {
        width: 100%;
        height: auto;
    }

    .info-block-basic {
        padding: 60px 0;
        min-height: auto;
    }

    .info-block-basic__inner,
    .info-block-basic--reversed .info-block-basic__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .info-block-basic__images {
        min-height: 0;
        aspect-ratio: 576 / 631;
    }

    .info-block-basic__img--1 {
        height: 40.25%;
        top: 0;
    }

    .info-block-basic__img--2 {
        height: 53.72%;
        top: 46.28%;
    }

    .info-block-basic__img--3 {
        height: 41.84%;
        top: 17.27%;
    }

    .info-block-basic--reversed .info-block-basic__images {
        aspect-ratio: 576 / 577;
    }

    .info-block-basic--reversed .info-block-basic__img--1 {
        height: 39.17%;
    }

    .info-block-basic--reversed .info-block-basic__img--2 {
        height: 52.17%;
        top: 47.83%;
    }

    .info-block-basic--reversed .info-block-basic__img--3 {
        height: 59.62%;
        top: 26.17%;
    }

    .leermeesters {
        padding: 60px 0;
    }

    .leermeesters__inner {
        flex-direction: column;
    }

    .leermeesters__text {
        width: 100%;
    }

    .leermeesters__title {
        font-size: 48px;
    }

    .faq__question-text {
        font-size: 24px;
    }

    .footer {
        padding: 60px 0;
    }

    .footer__inner {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding: 0 40px;
    }

    .btn {
        font-size: 24px;
    }

    .h1, .hero__title, .info-block__title, .leermeesters__title, .steps__label {
        font-size: 48px;
    }

    .h2, .faq__title, .signup__info .h2 {
        font-size: 36px;
    }

    .hero--wat-is-mijn-dsp {
        .hero__inner {
            flex-direction: row;
        }

        & .hero__media-shape {
            width: 140%;
        }

        & .hero__video {
            width: 300px;
        }
    }
}

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

    .nav {
        height: 80px;
    }

    .nav__inner {
        padding: 0 20px;
        gap: 20px;
    }

    .nav__logo {
        width: 150px;
    }

    .nav__links {
        display: none;
    }

    .hero__title, .h1 {
        font-size: 36px;
    }

    .h2, .faq__title {
        font-size: 28px;
    }

    .btn {
        font-size: 20px;
        padding: 10px 16px;
    }

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

    .steps__nav {
        flex-direction: column;
    }

    .steps__dots .steps__dot {
        width: 25px;
        height: 25px;
    }

    .info-block__body li,
    .info-block__body p {
        font-size: 16px;
    }

    .faq__question-text {
        font-size: 20px;
        white-space: normal;
    }

    .faq__question-icon {
        width: 40px;
        height: 35px;
    }

    .footer__columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer__logo {
        width: 100%;
        max-width: 375px;
        height: auto;
        aspect-ratio: 375 / 101;
    }

    .page--sign-up-thanks .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero {
        padding: 40px 0;
        padding-top: 100px;
    }

    .page--sign-up-thanks .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .signup {
        padding: 40px 0;
    }

    .signup__card {
        padding: 20px;
        border-radius: 20px;
    }

    .steps {
        padding: 40px 0;
    }

    .info-block {
        padding: 40px 0;
    }

    .leermeesters {
        padding: 40px 0;
    }

    .faq {
        padding: 60px 0;
    }

    .btn {
        font-size: 16px;
    }

    .info-block__title {
        font-size: 36px;
    }

    .leermeesters__title {
        font-size: 36px;
    }

    .hero__media-shape {
        display: none;
    }

    .hamburger-nav__button {
        margin: 25px;
    }
}
