/* ─── Variables ──────────────────────────────────────── */

:root {
    --blue: #004B62;
    --dark: #003344;
    --orange: #0B6DC0;
    --orange-hover: #0B6DC0;
    --gray: #F5F5F5;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --nav-stack-height: 104px;
    --afm-banner-height: 60px;
    --header-offset: calc(var(--nav-stack-height) + var(--afm-banner-height));
}


/* ─── Reset & Base ───────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
    height: -webkit-fill-available;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}


/* ─── Container ──────────────────────────────────────── */

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


/* ─── Buttons ────────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-primary:hover {
    background: var(--orange-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
}

.btn-disabled,
.btn-disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.4);
    cursor: default;
}


/* ─── Navigation ─────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(0, 75, 98, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    height: 72px;
    width: auto;
    fill: currentColor;
}

.logo-separator {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.4);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.15em;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

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

.nav-links a.is-active {
    color: var(--orange);
}

.nav-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 6px 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.nav-lang:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.nav-lang img {
    border-radius: 2px;
    opacity: 0.8;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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


/* ─── Hero ───────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    padding: calc(120px + var(--header-offset)) 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 50%, #006680 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 81, 0, 0.08) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.hero-tag:empty {
    display: none;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-text p {
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ─── Section Base ───────────────────────────────────── */

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--gray);
}

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

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

.section-header h2 {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-header-light h2 {
    color: var(--white);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto;
}


/* ─── Performance ────────────────────────────────────── */

.unit-price-display {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.unit-label {
    font-size: 16px;
    color: var(--text-light);
}

.unit-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
}

.chart-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}

.chart-wrapper canvas {
    width: 100% !important;
    height: 420px !important;
    max-height: 420px;
}

.chart-caption {
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.table-title {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 8px;
}

.table-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.table-partial-note {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.eid-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.eid-block__title {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 8px;
}

.eid-block__text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.eid-block__btn {
    padding: 12px 28px;
}

.eid-block__notes {
    margin-top: 16px;
    font-size: 11.5px;
    color: var(--text-muted);
    font-style: italic;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.eid-block__notes-label {
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-bottom: 4px;
}

.eid-block__note {
    margin: 2px 0;
    line-height: 1.5;
}

#performance {
    padding-bottom: 40px;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.returns-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 800px;
}

.returns-table th {
    background: var(--blue);
    color: var(--white);
    padding: 10px 8px;
    text-align: right;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.returns-table th:first-child {
    text-align: left;
}

.returns-table__since-inception {
    width: 96px;
    white-space: normal;
    line-height: 1.25;
}

.returns-table td {
    padding: 8px;
    text-align: right;
    border-bottom: 1px solid var(--border);
    font-variant-numeric: tabular-nums;
    position: relative;
}

.returns-table__since-inception-cell {
    width: 96px;
    white-space: nowrap;
}

.returns-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--blue);
}

.returns-table tbody tr:hover {
    background: rgba(0, 75, 98, 0.04);
}

.returns-table .positive {
    color: #2e7d32;
}

.returns-table .negative {
    color: #c62828;
}

.returns-partial-cell::after {
    content: "*";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(11, 109, 192, 0.14);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}


/* ─── News / Subscribe ───────────────────────────────── */

.subscribe-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-box h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.subscribe-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.subscribe-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-row {
    display: flex;
    gap: 12px;
}

.subscribe-row input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}

.subscribe-row .btn {
    white-space: nowrap;
}

.alphatower-maandbericht {
    width: 100%;
}

.alphatower-maandbericht .sib-form,
.alphatower-maandbericht .sib-form-container,
.alphatower-maandbericht [class*="sib-container"] {
    background: transparent !important;
}

.alphatower-maandbericht .sib-form {
    text-align: left !important;
}

.alphatower-maandbericht .sib-form-message-panel {
    display: none;
    margin: 0 0 16px;
    max-width: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.alphatower-maandbericht .sib-form-message-panel .sib-notification__icon {
    width: 20px;
    height: 20px;
}

.alphatower-maandbericht .sib-form-message-panel.sib-form-message-panel--active {
    display: block;
}

.alphatower-maandbericht .sib-form-message-panel__text,
.alphatower-maandbericht .sib-form-message-panel__text--center {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px;
    padding: 14px 16px !important;
    border-left: 3px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-align: left !important;
    line-height: 1.5;
}

.alphatower-maandbericht #success-message .sib-form-message-panel__text {
    border-left-color: #55c78a;
    background: rgba(85, 199, 138, 0.16) !important;
    color: #ecfff4 !important;
}

.alphatower-maandbericht #error-message .sib-form-message-panel__text {
    border-left-color: #f16f6f;
    background: rgba(241, 111, 111, 0.16) !important;
    color: #fff1f1 !important;
}

.alphatower-maandbericht .sib-form-container > div:empty {
    display: none;
}

.alphatower-maandbericht [id^="sib-container"] {
    max-width: none !important;
    width: 100%;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.alphatower-maandbericht form[data-type="subscription"] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.alphatower-maandbericht form[data-type="subscription"] > div:first-child {
    flex: 1 1 0;
    min-width: 0;
}

.alphatower-maandbericht form[data-type="subscription"] > div:last-of-type {
    flex: 0 0 176px;
    transform: translateY(-8px);
}

.alphatower-maandbericht .sib-form-block,
.alphatower-maandbericht .sib-input,
.alphatower-maandbericht .form__entry,
.alphatower-maandbericht .form__label-row,
.alphatower-maandbericht .entry__field {
    width: 100%;
}

.alphatower-maandbericht .entry__label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.alphatower-maandbericht .entry__label::after {
    display: none !important;
}

.alphatower-maandbericht .entry__field {
    margin: 0 !important;
    min-height: 46px;
}

.alphatower-maandbericht input[name="EMAIL"] {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    color: var(--text) !important;
}

.alphatower-maandbericht input[name="EMAIL"]::placeholder {
    color: #7f93a3 !important;
    opacity: 1;
}

.alphatower-maandbericht .entry__error:empty {
    display: none !important;
}

.alphatower-maandbericht .entry__error:not(:empty) {
    display: block !important;
    margin-top: 8px !important;
    padding: 10px 12px !important;
    border: none !important;
    border-left: 3px solid #f16f6f !important;
    border-radius: 0 !important;
    background: rgba(241, 111, 111, 0.16) !important;
    color: #fff1f1 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.alphatower-maandbericht .sib-form-block[style*="text-align: left"] {
    text-align: left !important;
}

.alphatower-maandbericht .sib-form-block__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    padding: 10px 22px !important;
    border: none !important;
    border-radius: 0 !important;
    background: #0878c9 !important;
    color: var(--white) !important;
    box-shadow: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    text-transform: uppercase;
    white-space: nowrap;
}

.alphatower-maandbericht .sib-form-block__button:hover {
    background: #0878c9 !important;
}

.alphatower-maandbericht .sib-form-block__button .progress-indicator__icon {
    margin-right: 8px;
}


/* ─── Team ───────────────────────────────────────────── */

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

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    transition: box-shadow 0.2s;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-card-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange);
}

.team-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--orange);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-email {
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
    transition: color 0.2s;
}

.team-email:hover {
    color: var(--orange);
}


/* ─── Contact ────────────────────────────────────────── */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
    align-items: start;
}

.contact-form {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-privacy {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form.contact-brevo {
    color: var(--white);
}

.contact-form.contact-brevo .sib-form,
.contact-form.contact-brevo .sib-form-container,
.contact-form.contact-brevo [class*="sib-container"] {
    background: transparent !important;
}

.contact-form.contact-brevo .sib-form {
    text-align: left !important;
}

.contact-form.contact-brevo .sib-form-message-panel {
    display: none;
    margin: 0 0 18px;
    max-width: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.contact-form.contact-brevo .sib-form-message-panel.sib-form-message-panel--active {
    display: block;
}

.contact-form.contact-brevo .sib-form-message-panel .sib-notification__icon {
    width: 20px;
    height: 20px;
}

.contact-form.contact-brevo .sib-form-message-panel__text,
.contact-form.contact-brevo .sib-form-message-panel__text--center {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px;
    padding: 14px 16px !important;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-align: left !important;
    line-height: 1.5;
}

.contact-form.contact-brevo #contact-brevo-success-message .sib-form-message-panel__text {
    border-left-color: #55c78a;
    background: rgba(85, 199, 138, 0.16) !important;
    color: #ecfff4 !important;
}

.contact-form.contact-brevo #contact-brevo-error-message .sib-form-message-panel__text {
    border-left-color: #f16f6f;
    background: rgba(241, 111, 111, 0.16) !important;
    color: #fff1f1 !important;
}

.contact-form.contact-brevo .sib-form-container > div:empty,
.contact-form.contact-brevo .contact-brevo-helper {
    display: none !important;
}

.contact-form.contact-brevo #contact-brevo-container {
    max-width: none !important;
    width: 100%;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.contact-brevo-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}

.contact-brevo-field-full {
    grid-column: 1 / -1;
}

.contact-form.contact-brevo .sib-form-block,
.contact-form.contact-brevo .sib-input,
.contact-form.contact-brevo .form__entry,
.contact-form.contact-brevo .form__label-row,
.contact-form.contact-brevo .entry__field {
    width: 100%;
}

.contact-form.contact-brevo .entry__label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.contact-form.contact-brevo .entry__label::after {
    display: none !important;
}

.contact-form.contact-brevo .entry__field {
    margin: 0 !important;
}

.contact-form.contact-brevo input[name="FIRSTNAME"],
.contact-form.contact-brevo input[name="LASTNAME"],
.contact-form.contact-brevo input[name="EMAIL"],
.contact-form.contact-brevo textarea[name="MESSAGE"] {
    width: 100%;
    padding: 12px 14px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.96) !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    color: var(--text) !important;
}

.contact-form.contact-brevo input[name="FIRSTNAME"],
.contact-form.contact-brevo input[name="LASTNAME"],
.contact-form.contact-brevo input[name="EMAIL"] {
    min-height: 46px;
}

.contact-form.contact-brevo textarea[name="MESSAGE"] {
    min-height: 126px;
    resize: vertical;
}

.contact-form.contact-brevo input[name="FIRSTNAME"]::placeholder,
.contact-form.contact-brevo input[name="LASTNAME"]::placeholder,
.contact-form.contact-brevo input[name="EMAIL"]::placeholder,
.contact-form.contact-brevo textarea[name="MESSAGE"]::placeholder {
    color: #7f93a3 !important;
    opacity: 1;
}

.contact-form.contact-brevo .entry__error:empty {
    display: none !important;
}

.contact-form.contact-brevo .entry__error:not(:empty) {
    display: block !important;
    margin-top: 8px !important;
    padding: 10px 12px !important;
    border: none !important;
    border-left: 3px solid #f16f6f !important;
    border-radius: 0 !important;
    background: rgba(241, 111, 111, 0.16) !important;
    color: #fff1f1 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.contact-brevo-privacy {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
}

#contact {
    padding: 64px 0 68px;
}

#contact .section-header {
    margin-bottom: 40px;
}

.contact-form.contact-brevo .contact-brevo-submit-wrap {
    margin-top: 22px;
    text-align: left !important;
}

.contact-form.contact-brevo .sib-form-block__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 176px;
    padding: 10px 22px !important;
    border: none !important;
    border-radius: 0 !important;
    background: #0878c9 !important;
    color: var(--white) !important;
    box-shadow: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-form.contact-brevo .sib-form-block__button:hover {
    background: #0878c9 !important;
}

.contact-form.contact-brevo .sib-form-block__button .progress-indicator__icon {
    margin-right: 8px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 110px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.contact-detail a {
    color: var(--white);
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--orange);
}

.contact-registers strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.contact-registers ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-registers li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-registers a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.contact-registers a:hover {
    color: var(--orange);
}


/* ─── Footer ─────────────────────────────────────────── */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 64px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.footer-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.15em;
}

.footer h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

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

.footer li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--orange);
}

.footer-link {
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.6);
    font: inherit;
    text-align: left;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}


/* ─── AFM Banner ─────────────────────────────────────── */

.afm-banner {
    position: fixed;
    top: var(--nav-stack-height);
    left: 0;
    right: 0;
    z-index: 90;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 110px 0 24px;
    height: var(--afm-banner-height);
    box-sizing: border-box;
}

.afm-banner span {
    font-weight: 700;
    font-size: clamp(13px, 1.4vw, 20px);
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.afm-banner__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 70%;
    width: auto;
}


/* ─── Language Toggle ────────────────────────────────── */

html[lang="en"] .lang-nl,
html[lang="nl"] .lang-en {
    display: none !important;
}


/* ─── News Page Hero ────────────────────────────────── */

.news-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: -webkit-fill-available;
    padding: calc(140px + var(--header-offset)) 0 80px;
    overflow: hidden;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 50%, #006680 100%);
    z-index: 0;
}

.news-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 81, 0, 0.08) 0%, transparent 40%);
}

.news-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.news-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.news-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.news-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.news-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

.news-stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.news-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── News Archive Section ──────────────────────────── */

.news-archive-intro {
    text-align: center;
    max-width: 600px;
    margin: -24px auto 40px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

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

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

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

.news-card-header {
    margin-bottom: 14px;
}

.news-card-date {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    background: rgba(230, 81, 0, 0.08);
    padding: 4px 10px;
}

.news-card-title {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s, gap 0.2s;
}

.news-card-link:hover {
    color: var(--orange);
    gap: 10px;
}

.news-card-link svg {
    flex-shrink: 0;
}


/* ─── Article Cards ─────────────────────────────────── */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.reports-cta {
    display: flex;
    justify-content: center;
    margin: 12px 0 56px;
}

.article-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
    transition: background 0.2s;
}

.article-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.article-date {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.article-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.btn-link:hover {
    color: #ff6d1a;
}


/* ─── Modals ────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 24px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    max-width: 720px;
    width: 100%;
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.article-modal-content {
    max-width: 800px;
}

.modal-content h2 {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 18px;
    color: var(--dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 14px;
}

.modal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
}

.modal-content li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 6px;
}

.modal-content a {
    color: var(--blue);
    text-decoration: underline;
}

.modal-content a:hover {
    color: var(--orange);
}

.modal-content em {
    color: var(--text-muted);
    font-size: 13px;
}

.modal-content strong {
    font-weight: 600;
}

.modal-content img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    z-index: 2;
}

.modal-close:hover {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}

.article-full .article-date {
    color: var(--text-muted);
    margin-bottom: 4px;
}


/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 768px) {
    #contact {
        padding: 72px 0;
    }

    #contact .section-header {
        margin-bottom: 48px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 14px;
    }

    .nav-divider {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .news-page-title {
        font-size: 32px;
    }

    .news-page-subtitle {
        font-size: 16px;
    }

    .news-page-meta-card {
        min-width: 100%;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

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

    .modal-content {
        padding: 32px 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 0;
        margin-top: 0;
    }

    .contact-brevo-fields {
        grid-template-columns: 1fr;
    }

    .contact-form.contact-brevo .sib-form-block__button {
        width: 100%;
    }

    .contact-form.contact-brevo .contact-brevo-submit-wrap {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .subscribe-row {
        flex-direction: column;
    }

    .alphatower-maandbericht form[data-type="subscription"] {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }

    .alphatower-maandbericht form[data-type="subscription"] > div:last-of-type,
    .alphatower-maandbericht .sib-form-block__button {
        width: 100%;
        flex-basis: auto;
    }

    .alphatower-maandbericht form[data-type="subscription"] > div:last-of-type {
        transform: none;
    }

    .unit-price-display {
        flex-direction: column;
        gap: 4px;
    }

}

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

    .section {
        padding: 60px 0;
    }
}


/* ─── Scrollbar ──────────────────────────────────────── */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: #005f7f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}
