/* ===========================
   EnergyB2B — Current Flow
   Navy + Gold | Bricolage Grotesque + Outfit
   =========================== */

/* --- Variables --- */
:root {
    --navy: #0A1128;
    --navy-light: #111D3A;
    --navy-mid: #0D1730;
    --gold: #FFB800;
    --gold-hover: #E6A600;
    --gold-glow: rgba(255, 184, 0, 0.18);
    --gold-subtle: rgba(255, 184, 0, 0.08);
    --blue: #0056B3;
    --text: #0A1128;
    --text-muted: #4B5563;
    --text-faint: #6B7280;
    --bg: #ffffff;
    --bg-warm: #F9F8F5;
    --bg-light: #F3F4F6;
    --border: #D1D5DB;
    --border-light: #E5E7EB;
    --success: #059669;
    --error: #DC2626;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 2px rgba(10, 17, 40, 0.06);
    --shadow: 0 2px 8px rgba(10, 17, 40, 0.06), 0 1px 2px rgba(10, 17, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 17, 40, 0.08), 0 2px 4px rgba(10, 17, 40, 0.06);
    --shadow-lg: 0 8px 30px rgba(10, 17, 40, 0.1), 0 4px 8px rgba(10, 17, 40, 0.06);
    --shadow-gold: 0 4px 20px rgba(255, 184, 0, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(255, 184, 0, 0.3);
    --container: 1200px;
    --top-bar-height: 36px;
    --header-height: calc(76px + var(--top-bar-height));
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.is-loading * {
    transition: none !important;
}

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

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

a:hover {
    color: var(--gold);
}

ul,
ol {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

p:last-child {
    margin-bottom: 0;
}

.mono {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.text-gold {
    color: var(--gold);
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* Gold accent underline for headings */
.accent-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: 1rem;
    border-radius: 2px;
}

.accent-line--center {
    margin-left: auto;
    margin-right: auto;
}

/* Section eyebrow label */
.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section__eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.section__eyebrow--light {
    color: var(--gold);
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

.section--warm {
    background: var(--bg-warm);
}

.section--dark {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Grain texture overlay for dark sections */
.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
    z-index: 1;
}

/* Dot grid pattern overlay */
.section--dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}

.section--dark>* {
    position: relative;
    z-index: 2;
}

/* Diagonal section top */
.section--diagonal-top {
    margin-top: -1px;
}

.section--diagonal-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 3;
}

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__header .section__eyebrow {
    justify-content: center;
}

.section__title {
    margin-bottom: 0.75rem;
}

.section__title--light {
    color: #fff;
}

.section__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    border-radius: var(--radius);
    z-index: 1000;
    font-family: var(--font-body);
}

.skip-link:focus {
    top: 1rem;
    color: var(--navy);
}

/* --- Top Bar --- */
.top-bar {
    background: var(--navy);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar__item:hover {
    color: var(--gold);
}

.top-bar__item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 17, 40, 0.08);
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(10, 17, 40, 0.08);
    border-bottom-color: transparent;
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(var(--header-height) - var(--top-bar-height));
}

.header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 4rem;
    width: auto;
}

.footer__logo-img {
    height: 7rem;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Header CTA button */
.header__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.header__cta:hover {
    background: var(--gold-hover);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Nav — positioned inside header visually on desktop */
.main-nav {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    height: calc(var(--header-height) - var(--top-bar-height));
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.main-nav .nav-list {
    pointer-events: auto;
}

.main-nav .nav-mobile-footer {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.925rem;
    text-decoration: none;
    border-radius: var(--radius);
    transition: color 0.25s, background 0.25s;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}

.nav-chevron {
    transition: transform 0.25s var(--ease);
}

/* Dropdown */
.nav-item--dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s var(--ease);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item--dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown__link {
    display: block;
    padding: 0.55rem 0.875rem;
    color: var(--text);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown__link:hover {
    background: var(--bg-light);
    color: var(--gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.nav-toggle__bar {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-overlay {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.875rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

.btn--primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Glow variant for primary CTAs */
.btn--glow {
    box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    animation: btnPulse 2.5s ease-in-out infinite;
}

.btn--glow:hover {
    animation: none;
    box-shadow: var(--shadow-gold-lg);
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 184, 0, 0);
    }
}

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

.btn--outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero video background */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.93) 0%, rgba(17, 29, 58, 0.88) 40%, rgba(10, 17, 40, 0.78) 100%);
    z-index: 1;
}

/* Animated circuit grid */
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 184, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 184, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Floating gold orb */
.hero__orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    z-index: 2;
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-20px, 30px) scale(1.05);
    }

    66% {
        transform: translate(15px, -15px) scale(0.97);
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 5rem 0;
}

/* Hero badge (replaces hero__label) */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 50px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.6);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(255, 184, 0, 0);
    }
}

/* Keep support for old hero__label class */
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.hero__title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 540px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.65s forwards;
}

/* Hero stats ticker */
.hero__ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(10, 17, 40, 0.6);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 184, 0, 0.12);
}

.hero__ticker-inner {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 1.25rem 2rem;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.ticker-item__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.01em;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Page Hero --- */
.page-hero {
    background: var(--navy);
    padding: 7.5rem 0 15rem;
    padding-top: calc(var(--header-height) + 15rem);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Gold accent diagonal */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero__title {
    color: #fff;
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    position: relative;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    position: relative;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.page-hero .section__eyebrow--light {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* --- Page Hero Image Panel (right-side) --- */
.page-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    overflow: hidden;
    z-index: 0;
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fade from navy into image */
.page-hero__image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to right, var(--navy) 0%, rgba(10, 25, 47, 0.3) 30%, transparent 55%),
        linear-gradient(to top, var(--navy) 0%, transparent 35%);
    pointer-events: none;
}

.page-hero:has(.page-hero__image) .container {
    position: relative;
    z-index: 3;
}

.page-hero:has(.page-hero__image) .page-hero__subtitle {
    max-width: 480px;
}

/* --- Dienst Showcase Cards --- */
.dienst-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dienst-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.dienst-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dienst-card:nth-child(even) .dienst-card__image {
    order: 2;
}

.dienst-card:nth-child(even) .dienst-card__content {
    order: 1;
}

.dienst-card__image {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.dienst-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.dienst-card:hover .dienst-card__image img {
    transform: scale(1.04);
}

.dienst-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.dienst-card__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.dienst-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.dienst-card__text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.dienst-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark, #c89200);
    font-weight: 600;
    margin-top: 0.5rem;
    transition: gap 0.3s var(--ease), color 0.3s;
}

.dienst-card:hover .dienst-card__link {
    gap: 0.85rem;
    color: var(--navy);
}

/* --- USPs --- */
.usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.usp {
    text-align: left;
    padding: 2.25rem 1.75rem 2.25rem 2rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
    position: relative;
    overflow: hidden;
}

/* Large ghosted number in the corner */
.usp__number {
    position: absolute;
    top: -0.2rem;
    right: 0.5rem;
    font-family: var(--font-mono);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    z-index: 0;
}

/* Corner notch */
.usp::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, transparent 50%, var(--gold-subtle) 50%);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s;
    z-index: 2;
}

/* Bottom gold wash */
.usp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, var(--gold-subtle), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.usp:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.15);
    border-left-color: var(--gold);
}

.usp:hover .usp__number {
    opacity: 0.12;
    transform: translateY(-2px);
}

.usp:hover::before {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 184, 0, 0.15) 50%);
}

.usp:hover::after {
    opacity: 1;
}

.usp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    margin-bottom: 1.25rem;
    color: var(--navy);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-gold);
}

.usp__icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.25);
    transition: border-color 0.35s, transform 0.6s var(--ease);
}

.usp:hover .usp__icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.usp:hover .usp__icon::before {
    border-color: rgba(255, 184, 0, 0.45);
    transform: rotate(45deg);
}

.usp__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.usp__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* --- Process / How It Works --- */
.process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process__step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    margin-bottom: 1.25rem;
    position: relative;
    box-shadow: var(--shadow-gold);
}

/* Outer ring */
.process__icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.3);
    animation: spinSlow 20s linear infinite;
}

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

.process__number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.process__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.process__text {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process__connector {
    display: flex;
    align-items: center;
    padding-top: 3.25rem;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.5;
}

/* --- Split Content --- */
.split-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.split-content__text h2 {
    margin-bottom: 1.25rem;
}

.split-content__text p {
    font-size: 1.05rem;
    line-height: 1.75;
}

.split-content__text .btn {
    margin-top: 1.5rem;
}

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

.stat {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.stat:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat:hover::after {
    transform: scaleX(1);
}

/* Highlight variant for key stat */
.stat--highlight {
    background: var(--navy);
    border-color: rgba(255, 184, 0, 0.2);
}

.stat--highlight .stat__number {
    color: var(--gold);
}

.stat--highlight .stat__label {
    color: rgba(255, 255, 255, 0.6);
}

.stat--highlight::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Sector Cards with Images --- */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.sectors-grid--large {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.75rem;
}

.sector-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
    position: relative;
}

/* Energy charge line on hover */
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease);
    z-index: 2;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 184, 0, 0.25);
    color: inherit;
}

.sector-card:hover::before {
    transform: scaleY(1);
}

/* Sector card image */
.sector-card__image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.sector-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.sector-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.3), transparent);
    pointer-events: none;
}

.sector-card__body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sector-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold-glow);
    color: var(--gold);
    margin-bottom: 1rem;
    transition: background 0.3s, color 0.3s;
}

.sector-card:hover .sector-card__icon {
    background: var(--gold);
    color: var(--navy);
}

.sector-card--detailed .sector-card__icon {
    width: 56px;
    height: 56px;
}

.sector-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.sector-card__text {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex: 1;
}

.sector-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s var(--ease), color 0.2s;
}

.sector-card:hover .sector-card__link {
    gap: 0.6rem;
}

/* --- Sector Tiles (icon-centric, matches process section) --- */
/* --- Sector Tiles (Image-backed cards) --- */
.sector-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.sector-tile--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.sector-tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sector-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    z-index: 0;
}

.sector-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 17, 40, 0.92) 0%,
        rgba(10, 17, 40, 0.6) 40%,
        rgba(10, 17, 40, 0.25) 100%
    );
    z-index: 1;
    transition: background 0.45s var(--ease);
}

.sector-tile__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold);
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 184, 0, 0.2);
    transition: background 0.35s, transform 0.35s var(--ease);
}

.sector-tile__badge--outline {
    background: rgba(255, 184, 0, 0.08);
    border: 1.5px dashed rgba(255, 184, 0, 0.4);
}

.sector-tile__content {
    position: relative;
    z-index: 2;
}

.sector-tile__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.sector-tile__text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
    margin-bottom: 0;
}

.sector-tile__arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}

/* Hover state */
.sector-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 17, 40, 0.35), 0 0 0 1px rgba(255, 184, 0, 0.12);
}

.sector-tile:hover .sector-tile__img {
    transform: scale(1.08);
}

.sector-tile:hover .sector-tile__overlay {
    background: linear-gradient(
        to top,
        rgba(10, 17, 40, 0.88) 0%,
        rgba(10, 17, 40, 0.45) 40%,
        rgba(10, 17, 40, 0.15) 100%
    );
}

.sector-tile:hover .sector-tile__badge {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
    border-color: var(--gold);
}

.sector-tile:hover .sector-tile__title {
    color: var(--gold);
}

.sector-tile:hover .sector-tile__arrow {
    background: var(--gold);
    color: var(--navy);
    transform: translateX(2px);
    border-color: var(--gold);
}

/* CTA tile (no image) */
.sector-tile--cta {
    background: var(--navy);
    border: 1.5px dashed rgba(255, 184, 0, 0.25);
}

.sector-tile--cta .sector-tile__overlay {
    background: radial-gradient(circle at 30% 70%, rgba(255, 184, 0, 0.06) 0%, transparent 60%);
}

.sector-tile--cta:hover {
    border-color: rgba(255, 184, 0, 0.5);
}

.sector-tile--cta:hover .sector-tile__overlay {
    background: radial-gradient(circle at 30% 70%, rgba(255, 184, 0, 0.1) 0%, transparent 60%);
}

.sector-tile--cta:hover .sector-tile__badge--outline {
    background: var(--gold);
    color: var(--navy);
    border-style: solid;
    border-color: var(--gold);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 0;
    position: relative;
}

.cta-banner__inner {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

/* Energy grid pattern inside banner */
.cta-banner__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 184, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 184, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Gradient orb */
.cta-banner__inner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1), transparent 70%);
    pointer-events: none;
}

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

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cta-banner__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-banner__action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    text-align: center;
}

.cta-banner__note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}

/* --- Cards --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gold-glow);
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.card__text {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.card__button {
    font-size: 0.85rem;
}

/* --- Content Grid --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.content-grid--wide {
    gap: 4.5rem;
}

.content-block h2 {
    margin-bottom: 1rem;
}

.content-block--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature {
    padding: 2.25rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature__number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.feature__icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.3);
}

.feature__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature__text {
    font-size: 0.925rem;
    color: var(--text-muted);
}

/* --- Benefit Path (energy conduit layout) --- */
.benefit-path {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Central vertical dashed energy line */
.benefit-path::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            rgba(255, 184, 0, 0.35) 0px,
            rgba(255, 184, 0, 0.35) 8px,
            transparent 8px,
            transparent 16px);
    transform: translateX(-50%);
}

.benefit-path__item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    position: relative;
    padding: 1.75rem 0;
}

/* Node (gold circle) always in center column */
.benefit-path__node {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.benefit-path__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.benefit-path__icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.3);
    transition: transform 0.6s var(--ease-out), border-color 0.3s;
}

.benefit-path__item:hover .benefit-path__icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.benefit-path__item:hover .benefit-path__icon::before {
    transform: rotate(45deg);
    border-color: rgba(255, 184, 0, 0.5);
}

.benefit-path__number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* Content defaults to left column (odd items), right-aligned */
.benefit-path__content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 2rem;
}

/* Even items: content moves to right column, left-aligned */
.benefit-path__item:nth-child(even) .benefit-path__content {
    grid-column: 3;
    text-align: left;
    padding-right: 0;
    padding-left: 2rem;
}

.benefit-path__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.benefit-path__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* --- Info Bar --- */
.info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-bar__item {
    padding: 1.75rem 2rem;
    text-align: center;
    position: relative;
}

.info-bar__item+.info-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border-light);
}

.info-bar__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    margin-bottom: 0.35rem;
}

.info-bar__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

/* --- Quote Block --- */
.quote-block {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
}

.quote-block::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.quote-block__icon {
    color: var(--gold);
    margin-bottom: 1.75rem;
}

.quote-block__text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--navy);
    font-style: normal;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.quote-block__author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
}

/* --- Tags --- */
.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.tag-group__title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.2s var(--ease);
}

.tag:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    color: var(--navy);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper>p {
    margin-bottom: 2rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.form-input {
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
}

.alert ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.alert--error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: var(--error);
}

.alert--success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: var(--success);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info__card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.contact-info__card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item .icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-item__icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.3);
}

.contact-item__icon svg {
    width: 18px;
    height: 18px;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    margin-bottom: 0.125rem;
}

.contact-item a,
.contact-item span {
    font-size: 0.925rem;
    color: var(--navy);
}

.contact-item a:hover {
    color: var(--gold);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.925rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.opening-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* --- Image Section --- */
.image-break {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.75), rgba(10, 17, 40, 0.45));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-break__text {
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 2rem;
}

.image-break__text h2 {
    font-family: var(--font-display);
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.image-break__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* --- Floating CTA --- */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}

.floating-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(255, 184, 0, 0.35), 0 2px 8px rgba(10, 17, 40, 0.1);
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.floating-cta__btn:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(255, 184, 0, 0.45), 0 4px 12px rgba(10, 17, 40, 0.12);
}

.floating-cta__btn svg {
    width: 18px;
    height: 18px;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent 60%);
}

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

.footer__tagline {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.875rem;
    line-height: 1.6;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

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

.footer__links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.925rem;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
}

.footer__contact-list .icon {
    flex-shrink: 0;
    color: var(--gold);
}

.footer__contact-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.footer__contact-list a:hover {
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__kvk {
    color: rgba(255, 255, 255, 0.35);
}

/* --- Final CTA Section Enhancements --- */
.section--cta-final {
    padding: 7rem 0;
}

.section--cta-final .section__title--light {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    max-width: 700px;
    margin: 0 auto 1rem;
}

/* --- Aanmelden Page --- */
.aanmeld-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.aanmeld-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.aanmeld-form .form-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.aanmeld-form .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.form-section__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* Radio buttons */
.form-radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.925rem;
    color: var(--text);
    transition: color 0.2s;
}

.form-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-radio__mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.form-radio__mark::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    transform: scale(0);
    transition: transform 0.2s var(--ease);
}

.form-radio input[type="radio"]:checked~.form-radio__mark {
    border-color: var(--gold);
}

.form-radio input[type="radio"]:checked~.form-radio__mark::after {
    transform: scale(1);
}

.form-radio input[type="radio"]:focus~.form-radio__mark {
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Sidebar */
.aanmeld-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.aanmeld-sidebar__card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.aanmeld-sidebar__card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.aanmeld-sidebar__card p {
    font-size: 0.925rem;
    color: var(--text-muted);
}

.aanmeld-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.aanmeld-benefits li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.925rem;
    color: var(--text);
}

.aanmeld-benefits li svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* --- AOS overrides --- */
[data-aos] {
    transition-timing-function: var(--ease-out) !important;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .usps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .info-bar__item+.info-bar__item:nth-child(3)::before {
        display: none;
    }

    .hero__ticker-inner {
        gap: 2.5rem;
    }

    .ticker-item__value {
        font-size: 2rem;
    }

    .process__connector {
        display: none;
    }

    .process {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .process__step {
        max-width: 480px;
    }

    .sector-tiles {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .sector-tile--wide {
        grid-column: span 1;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2.5rem;
        gap: 2rem;
    }

    .page-hero {
        padding: 6rem 0 8rem;
        padding-top: calc(var(--header-height) + 6rem);
    }
}

@media (max-width: 768px) {
    :root {
        --top-bar-height: 32px;
        --header-height: calc(60px + var(--top-bar-height));
    }

    .top-bar__inner {
        justify-content: flex-start;
        gap: 1.25rem;
    }

    .top-bar__item {
        font-size: 0.6rem;
    }

    .top-bar__item svg {
        width: 11px;
        height: 11px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Header */
    .header__logo-img {
        height: 3rem;
    }

    .dienst-card {
        grid-template-columns: 1fr;
    }

    .dienst-card__image {
        min-height: 200px;
    }

    .dienst-card:nth-child(even) .dienst-card__image {
        order: unset;
    }

    .dienst-card:nth-child(even) .dienst-card__content {
        order: unset;
    }

    .dienst-card__content {
        padding: 1.75rem;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        top: 0;
        height: 100vh;
        height: 100dvh;
        background: var(--navy);
        padding: calc(var(--header-height) + 1.5rem) 2.5rem 2rem;
        z-index: 95;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease-out), visibility 0.4s;
        pointer-events: auto;
        display: block;
        justify-content: initial;
    }

    /* Dot grid texture on mobile nav (matching dark sections) */
    .main-nav::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
        background-size: 28px 28px;
        pointer-events: none;
        z-index: 0;
    }

    /* Gold gradient accent line at top */
    .main-nav::after {
        content: '';
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), transparent 60%);
        z-index: 1;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav .nav-mobile-footer {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }

    /* Staggered fade-in for nav items */
    .main-nav .nav-list > li {
        opacity: 0;
        transform: translateX(-16px);
        transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    }

    .main-nav.is-open .nav-list > li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.is-open .nav-list > li:nth-child(1) { transition-delay: 0.08s; }
    .main-nav.is-open .nav-list > li:nth-child(2) { transition-delay: 0.13s; }
    .main-nav.is-open .nav-list > li:nth-child(3) { transition-delay: 0.18s; }
    .main-nav.is-open .nav-list > li:nth-child(4) { transition-delay: 0.23s; }
    .main-nav.is-open .nav-list > li:nth-child(5) { transition-delay: 0.28s; }
    .main-nav.is-open .nav-list > li:nth-child(6) { transition-delay: 0.33s; }
    .main-nav.is-open .nav-list > li:nth-child(7) { transition-delay: 0.38s; }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.01em;
    }

    .nav-link:hover {
        color: var(--gold);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        color: var(--gold);
    }

    /* Gold pip on active link */
    .nav-link.active::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        margin-right: 0.5rem;
        box-shadow: 0 0 6px rgba(255, 184, 0, 0.5);
    }

    .nav-chevron {
        stroke: rgba(255, 255, 255, 0.4);
        margin-left: auto;
        width: 18px;
        height: 18px;
        transition: transform 0.3s var(--ease), stroke 0.3s;
    }

    .nav-item--dropdown.is-open .nav-chevron {
        transform: rotate(180deg);
        stroke: var(--gold);
    }

    /* Dropdown */
    .nav-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease-out);
    }

    .nav-item--dropdown.is-open .nav-dropdown {
        max-height: 400px;
    }

    .nav-dropdown li {
        display: block;
        list-style: none;
    }

    .nav-dropdown__link {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        padding: 0.65rem 0 0.65rem 1.25rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-family: var(--font-body);
        font-size: 0.95rem !important;
        font-weight: 500;
        border-bottom: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        border-left: 1px solid rgba(255, 184, 0, 0.15);
        transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
    }

    .nav-dropdown__link:hover {
        color: var(--gold) !important;
        border-left-color: var(--gold);
        padding-left: 1.5rem;
    }

    /* Mobile nav footer area */
    .nav-mobile-footer {
        position: relative;
        z-index: 1;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-mobile-footer__cta {
        display: flex;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .nav-mobile-footer__cta .btn {
        width: 100%;
    }

    .nav-mobile-footer__contact {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .nav-mobile-footer__item {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-mono);
        font-size: 0.7rem;
        letter-spacing: 0.03em;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        transition: color 0.2s;
    }

    .nav-mobile-footer__item:hover {
        color: var(--gold);
    }

    .nav-mobile-footer__item svg {
        color: var(--gold);
        flex-shrink: 0;
    }

    /* Hamburger to X — gold bars when open */
    .nav-toggle.is-active .nav-toggle__bar {
        background: var(--gold);
    }

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

    .nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
        opacity: 0;
    }

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

    /* Hide the separate overlay — nav itself is fullscreen now */
    .nav-overlay {
        display: none !important;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    .hero .container {
        padding: 0 2.5rem;
    }

    .hero__content {
        padding: 3rem 0;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        text-align: center;
    }

    .hero__orb {
        width: 300px;
        height: 300px;
    }

    .hero__ticker-inner {
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
        justify-content: center;
    }

    .ticker-item {
        font-size: 0.75rem;
        flex: 1 1 50%;
        justify-content: center;
        padding: 0.875rem 0.5rem;
        border-bottom: 1px solid rgba(255, 184, 0, 0.08);
    }

    .ticker-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 184, 0, 0.08);
    }

    .ticker-item__value {
        font-size: 1.75rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 4rem 0 3rem;
        padding-top: calc(var(--header-height) + 3rem);
    }

    .page-hero .container {
        padding: 0 2.5rem;
    }

    .page-hero__image {
        width: 50%;
        opacity: 0.7;
    }

    .page-hero__image::before {
        background:
            linear-gradient(to right, var(--navy) 0%, rgba(10, 25, 47, 0.5) 40%, transparent 70%),
            linear-gradient(to top, var(--navy) 0%, transparent 45%);
    }

    .page-hero__title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .page-hero__subtitle {
        font-size: 1rem;
    }

    .page-hero::after {
        height: 30px;
    }

    /* Buttons */
    .btn--large {
        padding: 0.875rem 2rem;
        font-size: 0.925rem;
    }

    /* Grids */
    .usps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .usp {
        padding: 1.75rem 1.5rem 1.75rem 1.5rem;
    }

    .usp__number {
        font-size: 4rem;
    }

    .usp__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .usp__icon svg {
        width: 22px;
        height: 22px;
    }

    .content-grid,
    .content-grid--wide {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .info-bar__item+.info-bar__item::before {
        display: none;
    }

    .info-bar__item {
        padding: 1.25rem 1rem;
    }

    .info-bar__value {
        font-size: 1rem;
    }

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

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

    .footer__logo-img {
        height: 5rem;
    }

    .site-footer {
        padding: 3.5rem 0 0;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .sectors-grid,
    .sectors-grid--large {
        grid-template-columns: 1fr;
    }

    .sector-tiles {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .sector-tile--wide {
        grid-column: span 2;
    }

    .sector-tile {
        padding: 1.25rem;
    }

    .sector-tile__badge {
        width: 32px;
        height: 32px;
        top: 0.75rem;
        left: 0.75rem;
    }

    .sector-tile__badge svg {
        width: 14px;
        height: 14px;
    }

    .sector-tile__arrow {
        top: 0.75rem;
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }

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

    /* Benefit Path - mobile: single column, line on left */
    .benefit-path::before {
        left: 30px;
    }

    .benefit-path__item {
        grid-template-columns: 60px 1fr;
        padding: 1.25rem 0;
    }

    .benefit-path__node {
        grid-column: 1;
        grid-row: 1;
    }

    .benefit-path__content,
    .benefit-path__item:nth-child(even) .benefit-path__content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding-left: 1.25rem;
        padding-right: 0;
    }

    .benefit-path__icon {
        width: 48px;
        height: 48px;
    }

    .benefit-path__icon svg {
        width: 20px;
        height: 20px;
    }

    .benefit-path__title {
        font-size: 1.1rem;
    }

    .image-break {
        height: 300px;
    }

    .sector-card__image {
        height: 160px;
    }

    /* Stats */
    .stat {
        padding: 1.5rem 1rem;
    }

    .stat__number {
        font-size: 2.25rem;
    }

    .stat__label {
        font-size: 0.7rem;
    }

    /* Split content stats */
    .split-content__stats {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Aanmelden */
    .aanmeld-layout {
        grid-template-columns: 1fr;
    }

    .aanmeld-sidebar {
        position: static;
    }

    /* Floating CTA */
    .floating-cta {
        right: 1rem;
        bottom: 1rem;
    }

    .floating-cta__btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* CTA Banner */
    .cta-banner__inner {
        padding: 2.5rem 2rem;
        border-radius: var(--radius-lg);
    }

    .cta-banner__title {
        font-size: 1.35rem;
    }

    /* Section diagonal */
    .section--diagonal-top::before {
        height: 30px;
    }

    /* Final CTA */
    .section--cta-final {
        padding: 4.5rem 0;
    }

    .section--cta-final .section__title--light {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section--cta-final .hero__buttons {
        margin-top: 1.5rem !important;
    }

    /* Quote block */
    .quote-block__text {
        font-size: 1.25rem;
    }

    /* Process */
    .process__icon {
        width: 60px;
        height: 60px;
    }

    .process__step {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 2.75rem 0;
    }

    .section__header {
        margin-bottom: 2rem;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero__content {
        padding: 2rem 0;
    }

    .hero__title {
        font-size: 1.85rem;
        letter-spacing: -0.02em;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
    }

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

    .hero__ticker-inner {
        gap: 0;
    }

    .ticker-item {
        padding: 0.75rem 0.5rem;
    }

    .ticker-item__value {
        font-size: 1.4rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 3rem 0 2.5rem;
        padding-top: calc(var(--header-height) + 2.5rem);
    }

    .page-hero__image {
        width: 100%;
        opacity: 0.25;
    }

    .page-hero__image::before {
        background:
            linear-gradient(to right, var(--navy) 0%, rgba(10, 25, 47, 0.6) 30%, rgba(10, 25, 47, 0.4) 100%),
            linear-gradient(to top, var(--navy) 0%, transparent 50%);
    }

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

    .page-hero__subtitle {
        font-size: 0.925rem;
    }

    /* USPs */
    .usps-grid {
        grid-template-columns: 1fr;
    }

    .usp {
        padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    }

    .usp__number {
        font-size: 3.5rem;
    }

    .usp__icon {
        width: 44px;
        height: 44px;
    }

    .usp__icon svg {
        width: 20px;
        height: 20px;
    }

    /* Sector tiles */
    .sector-tiles {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 0.75rem;
    }

    .sector-tile--wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .sector-tile {
        padding: 1rem;
    }

    .sector-tile__badge {
        width: 28px;
        height: 28px;
        top: 0.625rem;
        left: 0.625rem;
    }

    .sector-tile__badge svg {
        width: 12px;
        height: 12px;
    }

    .sector-tile__title {
        font-size: 0.95rem;
    }

    .sector-tile__text {
        font-size: 0.75rem;
    }

    .sector-tile__arrow {
        top: 0.625rem;
        right: 0.625rem;
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    /* Stats */
    .split-content__stats {
        gap: 0.75rem;
    }

    .stat {
        padding: 1.25rem 0.75rem;
    }

    .stat__number {
        font-size: 1.85rem;
    }

    /* Info bar */
    .info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-bar__item {
        padding: 1rem 0.75rem;
    }

    .info-bar__label {
        font-size: 0.6rem;
    }

    .info-bar__value {
        font-size: 0.9rem;
    }

    /* Dienst cards */
    .dienst-card__image {
        min-height: 180px;
    }

    .dienst-card__content {
        padding: 1.5rem;
    }

    .dienst-card__title {
        font-size: 1.25rem;
    }

    /* Benefit path */
    .benefit-path__icon {
        width: 42px;
        height: 42px;
    }

    .benefit-path__icon::before {
        inset: -5px;
    }

    .benefit-path__icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-path__item {
        grid-template-columns: 52px 1fr;
    }

    .benefit-path::before {
        left: 26px;
    }

    .benefit-path__title {
        font-size: 1rem;
    }

    .benefit-path__text {
        font-size: 0.875rem;
    }

    /* Process */
    .process__icon {
        width: 52px;
        height: 52px;
    }

    .process__icon svg {
        width: 22px;
        height: 22px;
    }

    .process__title {
        font-size: 1.05rem;
    }

    .process__text {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn--large {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }

    /* CTA Banner */
    .cta-banner__inner {
        padding: 2rem 1.5rem;
    }

    /* CTA final section */
    .section--cta-final {
        padding: 3.5rem 0;
    }

    .section--cta-final .hero__buttons {
        flex-direction: column;
    }

    .section--cta-final .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo-img {
        height: 4rem;
    }

    .site-footer {
        padding: 3rem 0 0;
    }

    /* Floating CTA - compact */
    .floating-cta__btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }

    .floating-cta__btn svg {
        width: 16px;
        height: 16px;
    }

    /* Quote */
    .quote-block {
        padding: 2.5rem 1rem;
    }

    .quote-block__text {
        font-size: 1.1rem;
    }

    /* Contact */
    .contact-info__card {
        padding: 1.5rem;
    }

    /* Image break */
    .image-break {
        height: 240px;
    }

    /* Forms */
    .form-input {
        padding: 0.7rem 0.875rem;
        font-size: 16px; /* prevents iOS zoom */
    }

    .form-select {
        font-size: 16px;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-section__title {
        font-size: 1rem;
    }

    /* Aanmeld sidebar cards */
    .aanmeld-sidebar__card {
        padding: 1.5rem;
    }
}