/* ============================================
   A to Z Clean — Premium Website Styles
   ============================================ */

:root {
    --primary: #0c2461;
    --primary-dark: #081a45;
    --primary-light: #1e3799;
    --accent: #3498db;
    --dark: #0c2461;
    --dark-soft: #1a3270;
    --text: #2c3e50;
    --text-light: #636e72;
    --white: #ffffff;
    --bg: #ecf0f1;
    --bg-alt: #dfe6e9;
    --border: #d5dbdb;
    --shadow: 0 4px 24px rgba(12, 36, 97, 0.08);
    --shadow-lg: 0 20px 60px rgba(12, 36, 97, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --inner-hero-gradient: linear-gradient(135deg, #081a45 0%, #0c2461 52%, #1e3799 100%);
    --inner-hero-glow:
        radial-gradient(circle at 88% 12%, rgba(52, 152, 219, 0.2), transparent 34%),
        radial-gradient(circle at 10% 92%, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 48%);
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1400px;
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    padding: 5px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar__contact {
    display: flex;
    gap: 18px;
}

.top-bar__contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.top-bar__contact a:hover { color: var(--bg); }

.top-bar__badge {
    color: var(--bg);
    font-weight: 500;
    background: rgba(236, 240, 241, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__portal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.top-bar__portal-link svg {
    width: 13px;
    height: 13px;
    opacity: 0.9;
}

.top-bar__portal-link:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(12, 36, 97, 0.05);
    contain: layout style;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 10px 0;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo--header {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo--animated .logo__img--header {
    animation: logoFadeIn 0.7s var(--ease-out) both;
    transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.logo--animated:hover .logo__img--header {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

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

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

    .logo--animated:hover .logo__img--header {
        transform: none;
        filter: none;
    }
}

.logo__img {
    display: block;
    width: auto;
    object-fit: contain;
    transition: opacity var(--transition);
}

.logo__img--header {
    height: 58px;
    width: auto;
}

.logo:hover .logo__img {
    opacity: 0.9;
}

.logo--footer {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

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

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

.nav__link {
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 0;
    transition: color var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 3px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav__link:hover {
    color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__link.active {
    color: var(--primary);
    font-weight: 600;
    background: none;
}

.nav__dropdown {
    position: relative;
}

.nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: color var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav__trigger::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 3px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav__trigger:hover,
.nav__dropdown.is-active > .nav__trigger,
.nav__dropdown.open > .nav__trigger {
    color: var(--primary);
    background: transparent;
}

.nav__dropdown.is-active > .nav__trigger {
    font-weight: 600;
}

.nav__trigger:hover::after,
.nav__dropdown.is-active > .nav__trigger::after,
.nav__dropdown.open > .nav__trigger::after {
    transform: scaleX(1);
}

.nav__chevron {
    opacity: 0.55;
    transition: transform var(--transition), opacity var(--transition);
}

.nav__trigger:hover .nav__chevron,
.nav__dropdown.is-active > .nav__trigger .nav__chevron,
.nav__dropdown.open > .nav__trigger .nav__chevron {
    opacity: 1;
}

.nav__dropdown.open .nav__chevron,
.nav__dropdown:hover .nav__chevron {
    transform: rotate(180deg);
}

.nav__submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 300px;
    background: var(--white);
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 12px;
    box-shadow:
        0 4px 6px rgba(12, 36, 97, 0.04),
        0 16px 40px rgba(12, 36, 97, 0.1);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1001;
    overflow: hidden;
}

.nav__submenu-all {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.nav__submenu-all:hover,
.nav__submenu-all.active {
    color: var(--primary);
    background: rgba(12, 36, 97, 0.04);
}

.nav__submenu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 4px 0 2px;
    margin-top: 2px;
    border-top: 1px solid rgba(12, 36, 97, 0.07);
}

.nav__submenu-grid a {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text);
    border-radius: 7px;
    border-left: 2px solid transparent;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.nav__submenu-grid a:hover,
.nav__submenu-grid a.active {
    color: var(--primary);
    background: rgba(12, 36, 97, 0.04);
    border-left-color: var(--primary);
}

.nav__trigger:focus-visible {
    outline: 3px solid rgba(52, 152, 219, 0.45);
    outline-offset: 2px;
}

.nav__dropdown:hover .nav__submenu,
.nav__dropdown.open .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
    display: block;
    transition: color var(--transition), background var(--transition);
}

.nav__submenu a:hover,
.nav__submenu a.active {
    color: var(--primary);
}

.nav__cta {
    margin-left: 0;
    padding: 8px 16px !important;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: none !important;
    background: var(--primary) !important;
}

.header__cta-group {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 6px;
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s var(--ease-out);
}

.header-whatsapp:hover {
    opacity: 0.85;
}

.header-whatsapp__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #25d366;
}

.header-whatsapp__icon svg {
    width: 28px;
    height: 28px;
}

.header-whatsapp__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.header-whatsapp__label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
}

.header-whatsapp__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    transform: none !important;
    background: var(--primary-dark) !important;
    box-shadow: 0 4px 12px rgba(12, 36, 97, 0.18) !important;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

body.nav-open { overflow: hidden; }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(12, 36, 97, 0.28);
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--primary:hover::after { opacity: 1; }

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(12, 36, 97, 0.38);
}

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

.btn--secondary {
    background: var(--dark);
    color: white;
}

.btn--secondary:hover { background: var(--dark-soft); }

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

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn--ghost {
    background: transparent;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 10px 18px;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

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

.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.85);
    transform: none;
    box-shadow: none;
}

.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(165deg, #f0f6fc 0%, #f8fafc 45%, #eef4fa 100%);
}

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

.hero__bubbles {
    position: absolute;
    inset: 0;
}

.hero__bubble {
    position: absolute;
    border-radius: 50%;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    backface-visibility: hidden;
}

.hero__bubble--1 {
    width: 120px;
    height: 120px;
    top: 12%;
    right: 10%;
    border: 4px solid rgba(52, 152, 219, 0.45);
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(52, 152, 219, 0.12));
    box-shadow: inset -6px -6px 16px rgba(52, 152, 219, 0.08), 0 6px 24px rgba(52, 152, 219, 0.1);
    animation: bubbleDrift1 7s ease-in-out infinite;
}

.hero__bubble--2 {
    width: 72px;
    height: 72px;
    top: 55%;
    right: 26%;
    border: 3px solid rgba(30, 55, 153, 0.42);
    background: rgba(255, 255, 255, 0.55);
    animation: bubbleDrift2 5.5s ease-in-out infinite;
}

.hero__bubble--3 {
    width: 150px;
    height: 150px;
    bottom: 8%;
    right: 6%;
    border: 5px solid rgba(52, 152, 219, 0.35);
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.85), rgba(30, 55, 153, 0.08));
    animation: bubbleDrift3 9s ease-in-out infinite;
}

.hero__bubble--4 {
    width: 56px;
    height: 56px;
    top: 28%;
    right: 42%;
    border: 3px solid rgba(52, 152, 219, 0.5);
    background: rgba(255, 255, 255, 0.65);
    animation: bubbleDrift4 4.5s ease-in-out infinite;
}

.hero__bubble--5 {
    width: 96px;
    height: 96px;
    bottom: 18%;
    left: 10%;
    border: 4px solid rgba(30, 55, 153, 0.32);
    background: radial-gradient(circle at 28% 28%, rgba(255,255,255,0.95), rgba(52, 152, 219, 0.1));
    animation: bubbleDrift5 6.5s ease-in-out infinite;
}

.hero__bubble--6 {
    width: 48px;
    height: 48px;
    top: 18%;
    left: 45%;
    border: 3px solid rgba(52, 152, 219, 0.55);
    background: rgba(255, 255, 255, 0.75);
    animation: bubbleDrift6 4s ease-in-out infinite;
}

.hero__bubble--7 {
    width: 110px;
    height: 110px;
    bottom: 10%;
    left: 32%;
    border: 4px solid rgba(52, 152, 219, 0.28);
    background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.8), rgba(30, 55, 153, 0.06));
    animation: bubbleDrift7 8s ease-in-out infinite;
}

@keyframes bubbleDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(45px, -55px); }
}

@keyframes bubbleDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 35px); }
}

@keyframes bubbleDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 40px); }
}

@keyframes bubbleDrift4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-35px, -30px); }
}

@keyframes bubbleDrift5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -25px); }
}

@keyframes bubbleDrift6 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 45px); }
}

@keyframes bubbleDrift7 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(35px, -40px); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    padding: 32px 24px 40px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    max-width: 100%;
}

.hero__label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #27ae60;
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.12;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.hero__text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 440px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero__actions .btn--lg {
    padding: 11px 22px;
    font-size: 14px;
}

.hero__visual {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero__photo-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(12, 36, 97, 0.12);
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(12, 36, 97, 0.06);
}

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

.hero__photo-wrap--company .hero__photo-overlay {
    background: linear-gradient(180deg, transparent 45%, rgba(8, 26, 69, 0.55) 100%);
}

.hero__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(8, 26, 69, 0.35) 100%);
    pointer-events: none;
}

.hero__photo-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(180deg, transparent 20%, rgba(8, 26, 69, 0.82));
}

.hero__photo-badge {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 8px 14px 9px;
    min-width: 76px;
    box-shadow: 0 6px 18px rgba(8, 26, 69, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero__photo-badge strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero__photo-badge span {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__photo-tags {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__photo-tags li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(8, 26, 69, 0.18);
    transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.hero__photo-tags li:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.42);
    transform: translateY(-1px);
}

.hero__photo-tags svg {
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    width: 13px;
    height: 13px;
}

.hero__trust--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(12, 36, 97, 0.08);
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.hero__trust-item strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.hero__trust-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.hero__trust-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
}

.page-home .hero {
    background: var(--inner-hero-gradient);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--inner-hero-glow);
    pointer-events: none;
    z-index: 0;
}

.page-home .hero__inner {
    padding: 40px 24px 48px;
    text-align: left;
}

.page-home .hero__content {
    max-width: 560px;
}

.page-home .hero .hero__bg {
    opacity: 0.5;
}

.page-home .hero__label {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.page-home .hero__label::before {
    width: 6px;
    height: 6px;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.page-home .hero__title {
    font-family: var(--font);
    font-size: clamp(2.25rem, 5vw, 3.35rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.page-home .hero__text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.6;
    max-width: 42ch;
    margin-bottom: 22px;
}

.page-home .hero__actions {
    gap: 10px;
}

.page-home .hero__actions .hero__btn {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.page-home .hero__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.page-home .hero__actions .btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.page-home .hero__actions .hero__btn--primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.page-home .hero__actions .hero__btn--primary::after {
    display: none;
}

.page-home .hero__actions .hero__btn--primary:hover {
    background: #f4f8fc;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.page-home .hero__trust--inline {
    margin-top: 22px;
    padding-top: 0;
    border-top: none;
    gap: 8px;
}

.page-home .hero__trust-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 12px;
    line-height: 1.2;
}

.page-home .hero__trust-item {
    color: rgba(255, 255, 255, 0.82);
}

.page-home .hero__trust-item strong {
    color: var(--white);
}

.page-home .hero__trust-item svg {
    color: rgba(147, 197, 253, 0.95);
}

.page-home .hero__trust-stars {
    font-size: 12px;
}

.page-home .hero .hero__bubble {
    border-color: rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(52, 152, 219, 0.08));
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.page-home .hero__photo-wrap {
    max-height: 320px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.page-home .header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(12, 36, 97, 0.06);
    box-shadow: 0 1px 16px rgba(12, 36, 97, 0.05);
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 14px;
    padding: 0;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.home-steps__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px 16px;
    position: relative;
    transition: background 0.22s var(--ease-out);
}

.home-steps__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: linear-gradient(180deg, transparent, rgba(12, 36, 97, 0.1), transparent);
}

.home-steps__item:hover {
    background: rgba(52, 152, 219, 0.04);
}

.home-steps__item:hover .home-steps__mark {
    border-color: rgba(52, 152, 219, 0.38);
    color: var(--primary-dark);
    background: rgba(52, 152, 219, 0.14);
}

.home-steps__item > .home-steps__mark,
.home-steps__mark {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    line-height: 0;
    color: var(--accent);
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.16);
    transition: background 0.22s var(--ease-out), border-color 0.22s var(--ease-out), color 0.22s var(--ease-out);
}

.home-steps__mark svg {
    display: block;
    width: 15px;
    height: 15px;
    margin: 0;
}

.home-steps__body {
    min-width: 0;
}

.home-steps__item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.home-steps__body span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.45;
}

.services-grid--panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.services-grid--panel .service-card--compact {
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    min-height: 84px;
}

.services-grid--panel .service-card--compact .service-card__photo {
    height: 100%;
    min-height: 84px;
}

.services-grid--panel .service-card--compact .service-card__photo img {
    height: 100%;
    min-height: 84px;
}

.services-grid--panel .service-card--compact .service-card__photo--shape-1,
.services-grid--panel .service-card--compact .service-card__photo--shape-2,
.services-grid--panel .service-card--compact .service-card__photo--shape-3,
.services-grid--panel .service-card--compact .service-card__photo--shape-4 {
    border-radius: 0;
}

.services-grid--panel .service-card--compact .service-card__index {
    top: 6px;
    left: 6px;
    font-size: 9px;
    padding: 2px 5px;
}

.services-grid--panel .service-card--compact .service-card__body {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.services-grid--panel .service-card--compact h3 {
    font-size: 0.8125rem;
    margin-bottom: 2px;
    line-height: 1.25;
}

.services-grid--panel .service-card--compact p {
    font-size: 10px;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-grid--panel .service-card--compact .service-card__link {
    font-size: 10px;
    gap: 4px;
}

.services-grid--panel .service-card--compact .service-card__link svg {
    width: 12px;
    height: 12px;
}

.services-section__grid-foot {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
}

.services-grid__all-link {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.services-grid__all-link:hover {
    color: var(--primary);
}

.section--reviews-home {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    border-top: none;
}

.section--reviews-home .reviews-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(12, 36, 97, 0.06);
    padding: 22px 24px 20px;
}

.section--reviews-home .reviews-head .section__header h2,
.section--reviews-home .reviews-head .section__label {
    color: var(--primary-dark);
}

.section--reviews-home .reviews-head .section__header h2::after {
    background: linear-gradient(90deg, var(--accent), rgba(52, 152, 219, 0.25));
}

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

.reviews-section__mesh {
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(circle at 18% 38%, rgba(52, 152, 219, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 82% 24%, rgba(12, 36, 97, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 52% 88%, rgba(52, 152, 219, 0.1) 0%, transparent 46%);
    animation: reviewsMeshShift 18s ease-in-out infinite alternate;
}

.reviews-section__glow {
    position: absolute;
    width: min(420px, 42vw);
    height: min(420px, 42vw);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.reviews-section__glow--left {
    top: -18%;
    left: -10%;
    background: rgba(52, 152, 219, 0.16);
    animation: reviewsGlowDrift1 14s ease-in-out infinite;
}

.reviews-section__glow--right {
    bottom: -22%;
    right: -8%;
    background: rgba(12, 36, 97, 0.1);
    animation: reviewsGlowDrift2 16s ease-in-out infinite;
}

.reviews-section__orbs {
    position: absolute;
    inset: 0;
}

.reviews-section__orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(52, 152, 219, 0.14);
    background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.55), rgba(52, 152, 219, 0.04));
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.35);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.reviews-section__orb--1 {
    width: 56px;
    height: 56px;
    top: 18%;
    left: 8%;
    animation: reviewsOrbFloat1 11s ease-in-out infinite;
}

.reviews-section__orb--2 {
    width: 34px;
    height: 34px;
    top: 62%;
    left: 14%;
    animation: reviewsOrbFloat2 8s ease-in-out infinite;
}

.reviews-section__orb--3 {
    width: 72px;
    height: 72px;
    top: 10%;
    right: 12%;
    animation: reviewsOrbFloat3 13s ease-in-out infinite;
}

.reviews-section__orb--4 {
    width: 28px;
    height: 28px;
    bottom: 16%;
    right: 22%;
    animation: reviewsOrbFloat4 7s ease-in-out infinite;
}

.reviews-section__orb--5 {
    width: 44px;
    height: 44px;
    bottom: 28%;
    left: 42%;
    animation: reviewsOrbFloat5 10s ease-in-out infinite;
}

@keyframes reviewsMeshShift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(2%, -2%, 0) scale(1.04); }
}

@keyframes reviewsGlowDrift1 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(24px, 18px, 0); }
}

@keyframes reviewsGlowDrift2 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-20px, -14px, 0); }
}

@keyframes reviewsOrbFloat1 {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.7; }
    50% { transform: translate3d(12px, -16px, 0); opacity: 1; }
}

@keyframes reviewsOrbFloat2 {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.55; }
    50% { transform: translate3d(-10px, 12px, 0); opacity: 0.85; }
}

@keyframes reviewsOrbFloat3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-14px, 10px, 0) scale(1.06); }
}

@keyframes reviewsOrbFloat4 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(8px, -8px, 0); }
}

@keyframes reviewsOrbFloat5 {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.6; }
    50% { transform: translate3d(-6px, 14px, 0); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-section__mesh,
    .reviews-section__glow,
    .reviews-section__orb {
        animation: none;
    }
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(12, 36, 97, 0.1);
    box-shadow: 0 -8px 32px rgba(12, 36, 97, 0.12);
    backdrop-filter: blur(12px);
}

.mobile-cta[hidden] {
    display: none !important;
}

.mobile-cta__primary {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
}

.mobile-cta__whatsapp {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.mobile-cta__whatsapp:hover {
    filter: brightness(1.05);
}

.page-home .scroll-top {
    bottom: calc(72px + env(safe-area-inset-bottom));
}

.hero__showcase {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
}

.hero__showcase-ring {
    position: absolute;
    inset: 10%;
    border: 2px dashed rgba(52, 152, 219, 0.25);
    border-radius: 50%;
    animation: spinSlow 50s linear infinite;
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.hero__showcase-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(12, 36, 97, 0.08);
}

.hero__showcase-card--main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 20px 18px;
    text-align: center;
    z-index: 2;
}

.hero__showcase-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__showcase-icon svg {
    width: 22px;
    height: 22px;
}

.hero__showcase-card--main h3 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.hero__showcase-card--main p {
    font-size: 12px;
    color: var(--text-light);
}

.hero__showcase-card--float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    z-index: 3;
}

.hero__showcase-card--float svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.hero__showcase-card--a {
    top: 6%;
    left: 0;
    animation: floatCard 5s ease-in-out infinite;
}

.hero__showcase-card--b {
    top: 14%;
    right: -2%;
    animation: floatCard 5s ease-in-out infinite 1.2s;
}

.hero__showcase-card--c {
    bottom: 10%;
    left: 6%;
    animation: floatCard 5s ease-in-out infinite 2.4s;
}

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

/* ---- Stats ---- */
.stats {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
    position: relative;
}

.stat {
    padding: 8px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child { border-right: none; }

.stat__number,
.stat__suffix {
    display: inline;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat__label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    font-weight: 500;
}

.stats--inline {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats--inline .stat__number { color: var(--primary-dark); }
.stats--inline .stat__label { color: var(--text-light); }

/* ---- Sections ---- */
.section {
    padding: 72px 0;
}

.section--alt { background: var(--bg); }
.section--dark {
    background: var(--dark);
    color: white;
    padding: 56px 0;
}

.section--team {
    padding: 88px 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(52, 152, 219, 0.12), transparent 60%),
        linear-gradient(180deg, #07163d 0%, var(--dark) 45%, #081a45 100%);
}

.section--team .section__header {
    margin-bottom: 48px;
}

.section--team .section__header h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
}

.section--team .section__header h2::after {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(52, 152, 219, 0.35));
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.section--dark .section__header {
    margin-bottom: 28px;
}

.section__header h2 {
    font-family: var(--font);
    font-size: clamp(1.625rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.section__header h2::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    margin: 12px auto 0;
}

.section--dark .section__header h2::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
}

.section--dark .section__header h2 { color: white; }

.section__header p {
    color: var(--text-light);
    font-size: 15px;
}

.section__header--compact {
    margin-bottom: 20px;
}

.section__header--compact h2 {
    margin-bottom: 0;
}

.section__header--compact h2::after {
    margin-top: 8px;
}

.section__label {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section__header--light p { color: rgba(255,255,255,0.7); }

.section--dark .section__label { color: var(--primary-light); }

.section__cta {
    text-align: center;
    margin-top: 36px;
}

.section__cta--tight {
    margin-top: 24px;
}

/* ---- Services Grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-grid--home {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 14px;
    padding: 28px;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card--photo {
    padding: 0;
    border: none;
    box-shadow: 0 8px 32px rgba(12, 36, 97, 0.07);
}

.service-card--photo::before { display: none; }

.service-card--photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 36, 97, 0.12);
}

.service-card__photo {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--bg);
}

.service-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card--photo:hover .service-card__photo img {
    transform: scale(1.05);
}

.service-card__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 26, 69, 0.35), transparent 55%);
    pointer-events: none;
}

.service-card__photo--shape-1 { border-radius: 14px 14px 14px 48px; }
.service-card__photo--shape-2 { border-radius: 14px 48px 14px 14px; }
.service-card__photo--shape-3 { border-radius: 48px 14px 14px 14px; }
.service-card__photo--shape-4 { border-radius: 14px 14px 48px 14px; }

.service-card__index {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(8, 26, 69, 0.78);
    padding: 5px 10px;
    border-radius: 4px;
}

.service-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-out);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 36, 97, 0.1);
}

.service-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(12, 36, 97, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--primary);
}

.service-card__icon svg { width: 20px; height: 20px; }

.service-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.service-card__link svg { transition: transform 0.25s var(--ease-out); }

.service-card__link:hover { color: var(--primary-light); }

.service-card__link:hover svg { transform: translateX(3px); }

.service-card--detailed {
    display: flex;
    flex-direction: column;
}

.service-card--detailed .btn { margin-top: auto; align-self: flex-start; }

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

/* ---- UI card container ---- */
.ui-card {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(12, 36, 97, 0.05);
}

/* ---- Services carousel (homepage) ---- */
.services-carousel.ui-card {
    padding: 0;
    overflow: hidden;
}

.services-carousel__viewport {
    overflow: hidden;
}

.services-carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    overscroll-behavior: contain;
}

.services-carousel--home-panel .services-carousel__track {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.services-carousel--home-panel .service-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.services-carousel__track::-webkit-scrollbar {
    display: none;
}

.services-carousel .service-card {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 42%) 1fr;
    align-items: stretch;
    min-height: 240px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: #fff;
}

.services-carousel .service-card:hover {
    transform: none;
    box-shadow: none;
}

.services-carousel .service-card__photo {
    height: 100%;
    min-height: 240px;
    border-radius: 0;
}

.services-carousel .service-card__photo--shape-1,
.services-carousel .service-card__photo--shape-2,
.services-carousel .service-card__photo--shape-3,
.services-carousel .service-card__photo--shape-4 {
    border-radius: 0;
}

.services-carousel .service-card__photo::after {
    background: linear-gradient(to right, transparent 55%, rgba(8, 26, 69, 0.08));
}

.services-carousel .service-card__index {
    top: 16px;
    left: 16px;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(8, 26, 69, 0.72);
}

.services-carousel .service-card__body {
    padding: 32px 36px;
    justify-content: center;
}

.services-carousel .service-card__icon {
    display: none;
}

.services-carousel .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.services-carousel .service-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: var(--text-light);
    max-width: 520px;
}

.services-carousel .service-card__link {
    font-size: 14px;
    font-weight: 600;
}

.services-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(420px, 480px);
    gap: 24px;
    align-items: stretch;
}

.services-section__carousel {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-section__form {
    min-width: 0;
    display: flex;
}

.services-section__form .contact-forms {
    width: 100%;
}

.services-section__form .contact-forms:not(.contact-forms--home) {
    align-self: stretch;
}

.contact-forms--home {
    display: block;
    height: auto;
    min-height: 0;
    align-self: flex-start;
}

.contact-forms--home .contact-forms__panels {
    flex: none;
    height: auto;
    min-height: 0;
}

.contact-forms--home .contact-forms__tab {
    padding: 11px 10px;
    gap: 8px;
}

.contact-forms--home .contact-forms__tab strong {
    font-size: 12px;
}

.contact-forms--home .contact-forms__tab small {
    display: none;
}

.contact-forms--home .contact-forms__tab-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.contact-forms--home .contact-forms__tab-icon svg {
    width: 16px;
    height: 16px;
}

.contact-forms--home .contact-forms__panels {
    padding: 14px 16px 10px;
}

.contact-forms--home .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-forms--home .btn--lg {
    padding: 11px 16px;
    font-size: 13px;
}

.services-section__carousel .services-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.services-section__carousel .services-carousel__viewport {
    flex: 1;
}

.services-section__layout .services-carousel .service-card {
    min-height: 420px;
    grid-template-columns: minmax(300px, 46%) 1fr;
}

.services-section__layout .services-carousel .service-card__photo {
    min-height: 420px;
}

.services-section__layout .services-carousel .service-card__body {
    padding: 32px 40px 36px;
    justify-content: flex-start;
}

.services-section__layout .services-carousel .service-card__link {
    margin-top: 8px;
}

.services-section__layout .services-carousel .service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.services-section__layout .services-carousel .service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-section__cta {
    display: flex;
    justify-content: flex-start;
}

.contact-form-wrap--sidebar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.contact-form-wrap__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.contact-form-wrap--sidebar .contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-form-wrap--sidebar .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form-wrap--sidebar .form-group {
    margin-bottom: 12px;
}

.contact-form-wrap--sidebar .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-form-wrap--sidebar .form-group input,
.contact-form-wrap--sidebar .form-group select,
.contact-form-wrap--sidebar .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
}

.contact-form-wrap--sidebar .form-group:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-wrap--sidebar .form-group textarea {
    flex: 1;
    min-height: 96px;
    resize: none;
}

.contact-form-wrap--sidebar .btn--lg {
    padding: 14px 24px;
    font-size: 15px;
    margin-top: auto;
}

.services-carousel__bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
    background: #fafbfc;
}

.services-carousel__nav {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: 8px;
    background: #fff;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.services-carousel__nav:hover:not(:disabled) {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.services-carousel__nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.services-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.services-carousel__dot {
    width: 24px;
    height: 3px;
    border: none;
    padding: 0;
    border-radius: 999px;
    background: rgba(12, 36, 97, 0.12);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
}

.services-carousel__dot.is-active {
    width: 36px;
    background: var(--primary);
}

.services-carousel__count {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.services-carousel__progress {
    flex: 1;
    height: 3px;
    min-width: 48px;
    background: rgba(12, 36, 97, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.services-carousel__progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    border-radius: inherit;
}

.services-carousel--home-panel {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(12, 36, 97, 0.08);
    box-shadow: 0 4px 20px rgba(12, 36, 97, 0.06);
}

.services-carousel--home-panel .service-card {
    min-height: 200px;
    grid-template-columns: minmax(148px, 42%) 1fr;
}

.services-carousel--home-panel .service-card__photo {
    min-height: 200px;
}

.services-carousel--home-panel .service-card__photo::after {
    background: linear-gradient(to right, transparent 35%, rgba(248, 251, 254, 0.95) 100%);
}

.services-carousel--home-panel .service-card__body {
    padding: 16px 18px 16px 20px;
    justify-content: center;
    background: linear-gradient(160deg, #ffffff 0%, #f6f9fc 100%);
    border-left: 1px solid rgba(12, 36, 97, 0.06);
    position: relative;
}

.services-carousel--home-panel .service-card__body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--accent), var(--primary-dark));
}

.service-card--home-slide .service-card__slide-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.service-card--home-slide .service-card__slide-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card--home-slide .service-card__slide-icon svg {
    width: 16px;
    height: 16px;
}

.service-card--home-slide .service-card__slide-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.service-card--home-slide h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.service-card--home-slide p {
    font-size: 12px;
    line-height: 1.55;
    color: #5c677a;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card--home-slide .service-card__cta {
    align-self: flex-start;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(12, 36, 97, 0.15);
}

.services-carousel--home-panel .service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.services-carousel--home-panel .service-card p {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-carousel--home-panel .service-card__link {
    font-size: 12px;
}

.services-carousel--home-panel .services-carousel__bar {
    padding: 8px 10px;
    gap: 8px;
    background: #f8fafc;
}

.services-carousel--home-panel .services-carousel__nav {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.services-carousel--home-panel .services-carousel__dot.is-active {
    width: 18px;
}

@media (max-width: 768px) {
    .services-carousel .service-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-carousel .service-card__photo {
        min-height: 200px;
    }

    .services-carousel .service-card__photo::after {
        background: linear-gradient(to top, rgba(8, 26, 69, 0.25), transparent 50%);
    }

    .services-carousel .service-card__body {
        padding: 24px;
    }

    .services-carousel__bar {
        padding: 14px 18px;
    }
}

/* ---- Clients (Opdrachtgevers) ---- */
.section--clients {
    padding: 36px 0;
    background: var(--bg);
    overflow: visible;
}

.clients-panel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(12, 36, 97, 0.14);
    background:
        radial-gradient(ellipse 70% 80% at 50% -20%, rgba(52, 152, 219, 0.12) 0%, transparent 58%),
        linear-gradient(180deg, #071633 0%, #0a1f52 100%);
}

.clients-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.45), transparent);
    z-index: 1;
    pointer-events: none;
}

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

.clients-panel__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px 14px;
}

.clients-section__glow {
    position: absolute;
    width: min(320px, 34vw);
    height: min(320px, 34vw);
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.38;
}

.clients-section__glow--left {
    top: -20%;
    left: -8%;
    background: rgba(52, 152, 219, 0.18);
}

.clients-section__glow--right {
    bottom: -25%;
    right: -6%;
    background: rgba(30, 55, 153, 0.22);
}

.clients-section__bubbles {
    position: absolute;
    inset: 0;
}

.clients-section__bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(120, 180, 255, 0.2);
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.1), rgba(52, 152, 219, 0.03));
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.03);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    backface-visibility: hidden;
}

.clients-section__bubble--1 {
    width: 48px;
    height: 48px;
    top: 14%;
    left: 10%;
    animation: clientsBubbleDrift1 9s ease-in-out infinite;
}

.clients-section__bubble--2 {
    width: 32px;
    height: 32px;
    top: 68%;
    left: 16%;
    animation: clientsBubbleDrift2 6.5s ease-in-out infinite;
}

.clients-section__bubble--3 {
    width: 64px;
    height: 64px;
    top: 6%;
    right: 14%;
    animation: clientsBubbleDrift3 11s ease-in-out infinite;
}

.clients-section__bubble--4 {
    width: 26px;
    height: 26px;
    bottom: 18%;
    right: 24%;
    animation: clientsBubbleDrift4 5s ease-in-out infinite;
}

.clients-section__bubble--5 {
    width: 40px;
    height: 40px;
    bottom: 10%;
    left: 44%;
    animation: clientsBubbleDrift5 7.5s ease-in-out infinite;
}

.clients-section__bubble--6 {
    width: 22px;
    height: 22px;
    top: 46%;
    right: 40%;
    animation: clientsBubbleDrift6 4.5s ease-in-out infinite;
}

@keyframes clientsBubbleDrift1 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(12px, -18px, 0); }
}

@keyframes clientsBubbleDrift2 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-10px, 14px, 0); }
}

@keyframes clientsBubbleDrift3 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-16px, 10px, 0); }
}

@keyframes clientsBubbleDrift4 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(8px, -12px, 0); }
}

@keyframes clientsBubbleDrift5 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(14px, 8px, 0); }
}

@keyframes clientsBubbleDrift6 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-6px, -10px, 0); }
}

.clients-marquee-header {
    margin: 0;
    padding: 0;
    text-align: center;
}

.clients-marquee-header__label {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.72);
}

.clients-marquee-header__sr,
.clients-marquee__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.clients-marquee {
    width: 100%;
    position: relative;
}

.clients-marquee__viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
}

.clients-marquee__viewport.is-dragging {
    cursor: grabbing;
}

.clients-marquee__track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.clients-marquee__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0;
}

.clients-marquee__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 88px;
    min-height: 88px;
    max-height: 88px;
    padding: 0 18px;
    border-radius: 10px;
    background: #fff;
    border: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.clients-marquee__item:hover .clients-marquee__logo-wrap {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.clients-marquee__viewport.is-dragging .clients-marquee__item:hover .clients-marquee__logo-wrap {
    transform: none;
}

.clients-marquee__logo {
    display: block;
    max-width: 280px;
    max-height: 76px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.clients-marquee__item:hover .clients-marquee__logo {
    transform: scale(1.02);
}

.clients-marquee__item--novi .clients-marquee__logo {
    max-height: 80px;
}

.clients-marquee__item--novi:hover .clients-marquee__logo {
    transform: scale(1.06);
}

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

    .clients-marquee__logo-wrap,
    .clients-marquee__logo {
        transition: none;
    }
}

.clients-marquee__logo-wrap--link {
    text-decoration: none;
    cursor: pointer;
}

.clients-marquee__item:hover .clients-marquee__logo-wrap--link .clients-marquee__logo {
    transform: scale(1.04);
}

/* CTA onder de klantlogo-marquee */
.clients-marquee-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 12px;
    margin-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-marquee-cta__text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}

.clients-marquee-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.clients-marquee-cta__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.clients-marquee-cta__btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .clients-marquee-cta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ---- Branches Carousel ---- */
.branches-carousel {
    max-width: 100%;
}

.branches-carousel__shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.branches-carousel__nav {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 2px 12px rgba(12, 36, 97, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.branches-carousel__nav:hover:not(:disabled) {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    box-shadow: 0 6px 18px rgba(12, 36, 97, 0.14);
    transform: translateY(-1px);
}

.branches-carousel__nav:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.branches-carousel.is-static .branches-carousel__nav {
    display: none;
}

.branches-carousel__viewport {
    overflow-x: auto;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
}

.branches-carousel__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
    scroll-snap-type: none;
}

.branches-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.branches-carousel__track {
    display: flex;
    gap: 14px;
}

.branches-carousel__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.branches-carousel__item .branch-card {
    height: 100%;
}

.branches-carousel__item .branch-card--overlay .branch-card__image {
    aspect-ratio: 4 / 5;
}

.branches-carousel__item .branch-card--showcase .branch-card__image {
    aspect-ratio: 16 / 10;
}

.branches-carousel__item .branch-card--overlay .branch-card__image,
.branches-carousel__item .branch-card--showcase .branch-card__image {
    min-height: 200px;
}

.branches-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.branches-carousel__dot {
    width: 24px;
    height: 3px;
    border: none;
    padding: 0;
    border-radius: 999px;
    background: rgba(12, 36, 97, 0.12);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.branches-carousel__dot.is-active {
    width: 36px;
    background: var(--primary);
}

.branches-carousel__dot:focus-visible {
    outline: 2px solid rgba(52, 152, 219, 0.55);
    outline-offset: 2px;
}

.page-intro--center {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 36px;
    color: var(--text-light);
}

/* ---- About Preview ---- */
.about-preview__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-preview__photo-wrap {
    position: relative;
}

.about-preview__photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 20px 6px;
    box-shadow: 0 20px 50px rgba(12, 36, 97, 0.15);
}

.about-preview__image {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    height: 400px;
    position: relative;
    overflow: hidden;
}

.about-preview__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 14px 20px 13px;
    border-radius: 12px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    box-shadow: 0 14px 34px rgba(12, 36, 97, 0.16);
    text-align: center;
}

.about-preview__badge strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-dark);
}

.about-preview__badge span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: var(--text-light);
}

.about-preview__content h2 {
    font-family: var(--font);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.about-preview__content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.check-list {
    list-style: none;
    margin-bottom: 32px;
}

.check-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ---- Process ---- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: var(--radius);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-step__num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(12, 36, 97, 0.2);
}

.process-step h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
}

/* ---- Reviews Section ---- */
.section--reviews {
    position: relative;
    padding: 44px 0 48px;
    background: #fff;
    border-top: 1px solid rgba(12, 36, 97, 0.05);
}

.reviews-panel {
    position: relative;
}

.reviews-empty {
    margin: 0;
    padding: 28px 0 8px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.reviews-head .section__header {
    margin: 0;
    text-align: left;
}

.reviews-head .section__header h2 {
    color: var(--primary-dark);
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    margin-bottom: 0;
}

.reviews-head .section__header h2::after {
    width: 28px;
    height: 2px;
    margin: 8px 0 0;
}

.reviews-head .section__label {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.reviews-platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

.reviews-platform {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: #fff;
    box-shadow: 0 2px 10px rgba(12, 36, 97, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.reviews-platform:hover {
    border-color: rgba(52, 152, 219, 0.24);
    box-shadow: 0 6px 18px rgba(12, 36, 97, 0.08);
    transform: translateY(-1px);
}

.reviews-platform__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(12, 36, 97, 0.04);
    flex-shrink: 0;
}

.reviews-platform__body {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 7px;
    row-gap: 1px;
    align-items: center;
}

.reviews-platform__score {
    grid-row: 1 / 3;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.reviews-platform__stars {
    grid-column: 2;
    color: #f59e0b;
    font-size: 9px;
    letter-spacing: 0.35px;
    line-height: 1;
}

.reviews-platform__count {
    grid-column: 2;
    font-size: 10px;
    color: var(--text-light);
    line-height: 1.2;
}

.reviews-platform--trustpilot .reviews-platform__icon {
    background: rgba(0, 182, 122, 0.08);
}

.reviews-platform--static {
    cursor: default;
}

.reviews-platform--static:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(12, 36, 97, 0.04);
    border-color: rgba(12, 36, 97, 0.08);
}

.clients-panel__empty {
    margin: 0;
    padding: 8px 0 4px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.reviews-carousel__shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.reviews-carousel__nav {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(12, 36, 97, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.reviews-carousel__nav:hover:not(:disabled) {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(12, 36, 97, 0.14);
}

.reviews-carousel__nav:disabled {
    opacity: 0.32;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.reviews-carousel.is-static .reviews-carousel__nav {
    display: none;
}

.reviews-carousel__viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
}

.reviews-carousel__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
    scroll-snap-type: none;
}

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

.reviews-carousel__track {
    display: flex;
    gap: 16px;
}

.review-card {
    flex: 0 0 auto;
    width: calc((100% - 32px) / 3);
    min-width: 250px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(12, 36, 97, 0.05);
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    min-height: 168px;
    transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.22s var(--ease-out);
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 152, 219, 0.18);
    box-shadow: 0 8px 24px rgba(12, 36, 97, 0.08);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.review-card__stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 0.45px;
}

.review-card__source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.review-card__source--google {
    color: var(--text);
}

.review-card__source--trustpilot {
    color: #0a9d6e;
}

.review-card__quote {
    margin: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__author {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(12, 36, 97, 0.07);
}

.review-card__author strong {
    display: block;
    font-size: 13px;
    color: var(--primary-dark);
}

.review-card__author span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--text-light);
}

/* ---- Team / Leaders ---- */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 28px;
}

.leader-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.leader-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(52, 152, 219, 0.35);
    transform: translateY(-3px);
}

.leader-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-card__identity strong {
    display: block;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.leader-card__identity span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.leader-card__quote {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    flex: 1;
    border: none;
    padding: 0;
}

.leader-card__quote::before {
    content: none;
}

.leader-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.25);
}

.leader-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-card__meta strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.leader-card__meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Testimonials ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.45s var(--ease-out), background 0.45s ease, border-color 0.45s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card__stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card__avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-card__author strong {
    display: block;
    color: white;
    font-size: 13px;
}

.testimonial-card__author span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ---- Footer ---- */
.footer {
    position: relative;
    background:
        radial-gradient(circle at 88% 0%, rgba(52, 152, 219, 0.12), transparent 42%),
        radial-gradient(circle at 8% 100%, rgba(255, 255, 255, 0.04), transparent 36%),
        linear-gradient(180deg, var(--primary-dark) 0%, #06122e 100%);
    color: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.45), transparent);
    pointer-events: none;
}

.footer__cta {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(8px);
}

.footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 0;
}

.footer__cta-title {
    font-size: clamp(1.125rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.footer__cta-sub {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.footer__main {
    position: relative;
    z-index: 1;
    padding: 40px 0 18px;
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.72fr) minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(20px, 2.5vw, 30px);
    margin-bottom: 28px;
    align-items: start;
}

.footer__brand {
    max-width: none;
}

.footer__about {
    margin-top: 4px;
}

.footer__about h4 {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.footer__about h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(52, 152, 219, 0.35));
}

.footer__about p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    max-width: 320px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    line-height: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.footer__logo:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.footer__logo .logo__img,
.footer__logo-img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.98;
}

.footer__tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer__col h4 {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    padding-bottom: 8px;
}

.footer__col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(52, 152, 219, 0.35));
}

.footer__nav-list,
.footer__col ul {
    list-style: none;
}

.footer__nav-list li {
    margin-bottom: 1px;
}

.footer__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.footer__nav-link::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.2s var(--ease-out);
}

.footer__nav-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer__nav-link:hover::before {
    width: 10px;
}

.footer__contact-list {
    list-style: none;
}

.footer__contact-list li {
    margin-bottom: 6px;
}

.footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 8px 6px 6px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease-out);
}

.footer__contact-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(2px);
}

.footer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer__contact-link:hover .footer__contact-icon {
    background: rgba(52, 152, 219, 0.14);
    border-color: rgba(52, 152, 219, 0.28);
    color: #fff;
}

.footer__contact-icon svg {
    display: block;
}

.footer__contact-text {
    padding-top: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.footer__meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
}

.footer__meta-line--title {
    margin-bottom: 8px;
}

.footer__meta-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.footer__hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 3px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
}

.footer__hours-list li span:last-child {
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}

.footer__col--callback {
    min-width: 0;
}

.footer-callback {
    background:
        radial-gradient(circle at 100% 0%, rgba(52, 152, 219, 0.14), transparent 52%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 16px 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 36px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.footer-callback__title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-callback__alert {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-callback__alert--success {
    background: rgba(46, 204, 113, 0.14);
    border: 1px solid rgba(46, 204, 113, 0.28);
    color: #d5f5e3;
}

.footer-callback__alert--error {
    background: rgba(231, 76, 60, 0.14);
    border: 1px solid rgba(231, 76, 60, 0.28);
    color: #fadbd8;
}

.footer-callback__field {
    margin-bottom: 8px;
}

.footer-callback__field label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
}

.footer-callback__required {
    color: #ff8a80;
}

.footer-callback__input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 8px 22px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-callback__input-wrap:focus-within {
    background: #fff;
    border-color: rgba(52, 152, 219, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 3px rgba(52, 152, 219, 0.16),
        0 10px 24px rgba(0, 0, 0, 0.12);
}

.footer-callback__input-wrap:has(.footer-callback__input.is-invalid) {
    border-color: rgba(231, 76, 60, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 0 0 3px rgba(231, 76, 60, 0.14),
        0 8px 22px rgba(0, 0, 0, 0.1);
}

.footer-callback__input-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent);
    pointer-events: none;
}

.footer-callback__input-icon svg {
    width: 15px;
    height: 15px;
}

.footer-callback__input {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--primary-dark);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: none;
    transition: color 0.2s ease;
}

.footer-callback__input::placeholder {
    color: rgba(12, 36, 97, 0.34);
    font-weight: 400;
}

.footer-callback__input:focus {
    outline: none;
    box-shadow: none;
}

.footer-callback__input.is-invalid {
    color: #922b21;
}

.footer-callback__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 4px 4px 4px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.footer-callback__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    background: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-callback__submit:active:not(:disabled) {
    transform: translateY(0);
}

.footer-callback__submit:disabled {
    opacity: 0.72;
    cursor: wait;
}

.footer-callback__submit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #2980b9 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(52, 152, 219, 0.35);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.footer-callback__submit:hover:not(:disabled) .footer-callback__submit-icon {
    transform: translateX(2px);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.42);
}

.footer-callback__hint {
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.56);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}

.logo__img--footer {
    height: 52px;
    width: auto;
    max-width: none;
}

.logo--footer .logo__text strong { color: white; }
.logo--footer .logo__text small { color: rgba(255,255,255,0.5); }

.footer__bottom a { color: rgba(255, 255, 255, 0.42); }
.footer__bottom a:hover { color: #fff; }

.footer__legal {
    display: flex;
    gap: 8px 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer__legal > a:not(.footer__portal-link) {
    position: relative;
    padding: 2px 0;
    transition: color 0.2s ease;
}

.footer__legal > a:not(.footer__portal-link):hover {
    color: #fff;
    text-decoration: none;
}

.footer__portal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer__portal-link svg {
    width: 13px;
    height: 13px;
    opacity: 0.85;
}

.footer__portal-link:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

/* Legacy CTA class — kept for backwards compat */
.cta-banner {
    background: var(--primary-dark);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-banner h2 {
    font-family: var(--font);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* ---- Page Hero ---- */
.page-hero,
.vacancy-hero,
.careers-hero,
.branches-page-hero,
.page-home .hero {
    --inner-hero-gradient: linear-gradient(135deg, #071538 0%, #0b2158 46%, #16307c 78%, #1e3799 100%);
    --inner-hero-glow:
        radial-gradient(circle at 88% 10%, rgba(56, 130, 246, 0.26), transparent 38%),
        radial-gradient(circle at 8% 96%, rgba(255, 255, 255, 0.08), transparent 30%),
        radial-gradient(circle at 62% -12%, rgba(99, 102, 241, 0.16), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 52%);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--inner-hero-gradient);
    color: var(--white);
    padding: 58px 0 52px;
    text-align: center;
}

/* Fijn dot-grid dat naar boven toe vervaagt — strakke, moderne textuur */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 92% 85% at 50% 0%, #000 26%, transparent 78%);
            mask-image: radial-gradient(ellipse 92% 85% at 50% 0%, #000 26%, transparent 78%);
}

.page-hero::before,
.vacancy-hero::before,
.careers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--inner-hero-glow);
    pointer-events: none;
    z-index: 0;
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.page-hero p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.84);
    max-width: 680px;
    margin: 4px auto 0;
    line-height: 1.62;
    text-shadow: 0 1px 18px rgba(5, 15, 55, 0.35);
}

.page-hero .section__label {
    color: rgba(191, 219, 254, 0.98);
    letter-spacing: 0.12em;
}

.page-hero--compact {
    padding: 44px 0 36px;
}

.page-hero .hero__bg,
.vacancy-hero .hero__bg,
.careers-hero .hero__bg,
.branches-page-hero .hero__bg,
.error-404 .hero__bg {
    z-index: 0;
}

.page-hero .hero__bubble,
.vacancy-hero .hero__bubble,
.careers-hero .hero__bubble,
.branches-page-hero .hero__bubble,
.page-home .hero .hero__bubble,
.error-404 .hero__bubble {
    border-color: rgba(255, 255, 255, 0.16);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(56, 130, 246, 0.05) 62%, transparent 78%);
    box-shadow: 0 0 42px rgba(56, 130, 246, 0.16), inset 0 0 18px rgba(255, 255, 255, 0.06);
}

html.is-scrolling .clients-section__bubble {
    animation-play-state: paused;
}

html.is-scrolling .hero__bubble,
html.is-scrolling .error-404 .hero__bubble,
html.is-scrolling .hero__showcase-ring,
html.is-scrolling .hero__showcase-card--a,
html.is-scrolling .hero__showcase-card--b,
html.is-scrolling .hero__showcase-card--c,
.hero.is-offscreen .hero__bubble,
.page-hero.is-offscreen .hero__bubble,
.careers-hero.is-offscreen .hero__bubble,
.vacancy-hero.is-offscreen .hero__bubble,
.branches-page-hero.is-offscreen .hero__bubble,
.hero.is-offscreen .hero__showcase-ring,
.hero.is-offscreen .hero__showcase-card--a,
.hero.is-offscreen .hero__showcase-card--b,
.hero.is-offscreen .hero__showcase-card--c {
    animation-play-state: paused;
}

.cms-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.cms-content__empty {
    text-align: center;
    color: var(--text-light);
}

.page-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.feature-box__icon { font-size: 40px; margin-bottom: 16px; }

.feature-box h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

/* ---- About Page ---- */
.about-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.about-page__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-page__content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 54ch;
}

.about-story + .about-story {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(12, 36, 97, 0.08);
}

.about-story__label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.about-page__panel {
    padding: 22px 20px 20px;
    border-radius: 20px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    box-shadow: 0 12px 40px rgba(12, 36, 97, 0.07);
}

.about-page__panel-head {
    margin-bottom: 18px;
}

.about-page__panel-head h3 {
    margin: 6px 0 0;
    font-size: 1.22rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
}

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

.value-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px 14px;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.06);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(12, 36, 97, 0.04);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 152, 219, 0.22);
    box-shadow: 0 10px 28px rgba(12, 36, 97, 0.08);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(12, 36, 97, 0.06), rgba(52, 152, 219, 0.12));
    color: var(--primary);
    flex-shrink: 0;
}

.value-card h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}
.value-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-light);
}

.section--about-page {
    padding: 48px 0 72px;
    background: #fff;
}

@media (max-width: 768px) {
    .about-page__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-story + .about-story {
        margin-top: 28px;
        padding-top: 28px;
    }

    .about-page__panel {
        padding: 18px 16px 16px;
    }
}

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

.why-item {
    display: flex;
    gap: 20px;
}

.why-item__num {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    flex-shrink: 0;
}

.why-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ---- Contact ---- */
.section--contact {
    padding-top: 56px;
    padding-bottom: 72px;
}

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

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2rem);
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 420px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    box-shadow: 0 2px 12px rgba(12, 36, 97, 0.04);
    transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

a.contact-card:hover {
    border-color: rgba(52, 152, 219, 0.35);
    box-shadow: 0 8px 24px rgba(12, 36, 97, 0.08);
    transform: translateY(-1px);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-card span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
}

.contact-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(12, 36, 97, 0.04);
}

.contact-social__head {
    min-width: 0;
}

.contact-social__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 3px;
}

.contact-social__text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.35;
}

.contact-social__links {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 5px;
    border-radius: 999px;
    background: rgba(12, 36, 97, 0.04);
    border: 1px solid rgba(12, 36, 97, 0.06);
}

.contact-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: var(--primary-dark);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    box-shadow: 0 1px 3px rgba(12, 36, 97, 0.05);
    transition:
        transform 0.2s var(--ease-out),
        box-shadow 0.2s var(--ease-out),
        background 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out),
        color 0.2s var(--ease-out);
}

.contact-social__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(12, 36, 97, 0.12);
    color: #fff;
}

.contact-social__link--linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.contact-social__link--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.contact-social__link--instagram:hover {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
    border-color: transparent;
}

.contact-social__link:focus-visible {
    outline: 2px solid rgba(52, 152, 219, 0.65);
    outline-offset: 2px;
}

.contact-hours {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 2px 12px rgba(12, 36, 97, 0.04);
}

.contact-hours__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.contact-hours h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

.contact-hours__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px 5px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.contact-hours__status--open {
    color: #15803d;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.contact-hours__status--closed {
    color: #64748b;
    background: rgba(12, 36, 97, 0.05);
    border: 1px solid rgba(12, 36, 97, 0.08);
}

.contact-hours__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.contact-hours__status--open .contact-hours__status-dot {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
    animation: contact-hours-pulse 2.4s ease-in-out infinite;
}

@keyframes contact-hours-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.92); }
}

.contact-hours__status-detail {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-light);
}

.contact-hours ul { list-style: none; }

.contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 36, 97, 0.08);
    font-size: 14px;
    transition: background 0.2s var(--ease-out);
}

.contact-hours li.is-today {
    margin: 2px -8px 0;
    padding: 10px 8px;
    border-bottom: none;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.07);
    box-shadow: inset 0 0 0 1px rgba(52, 152, 219, 0.1);
}

.contact-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours li:first-child { padding-top: 0; }
.contact-hours li.is-today:first-child { padding-top: 10px; }

.contact-hours li span:first-child { color: var(--text-light); }
.contact-hours li span:last-child { color: var(--primary-dark); font-weight: 600; text-align: right; }
.contact-hours li.is-today span:first-child { color: var(--primary-dark); font-weight: 600; }

.contact-map {
    margin-top: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: #fff;
    box-shadow: 0 12px 40px rgba(12, 36, 97, 0.08);
}

.contact-map__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(12, 36, 97, 0.06);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.contact-map__copy h3 {
    margin: 4px 0 6px;
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.contact-map__copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

.contact-map__route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    background: #fff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
    box-shadow: 0 1px 3px rgba(12, 36, 97, 0.04);
}

.contact-map__route svg {
    color: var(--primary);
}

.contact-map__route:hover {
    background: #fff;
    border-color: rgba(52, 152, 219, 0.28);
    box-shadow: 0 6px 18px rgba(12, 36, 97, 0.08);
    transform: translateY(-1px);
}

.contact-map__frame {
    position: relative;
    aspect-ratio: 21 / 9;
    min-height: 280px;
    background: #e8eef4;
}

.contact-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.page-contact .section--contact {
    padding-bottom: 64px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 44px 0 36px;
    }

    .page-hero--compact {
        padding: 36px 0 28px;
    }

    .page-hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .page-hero p {
        font-size: 15px;
    }

    .contact-main {
        gap: 20px;
    }

    .contact-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
    }

    .contact-social__links {
        width: 100%;
        justify-content: flex-start;
    }

    .contact-hours__head {
        flex-wrap: wrap;
    }

    .contact-map__head {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .contact-map__route {
        width: 100%;
        justify-content: center;
    }

    .contact-map__frame {
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(12, 36, 97, 0.06);
}

.contact-form-wrap--panel {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.contact-form-wrap__intro {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-light);
}

.contact-form-wrap__note {
    margin: -4px 0 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}

.contact-form-wrap__note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-form-wrap__note a:hover {
    text-decoration: underline;
}

.contact-form-wrap--general .contact-form-wrap__title {
    color: var(--primary-dark);
}

.contact-form-wrap--quote .contact-form-wrap__title {
    color: #0c2461;
}

.contact-form-wrap--general .form-group label::after {
    content: none;
}

.contact-form-wrap--quote:not(.contact-form-wrap--compact) .form-group label[for*="service"]::after,
.contact-form-wrap--quote:not(.contact-form-wrap--compact) .form-group label[for*="location"]::after,
.contact-form-wrap--quote:not(.contact-form-wrap--compact) .form-group label[for*="phone"]::after {
    content: none;
}

.btn--contact-send {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

.btn--quote {
    background: linear-gradient(135deg, #0c2461, #1e3799);
}

.contact-form-wrap--general .btn--contact-send:hover {
    filter: brightness(1.05);
}

.contact-form-wrap--quote .btn--quote:hover {
    filter: brightness(1.08);
}

.contact-form-wrap--compact {
    border-top: 3px solid #1e3799;
}

.contact-form-wrap--panel .contact-form-wrap__title {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
    line-height: 1.25;
}

.contact-form-wrap--panel .contact-form-wrap__intro {
    margin-bottom: 12px;
}

.contact-form-wrap--panel.contact-form-wrap--general,
.contact-form-wrap--panel.contact-form-wrap--quote:not(.contact-form-wrap--compact) {
    border-left: 0;
    padding-left: 0;
}

.contact-forms {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(12, 36, 97, 0.06);
    overflow: hidden;
}

.contact-forms .form-group {
    margin-bottom: 10px;
}

.contact-forms .form-group:last-of-type {
    margin-bottom: 12px;
}

.contact-forms .form-group label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.contact-forms .form-group label .required,
.contact-forms .form-group label [aria-hidden="true"] {
    color: var(--accent);
}

.contact-forms .form-group input,
.contact-forms .form-group select,
.contact-forms .form-group textarea {
    padding: 9px 11px;
    font-size: 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.12);
    box-shadow: inset 0 1px 2px rgba(12, 36, 97, 0.03);
}

.contact-forms .form-group input:focus,
.contact-forms .form-group select:focus,
.contact-forms .form-group textarea:focus {
    border-color: rgba(52, 152, 219, 0.65);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.12);
}

.contact-forms .form-group textarea {
    min-height: 72px;
    resize: vertical;
}

.contact-forms .contact-form .form-row {
    gap: 10px;
}

.contact-forms .alert {
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 13px;
    border-radius: 8px;
}

.contact-forms__feedback {
    padding: 18px 22px 0;
}

.contact-forms__feedback .alert {
    margin-bottom: 0;
}

.contact-forms .btn--lg {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(12, 36, 97, 0.14);
}

.contact-forms .btn--lg:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(12, 36, 97, 0.18);
}

.contact-forms__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f8fafc;
    border-bottom: 1px solid rgba(12, 36, 97, 0.07);
}

.contact-forms__tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-forms__tab strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.contact-forms__tab small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--text-light);
}

.contact-forms__tab-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

.contact-forms__tab-icon svg {
    width: 20px;
    height: 20px;
}

.contact-forms__tab-icon--quote {
    background: linear-gradient(135deg, #0c2461, #1e3799);
}

.contact-forms__tab:hover {
    background: rgba(255, 255, 255, 0.65);
}

.contact-forms__tab.is-active {
    background: #fff;
    border-bottom-color: var(--accent);
}

.contact-forms__panels {
    padding: 16px 18px 18px;
}

.contact-forms__panel[hidden] {
    display: none;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 16px; }

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color var(--transition);
    background: var(--bg);
}

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

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
}

.alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

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

.legal-content h2 { margin: 24px 0 8px; color: var(--primary); }

/* ---- Legal pages (privacy / voorwaarden) ---- */
.section--legal {
    padding: 56px 0 72px;
    background:
        radial-gradient(circle at 100% 0%, rgba(52, 152, 219, 0.06), transparent 34%),
        linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}

.legal-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: start;
}

.legal-page__intro {
    padding: 24px 26px;
    margin-bottom: 28px;
    border-radius: 18px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-left: 4px solid var(--primary);
    background: #fff;
    box-shadow: 0 10px 32px rgba(12, 36, 97, 0.06);
}

.legal-page__intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    max-width: 62ch;
}

.legal-page__sections {
    display: grid;
    gap: 16px;
}

.legal-section {
    padding: 26px 28px;
    border-radius: 18px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: #fff;
    box-shadow: 0 8px 28px rgba(12, 36, 97, 0.05);
    scroll-margin-top: 96px;
}

.legal-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.legal-section__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(12, 36, 97, 0.08), rgba(52, 152, 219, 0.12));
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.legal-section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.legal-section__body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 62ch;
}

.legal-section__body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section__body a:hover,
.legal-section__body a:focus-visible {
    color: var(--primary-dark, #081a45);
}

.legal-page__sidebar {
    position: sticky;
    top: 96px;
}

.legal-page__panel {
    padding: 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    box-shadow: 0 12px 40px rgba(12, 36, 97, 0.07);
}

.legal-page__toc + .legal-page__related,
.legal-page__toc + .legal-page__contact,
.legal-page__related + .legal-page__contact {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(12, 36, 97, 0.08);
}

.legal-page__toc-title,
.legal-page__related-label,
.legal-page__contact-label {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.legal-page__toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.legal-page__toc a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.legal-page__toc a:hover,
.legal-page__toc a:focus-visible {
    background: rgba(12, 36, 97, 0.06);
    color: var(--primary);
}

.legal-page__toc--mobile {
    display: none;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: #fff;
}

.legal-page__related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    background: #fff;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.legal-page__related-link:hover,
.legal-page__related-link:focus-visible {
    border-color: rgba(52, 152, 219, 0.35);
    box-shadow: 0 8px 24px rgba(12, 36, 97, 0.08);
    transform: translateY(-1px);
}

.legal-page__related-link svg {
    flex-shrink: 0;
    color: var(--primary);
}

.legal-page__contact p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-page__contact .btn {
    width: 100%;
    justify-content: center;
    word-break: break-all;
}

.page-legal .page-hero--compact {
    padding: 48px 0 40px;
}

@media (max-width: 960px) {
    .legal-page__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-page__sidebar {
        position: static;
    }

    .legal-page__sidebar .legal-page__toc {
        display: none;
    }

    .legal-page__toc--mobile {
        display: block;
    }

    .section--legal {
        padding: 40px 0 56px;
    }
}

@media (max-width: 640px) {
    .legal-section {
        padding: 20px 18px;
    }

    .legal-section__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .legal-page__intro {
        padding: 18px 18px 18px 20px;
    }
}

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

.usp-card {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 4px 20px rgba(12, 36, 97, 0.04);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.usp-card:hover {
    transform: none;
    border-color: rgba(52, 152, 219, 0.2);
    box-shadow: 0 8px 28px rgba(12, 36, 97, 0.08);
}

.usp-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.usp-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
}

.usps-section {
    padding: 52px 0;
}

/* ---- Branches Grid ---- */
.section--branches {
    padding: 56px 0;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.section--branches .branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.branch-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    box-shadow: 0 4px 20px rgba(12, 36, 97, 0.06);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    text-decoration: none;
    color: inherit;
}

.branch-card:focus-visible {
    outline: 3px solid rgba(52, 152, 219, 0.55);
    outline-offset: 3px;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(12, 36, 97, 0.12);
    border-color: rgba(52, 152, 219, 0.25);
}

.branch-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef3f8;
}

.branch-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 26, 69, 0) 35%, rgba(8, 26, 69, 0.55) 100%);
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.branch-card:hover .branch-card__overlay {
    opacity: 1;
}

.branch-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
    pointer-events: none;
    user-select: none;
}

.branch-card:hover .branch-card__image img {
    transform: scale(1.06);
}

.branch-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 18px;
}

.branch-card__text strong,
.branch-card__body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.branch-card__text p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}

.branch-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.branch-card__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease-out), background 0.25s ease;
}

.branch-card:hover .branch-card__arrow {
    transform: translateX(2px);
    background: rgba(52, 152, 219, 0.18);
}

.branch-card--overlay {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(12, 36, 97, 0.1);
}

.branch-card--overlay:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(12, 36, 97, 0.16);
}

.branch-card--overlay .branch-card__image {
    aspect-ratio: 4 / 5;
}

.branch-card--overlay .branch-card__overlay {
    background: linear-gradient(180deg, rgba(8, 26, 69, 0.05) 0%, rgba(8, 26, 69, 0.35) 42%, rgba(8, 26, 69, 0.92) 100%);
    opacity: 1;
}

.branch-card--overlay:hover .branch-card__overlay {
    background: linear-gradient(180deg, rgba(8, 26, 69, 0.1) 0%, rgba(8, 26, 69, 0.42) 42%, rgba(8, 26, 69, 0.96) 100%);
}

.branch-card__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 18px 18px 20px;
    color: #fff;
}

.branch-card__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.branch-card__title {
    display: block;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.branch-card__excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.branch-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.branch-card--overlay:hover .branch-card__pill {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(2px);
}

.branch-card--overlay .branch-card__arrow {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    line-height: 1;
    font-size: 12px;
}

.branches-section__footer {
    margin-top: 24px;
    text-align: center;
}

.section--branches-page {
    padding: 32px 0 56px;
    background: #fff;
}

.branches-page-hero {
    position: relative;
    overflow: hidden;
    background: var(--inner-hero-gradient, linear-gradient(135deg, #081a45 0%, #0c2461 52%, #1e3799 100%));
    color: #fff;
    padding: 32px 0 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.branches-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--inner-hero-glow);
    pointer-events: none;
    z-index: 0;
}

.branches-page-hero__inner {
    position: relative;
    z-index: 1;
}

.branches-page-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.branches-page-hero__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.branches-page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.branches-page-hero__badge svg {
    opacity: 0.72;
}

.branches-page-hero__meta .btn--outline-light {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 650;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.branches-page-hero__meta .btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
}

.branches-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 24px;
    align-items: start;
}

.branches-page-hero__content {
    max-width: 540px;
}

.branches-page-hero__label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(147, 197, 253, 0.92);
}

.branches-page-hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.branches-page-hero__lead {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
    max-width: 500px;
}

.branches-page-hero__panel {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 36px rgba(0, 0, 0, 0.12);
}

.branches-page-hero__panel-title {
    margin: 0 0 12px;
    padding: 0 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.branches-page-hero__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.branches-page-hero__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s var(--ease-out);
}

.branches-page-hero__link span {
    min-width: 0;
    line-height: 1.35;
}

.branches-page-hero__link svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.42;
    transition: opacity 0.18s ease, transform 0.18s var(--ease-out);
}

.branches-page-hero__link:hover,
.branches-page-hero__link:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(1px);
}

.branches-page-hero__link:hover svg,
.branches-page-hero__link:focus-visible svg {
    opacity: 0.95;
    transform: translateX(2px);
}

.branches-page-hero__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 1px;
}

.branch-breadcrumb--light,
.branch-breadcrumb--light a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.01em;
}

.branch-breadcrumb--light a:hover {
    color: #fff;
}

.branches-page__empty {
    padding: 32px 0;
    text-align: center;
    color: var(--text-light);
}

.branches-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.section--branches-page .branch-card--page {
    border-radius: 14px;
    border: 1px solid rgba(12, 36, 97, 0.07);
    box-shadow: 0 1px 2px rgba(12, 36, 97, 0.04);
}

.section--branches-page .branch-card--page:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(12, 36, 97, 0.09);
    border-color: rgba(52, 152, 219, 0.18);
}

.section--branches-page .branch-card--page .branch-card__image {
    aspect-ratio: 16 / 10;
}

.section--branches-page .branch-card--page .branch-card__overlay {
    background: linear-gradient(180deg, transparent 55%, rgba(8, 26, 69, 0.18) 100%);
    opacity: 1;
}

.section--branches-page .branch-card--page:hover .branch-card__overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(8, 26, 69, 0.24) 100%);
}

.section--branches-page .branch-card--page .branch-card__body {
    padding: 14px 14px 16px;
}

.section--branches-page .branch-card--page .branch-card__text strong {
    font-size: 14px;
    margin-bottom: 3px;
}

.section--branches-page .branch-card--page .branch-card__text p {
    font-size: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section--branches-page .branch-card--page .branch-card__cta {
    font-size: 11px;
}

.section--branches-page .branch-card--page .branch-card__arrow {
    width: 24px;
    height: 24px;
    font-size: 12px;
}

.branches-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.branch-card--showcase .branch-card__image {
    aspect-ratio: 16 / 10;
}

.branches-page__intro {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.branches-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.branch-related__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.section--branch-related {
    padding: 64px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section--branch-related .section__header--center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.section--branch-related .section__header--center p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.branch-related__footer {
    margin-top: 28px;
    text-align: center;
}

.branch-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.branch-hero__media,
.branch-hero__overlay {
    position: absolute;
    inset: 0;
}

.branch-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-hero__overlay {
    background: linear-gradient(180deg, rgba(8, 26, 69, 0.25) 0%, rgba(8, 26, 69, 0.88) 100%);
}

.branch-hero__content {
    position: relative;
    z-index: 1;
    padding: 48px 24px 56px;
    max-width: 760px;
}

.branch-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.branch-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.branch-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.branch-hero__content .section__label {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Shared breadcrumbs ---- */
.site-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-light);
}

.site-breadcrumb a {
    color: var(--primary-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s var(--ease-out);
}

.site-breadcrumb a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.site-breadcrumb__sep {
    color: rgba(12, 36, 97, 0.35);
}

.site-breadcrumb__current {
    color: var(--text-light);
    font-weight: 600;
}

.site-breadcrumb--light {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 3px 14px rgba(4, 12, 40, 0.28);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12.5px;
    margin-bottom: 18px;
}

.site-breadcrumb--light a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.site-breadcrumb--light a:hover {
    color: #fff;
    text-decoration: none;
}

.site-breadcrumb--light .site-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.site-breadcrumb--light .site-breadcrumb__current {
    color: #fff;
    font-weight: 650;
}

.site-breadcrumb__home {
    flex: none;
    opacity: 0.72;
}

.site-breadcrumb--light .site-breadcrumb__home {
    opacity: 0.85;
}

.branch-hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.branch-hero__content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
}

.branch-detail {
    padding: 52px 0 64px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.branch-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 40px;
    align-items: start;
}

.branch-detail__panel {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 16px;
    padding: 28px 28px 30px;
    box-shadow: 0 8px 28px rgba(12, 36, 97, 0.06);
}

.branch-detail__copy {
    max-width: 680px;
}

.branch-detail__lead {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 0 18px;
    border-left: 3px solid var(--accent);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 600;
    color: var(--primary-dark);
}

.branch-detail__content {
    display: grid;
    gap: 14px;
}

.branch-detail__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.72;
    color: var(--text);
}

.branch-detail__aside-inner {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.branch-aside-card {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 14px;
    padding: 18px 18px 20px;
    box-shadow: 0 6px 22px rgba(12, 36, 97, 0.05);
}

.branch-aside-card + .branch-aside-card {
    margin-top: 0;
}

.branch-aside-card__label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.branch-aside-card__label--light {
    color: rgba(255, 255, 255, 0.72);
}

.branch-aside-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.branch-aside-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-light);
    margin-bottom: 0;
}

.branch-highlights {
    list-style: none;
    display: grid;
    gap: 8px;
}

.branch-highlights li {
    position: relative;
    padding: 10px 12px 10px 38px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text);
    background: rgba(12, 36, 97, 0.03);
    border: 1px solid rgba(12, 36, 97, 0.05);
    border-radius: 10px;
}

.branch-highlights li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.14);
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.branch-aside-card--cta {
    background: linear-gradient(160deg, #081a45 0%, #0c2461 48%, #1a3270 100%);
    border: 0;
    box-shadow: 0 12px 32px rgba(8, 26, 69, 0.22);
}

.branch-aside-card--cta h3,
.branch-aside-card--cta p {
    color: rgba(255, 255, 255, 0.92);
}

.branch-aside-card--cta p {
    margin-bottom: 16px;
}

.branch-aside-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.branch-aside-card--cta .btn--primary {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: none;
}

.branch-aside-card--cta .btn--primary:hover {
    background: #f4f8fc;
    transform: translateY(-1px);
}

.branch-aside-card--cta .btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.branch-aside-card--cta .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .branch-detail__grid {
        grid-template-columns: 1fr;
    }

    .branch-detail__aside-inner {
        position: static;
    }
}

@media (max-width: 1024px) {
    .branches-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .branches-page-hero__grid {
        grid-template-columns: 1fr;
    }

    .branches-page-hero__panel {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .branches-page-hero {
        padding: 22px 0 26px;
    }

    .branches-page-hero__top {
        margin-bottom: 18px;
    }

    .branches-page-hero__meta {
        width: 100%;
        justify-content: space-between;
    }

    .branches-page-hero__meta .btn {
        flex: 1 1 auto;
        justify-content: center;
        max-width: 200px;
    }

    .branches-page-hero__panel {
        max-width: none;
        padding: 12px;
    }

    .branches-page-hero__links {
        grid-template-columns: 1fr;
    }

    .branches-page-grid {
        grid-template-columns: 1fr;
    }

    .branches-carousel__shell {
        gap: 8px;
    }

    .branches-carousel__nav {
        width: 36px;
        height: 36px;
    }

    .branch-detail__panel {
        padding: 22px 20px 24px;
    }

    .branch-hero {
        min-height: 300px;
    }
}

.team-leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.team-leader {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
}

.team-leader h3 {
    color: #fff;
    margin-bottom: 4px;
}

.team-leader > span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
}

.team-leader p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.team-leader p em {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

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

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

@media (max-width: 900px) {
    .team-leaders { grid-template-columns: 1fr; }
}

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

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 0.55s var(--ease-out),
        transform 0.55s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.hero .reveal {
    transform: translate3d(0, 14px, 0);
}

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (hover: none), (pointer: coarse) {
    .hero__label,
    .hero__showcase-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ---- Responsive ---- */
@media (min-width: 1200px) {
    .services-section__layout {
        grid-template-columns: minmax(0, 1.55fr) minmax(460px, 500px);
    }
}

@media (max-width: 1100px) {
    .nav { gap: 14px; }
    .nav__link { padding: 5px 10px; font-size: 13px; }
    .nav__cta { padding: 7px 14px !important; font-size: 12px; }
    .logo__img--header { height: 52px; }
    .header-whatsapp__text { display: none; }
    .header__cta-group { gap: 14px; }
}

@media (max-width: 1024px) {
    .page-home .hero__inner {
        padding: 36px 24px 44px;
        text-align: center;
    }

    .page-home .hero__content {
        max-width: none;
    }

    .page-home .hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .page-home .hero__trust--inline {
        justify-content: center;
    }

    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__text { margin: 0 auto 32px; }
    .hero__actions { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__visual { display: none; }
    .services-grid,
    .services-grid--home,
    .services-grid--large { grid-template-columns: 1fr; }
    .leaders-grid { grid-template-columns: 1fr; gap: 20px; }
    .leader-card { padding: 24px; }
    .reviews-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .reviews-platforms {
        justify-content: flex-start;
        width: 100%;
    }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview__grid { grid-template-columns: 1fr; }
    .about-page__grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-section__layout { grid-template-columns: 1fr; }
    .services-section__carousel .services-carousel { min-height: auto; }
    .services-section__layout .services-carousel .service-card,
    .services-section__layout .services-carousel .service-card__photo { min-height: auto; }
    .contact-form-wrap--sidebar .contact-form .form-row { grid-template-columns: 1fr; }
    .services-section__cta { justify-content: center; }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer__brand,
    .footer__col--callback {
        grid-column: 1 / -1;
    }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Tablet: nav naar hamburger-menu zodat de header ruim blijft ---- */
@media (max-width: 920px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 88px 24px 32px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        opacity: 0;
        transition: all var(--transition);
        z-index: 999;
        overflow-y: auto;
        gap: 24px;
    }
    .nav.open { transform: translateX(0); opacity: 1; }
    .nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav__link {
        width: 100%;
        text-align: left;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav__link::after { display: none; }
    .nav__link.active { border-bottom-color: var(--primary); }
    .header__cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 8px;
    }
    .header-whatsapp {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--bg);
    }
    .header-whatsapp__text { display: flex; }
    .menu-toggle { display: flex; z-index: 1001; }
    .header__inner { min-height: 66px; padding: 8px 0; }
    .logo__img--header { height: 46px; }
}

@media (max-width: 768px) {
    .page-home .hero__inner {
        padding: 28px 20px 36px;
    }

    .page-home .hero__title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .page-home .hero__text {
        font-size: 15px;
    }

    .page-home .hero__actions {
        justify-content: center;
    }

    .page-home .hero__trust--inline {
        justify-content: center;
    }

    .section--reviews { padding: 48px 0; }
    .reviews-head { margin-bottom: 20px; }
    .reviews-carousel__shell { gap: 8px; }
    .reviews-carousel__nav { width: 34px; height: 34px; }
    .review-card { min-height: 170px; padding: 16px; }
    .section--clients {
        padding: 28px 0;
    }
    .clients-panel__inner {
        gap: 10px;
        padding: 14px 14px 12px;
    }
    .clients-marquee-header__label {
        font-size: 11px;
    }
    .clients-marquee__track {
        gap: 16px;
    }
    .clients-marquee__logo-wrap {
        height: 72px;
        min-height: 72px;
        max-height: 72px;
        padding: 0 14px;
    }
    .clients-marquee__logo {
        max-width: 220px;
        max-height: 62px;
    }
    .clients-marquee__item--novi .clients-marquee__logo {
        max-height: 66px;
    }
    .header__inner { min-height: 64px; padding: 8px 0; }
    .header__actions { gap: 8px; }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 88px 24px 32px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        opacity: 0;
        transition: all var(--transition);
        z-index: 999;
        overflow-y: auto;
        gap: 24px;
    }
    .nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav.open { transform: translateX(0); opacity: 1; }
    .nav__link {
        width: 100%;
        text-align: left;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav__link::after { display: none; }
    .nav__link.active {
        border-bottom-color: var(--primary);
        color: var(--primary);
    }
    .nav__dropdown {
        width: 100%;
    }
    .nav__trigger {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        font-size: 16px;
        background: transparent;
    }
    .nav__trigger::after { display: none; }
    .nav__submenu {
        position: static;
        min-width: 0;
        transform: none;
        left: auto;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0 0 8px 0;
        display: none;
        background: transparent;
        overflow: visible;
    }
    .nav__dropdown.open .nav__submenu {
        display: block;
    }
    .nav__submenu-all {
        padding: 11px 0 11px 14px;
        border-bottom: 1px solid rgba(12, 36, 97, 0.06);
        border-radius: 0;
    }
    .nav__submenu-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        margin-top: 0;
        border-top: 0;
    }
    .nav__submenu-grid a {
        padding: 11px 0 11px 14px;
        border-bottom: 1px solid rgba(12, 36, 97, 0.06);
        border-radius: 0;
        border-left: 0;
    }
    .nav__submenu-grid a:hover,
    .nav__submenu-grid a.active {
        background: transparent;
        border-left: 0;
        padding-left: 14px;
    }
    .nav__cta {
        margin-left: 0;
        width: 100%;
        margin-top: 0;
        text-align: center;
    }
    .header__cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 8px;
    }
    .header-whatsapp {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--bg);
    }
    .menu-toggle { display: flex; z-index: 1001; }
    .header__inner { min-height: 66px; padding: 8px 0; }
    .logo__img--header { height: 46px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat { border-right: none; padding: 12px 0; }
    .services-grid,
    .services-grid--large { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-forms__tabs { grid-template-columns: 1fr; }
    .contact-forms__tab { padding: 14px 16px; }
    .contact-forms__panels { padding: 18px 16px 22px; }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .footer__cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 0;
    }
    .footer__cta-inner .btn { align-self: stretch; justify-content: center; }
    .section { padding: 48px 0; }
    .section--dark { padding: 40px 0; }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 32px));
    z-index: 9999;
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cookie-banner__inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 12px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }

    .cookie-banner__inner .btn {
        width: 100%;
    }
}

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.site-toast-stack {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 36px));
    pointer-events: none;
}

.site-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 36, 97, 0.08);
    box-shadow: 0 16px 40px rgba(12, 36, 97, 0.16);
    color: var(--primary-dark);
    font-size: 14px;
    line-height: 1.5;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.site-toast--error {
    border-color: rgba(231, 76, 60, 0.22);
    background: linear-gradient(180deg, #fff 0%, #fff7f6 100%);
}

.site-toast--success {
    border-color: rgba(46, 204, 113, 0.22);
    background: linear-gradient(180deg, #fff 0%, #f4fbf7 100%);
}

.site-toast__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.site-toast--error .site-toast__icon {
    background: rgba(231, 76, 60, 0.12);
    color: #c0392b;
}

.site-toast--success .site-toast__icon {
    background: rgba(46, 204, 113, 0.14);
    color: #1e8449;
}

.site-toast__text {
    flex: 1;
    padding-top: 3px;
}

@media (max-width: 768px) {
    .site-toast-stack {
        left: 18px;
        right: 18px;
        width: auto;
    }
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9990;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: #fff;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s var(--ease-out), visibility 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    box-shadow: 0 16px 40px rgba(12, 36, 97, 0.22);
    transform: translateY(-2px);
}

.scroll-top:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    .top-bar__portal-link span {
        display: none;
    }

    .top-bar__portal-link {
        padding: 5px 8px;
    }
}

/* ---- Homepage ---- */
.page-home .section {
    padding: 56px 0;
}

.page-home .section--clients {
    padding: 36px 0 28px;
    background: var(--bg);
}

.page-home .section--about-home {
    padding: 44px 0 40px;
    background: #fff;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
}

.page-home .section--about-home .about-preview__grid {
    gap: 48px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.page-home .section--about-home .about-preview__photo {
    height: 320px;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(12, 36, 97, 0.12);
}

.page-home .section--about-home .about-preview__content p {
    max-width: 52ch;
}

.about-preview__cta svg {
    transition: transform 0.2s var(--ease-out);
}

.about-preview__cta:hover svg {
    transform: translateX(3px);
}

.page-home .section--branches-home {
    padding: 40px 0 44px;
    background: #fff;
    border-top: 1px solid rgba(12, 36, 97, 0.04);
}

.page-home .section--branches-home .section__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 18px;
}

.page-home .section--branches-home .section__header p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-light);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-branches-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-home .home-branches-panel .branches-carousel__shell {
    gap: 10px;
}

.page-home .home-branches-panel .branches-carousel__track {
    gap: 14px;
}

.page-home .home-branches-panel .branches-carousel__nav {
    width: 38px;
    height: 38px;
    border-color: rgba(12, 36, 97, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 8px rgba(12, 36, 97, 0.05);
}

.page-home .home-branches-panel .branches-carousel__nav:hover:not(:disabled) {
    transform: none;
    box-shadow: 0 4px 14px rgba(12, 36, 97, 0.1);
}

.page-home .home-branches-panel .branch-card--home {
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(12, 36, 97, 0.05);
}

.page-home .home-branches-panel .branch-card--home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(12, 36, 97, 0.1);
}

.page-home .home-branches-panel .branch-card--home .branch-card__image {
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.page-home .home-branches-panel .branch-card--home .branch-card__overlay {
    background: linear-gradient(180deg, rgba(8, 26, 69, 0) 35%, rgba(8, 26, 69, 0.72) 100%);
}

.page-home .home-branches-panel .branch-card--home:hover .branch-card__overlay {
    background: linear-gradient(180deg, rgba(8, 26, 69, 0.04) 30%, rgba(8, 26, 69, 0.82) 100%);
}

.page-home .home-branches-panel .branch-card--home .branch-card__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 16px;
}

.page-home .home-branches-panel .branch-card--home .branch-card__eyebrow,
.page-home .home-branches-panel .branch-card--home .branch-card__excerpt {
    display: none;
}

.page-home .home-branches-panel .branch-card--home .branch-card__title {
    margin: 0;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.page-home .home-branches-panel .branch-card--home .branch-card__pill {
    flex-shrink: 0;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    font-size: 0;
}

.page-home .home-branches-panel .branch-card--home .branch-card__pill > span:first-child {
    display: none;
}

.page-home .home-branches-panel .branch-card--home .branch-card__arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 13px;
    transition: background 0.2s ease, transform 0.2s var(--ease-out), border-color 0.2s ease;
}

.page-home .home-branches-panel .branch-card--home:hover .branch-card__arrow {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateX(2px);
}

.page-home .branches-section__footer {
    margin-top: 18px;
}

.page-home .home-branches-panel .branches-carousel__dots {
    margin-top: 12px;
}

.page-home .branches-section__cta {
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.page-home .clients-marquee-header {
    margin-bottom: 0;
}

.page-home .section--reviews {
    padding: 40px 0 44px;
    background: var(--bg);
}

.page-home .section__header {
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .page-home .section--about-home {
        padding: 36px 0 32px;
    }

    .page-home .section--about-home .about-preview__photo {
        height: 240px;
        border-radius: 14px;
    }

    .page-home .section--branches-home {
        padding: 32px 0 36px;
    }

    .page-home .section--branches-home .section__header {
        margin-bottom: 16px;
    }

    .page-home .home-branches-panel .branches-carousel__shell {
        gap: 6px;
    }

    .page-home .home-branches-panel .branches-carousel__nav {
        width: 34px;
        height: 34px;
    }

    .page-home .home-branches-panel .branch-card--home .branch-card__image {
        aspect-ratio: 4 / 3;
    }

    .page-home .home-branches-panel .branch-card--home .branch-card__content {
        padding: 12px 14px 14px;
    }
}

.page-home .section__header--home p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Gecombineerde trust-band: stats + USP's in één blok */
.home-trust-band {
    padding: 16px 0 8px;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.home-trust-band__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 10px 36px rgba(12, 36, 97, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.home-trust-band__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.1), transparent 55%);
    pointer-events: none;
}

.home-trust-band__stats {
    display: flex;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.home-trust-band__stat {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    flex: 0 0 auto;
}

.home-trust-band__stat:first-child {
    padding-left: 0;
}

.home-trust-band__stat:last-child {
    border-right: 0;
    padding-right: 0;
}

.home-trust-band__num {
    display: block;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-trust-band__label {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    white-space: nowrap;
}

.home-trust-band__divider {
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 1;
}

.home-trust-band__usps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    justify-content: flex-end;
}

.home-trust-band__usp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    white-space: nowrap;
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    .home-trust-band__usps {
        flex-wrap: nowrap;
    }
}

.home-trust-band__usp svg {
    flex-shrink: 0;
    color: #7dd3fc;
}

/* Diensten + formulier in één paneel */
.section--home-services {
    padding-top: 12px;
    padding-bottom: 36px;
    background: var(--bg);
}

.page-home .section--home-services {
    padding-top: 12px;
}

.home-panel {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(12, 36, 97, 0.06);
    padding: 16px 18px 14px;
}

.page-home .section__header--home {
    margin-bottom: 12px;
}

.page-home .section__header--home h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    margin-bottom: 4px;
}

.page-home .section__header--home p {
    font-size: 13px;
    line-height: 1.4;
}

.page-home .home-panel .services-section__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 14px;
    align-items: stretch;
}

.page-home .services-section__form {
    display: block;
    align-self: stretch;
    height: auto;
    min-height: 0;
}

.page-home .services-section__carousel {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.page-home .home-panel .services-section__form {
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-self: stretch;
}

.page-home .home-panel .services-section__layout .services-carousel .service-card,
.page-home .home-panel .services-section__layout .services-carousel .service-card__photo {
    min-height: 270px;
}

.page-home .home-panel .services-section__form .contact-forms {
    box-shadow: none;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 14px;
    height: auto;
    min-height: 0;
    align-self: flex-start;
    width: 100%;
}

.page-home .home-panel .services-section__carousel .services-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.page-home .home-panel .services-section__carousel .services-carousel__viewport {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.page-home .home-panel .services-section__carousel .services-carousel__track {
    flex: 1;
    min-height: 100%;
    align-items: stretch;
}

.page-home .home-panel .services-section__layout .services-carousel .service-card {
    min-height: 100%;
    height: auto;
    align-self: stretch;
}

.page-home .home-panel .services-section__layout .services-carousel .service-card__photo {
    min-height: 100%;
}

.page-home .contact-forms--home .contact-form-wrap--general .contact-form-wrap__title,
.page-home .contact-forms--home .contact-form-wrap--general .contact-form-wrap__intro {
    display: none;
}

.page-home .contact-forms--home .contact-form-wrap--quote .contact-form-wrap__title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.25;
}

.page-home .contact-forms--home .contact-form-wrap--quote .contact-form-wrap__intro {
    display: block;
    font-size: 11px;
    margin-bottom: 8px;
    line-height: 1.35;
    color: var(--text-light);
}

.page-home .contact-forms--home .contact-forms__tabs {
    padding: 0;
}

.page-home .contact-forms--home .contact-forms__tab {
    padding: 9px 8px;
}

.page-home .contact-forms--home .contact-form--dense .form-row {
    gap: 6px;
}

.page-home .contact-forms--home .contact-form-wrap--quote .form-group {
    margin-bottom: 5px;
}

.page-home .contact-forms--home .contact-form-wrap--quote .form-group label {
    font-size: 11px;
    margin-bottom: 2px;
}

.page-home .contact-forms--home .contact-form-wrap--quote .form-group input,
.page-home .contact-forms--home .contact-form-wrap--quote .form-group select,
.page-home .contact-forms--home .contact-form-wrap--quote .form-group textarea {
    padding: 7px 9px;
    font-size: 12px;
}

.page-home .contact-forms--home .contact-form-wrap--quote .form-group textarea {
    min-height: 40px;
}

.page-home .contact-forms--home .contact-form-wrap--quote .btn--lg,
.page-home .contact-forms--home .contact-form-wrap--general .btn--lg {
    margin-top: 2px;
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(12, 36, 97, 0.14);
}

.page-home .contact-forms--home .contact-form .form-row {
    gap: 8px;
}

.page-home .contact-forms--home .form-group {
    margin-bottom: 6px;
}

.page-home .contact-forms--home .form-group label {
    font-size: 12px;
    margin-bottom: 3px;
}

.page-home .contact-forms--home .form-group input,
.page-home .contact-forms--home .form-group select,
.page-home .contact-forms--home .form-group textarea {
    padding: 8px 10px;
    font-size: 13px;
}

.page-home .contact-forms--home .form-group textarea {
    min-height: 44px;
    resize: vertical;
}

.page-home .contact-forms--home .contact-form-wrap--general .form-group textarea {
    min-height: 72px;
    padding: 10px 12px;
    font-size: 14px;
}

.page-home .contact-forms--home .contact-form-wrap--general .form-group:last-of-type {
    margin-bottom: 6px;
}

.page-home .contact-forms--home .contact-forms__panels {
    flex: none;
    display: block;
    height: auto;
    min-height: 0;
    padding: 10px 12px 6px;
}

.services-carousel__bar--home {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.services-carousel__bar--home .services-carousel__dots {
    flex-shrink: 0;
}

.services-carousel__bar--home .services-carousel__progress {
    max-width: 120px;
}

.services-carousel__all-link {
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
}

.services-carousel__all-link:hover {
    color: var(--primary);
}

.page-home .contact-forms--home {
    display: block;
    height: auto;
    min-height: 0;
    align-self: flex-start;
}

.page-home .contact-forms--home .contact-forms__panel[hidden] {
    display: none !important;
}

.page-home .contact-forms--home .contact-forms__panel:not([hidden]) {
    display: block;
    height: auto;
    min-height: 0;
}

.page-home .contact-forms--home .contact-form-wrap,
.page-home .contact-forms--home .contact-form {
    display: block;
}

@media (max-width: 1100px) {
    .page-home .home-panel .services-section__layout {
        grid-template-columns: 1fr;
    }

    .home-steps {
        grid-template-columns: 1fr;
    }

    .home-steps__item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        right: 16px;
        left: 16px;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(12, 36, 97, 0.1), transparent);
    }
}

@media (max-width: 768px) {
    .home-trust-band__card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
    }

    .home-trust-band__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 0;
    }

    .home-trust-band__stat {
        padding: 4px 8px;
    }

    .home-trust-band__stat:first-child {
        padding-left: 8px;
    }

    .home-trust-band__stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .home-trust-band__stat:nth-child(even),
    .home-trust-band__stat:last-child {
        border-right: 0;
    }

    .home-trust-band__divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .home-trust-band__usps {
        justify-content: flex-start;
    }

    .home-trust-band__usp {
        white-space: normal;
    }

    .page-home .section {
        padding: 40px 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding: 32px 20px 36px;
    }

    .hero__photo-wrap {
        max-width: 100%;
        max-height: 240px;
    }

    .hero__photo-tags {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero__trust--inline {
        flex-direction: column;
        gap: 8px;
    }

    .services-grid--panel {
        grid-template-columns: 1fr;
    }

    .services-carousel--home-panel .service-card {
        min-height: 180px;
        grid-template-columns: minmax(120px, 38%) 1fr;
    }

    .services-carousel--home-panel .service-card__photo {
        min-height: 180px;
    }

    .services-carousel--home-panel .service-card__body {
        padding: 14px 16px;
    }

    .services-carousel--home-panel .service-card__body::before {
        top: 12px;
        bottom: 12px;
    }

    .service-card--home-slide h3 {
        font-size: 1rem;
    }

    .services-carousel__bar--home .services-carousel__progress {
        display: none;
    }

    .home-panel {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .home-trust-band {
        padding: 12px 0 4px;
    }

    .page-home .section--home-services {
        padding-top: 8px;
    }

    .page-home .contact-forms--home .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .mobile-cta:not([hidden]) ~ .scroll-top,
    .page-home .scroll-top.is-visible {
        bottom: calc(72px + env(safe-area-inset-bottom));
    }
}

@media (min-width: 769px) {
    .mobile-cta {
        display: none !important;
    }
}

@media (max-width: 520px) {
    .home-trust-band__card {
        padding: 14px 14px;
    }
}

/* ---- Werken bij / Careers ---- */
.page-careers .footer__cta {
    display: none;
}

.careers-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
    background: var(--inner-hero-gradient, linear-gradient(135deg, #081a45 0%, #0c2461 52%, #1e3799 100%));
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.careers-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 32px;
    align-items: end;
}

.careers-hero__copy h1 {
    margin: 8px 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
}

.careers-hero .section__label {
    color: rgba(191, 219, 254, 0.98);
}

.careers-hero__subtitle {
    margin: 0 0 14px;
    max-width: 52ch;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.careers-hero__intro {
    margin: 0 0 24px;
    max-width: 58ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.careers-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.careers-hero__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.careers-hero__actions .btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
}

.careers-hero__stats {
    display: grid;
    gap: 12px;
}

.careers-stat {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.careers-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: var(--white);
}

.careers-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
}

.careers-vacancies {
    padding-top: 56px;
    padding-bottom: 56px;
}

.careers-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.careers-section-head h2 {
    margin: 8px 0 10px;
}

.careers-section-head p {
    margin: 0;
    max-width: 52ch;
    color: var(--text-light);
    line-height: 1.65;
}

.careers-filters-wrap {
    margin-bottom: 24px;
}

.careers-filters {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    max-width: 100%;
    padding: 5px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.careers-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #475569;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.careers-filter__label {
    letter-spacing: -0.01em;
}

.careers-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(12, 36, 97, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.careers-filter:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.72);
}

.careers-filter:focus-visible {
    outline: 2px solid rgba(52, 152, 219, 0.45);
    outline-offset: 2px;
}

.careers-filter.is-active {
    color: var(--primary);
    background: var(--white);
    box-shadow:
        0 1px 2px rgba(12, 36, 97, 0.08),
        0 4px 14px rgba(12, 36, 97, 0.08),
        0 0 0 1px rgba(12, 36, 97, 0.06);
    transform: translateY(-1px);
}

.careers-filter.is-active .careers-filter__count {
    background: rgba(12, 36, 97, 0.12);
    color: var(--primary-dark);
}

.careers-filters__empty {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(12, 36, 97, 0.04);
    border: 1px solid rgba(12, 36, 97, 0.08);
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.careers-filters__empty a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.careers-filters__empty a:hover {
    text-decoration: underline;
}

.careers-card.is-filtered-out {
    opacity: 0;
    transform: scale(0.98);
}

.careers-card[hidden] {
    display: none !important;
}

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

.careers-card {
    --careers-accent: var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(12, 36, 97, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.18s ease;
}

.careers-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(12, 36, 97, 0.08), rgba(52, 152, 219, 0.12));
}

.careers-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.careers-card:hover .careers-card__media img {
    transform: scale(1.04);
}

.careers-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 26, 69, 0.08) 0%, rgba(8, 26, 69, 0.42) 100%);
    pointer-events: none;
}

.careers-card__media .careers-card__category {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.careers-card__media--open::after {
    background: linear-gradient(180deg, rgba(21, 128, 61, 0.08) 0%, rgba(12, 36, 97, 0.38) 100%);
}

a.careers-card {
    text-decoration: none;
    color: inherit;
}

.careers-card:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 152, 219, 0.22);
    box-shadow: 0 18px 40px rgba(12, 36, 97, 0.1);
}

.careers-card__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--careers-accent), rgba(52, 152, 219, 0.45));
}

.careers-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 18px;
}

.careers-card__head h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--dark);
}

.careers-card__category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(12, 36, 97, 0.06);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.careers-card__excerpt {
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.95rem;
}

.careers-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
    color: var(--text-light);
    font-size: 13px;
}

.careers-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.careers-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 22px;
    border: 0;
    border-top: 1px solid rgba(12, 36, 97, 0.08);
    background: rgba(248, 250, 252, 0.9);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.careers-card__link:hover {
    background: rgba(12, 36, 97, 0.05);
    color: var(--primary-dark);
}

.careers-card--open {
    background: linear-gradient(180deg, rgba(12, 36, 97, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.careers-card--open .careers-card__accent {
    background: linear-gradient(90deg, #15803d, #22c55e);
}

.careers-empty {
    padding: 48px 28px;
    border: 1px dashed rgba(12, 36, 97, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.careers-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(12, 36, 97, 0.06);
    color: var(--primary);
}

.careers-empty h3 {
    margin: 0 0 8px;
}

.careers-empty p {
    margin: 0 0 18px;
    color: var(--text-light);
}

.careers-culture {
    padding-top: 48px;
    padding-bottom: 48px;
}

.careers-culture__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.careers-culture__copy h2 {
    margin: 8px 0 12px;
}

.careers-culture__copy p {
    margin: 0 0 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.careers-benefits {
    display: grid;
    gap: 10px;
}

.careers-benefit {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--bg);
}

.careers-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-weight: 800;
    font-size: 14px;
}

.careers-benefit h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--dark);
}

.careers-benefit p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
}

.careers-process {
    padding: 56px 0 64px;
    background:
        radial-gradient(circle at top right, rgba(52, 152, 219, 0.08), transparent 42%),
        linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
    border-top: 1px solid rgba(12, 36, 97, 0.05);
}

.careers-apply-block {
    position: relative;
    padding: 48px 0 64px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
    overflow: hidden;
    scroll-margin-top: 96px;
}

.careers-apply-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(52, 152, 219, 0.08), transparent 34%),
        radial-gradient(circle at 88% 100%, rgba(12, 36, 97, 0.05), transparent 38%);
    pointer-events: none;
}

.careers-apply-block__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.careers-flow-card {
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(12, 36, 97, 0.04),
        0 18px 48px rgba(12, 36, 97, 0.08);
    overflow: hidden;
}

.careers-flow-card__header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(12, 36, 97, 0.06);
    background: #fff;
}

.careers-flow-card__stage {
    position: relative;
    padding: 20px 22px 22px;
    transition: min-height 0.45s ease;
}

.vacancy-stepper--flow .vacancy-stepper__list {
    max-width: 360px;
    margin: 0 auto;
}

.careers-process--light .careers-process__eyebrow {
    color: var(--primary);
}

.careers-process--light .careers-process__badge {
    background: rgba(52, 152, 219, 0.08);
    border-color: rgba(52, 152, 219, 0.14);
    color: var(--primary-dark);
}

.careers-process--light .careers-process__badge svg {
    color: var(--primary);
}

.careers-process--light.careers-process--inline .careers-process__steps::before {
    background: #dbe4ee;
}

.careers-process--light.careers-process--inline .careers-process-step__num {
    background: #fff;
    border: 2px solid #dce3ec;
    color: #64748b;
    box-shadow: none;
}

.careers-process--light.careers-process--inline .careers-process-step--current .careers-process-step__num {
    background: linear-gradient(145deg, #0c2461, #1e5a9e);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 16px rgba(12, 36, 97, 0.18);
}

.careers-process--light.careers-process--inline .careers-process-step__body h3 {
    color: var(--dark);
}

.careers-process--light.careers-process--inline .careers-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
}

.careers-process--light.careers-process--inline .careers-process__steps::before {
    display: none;
}

.careers-process--light.careers-process--inline .careers-process-step {
    text-align: left;
    padding: 16px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(12, 36, 97, 0.06);
}

.careers-process--light.careers-process--inline .careers-process-step__node {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.careers-process--light.careers-process--inline .careers-process-step__num {
    width: 34px;
    height: 34px;
    font-size: 11px;
}

.careers-process--light.careers-process--inline .careers-process-step__body h3 {
    font-size: 14px;
}

.careers-process--light.careers-process--inline .careers-process-step__body p {
    font-size: 13px;
    line-height: 1.5;
}

.careers-flow-card .careers-flow__panel.is-active .careers-process-step {
    background: #f8fafc;
    border: 1px solid rgba(12, 36, 97, 0.06);
}

.careers-flow-card .careers-flow__actions {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
}

/* Sollicitatie-flow navigatieknoppen */
.flow-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 7px 16px 7px 7px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: 999px;
    background: #f8fafc;
    color: var(--primary-dark);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease,
        color 0.22s ease;
    box-shadow: 0 1px 2px rgba(12, 36, 97, 0.04);
}

.flow-back-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    color: var(--primary);
    flex-shrink: 0;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.flow-back-btn:hover {
    background: #fff;
    border-color: rgba(52, 152, 219, 0.28);
    box-shadow: 0 6px 18px rgba(12, 36, 97, 0.08);
    transform: translateY(-1px);
    color: var(--primary-dark);
}

.flow-back-btn:hover .flow-back-btn__icon {
    transform: translateX(-2px);
    background: rgba(52, 152, 219, 0.08);
    border-color: rgba(52, 152, 219, 0.22);
}

.flow-back-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
}

.flow-back-btn--center {
    margin-left: auto;
    margin-right: auto;
}

.flow-forward-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flow-forward-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
    transition: transform 0.22s ease, background 0.22s ease;
}

.flow-forward-btn:hover .flow-forward-btn__icon {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.22);
}

.careers-flow-card .careers-flow__back {
    margin-bottom: 14px;
}

.careers-flow-card .careers-flow__next {
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(12, 36, 97, 0.2);
}

.careers-flow-card .careers-form-wrap__head--compact h2 {
    color: var(--dark);
}

.careers-flow-card .careers-form-wrap__head--compact p {
    color: #64748b;
}

.careers-flow-card .careers-form-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.careers-flow-card .careers-flow__panel {
    transform: translateY(12px);
}

.careers-flow-card .careers-flow__panel.is-leaving {
    transform: translateY(-8px);
}

.careers-flow-card .careers-flow__panel.is-entering {
    transform: translateY(12px);
}

.careers-flow-card .careers-flow__panel.is-entering.is-back {
    transform: translateY(-12px);
}

.careers-flow-card .careers-flow__panel.is-leaving.is-back {
    transform: translateY(8px);
}

.careers-apply-block__form {
    scroll-margin-top: 96px;
}

.careers-process__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.careers-process__copy h2 {
    margin: 6px 0 0;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    line-height: 1.15;
}

.careers-process__head p {
    margin: 8px 0 0;
    max-width: 52ch;
    color: var(--text-light);
    line-height: 1.65;
    font-size: 15px;
}

.careers-process__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 36, 97, 0.08);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.careers-process__badge svg {
    color: var(--primary);
}

.careers-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.careers-process-step {
    position: relative;
    min-height: 100%;
}

.careers-process-step__node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.careers-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.careers-process-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary);
    flex-shrink: 0;
}

.careers-process-step__body h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.25;
}

.careers-process-step__body p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.55;
    font-size: 13px;
}

.careers-process--inline {
    padding: 0;
    margin-bottom: 28px;
    background: none;
    border: none;
}

.careers-process--inline .careers-process__head {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.careers-process--inline .careers-process__head--compact {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.careers-process__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.careers-process--inline .section__label {
    color: rgba(147, 197, 253, 0.95);
}

.careers-process--inline .careers-process__copy h2 {
    color: #fff;
}

.careers-process--inline .careers-process__badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.careers-process--inline .careers-process__badge svg {
    color: rgba(147, 197, 253, 0.95);
}

.careers-process--inline .careers-process__steps {
    position: relative;
    gap: 0;
    padding: 4px 0 0;
}

.careers-process--inline .careers-process__steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

.careers-process--inline .careers-process-step {
    text-align: center;
    padding: 0 14px;
}

.careers-process--inline .careers-process-step__node {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
}

.careers-process--inline .careers-process-step__num {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.careers-process--inline .careers-process-step__icon {
    display: none;
}

.careers-process--inline .careers-process-step--current .careers-process-step__num {
    background: linear-gradient(135deg, var(--primary), #5dade2);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.28);
}

.careers-process--inline .careers-process-step__body h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.careers-process--inline .careers-process-step__body p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    max-width: 26ch;
    margin-inline: auto;
}

.careers-flow {
    width: 100%;
}

.careers-flow__header {
    margin-bottom: 22px;
}

.careers-flow__track {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.careers-flow__track-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3498db, #5dade2);
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers-flow__nav {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.careers-flow__nav li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.3s ease;
}

.careers-flow__nav li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 800;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.careers-flow__nav li.is-active {
    color: #fff;
}

.careers-flow__nav li.is-active span {
    background: linear-gradient(135deg, var(--primary), #5dade2);
    border-color: transparent;
    transform: scale(1.05);
}

.careers-flow__nav li.is-done {
    color: rgba(255, 255, 255, 0.78);
}

.careers-flow__nav li.is-done span {
    background: rgba(52, 152, 219, 0.22);
    border-color: rgba(147, 197, 253, 0.35);
}

.careers-flow__stage {
    position: relative;
    transition: min-height 0.45s ease;
}

.careers-flow__panel {
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers-flow__panel.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.careers-flow__panel.is-leaving {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(-24px);
    pointer-events: none;
}

.careers-flow__panel.is-leaving.is-back {
    transform: translateX(24px);
}

.careers-flow__panel.is-entering {
    position: absolute;
    inset: 0;
}

.careers-flow__panel.is-entering.is-back {
    transform: translateX(-24px);
}

.careers-flow__panel.is-active:not(.is-entering) {
    position: relative;
}

.careers-flow__panel.is-active .careers-process-step {
    opacity: 0;
    transform: translateY(12px);
    animation: careersFlowStepIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.careers-flow__panel.is-active .careers-process-step:nth-child(1) { animation-delay: 0.06s; }
.careers-flow__panel.is-active .careers-process-step:nth-child(2) { animation-delay: 0.16s; }
.careers-flow__panel.is-active .careers-process-step:nth-child(3) { animation-delay: 0.26s; }

@keyframes careersFlowStepIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.careers-process--inline .careers-flow__panel.is-active .careers-process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 14px 16px;
}

.careers-flow__actions {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
}

.careers-flow__next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(12, 36, 97, 0.2);
}

.careers-flow__next .flow-forward-btn__icon {
    transition: transform 0.22s ease, background 0.22s ease;
}

.careers-flow__next:hover .flow-forward-btn__icon {
    transform: translateX(2px);
}

.careers-flow__panel[data-careers-flow-panel="form"] .careers-form-wrap__head {
    border-top: none;
    padding-top: 0;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .careers-process--light.careers-process--inline .careers-process__steps {
        grid-template-columns: 1fr;
    }

    .careers-flow-card__stage {
        padding: 16px;
    }

    .vacancy-stepper--flow .vacancy-stepper__list {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .careers-flow__panel,
    .careers-flow__track-fill,
    .flow-back-btn,
    .flow-forward-btn__icon {
        transition: none;
    }

    .careers-flow__panel.is-active .careers-process-step {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.careers-apply,
.careers-apply-block .careers-form-wrap {
    max-width: none;
}

.careers-apply {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #0c2461 0%, #081a45 100%);
}

.careers-form-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.careers-form-wrap__head {
    text-align: center;
    margin-bottom: 24px;
}

.careers-form-wrap__head h2 {
    margin: 8px 0 10px;
    color: var(--white);
}

.careers-form-wrap__head p {
    margin: 0 auto;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.careers-form-wrap .section__label {
    color: rgba(147, 197, 253, 0.95);
}

.careers-form-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(8, 26, 69, 0.22);
}

.careers-form-success {
    text-align: center;
    padding: 18px 8px 8px;
}

.careers-form-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.careers-form-success h3 {
    margin: 0 0 8px;
}

.careers-form-success p {
    margin: 0 0 18px;
    color: var(--text-light);
}

.careers-form .label-optional {
    font-weight: 400;
    color: var(--text-light);
}

.form-row--uploads {
    align-items: stretch;
}

.file-drop {
    position: relative;
    min-height: 148px;
    padding: 18px;
    border: 1.5px dashed rgba(148, 163, 184, 0.55);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.9);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-drop__content {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    pointer-events: none;
}

.file-drop__content svg {
    color: var(--primary);
}

.file-drop__content p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

.file-drop__content span {
    color: var(--primary);
    text-decoration: underline;
}

.file-drop__content small {
    color: var(--text-light);
    font-size: 12px;
}

.file-drop__name {
    margin: 12px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    word-break: break-word;
}

.file-drop.is-dragover,
.file-drop.has-file {
    border-color: rgba(52, 152, 219, 0.45);
    background: rgba(52, 152, 219, 0.05);
    box-shadow: inset 0 0 0 1px rgba(52, 152, 219, 0.08);
}

.careers-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 8px 0 18px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-light);
}

.careers-consent input {
    margin-top: 3px;
}

.careers-form-wrap__head--compact h2 {
    margin-bottom: 6px;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.careers-form-wrap__head--compact p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.careers-form-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.careers-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(12, 36, 97, 0.08);
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.careers-form-badge svg {
    flex-shrink: 0;
    color: var(--primary);
}

.careers-form-badge--role {
    background: rgba(12, 36, 97, 0.06);
    border-color: rgba(12, 36, 97, 0.12);
    color: var(--primary-dark);
}

.careers-form-badge--accent {
    background: rgba(52, 152, 219, 0.08);
    border-color: rgba(52, 152, 219, 0.16);
    color: var(--primary-dark);
}

.careers-form-section {
    margin-bottom: 14px;
}

.careers-form-section__label,
.form-group__label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.careers-availability__switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
}

.careers-availability__option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.careers-availability__option.is-active {
    border-color: rgba(12, 36, 97, 0.24);
    background: rgba(12, 36, 97, 0.04);
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 1px rgba(12, 36, 97, 0.06);
}

.careers-availability__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.careers-availability.is-invalid .careers-date-picker__trigger {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.careers-date-picker {
    position: relative;
}

.careers-date-picker__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.careers-date-picker__trigger svg {
    flex-shrink: 0;
    color: var(--primary);
}

.careers-date-picker__trigger:hover,
.careers-date-picker__trigger[aria-expanded='true'] {
    border-color: rgba(52, 152, 219, 0.35);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.08);
}

.careers-date-picker__panel {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    min-width: 292px;
    padding: 14px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow:
        0 4px 6px rgba(12, 36, 97, 0.04),
        0 20px 44px rgba(12, 36, 97, 0.14);
}

.careers-date-picker__header {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.careers-date-picker__header strong {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.careers-date-picker__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 8px;
    background: #fff;
    color: var(--primary-dark);
    cursor: pointer;
}

.careers-date-picker__weekdays,
.careers-date-picker__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.careers-date-picker__weekdays {
    margin-bottom: 6px;
}

.careers-date-picker__weekdays span {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.careers-date-picker__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
}

.careers-date-picker__day.is-empty {
    pointer-events: none;
}

.careers-date-picker__day.is-disabled {
    color: #cbd5e1;
    cursor: default;
}

.careers-date-picker__day.is-today {
    box-shadow: inset 0 0 0 1px rgba(52, 152, 219, 0.35);
}

.careers-date-picker__day.is-selected {
    background: linear-gradient(145deg, #0c2461, #1e5a9e);
    color: #fff;
    box-shadow: 0 4px 12px rgba(12, 36, 97, 0.18);
}

.careers-date-picker__day:not(.is-disabled):not(.is-empty):hover {
    background: rgba(52, 152, 219, 0.08);
}

.file-drop--sleek {
    min-height: 78px;
    padding: 0;
    border-style: solid;
    border-color: rgba(12, 36, 97, 0.08);
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.85);
}

.file-drop--sleek .file-drop__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 12px 14px;
    pointer-events: none;
}

.file-drop--sleek .file-drop__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.08);
    color: var(--primary);
    flex-shrink: 0;
}

.file-drop--sleek .file-drop__copy {
    min-width: 0;
    flex: 1;
}

.file-drop--sleek .file-drop__title {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.file-drop--sleek .file-drop__hint {
    margin: 0 0 2px;
    font-size: 12px;
    color: #64748b;
}

.file-drop--sleek .file-drop__hint span {
    color: var(--primary);
    text-decoration: underline;
}

.file-drop--sleek .file-drop__copy small {
    font-size: 11px;
    color: #94a3b8;
}

.file-drop--sleek .file-drop__state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 42%;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(21, 128, 61, 0.08);
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    word-break: break-all;
}

.file-drop--sleek.has-file {
    border-color: rgba(21, 128, 61, 0.22);
    background: rgba(21, 128, 61, 0.03);
}

.file-drop--sleek.has-file .file-drop__icon {
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.file-drop--sleek.is-dragover {
    border-color: rgba(52, 152, 219, 0.35);
    background: rgba(52, 152, 219, 0.05);
}

[data-careers-submit].is-loading {
    pointer-events: none;
}

[data-careers-submit] .btn__loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

[data-careers-submit].is-loading .btn__label {
    display: none;
}

[data-careers-submit].is-loading .btn__loading {
    display: inline-flex;
}

[data-careers-submit] .btn__spinner {
    animation: careers-spin 0.8s linear infinite;
}

@keyframes careers-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .careers-hero__inner,
    .careers-grid,
    .careers-culture__shell {
        grid-template-columns: 1fr;
    }

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

    .careers-process__steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .careers-process--inline .careers-process__steps::before {
        display: none;
    }

    .careers-process--inline .careers-process-step {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        text-align: left;
        padding: 16px;
    }

    .careers-process--inline .careers-process-step__node {
        margin-bottom: 0;
    }

    .careers-process--inline .careers-process-step__body p {
        max-width: none;
        margin-inline: 0;
    }

    .careers-flow__nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .careers-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .careers-filters-wrap {
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .careers-filters {
        flex-wrap: nowrap;
        min-width: max-content;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding-top: 42px;
    }

    .careers-hero__stats {
        grid-template-columns: 1fr;
    }

    .careers-form-card {
        padding: 20px 18px;
    }

    .form-row--uploads {
        grid-template-columns: 1fr;
    }
}

/* Vacancy detail pages */
.vacancy-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 44px;
    background: var(--inner-hero-gradient, linear-gradient(135deg, #081a45 0%, #0c2461 52%, #1e3799 100%));
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vacancy-hero .hero__bg {
    opacity: 1;
}

.vacancy-hero__inner {
    position: relative;
    z-index: 2;
}

.vacancy-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
}

.vacancy-breadcrumb a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.15s ease;
}

.vacancy-breadcrumb a:hover {
    color: #fff;
}

.vacancy-breadcrumb [aria-current="page"] {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.vacancy-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 28px 36px;
    align-items: center;
}

.vacancy-hero__content {
    max-width: 680px;
}

.vacancy-hero__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(12, 36, 97, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.vacancy-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vacancy-hero__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: rgba(147, 197, 253, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vacancy-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: var(--white);
}

.vacancy-hero__lead {
    margin: 0 0 16px;
    max-width: 56ch;
    font-size: 1rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.78);
}

.vacancy-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vacancy-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.vacancy-hero__chip svg {
    flex-shrink: 0;
    color: rgba(147, 197, 253, 0.95);
}

.vacancy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

.vacancy-hero__back {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.vacancy-hero__back:hover {
    color: #fff;
    opacity: 1;
}

.vacancy-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.vacancy-detail__main {
    display: grid;
    gap: 18px;
}

.vacancy-panel {
    padding: 28px;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(12, 36, 97, 0.05);
}

.vacancy-panel h2 {
    margin: 0 0 16px;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.vacancy-panel--highlight {
    background: linear-gradient(180deg, rgba(52, 152, 219, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(52, 152, 219, 0.16);
}

.vacancy-detail__content p {
    margin: 0 0 14px;
    line-height: 1.75;
    color: var(--text);
}

.vacancy-detail__content p:last-child {
    margin-bottom: 0;
}

.vacancy-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.vacancy-list li {
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
    color: var(--text);
}

.vacancy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.vacancy-list--checks li::before {
    width: 16px;
    height: 16px;
    top: 0.2em;
    border-radius: 4px;
    background: rgba(21, 128, 61, 0.12);
    box-shadow: inset 0 0 0 1px rgba(21, 128, 61, 0.35);
}

.vacancy-aside-card {
    position: sticky;
    top: 96px;
    padding: 0;
    border: 1px solid rgba(12, 36, 97, 0.07);
    border-radius: 20px;
    background: var(--white);
    box-shadow:
        0 1px 2px rgba(12, 36, 97, 0.04),
        0 12px 32px rgba(12, 36, 97, 0.07);
    overflow: hidden;
    transition:
        box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.45s ease,
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancy-aside-card:has(.vacancy-apply-shell.is-process),
.vacancy-aside-card:has(.vacancy-apply-shell.is-form) {
    border-color: rgba(52, 152, 219, 0.2);
    box-shadow:
        0 1px 2px rgba(12, 36, 97, 0.04),
        0 20px 48px rgba(12, 36, 97, 0.1);
}

.vacancy-apply-shell__header {
    padding: 16px 16px 14px;
    background: #fff;
    border-bottom: 1px solid rgba(12, 36, 97, 0.06);
}

.vacancy-stepper {
    position: relative;
}

.vacancy-stepper__rail {
    position: absolute;
    top: 15px;
    left: 12%;
    right: 12%;
    height: 2px;
    border-radius: 999px;
    background: #e8edf3;
    overflow: hidden;
    pointer-events: none;
}

.vacancy-stepper__fill {
    display: block;
    height: 100%;
    width: 33%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0c2461, #3498db);
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancy-stepper__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vacancy-stepper__list li {
    display: flex;
    justify-content: center;
}

.vacancy-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 0 4px 2px;
    border: 0;
    background: none;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.vacancy-stepper__step:hover:not([aria-current='step']) {
    color: #64748b;
}

.vacancy-stepper__step:hover:not([aria-current='step']) .vacancy-stepper__dot {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.vacancy-stepper__step:focus-visible {
    outline: none;
}

.vacancy-stepper__step:focus-visible .vacancy-stepper__dot {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
}

.vacancy-stepper__step[aria-current='step'] {
    color: #0c2461;
    cursor: default;
}

.vacancy-stepper__dot {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid #dce3ec;
    background: #fff;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.vacancy-stepper__dot span {
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    color: inherit;
}

.vacancy-stepper__step .vacancy-stepper__dot {
    color: #94a3b8;
}

.vacancy-stepper__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.vacancy-stepper__step[aria-current='step'] .vacancy-stepper__dot {
    border-color: transparent;
    background: linear-gradient(145deg, #0c2461, #1e5a9e);
    color: #fff;
    box-shadow: 0 6px 16px rgba(12, 36, 97, 0.22);
}

.vacancy-stepper__step[aria-current='step'] .vacancy-stepper__label {
    font-weight: 700;
}

.vacancy-stepper__step.is-done {
    color: #0c2461;
}

.vacancy-stepper__step.is-done .vacancy-stepper__dot {
    border-color: #0c2461;
    background: #0c2461;
    color: #fff;
    box-shadow: none;
}

.vacancy-stepper__step.is-done .vacancy-stepper__dot span {
    font-size: 0;
}

.vacancy-stepper__step.is-done .vacancy-stepper__dot span::after {
    content: '';
    display: block;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.vacancy-apply-shell__stage {
    position: relative;
    padding: 20px 18px 18px;
    transition: min-height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: min-height;
}

.vacancy-apply-panel {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition:
        opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancy-apply-panel[hidden] {
    display: none !important;
}

.vacancy-apply-panel[data-vacancy-apply-panel="summary"]:not([hidden]) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.vacancy-apply-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vacancy-apply-panel.is-leaving {
    position: absolute;
    inset: 20px 18px 18px;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
}

.vacancy-apply-panel.is-leaving.is-back {
    transform: translateY(4px);
}

.vacancy-apply-panel.is-entering {
    position: absolute;
    inset: 20px 18px 18px;
    opacity: 0;
    transform: translateY(8px);
}

.vacancy-apply-panel.is-entering.is-back {
    transform: translateY(-8px);
}

.vacancy-apply-panel.is-entering.is-active {
    opacity: 1;
    transform: translateY(0);
}

.vacancy-apply-panel.is-active:not(.is-entering) {
    position: relative;
}

.vacancy-apply-summary__eyebrow {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.vacancy-apply-summary__title {
    margin: 0 0 16px;
    font-size: 1.28rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.vacancy-apply-summary__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vacancy-apply-summary__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(12, 36, 97, 0.04);
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    border: 0;
}

.vacancy-apply-summary__meta svg {
    flex-shrink: 0;
    color: var(--primary);
}

.vacancy-apply-shell__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
}

.vacancy-apply-shell__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(12, 36, 97, 0.14);
}

.vacancy-apply-shell__back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.vacancy-apply-shell__back-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.vacancy-apply-panel__back {
    margin-bottom: 14px;
}

.vacancy-apply-shell .flow-back-btn {
    padding: 6px 12px 6px 6px;
    font-size: 12px;
}

.vacancy-apply-shell .flow-back-btn__icon {
    width: 26px;
    height: 26px;
}

.vacancy-apply-panel__intro {
    margin-bottom: 16px;
}

.vacancy-apply-panel__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.vacancy-apply-panel__intro h4 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.vacancy-apply-panel__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.12);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
}

.vacancy-apply-timeline {
    list-style: none;
    margin: 0;
    padding: 14px 14px 14px 12px;
    display: grid;
    gap: 0;
    position: relative;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(12, 36, 97, 0.06);
}

.vacancy-apply-timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg, rgba(52, 152, 219, 0.3), rgba(52, 152, 219, 0.06));
    border-radius: 999px;
}

.vacancy-apply-timeline__item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 8px 0;
}

.vacancy-apply-timeline__item:first-child {
    padding-top: 0;
}

.vacancy-apply-timeline__item:last-child {
    padding-bottom: 0;
}

.vacancy-apply-timeline__marker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    border-radius: 10px;
    background: #fff;
    border: 2px solid rgba(52, 152, 219, 0.22);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 1px 3px rgba(12, 36, 97, 0.06);
}

.vacancy-apply-timeline__content strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--dark);
}

.vacancy-apply-timeline__content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #64748b;
}

.vacancy-detail__grid--apply-process {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
}

.vacancy-detail__grid--apply-process .vacancy-aside-card {
    box-shadow:
        0 1px 2px rgba(12, 36, 97, 0.04),
        0 16px 40px rgba(12, 36, 97, 0.09);
}

.vacancy-apply-shell.is-process .vacancy-apply-shell__stage {
    padding: 18px 18px 18px;
}

.vacancy-apply-shell.is-process .vacancy-apply-panel__intro {
    margin-bottom: 14px;
}

.vacancy-detail__grid--apply-form {
    grid-template-columns: 1fr;
}

.vacancy-detail__grid--apply-form .vacancy-detail__main {
    display: none;
}

.vacancy-detail__grid--apply-form .vacancy-detail__aside {
    position: static;
}

.vacancy-detail__grid--apply-form .vacancy-aside-card {
    position: static;
    top: auto;
    max-width: 880px;
    margin-inline: auto;
}

.vacancy-apply-form-wrap .careers-form-wrap__head {
    margin-bottom: 10px;
    padding-top: 0;
    border-top: 0;
    text-align: left;
}

.vacancy-apply-form-wrap .careers-form-wrap__head h2 {
    color: var(--dark);
    font-size: 1.06rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.vacancy-apply-form-wrap .careers-form-wrap__head p {
    color: #64748b;
    text-align: left;
    margin: 0 0 8px;
    max-width: none;
    font-size: 12.5px;
    line-height: 1.5;
}

.vacancy-apply-form-wrap .section__label {
    color: var(--primary);
    font-size: 11px;
}

.vacancy-apply-form-wrap .careers-form-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.vacancy-detail__grid--apply-form .careers-form-wrap--compact .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vacancy-detail__grid--apply-form .careers-form-wrap--compact .form-row--uploads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.careers-form-wrap--compact .form-row {
    grid-template-columns: 1fr;
}

.careers-form-wrap--compact .form-row--uploads {
    grid-template-columns: 1fr;
}

.careers-form-wrap--compact .form-group label {
    font-size: 13px;
}

.careers-form-wrap--compact .form-group input,
.careers-form-wrap--compact .form-group select,
.careers-form-wrap--compact .form-group textarea,
.careers-form-wrap--compact .careers-form__locked-role {
    min-height: 44px;
    border-radius: 10px;
    font-size: 14px;
}

.careers-form-wrap--compact .file-drop {
    min-height: 108px;
    border-radius: 12px;
}

.careers-form-wrap--compact .file-drop--sleek {
    min-height: 78px;
}

.careers-form-wrap--compact .file-drop__content svg {
    width: 22px;
    height: 22px;
}

.careers-form-wrap--compact .file-drop__content p {
    font-size: 13px;
}

.careers-form-wrap--compact .careers-form-wrap__head h2 {
    font-size: 1.08rem;
}

.careers-form-wrap--compact .btn--lg {
    min-height: 46px;
    border-radius: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .vacancy-apply-panel,
    .vacancy-apply-shell__track-fill,
    .vacancy-apply-timeline__item,
    .vacancy-apply-shell__cta svg {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 1180px) {
    .vacancy-detail__grid--apply-process {
        grid-template-columns: minmax(0, 1fr) 560px;
    }
}

@media (max-width: 640px) {
    .vacancy-detail__grid--apply-form .careers-form-wrap--compact .form-row,
    .vacancy-detail__grid--apply-form .careers-form-wrap--compact .form-row--uploads {
        grid-template-columns: 1fr;
    }

    .vacancy-detail__grid--apply-process {
        grid-template-columns: 1fr;
    }

    .vacancy-stepper__label {
        font-size: 9px;
    }
}

.vacancy-aside-card__label {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.vacancy-aside-card h3 {
    margin: 0 0 18px;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--dark);
}

.vacancy-aside-card__meta {
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
}

.vacancy-aside-card__meta div {
    display: grid;
    gap: 2px;
}

.vacancy-aside-card__meta dt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
}

.vacancy-aside-card__meta dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.vacancy-aside-card .btn + .btn {
    margin-top: 10px;
}

.vacancy-aside-card__back {
    display: block;
    margin-top: 12px;
    text-align: center;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.vacancy-aside-card__back:hover {
    opacity: 0.75;
}

.vacancy-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vacancy-related-card {
    display: grid;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 16px;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.vacancy-related-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vacancy-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vacancy-related-card:hover .vacancy-related-card__media img {
    transform: scale(1.04);
}

.vacancy-related-card__category,
.vacancy-related-card strong,
.vacancy-related-card span:last-child {
    padding-left: 16px;
    padding-right: 16px;
}

.vacancy-related-card strong {
    padding-bottom: 2px;
}

.vacancy-related-card span:last-child {
    padding-bottom: 16px;
}

.vacancy-related-card:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 152, 219, 0.24);
    box-shadow: 0 12px 28px rgba(12, 36, 97, 0.08);
}

.vacancy-related-card__category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.vacancy-related-card strong {
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--dark);
}

.vacancy-related-card span:last-child {
    font-size: 13px;
    color: var(--text-light);
}

.careers-apply-block,
#sollicitatieproces {
    scroll-margin-top: 96px;
}

.careers-form__locked-role {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(12, 36, 97, 0.12);
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.95);
    font-weight: 600;
    color: var(--dark);
}

@media (max-width: 992px) {
    .vacancy-hero__layout {
        grid-template-columns: 1fr;
    }

    .vacancy-hero__media {
        order: -1;
        max-width: 520px;
    }

    .vacancy-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vacancy-hero__back {
        text-align: center;
    }

    .vacancy-detail__grid {
        grid-template-columns: 1fr;
    }

    .vacancy-aside-card {
        position: static;
    }

    .vacancy-related__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Service detail & FAQ ── */
.service-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

.service-card__title-link:hover {
    color: var(--primary);
}

.service-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
}

.service-card__actions--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.service-card__link--quote {
    color: var(--primary);
    font-weight: 600;
}

.services-grid--related {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.branch-aside-card--faq {
    background: linear-gradient(145deg, rgba(12, 36, 97, 0.04), rgba(12, 36, 97, 0.08));
}

.faq-section__inner {
    max-width: 1120px;
}

/* Live zoekbalk boven de FAQ-lijst */
.faq-search {
    position: relative;
    max-width: 520px;
    margin: 0 auto 28px;
}

.faq-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.faq-search__input {
    width: 100%;
    padding: 12px 18px 12px 46px;
    border: 1px solid rgba(12, 36, 97, 0.14);
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 4px 18px rgba(12, 36, 97, 0.06);
    transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.faq-search__input::placeholder {
    color: var(--text-muted);
}

.faq-search__input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 55, 153, 0.12), 0 6px 22px rgba(12, 36, 97, 0.1);
}

.faq-search__input::-webkit-search-cancel-button {
    cursor: pointer;
}

.faq-no-results {
    text-align: center;
    color: var(--text-light);
    padding: 32px 0;
}

/* ---- Diensten pagina: stappen-sectie ---- */
.section--steps-page {
    background: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.section--steps-page .home-steps {
    max-width: 920px;
    margin: 0 auto;
}

.steps-cta {
    margin-top: 26px;
    text-align: center;
}

/* ---- Contactpagina: snelle acties ---- */
.contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-quick__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 26px -12px rgba(12, 36, 97, 0.55);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.contact-quick__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -12px rgba(12, 36, 97, 0.6);
}

.contact-quick__btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.contact-quick__btn--call {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.contact-quick__btn--wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-quick__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-quick__body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.contact-quick__body strong {
    font-size: 15px;
    font-weight: 700;
}

.contact-quick__body small {
    font-size: 12px;
    opacity: 0.85;
}

@media (max-width: 560px) {
    .contact-quick {
        grid-template-columns: 1fr;
    }
}

/* ---- Over ons: tijdlijn ---- */
.section--timeline {
    background: #fff;
    border-top: 1px solid rgba(12, 36, 97, 0.06);
}

.about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.about-timeline__line {
    position: absolute;
    top: 26px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.55), rgba(30, 55, 153, 0.55), transparent);
}

.about-timeline__node {
    position: relative;
    text-align: center;
    padding: 0 4px;
}

.about-timeline__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px -8px rgba(12, 36, 97, 0.55);
}

.about-timeline__dot {
    display: block;
    width: 14px;
    height: 14px;
    margin: 16px auto 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.35), 0 4px 12px rgba(12, 36, 97, 0.2);
}

.about-timeline__node h3 {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.about-timeline__node p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .about-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 420px;
    }

    .about-timeline__line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, rgba(52, 152, 219, 0.55), rgba(30, 55, 153, 0.55), transparent);
    }

    .about-timeline__node {
        text-align: left;
        padding: 0 0 32px 56px;
    }

    .about-timeline__node:last-child {
        padding-bottom: 0;
    }

    .about-timeline__year {
        min-width: 44px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .about-timeline__dot {
        position: absolute;
        left: 20px;
        top: 26px;
        margin: 0;
    }
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

.faq-sidebar__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

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

.faq-filter {
    appearance: none;
    border: 1px solid rgba(12, 36, 97, 0.12);
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    padding: 10px 16px;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.faq-filter:hover,
.faq-filter.is-active {
    border-color: rgba(12, 36, 97, 0.28);
    background: rgba(12, 36, 97, 0.06);
    color: var(--primary);
}

.faq-sidebar__cta {
    padding: 22px;
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--primary), #163a8f);
    color: #fff;
}

.faq-sidebar__cta h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.faq-sidebar__cta p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(12, 36, 97, 0.1);
    border-radius: calc(var(--radius) + 2px);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(12, 36, 97, 0.04);
    transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.faq-item.is-open {
    border-color: rgba(12, 36, 97, 0.18);
    box-shadow: 0 14px 34px rgba(12, 36, 97, 0.08);
}

.faq-item h2 {
    margin: 0;
    font: inherit;
}

.faq-item__trigger {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    align-items: center;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.faq-item__category {
    grid-column: 1 / -1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.faq-item__question {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
}

.faq-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(12, 36, 97, 0.06);
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.6);
}

.faq-item__panel {
    padding: 0 20px 18px;
}

.faq-item__answer {
    padding-top: 2px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item__answer p {
    margin: 0;
}

.faq-empty {
    text-align: center;
    padding: 48px 24px;
    border-radius: var(--radius);
    background: rgba(12, 36, 97, 0.04);
}

@media (max-width: 900px) {
    .faq-layout,
    .services-grid--related {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-filters {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Quote acceptance page */
.quote-accept__hero {
    background: var(--inner-hero-gradient, linear-gradient(135deg, #081a45 0%, #0c2461 52%, #1e3799 100%));
    color: #fff;
    padding: 56px 0 48px;
}

.quote-accept__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 10px;
}

.quote-accept__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 8px;
}

.quote-accept__subtitle {
    margin: 0;
    opacity: 0.9;
}

.quote-accept__body {
    padding: 40px 0 72px;
}

.quote-accept__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.quote-accept__card {
    background: #fff;
    border: 1px solid rgba(12, 36, 97, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(12, 36, 97, 0.08);
    padding: 28px;
}

.quote-accept__status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.quote-accept__status--pending { background: #eff6ff; color: #1d4ed8; }
.quote-accept__status--accepted { background: #ecfdf5; color: #047857; }
.quote-accept__status--rejected { background: #fef2f2; color: #b91c1c; }
.quote-accept__status--expired { background: #fffbeb; color: #b45309; }

.quote-accept__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.quote-accept__label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 6px;
}

.quote-accept__total {
    font-size: 1.5rem;
    color: var(--primary, #0c2461);
}

.quote-accept__lines h2,
.quote-accept__card--side h2 {
    font-size: 1.15rem;
    margin: 0 0 14px;
    color: var(--primary, #0c2461);
}

.quote-accept__table-wrap {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.quote-accept__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.quote-accept__table th,
.quote-accept__table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.quote-accept__table th {
    background: #f8fafc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.quote-accept__table td:last-child,
.quote-accept__table th:last-child,
.quote-accept__table td:nth-child(2),
.quote-accept__table th:nth-child(2),
.quote-accept__table td:nth-child(3),
.quote-accept__table th:nth-child(3) {
    text-align: right;
    white-space: nowrap;
}

.quote-accept__totals {
    margin-top: 24px;
    max-width: 360px;
    margin-left: auto;
}

.quote-accept__totals-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    color: #475569;
}

.quote-accept__totals-row--grand {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid var(--primary, #0c2461);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary, #0c2461);
}

.quote-accept__notes {
    margin-top: 24px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.quote-accept__notes h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
}

.quote-accept__intro {
    color: #475569;
    margin-bottom: 18px;
}

.quote-accept__form + .quote-accept__form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.quote-accept__textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    margin: 8px 0 12px;
    resize: vertical;
}

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

.quote-accept__btn-accept {
    background: linear-gradient(135deg, #0c2461, #1e3799);
}

.quote-accept__btn-reject {
    color: #64748b;
}

.quote-accept__state-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.quote-accept__state-icon--success { background: #ecfdf5; color: #047857; }
.quote-accept__state-icon--muted { background: #f1f5f9; color: #64748b; }
.quote-accept__state-icon--warning { background: #fffbeb; color: #b45309; }

.quote-accept__contact {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.quote-accept__contact h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
}

.quote-accept__contact p {
    margin: 0 0 4px;
    color: #475569;
}

.quote-accept__muted {
    color: #64748b;
    font-size: 0.92rem;
}

.quote-accept__alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.quote-accept__alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

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

@media (max-width: 960px) {
    .quote-accept__grid,
    .quote-accept__meta {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   MODERN POLISH — strakker & modern design (aug 2026)
   CSS-only refinement layer. Safe to remove as a whole.
   ================================================================ */

/* ---- Design tokens ---- */
:root {
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.1);
    --bg: #f4f6f9;
    --bg-alt: #e9edf3;
    --border: #dfe4ec;
    --text: #24324a;
    --text-light: #5c6b7f;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 12px 32px -10px rgba(16, 24, 40, 0.1);
    --shadow-lg: 0 24px 48px -16px rgba(8, 26, 69, 0.2);
    --ring: 0 0 0 3px rgba(37, 99, 235, 0.16);
    --inner-hero-gradient: linear-gradient(135deg, #081a45 0%, #0c2461 55%, #16307a 100%);
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.005em;
}

::selection {
    background: var(--primary);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f4f8;
}

::-webkit-scrollbar-thumb {
    background: #c3ccd9;
    border-radius: 999px;
    border: 2px solid #f1f4f8;
}

::-webkit-scrollbar-thumb:hover {
    background: #aab6c7;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #c3ccd9 #f1f4f8;
}

/* ---- Top bar ---- */
.top-bar {
    background: var(--primary-dark);
    padding: 6px 0;
    font-size: 11.5px;
}

.top-bar__contact a {
    color: rgba(255, 255, 255, 0.72);
}

.top-bar__contact a:hover {
    color: #fff;
}

.top-bar__badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
}

/* ---- Header & nav ---- */
.header {
    border-bottom: 1px solid rgba(12, 36, 97, 0.06);
    box-shadow: 0 1px 0 rgba(12, 36, 97, 0.03), 0 12px 32px -22px rgba(12, 36, 97, 0.28);
}

.header__inner {
    min-height: 74px;
    padding: 10px 0;
}

.nav__link,
.nav__trigger {
    font-size: 14.5px;
}

.nav__link:hover,
.nav__link.active,
.nav__trigger:hover {
    color: var(--primary-dark);
}

.nav__link.active {
    font-weight: 700;
}

.nav__link::after,
.nav__trigger::after {
    height: 2px;
    background: var(--primary);
}

.nav__cta {
    border-radius: 8px;
    background: linear-gradient(135deg, #1e3799, #0c2461) !important;
}

.nav__cta:hover {
    transform: translateY(-1px) !important;
}

/* ---- Buttons ---- */
.btn {
    border-radius: 10px;
}

.btn--primary {
    background: linear-gradient(135deg, #1e3799, #0c2461);
    box-shadow: 0 8px 24px -10px rgba(12, 36, 97, 0.55);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(12, 36, 97, 0.6);
}

.btn--outline-light,
.btn--ghost,
.btn--sm {
    border-radius: 8px;
}

.btn--outline:hover {
    border-color: var(--primary);
    background: var(--accent-soft);
}

/* ---- Home hero ---- */
.page-home .hero {
    background: var(--inner-hero-gradient);
}

.page-home .hero::before {
    opacity: 0.72;
}

.page-home .hero__bubble {
    opacity: 0.5;
}

.page-home .hero__actions .hero__btn {
    border-radius: 10px;
}

.page-home .hero__photo-wrap {
    border-radius: 16px;
    box-shadow: 0 20px 48px -18px rgba(0, 0, 0, 0.4);
}

.page-home .hero__trust-chip {
    background: rgba(255, 255, 255, 0.07);
}

/* Live open/gesloten status in de hero */
.page-home .hero__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.page-home .hero__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.page-home .hero__status--open {
    color: #4ade80;
}

.page-home .hero__status--open .hero__status-dot {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
    animation: hero-status-pulse 2.4s ease-in-out infinite;
}

.page-home .hero__status--closed {
    color: #fbbf24;
}

.page-home .hero__status--closed .hero__status-dot {
    background: #fbbf24;
}

.page-home .hero__status-detail {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
}

@keyframes hero-status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.9); }
}

/* Scroll-indicator onderaan de hero */
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.hero__scroll:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.hero__scroll:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.hero__scroll-icon {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(0, 0);
    animation: hero-scroll-bounce 1.9s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(3px, 3px); }
}

@media (max-width: 768px) {
    .hero__scroll {
        bottom: 12px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero__scroll {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-icon,
    .page-home .hero__status--open .hero__status-dot {
        animation: none;
    }
}

/* ---- Inner heroes: modern sans headlines ---- */
.page-hero,
.careers-hero {
    background: var(--inner-hero-gradient);
}

.page-hero h1,
.careers-hero__copy h1,
.branches-page-hero__content h1,
.branch-hero__content h1,
.vacancy-hero h1 {
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.035em;
}

/* ---- Sections ---- */
@media (min-width: 769px) {
    .section:not(.section--dark):not(.section--team):not(.section--reviews):not(.section--legal) {
        padding: 80px 0;
    }

    .section--dark {
        padding: 64px 0;
    }
}

.section__header h2 {
    font-weight: 800;
    letter-spacing: -0.035em;
}

.section__header h2::after {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
    margin-top: 14px;
}

.section__label {
    font-size: 11px;
    letter-spacing: 0.14em;
}

/* ---- Cards ---- */
.service-card,
.ui-card,
.branch-card {
    border-radius: 16px;
}

.service-card {
    border: 1px solid rgba(12, 36, 97, 0.07);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card::before {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.ui-card {
    box-shadow: var(--shadow);
}

/* ---- Team section ---- */
.section--team {
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(37, 99, 235, 0.14), transparent 60%),
        linear-gradient(180deg, #07163d 0%, #0c2461 45%, #081a45 100%);
}

.section--team .section__header h2::after {
    background: linear-gradient(90deg, var(--accent), rgba(37, 99, 235, 0.35));
}

/* ---- Forms ---- */
.form-group input,
.form-group select,
.form-group textarea {
    background: #fff;
    border: 1px solid #d3dbe6;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14.5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: var(--ring);
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ---- Footer ---- */
.footer {
    background: linear-gradient(180deg, #081a45 0%, #050e2a 100%);
}

.footer::before {
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.footer__about h4::after {
    background: linear-gradient(90deg, var(--accent), rgba(37, 99, 235, 0.3));
}

.footer__nav-link,
.footer__contact-link {
    transition: color 0.2s ease;
}

.footer__nav-link:hover,
.footer__contact-link:hover {
    color: #fff;
}

/* ---- Typography unification (display serif -> clean sans) ---- */
.about-page__content h2,
.contact-info h2,
.legal-section h2,
.contact-form-wrap__title {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.025em;
}


/* ---- Sollicitatie: duidelijkere bevestiging & foutmelding ---- */
.careers-form-success {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 70%);
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 28px 24px 24px;
}

.careers-form-success__icon {
    width: 76px;
    height: 76px;
    background: #dcfce7;
    color: #15803d;
    box-shadow: 0 10px 24px -12px rgba(21, 128, 61, 0.5);
}

.careers-form-success h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #14532d;
}

.careers-form .alert--error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-left: 4px solid #e11d48;
    border-radius: 12px;
    font-weight: 600;
}

/* ---- Footer: strakker & modern (aug 2026) ---- */

/* Subtiel dot-patroon voor moderne textuur */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.6px),
        radial-gradient(rgba(52, 152, 219, 0.045) 1px, transparent 1.6px);
    background-size: 30px 30px, 30px 30px;
    background-position: 0 0, 15px 15px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 62%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 62%);
    pointer-events: none;
}

/* Footer-koppen: iets meer letter-ruimte, strakker ritme */
.footer__about h4,
.footer__col h4 {
    letter-spacing: 0.14em;
}

/* Nav-links: nettere hover-lijn */
.footer__nav-link::before {
    width: 0;
    height: 1.5px;
    border-radius: 999px;
    background: var(--accent);
}

/* Bel-mij-terug kaart: premium accent-rand boven */
.footer-callback {
    position: relative;
    overflow: hidden;
}

.footer-callback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(52, 152, 219, 0.12));
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

/* Bel-mij-terug knop: vol accent-blauw, moderner */
.footer-callback__submit {
    background: linear-gradient(135deg, #4aa8e8 0%, var(--accent) 45%, #2980b9 100%);
    border: none;
    color: #fff;
    box-shadow: 0 10px 26px rgba(52, 152, 219, 0.3);
}

.footer-callback__submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #5cb6f0 0%, #3d9ad4 100%);
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(52, 152, 219, 0.4);
}

.footer-callback__submit-icon {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 4px 12px rgba(8, 26, 69, 0.18);
}

.footer-callback__submit:hover:not(:disabled) .footer-callback__submit-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* Onderbalk: boven de textuur, strakke afstand */
.footer__bottom {
    position: relative;
    z-index: 1;
    gap: 16px;
}

/* ---- 404 pagina: strak & modern ---- */
.error-404 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 8%, rgba(52, 152, 219, 0.16), transparent 38%),
        radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(135deg, #081a45 0%, #0c2461 52%, #1e3799 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: clamp(64px, 9vw, 110px) 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.error-404::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(52, 152, 219, 0.2), transparent 34%),
        radial-gradient(circle at 10% 92%, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 48%);
    pointer-events: none;
}

.error-404__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
}

.error-404__code {
    margin: 0 0 10px;
    font-size: clamp(6rem, 16vw, 9.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(147, 197, 253, 0.55) 62%, rgba(147, 197, 253, 0.14) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    user-select: none;
}

.error-404 .section__label {
    color: rgba(147, 197, 253, 0.95);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.error-404 h1 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 14px;
}

.error-404__lead {
    margin: 0 auto 28px;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.error-404__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 10px 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.error-404__links a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: color 0.2s ease;
}

.error-404__links a:hover {
    color: #fff;
}

.error-404__links a:not(:last-child)::after {
    content: '·';
    margin-left: 22px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 56px 0 64px;
    }

    .error-404__actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .error-404__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .error-404__links {
        gap: 8px 14px;
    }
}

/* ============================================================
   Hero polish — modern & strak (2026-08-16)
   ============================================================ */

/* Koptekst met zachte gradient over alle hero-varianten */
.page-hero h1,
.vacancy-hero h1,
.careers-hero h1,
.branches-page-hero h1,
.branch-hero__content h1 {
    background: linear-gradient(180deg, #ffffff 15%, #d6e4ff 95%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 3px 16px rgba(10, 30, 90, 0.45));
}

/* Label als modern badge met gloedpuntje */
.page-hero .section__label,
.careers-hero .section__label,
.branch-hero__content .section__label,
.vacancy-hero__label,
.branches-page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(37, 99, 235, 0.06) 65%);
    border: 1px solid rgba(96, 165, 250, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 22px rgba(37, 99, 235, 0.16);
    color: rgba(191, 219, 254, 0.98);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
}

.page-hero .section__label::before,
.careers-hero .section__label::before,
.branch-hero__content .section__label::before,
.vacancy-hero__label::before,
.branches-page-hero__label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bfdbfe, #3b82f6);
    box-shadow: 0 0 10px rgba(147, 197, 253, 0.9);
}

/* Gloeiende gradientlijn onderaan de page-hero */
.page-hero__accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(147, 197, 253, 0.6) 28%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(56, 130, 246, 0.6) 72%,
        transparent 100%);
    filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.45));
}

/* De branches-hero heeft een eigen layout: badge netjes bovenin laten aansluiten */
.branches-page-hero__label {
    margin-bottom: 12px;
}

/* Kleine schermen: chips niet laten overlopen */
@media (max-width: 520px) {
    .site-breadcrumb--light {
        padding: 6px 12px;
        font-size: 12px;
    }

    .page-hero {
        padding: 44px 0 40px;
    }
}

/* Breadcrumb-chip in de gecentreerde page-hero op een eigen, gecentreerde regel */
.page-hero .site-breadcrumb--light {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 18px;
}
