/* ============================================================
   CORPORATE CONSULTING WEBSITE — MAIN STYLESHEET
   ============================================================
   
   COLOR PALETTE — EDIT HEX CODES HERE TO CHANGE ALL COLORS
   ============================================================ */
:root {
    /* ── PRIMARY BRAND COLORS ───────────────────────────── */
    --color-main: #383330;

    /* Main brand dark tone */
    --color-grey: #5A5A5A;

    /* Medium grey tone */
    --color-bright-grey: #EDEBE9;

    /* Light warm grey background */
    --color-blue: #012367;

    /* Deep navy blue */
    --color-bright-blue: #D4DBEB;

    /* Light blue tint */
    --color-black: #1B1B1B;

    /* Near-black text */
    --color-highlight: #8C1C68;

    /* Accent / highlight (use sparingly) */
    --color-white: #FFFFFF;
    --color-off-white: #F8F7F5;

    /* ── DERIVED UTILITY COLORS ────────────────────────── */
    --color-main-hover: #4a4440;
    --color-text-dark: #1B1B1B;
    --color-text-mid: #383330;
    --color-text-light: #5A5A5A;
    --color-text-muted: #888580;
    --color-border: #D8D5D1;
    --color-border-light: #EDEBE9;
    --color-overlay-dark: rgba(27, 27, 27, 0.65);
    --color-overlay-hero: rgba(27, 27, 27, 0.50);
    --color-overlay-mid: rgba(56, 51, 48, 0.75);

    /* ── TYPOGRAPHY ─────────────────────────────────────── */
    --font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    /* ── SPACING & SIZING ───────────────────────────────── */
    --nav-height: 80px;
    --section-pad-v: 100px;
    --max-width: 1240px;
    --radius-sm: 2px;
    --radius-md: 4px;

    /* ── TRANSITIONS ────────────────────────────────────── */
    --transition-fast: 0.2s ease;
    --transition-mid: 0.4s ease;
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    background: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.display-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-xl {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.heading-lg {
    font-size: clamp(1.4rem, 2.5vw, 1.875rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.005em;
}

.heading-sm {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.body-lg {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 300;
    line-height: 1.75;
}

.body-md {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-highlight);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 60px);
}

.section {
    padding-block: var(--section-pad-v);
}

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

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

.section--grey {
    background-color: var(--color-bright-grey);
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.flex {
    display: flex;
}

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

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

.flex-col {
    display: flex;
    flex-direction: column;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background-color var(--transition-mid), box-shadow var(--transition-mid);
}

.nav--transparent {
    background-color: transparent;
}

.nav--scrolled {
    background-color: var(--color-black);
    box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.nav__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 60px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity var(--transition-fast);
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__logo img {
    height: 36px;
    width: auto;
}

.nav__logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width var(--transition-mid);
}

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

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__lang-btn {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    padding: 4px 6px;
    transition: color var(--transition-fast);
    cursor: pointer;
}

.nav__lang-btn:hover,
.nav__lang-btn.active {
    color: var(--color-white);
}

.nav__lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    padding: 4px 0;
}

.nav__toggle span {
    display: block;
    height: 1.5px;
    background-color: var(--color-white);
    border-radius: 1px;
    transition: all var(--transition-mid);
}

.nav__toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav__toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-mid);
}

.nav__mobile.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.nav__mobile-link {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.nav__mobile-link:hover {
    color: rgba(255,255,255,0.6);
}

.nav__mobile-lang {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 12s ease;
}

.hero__video.loaded {
    transform: scale(1);
}

.hero__image {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoomIn 12s ease forwards;
}

@keyframes heroZoomIn {
    to {
        transform: scale(1);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to top,
    rgba(27, 27, 27, 0.85) 0%,
    rgba(27, 27, 27, 0.4) 50%,
    rgba(27, 27, 27, 0.15) 100%
  );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 80px;
    padding-inline: clamp(20px, 5vw, 60px);
    max-width: calc(var(--max-width) + 2 * clamp(20px, 5vw, 60px));
    margin-inline: auto;
}

.hero__label {
    margin-bottom: 24px;
}

.hero__headline {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    max-width: 900px;
    margin-bottom: 28px;
}

.hero__positioning {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin-bottom: 48px;
}

.hero__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all var(--transition-mid);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    background-color: var(--color-bright-grey);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn--ghost:hover {
    border-color: var(--color-white);
    background-color: rgba(255,255,255,0.08);
}

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

.btn--dark:hover {
    background-color: var(--color-main);
}

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

.btn--blue:hover {
    background-color: #01316a;
}

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

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

.btn__arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    margin-bottom: 70px;
}

.section-header--center {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 70px;
}

.section-header__label {
    display: inline-block;
    margin-bottom: 16px;
}

.section-header__title {
    margin-bottom: 20px;
}

.section-header__desc {
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header--center .section-header__desc {
    margin-inline: auto;
}

/* ============================================================
   HOME INTRO SECTION
   ============================================================ */
.intro {
    padding-block: 100px;
}

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

.intro__number {
    font-size: 6rem;
    font-weight: 200;
    line-height: 1;
    color: var(--color-border);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.intro__divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-highlight);
    margin-bottom: 28px;
}

.intro__text p + p {
    margin-top: 20px;
}

/* ============================================================
   STATS / FIGURES
   ============================================================ */
.stats {
    padding-block: 80px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--color-main);
}

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

.stat__divider {
    width: 30px;
    height: 1px;
    background-color: var(--color-highlight);
    margin-bottom: 14px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: var(--color-border-light);
}

.service-card {
    background-color: var(--color-white);
    padding: 48px 40px;
    transition: background-color var(--transition-mid), transform var(--transition-mid);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-highlight);
    transition: width var(--transition-slow);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background-color: var(--color-off-white);
    transform: translateY(-2px);
}

.service-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 28px;
    color: var(--color-main);
}

.service-card__number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--color-border);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    line-height: 1;
}

.service-card__title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover {
    color: var(--color-highlight);
    gap: 14px;
}

/* ============================================================
   APPROACH / PRINCIPLES
   ============================================================ */
.principle-card {
    padding: 50px 40px;
    background-color: var(--color-white);
    border-left: 1px solid var(--color-border-light);
    transition: border-color var(--transition-mid);
}

.principle-card:hover {
    border-color: var(--color-highlight);
}

.principle-card:first-child {
    border-left: none;
}

.principle-card__step {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-highlight);
    margin-bottom: 20px;
}

.principle-card__title {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.principle-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-focus {
    background-color: var(--color-blue);
    padding-block: 100px;
    color: var(--color-white);
}

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

.focus-criteria {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.focus-criterion {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding-block: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    align-items: start;
}

.focus-criterion:first-child {
    padding-top: 0;
}

.focus-criterion__value {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.9);
}

.focus-criterion__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-top: 6px;
}

/* ============================================================
   IMAGE SECTIONS WITH HOVER EFFECTS
   ============================================================ */
.image-section {
    position: relative;
    overflow: hidden;
    aspect-ratio: 8/7;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-section:hover img {
    transform: scale(1);
}

.image-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,27,27,0.7) 0%, rgba(27,27,27,0.2) 60%, transparent 100%);
}

/* Portfolio teaser — stronger left-to-right blue gradient on desktop */
.image-section__overlay--portfolio {
    background: linear-gradient(to right, rgba(1,35,103,0.88) 0%, rgba(1,35,103,0.5) 60%, transparent 100%);
}

.image-section__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 40px clamp(32px, 8vw, 00px);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-dark);
    outline: none;
    transition: border-color var(--transition-fast);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--color-main);
}

.form-field textarea {
    resize: none;
    height: 120px;
}

.form-field select {
    cursor: pointer;
}

.form-field select option {
    background-color: var(--color-white);
}

.form-submit {
    margin-top: 8px;
}

.contact-info {
    padding-top: 8px;
}

.contact-info__item {
    padding-block: 24px;
    border-bottom: 1px solid var(--color-border-light);
}

.contact-info__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.contact-info__value {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.contact-info__value a:hover {
    color: var(--color-highlight);
}

/* Contact info boxes — uniform 3-box stack */
.contact-info-box {
    padding: 22px 28px;
    background: var(--color-bright-grey);
    border-left: 2px solid var(--color-border-light);
    transition: border-color 0.25s ease;
}

.contact-info-box:hover {
    border-left-color: var(--color-main);
}

.contact-info-box--dark {
    background: var(--color-main);
    border-left-color: transparent;
}

.contact-info-box--dark:hover {
    border-left-color: transparent;
}

.contact-info-box__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 7px;
    color: var(--color-text-muted);
}

.contact-info-box--dark .contact-info-box__label {
    color: rgba(255, 255, 255, 0.45);
}

.contact-info-box__text {
    font-size: 0.825rem;
    line-height: 1.65;
    color: var(--color-text-light);
}

.contact-info-box--dark .contact-info-box__text {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding-top: 70px;
    padding-bottom: 40px;
}

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

.footer__brand-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    display: block;
}

.footer__tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 260px;
}

.footer__col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-white);
}

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

.footer__copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    transition: color var(--transition-fast);
}

.footer__legal-link:hover {
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   COOKIE BANNER — FULL REBUILD
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background-color: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 32px clamp(20px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px 48px;
    align-items: start;
}

/* Left column — text + categories */
.cookie-banner__text {
    min-width: 0;
}

.cookie-banner__title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 10px;
}

.cookie-banner__desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 680px;
}

.cookie-banner__desc a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__desc a:hover {
    color: var(--color-white);
}

/* Cookie category rows */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
}

.cookie-category {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-category__name {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.cookie-category__detail {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle__track {
    position: absolute;
    inset: 0;
    background-color: rgba(255,255,255,0.15);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.cookie-toggle__track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle__track {
    background-color: var(--color-highlight);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
    transform: translateX(16px);
    background-color: var(--color-white);
}

.cookie-toggle input:disabled + .cookie-toggle__track {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle--always-on .cookie-toggle__track {
    background-color: rgba(255,255,255,0.2);
    cursor: not-allowed;
}

.cookie-toggle--always-on .cookie-toggle__track::after {
    transform: translateX(16px);
    background-color: rgba(255,255,255,0.45);
}

/* Always-on label */
.cookie-always-on {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}

/* Right column — action buttons */
.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 160px;
    padding-top: 6px;
}

/* Both buttons — identical size and font, only colour differs */
.cookie-btn {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 13px 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast);
    border: 1px solid transparent;
    line-height: 1;
}

.cookie-btn--accept {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.cookie-btn--accept:hover {
    background-color: var(--color-bright-grey);
    border-color: var(--color-bright-grey);
}

.cookie-btn--save {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.cookie-btn--save:hover {
    background-color: var(--color-bright-grey);
    border-color: var(--color-bright-grey);
}

.cookie-btn--decline {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.cookie-btn--decline:hover {
    background-color: var(--color-bright-grey);
    border-color: var(--color-bright-grey);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
    .cookie-banner__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cookie-btn--accept,
    .cookie-btn--save {
        flex: 1;
        min-width: 120px;
    }

    .cookie-btn--decline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-btn--accept,
    .cookie-btn--save,
    .cookie-btn--decline {
        width: 100%;
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   PARALLAX HERO SCROLL
   ============================================================ */
.parallax-wrap {
    overflow: hidden;
    position: relative;
}

/* ============================================================
   LIST STYLES
   ============================================================ */
.styled-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.styled-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    background-color: var(--color-highlight);
    margin-top: 12px;
}

.styled-list--light li {
    color: rgba(255,255,255,0.7);
}

.styled-list--light li::before {
    background-color: rgba(255,255,255,0.4);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-highlight);
    margin-block: 24px;
}

.divider--center {
    margin-inline: auto;
}

.divider--light {
    background-color: rgba(255,255,255,0.4);
}

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.founder-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    text-align: justify;
}

.founder-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: var(--color-bright-grey);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.founder-photo:hover img {
    transform: scale(1.04);
}

.founder-photo__placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    opacity: 0.15;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero--dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transform: scale(1.05);
    animation: heroZoomIn 10s ease forwards;
}

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

/* ============================================================
   APPROACH PAGE
   ============================================================ */
.approach-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding-block: 60px;
    border-bottom: 1px solid var(--color-border-light);
    align-items: start;
}

.approach-step:last-child {
    border-bottom: none;
}

.approach-step__num {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -0.04em;
    color: var(--color-border);
    line-height: 1;
    padding-top: 4px;
}

.approach-step__title {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.approach-step__desc {
    color: var(--color-text-light);
    max-width: 580px;
}

/* ============================================================
   TAG / BADGE
   ============================================================ */
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    background-color: var(--color-bright-blue);
    color: var(--color-blue);
}

.tag--dark {
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   SCROLL-PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background-color: var(--color-highlight);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================================
   IMPRINT / LEGAL PAGES
   ============================================================ */
.legal-content {
    max-width: 760px;
    margin-inline: auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.legal-content p,
.legal-content address {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-style: normal;
    text-align: justify;
}

.legal-content a {
    color: var(--color-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.legal-content ul li {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================================
   LANGUAGE SWITCHER IN PAGE
   ============================================================ */
.lang-switcher-pill {
    display: inline-flex;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.lang-switcher-pill button {
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-switcher-pill button.active {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ============================================================
   LINKEDIN BUTTONS & ICONS
   ============================================================ */
/* Founder LinkedIn icon-only button — below the photo on About page */
.linkedin-founder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 16px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    text-decoration: none;
    transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast);
    border-radius: 0;
}

.linkedin-founder-icon svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.linkedin-founder-icon:hover {
    background-color: #0A66C2;
    border-color: #0A66C2;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Footer LinkedIn icon link */
.footer__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__linkedin svg {
    flex-shrink: 0;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer__linkedin:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer__linkedin:hover svg {
    transform: translateY(-1px);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background-color: var(--color-main);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), background-color var(--transition-fast);
    z-index: 800;
    cursor: pointer;
}

.back-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-top:hover {
    background-color: var(--color-black);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad-v: 80px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .intro__grid {
        gap: 50px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .founder-grid {
        grid-template-columns: 280px 1fr;
        gap: 50px;
    }

    .focus-grid {
        gap: 50px;
    }

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

    .hero__headline {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --nav-height: 66px;
        --section-pad-v: 64px;
    }

    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

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

    .service-cards {
        grid-template-columns: 1fr;
    }

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

    .founder-photo {
        max-width: 280px;
        aspect-ratio: 1,1;
    }

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

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

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

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

    /* Portfolio / entrepreneurial teaser — mobile layout */
    .image-section {
        aspect-ratio: unset;
        min-height: 420px;
    }

    .image-section__content {
        align-items: flex-end;
        padding: 36px 28px;
    }

    .image-section__content > div {
        max-width: 100% !important;
    }

    /* On mobile: bottom-up dark gradient so text + button are always readable */
    .image-section__overlay--portfolio {
        background: linear-gradient(to top, rgba(1,35,103,0.95) 0%, rgba(1,35,103,0.6) 55%, rgba(1,35,103,0.15) 100%);
    }

    .approach-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
        padding-block: 40px;
    }

    /* cookie banner responsive rules are handled within its own section above */
    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero {
        padding-top: calc(var(--nav-height) + 50px);
        padding-bottom: 50px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .focus-criterion {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .service-card {
        padding: 36px 28px;
    }

    .btn {
        padding: 13px 24px;
    }

    /* Enough room for heading + button on small phones */
    .image-section {
        min-height: 460px;
    }

    .image-section__content {
        padding: 28px 20px;
    }
}
