/* =========================================================
   NEUBRANDENBURG PAGE SCAFFOLD

   Header und Footer wurden aus der bestehenden Hauptseite
   uebernommen. Die allgemeinen Cookie-/Back-to-top-Stile
   bleiben zusaetzlich ueber /assets/css/styles.css aktiv.
   ========================================================= */

:root {
    --yellow: #ffb400;
    --yellow-light: #ffd15a;
    --yellow-soft: #fff6dc;

    --black: #111214;
    --text: #202124;
    --muted: #656565;

    --white: #ffffff;
    --background: #fffefa;

    --border: rgba(20, 20, 20, 0.085);

    --header-height: clamp(88px, 6.2vw, 112px);
    --page-space: clamp(28px, 3.7vw, 74px);

    --transition:
        260ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    width: 100%;
    min-width: 320px;

    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    width: 100%;
    min-width: 320px;
    margin: 0;

    overflow-x: hidden;

    background: var(--background);
    color: var(--text);

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

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

.page-anchor {
    height: 1px;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.neubrandenburg-page__main {
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid rgba(20, 20, 20, 0.045);

    transition:
        height var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.is-scrolled {
    height: clamp(76px, 5vw, 92px);

    border-bottom-color: rgba(20, 20, 20, 0.08);

    box-shadow:
        0 12px 32px rgba(24, 24, 24, 0.065);
}

.site-header__inner {
    position: relative;

    width: 100%;
    height: 100%;
    padding-inline: var(--page-space);

    display: grid;
    grid-template-columns:
        minmax(250px, 0.95fr)
        minmax(520px, 1.4fr)
        minmax(340px, 1.1fr);

    align-items: center;
}

.site-header__brand {
    width: clamp(235px, 16.5vw, 335px);

    display: inline-flex;
    align-items: center;
}

.site-header__brand img {
    width: 100%;
    height: auto;
}

.site-header__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(25px, 2.15vw, 44px);
}

.site-header__navigation > a,
.site-header__dropdown-toggle {
    position: relative;

    padding: 12px 0;

    color: #292929;

    font-size: clamp(13px, 0.84vw, 17px);
    line-height: 1;
    font-weight: 550;
    white-space: nowrap;

    transition: color var(--transition);
}

.site-header__navigation > a::after,
.site-header__dropdown-toggle::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;

    height: 2px;

    border-radius: 999px;
    background: var(--yellow);

    transform: scaleX(0);
    transform-origin: right center;

    transition: transform var(--transition);
}

.site-header__navigation > a:hover,
.site-header__navigation > a:focus-visible,
.site-header__dropdown-toggle:hover,
.site-header__dropdown-toggle:focus-visible,
.site-header__dropdown.is-open
.site-header__dropdown-toggle {
    color: #a87300;
    outline: none;
}

.site-header__navigation > a:hover::after,
.site-header__navigation > a:focus-visible::after,
.site-header__dropdown-toggle:hover::after,
.site-header__dropdown-toggle:focus-visible::after,
.site-header__dropdown.is-open
.site-header__dropdown-toggle::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-header__navigation > a[aria-current="page"],
.site-header__navigation
.site-header__dropdown.is-current:not(.is-open)
.site-header__dropdown-toggle {
    color: #a87300;
    outline: none;
}

.site-header__navigation > a[aria-current="page"]::after,
.site-header__navigation
.site-header__dropdown.is-current:not(.is-open)
.site-header__dropdown-toggle::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-header__dropdown {
    position: relative;
}

.site-header__dropdown-toggle {
    min-height: 42px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.site-header__dropdown-chevron {
    display: inline-flex;

    font-size: 15px;
    line-height: 1;

    transform: translateY(-2px);

    transition: transform var(--transition);
}

.site-header__dropdown.is-open
.site-header__dropdown-chevron {
    transform:
        translateY(1px)
        rotate(180deg);
}

.site-header__dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 1200;

    width: min(330px, 82vw);
    padding: 10px;

    border: 1px solid rgba(20, 20, 20, 0.075);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.99);

    box-shadow:
        0 24px 58px rgba(25, 23, 16, 0.15),
        0 5px 14px rgba(25, 23, 16, 0.04);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, -8px)
        scale(0.98);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.site-header__dropdown.is-open
.site-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate(-50%, 0)
        scale(1);
}

.site-header__dropdown-menu a {
    padding: 15px 16px;

    display: block;

    border: 1px solid rgba(239, 170, 0, 0.08);
    border-radius: 13px;

    background: #fffaf0;
}

.site-header__dropdown-menu a::after {
    display: none;
}

.site-header__navigation
.site-header__dropdown-menu a[aria-current="page"] {
    border-color: rgba(239, 170, 0, 0.28);

    background:
        linear-gradient(
            180deg,
            rgba(255, 246, 214, 0.98) 0%,
            rgba(255, 255, 255, 0.98) 100%
        );
}

.site-header__navigation
.site-header__dropdown-menu a[aria-current="page"] strong {
    color: #7f5a00;
}

.site-header__dropdown-menu strong,
.site-header__dropdown-menu span {
    display: block;
}

.site-header__dropdown-menu strong {
    color: #1d1d1d;

    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.site-header__dropdown-menu span {
    margin-top: 5px;

    color: #707070;

    font-size: 12px;
    line-height: 1.35;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.site-header__project {
    min-width: clamp(190px, 13vw, 245px);
    min-height: clamp(52px, 3.5vw, 66px);
    padding: 0 clamp(20px, 1.4vw, 29px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--yellow-light),
            var(--yellow)
        );

    color: #151515;

    font-size: clamp(14px, 0.9vw, 18px);
    line-height: 1;
    font-weight: 680;
    white-space: nowrap;

    box-shadow:
        0 15px 32px rgba(240, 174, 0, 0.21);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.site-header__project img {
    width: 22px;
    height: 22px;
    object-fit: contain;

    transition: transform var(--transition);
}

.site-header__project:hover,
.site-header__project:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 19px 38px rgba(240, 174, 0, 0.29);

    outline: none;
}

.site-header__project:hover img {
    transform: translate(4px, -4px);
}

.site-header__whatsapp {
    min-width: clamp(148px, 10.4vw, 188px);
    min-height: clamp(52px, 3.5vw, 66px);
    padding: 0 clamp(17px, 1.2vw, 23px);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 0.72vw, 14px);

    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    color: #202020;

    font-size: clamp(13px, 0.82vw, 16px);
    line-height: 1;
    font-weight: 680;
    white-space: nowrap;

    box-shadow:
        0 10px 25px rgba(24, 24, 24, 0.07);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header__whatsapp img {
    width: clamp(22px, 1.5vw, 28px);
    height: clamp(22px, 1.5vw, 28px);
    object-fit: contain;
}

.site-header__whatsapp-label {
    display: inline-block;
}

.site-header__whatsapp:hover,
.site-header__whatsapp:focus-visible {
    transform: translateY(-3px);

    border-color: rgba(240, 174, 0, 0.35);

    box-shadow:
        0 16px 32px rgba(24, 24, 24, 0.1);

    outline: none;
}

.site-header__toggle {
    position: relative;

    width: 52px;
    height: 52px;
    padding: 0;

    display: none;

    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;

    cursor: pointer;
}

.site-header__toggle span {
    position: absolute;
    left: 50%;

    width: 24px;
    height: 2px;

    border-radius: 999px;
    background: #181818;

    transform: translateX(-50%);

    transition:
        top var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

.site-header__toggle span:nth-child(1) {
    top: 17px;
}

.site-header__toggle span:nth-child(2) {
    top: 24px;
}

.site-header__toggle span:nth-child(3) {
    top: 31px;
}

.site-header__toggle.is-active span:nth-child(1) {
    top: 24px;

    transform:
        translateX(-50%)
        rotate(45deg);
}

.site-header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.site-header__toggle.is-active span:nth-child(3) {
    top: 24px;

    transform:
        translateX(-50%)
        rotate(-45deg);
}


/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    :root {
        --header-height: 96px;
        --page-space: 42px;
    }

    .site-header__inner {
        grid-template-columns:
            minmax(235px, 0.9fr)
            minmax(470px, 1.32fr)
            minmax(315px, 1fr);
    }

    .site-header__brand {
        width: 250px;
    }

    .site-header__navigation {
        gap: 27px;
    }

    .site-header__project {
        min-width: 205px;
        min-height: 56px;

        font-size: 14px;
    }

    .site-header__whatsapp {
        min-width: 154px;
        min-height: 56px;
        padding-inline: 18px;
    }
}

@media (max-width: 1180px) {
    :root {
        --header-height: 90px;
        --page-space: 30px;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-header__brand {
        width: 245px;
    }

    .site-header__navigation {
        position: fixed;
        top: calc(var(--header-height) + 10px);
        right: 20px;
        left: 20px;
        z-index: 1100;

        max-height:
            calc(
                100dvh - var(--header-height) - 30px
                - env(safe-area-inset-bottom)
            );

        padding:
            14px
            14px
            calc(14px + env(safe-area-inset-bottom));

        display: grid;
        gap: 0;

        border: 1px solid var(--border);
        border-radius: 20px;
        background: #ffffff;

        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        -webkit-overflow-scrolling: touch;

        box-shadow: 0 24px 65px rgba(18, 18, 18, 0.16);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(-15px)
            scale(0.98);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .site-header__navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }

    .site-header__navigation > a {
        padding: 16px 14px;

        border-bottom: 1px solid rgba(20, 20, 20, 0.07);

        font-size: 16px;
    }

    .site-header__navigation > a:last-child {
        border-bottom: 0;
    }

    .site-header__navigation > a::after {
        display: none;
    }

    .site-header__dropdown {
        width: 100%;
    }

    .site-header__dropdown-toggle {
        width: 100%;
        min-height: 0;
        padding: 16px 14px;

        justify-content: space-between;

        border-bottom: 1px solid rgba(20, 20, 20, 0.07);

        font-size: 16px;
        text-align: left;
    }

    .site-header__dropdown-toggle::after {
        display: none;
    }

    .site-header__dropdown-menu {
        position: static;

        width: 100%;
        max-height: 0;

        padding: 0 9px;

        overflow: hidden;

        border: 0;
        border-radius: 0;

        background: transparent;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: none;

        transform: none;

        transition:
            max-height var(--transition),
            padding var(--transition);
    }

    .site-header__dropdown.is-open
    .site-header__dropdown-menu {
        max-height: 240px;

        padding: 8px 9px 10px;

        transform: none;
        pointer-events: auto;
    }

    .site-header__dropdown-menu a {
        padding: 13px 14px;
    }

    .site-header__toggle {
        display: block;
    }
}

@media (max-width: 900px) {
    :root {
        --page-space: 24px;
    }

    .site-header__project {
        display: none;
    }
}

@media (max-width: 620px) {
    :root {
        --header-height: 76px;
        --page-space: 18px;
    }

    .site-header__inner {
        padding-inline: 16px;
    }

    .site-header__brand {
        width: 202px;
    }

    .site-header__whatsapp {
        min-width: 0;
        width: 47px;
        height: 47px;
        padding: 0;

        border-radius: 13px;
    }

    .site-header__whatsapp-label {
        display: none;
    }

    .site-header__toggle {
        width: 47px;
        height: 47px;

        border-radius: 13px;
    }

    .site-header__toggle span:nth-child(1) {
        top: 15px;
    }

    .site-header__toggle span:nth-child(2) {
        top: 22px;
    }

    .site-header__toggle span:nth-child(3) {
        top: 29px;
    }

    .site-header__toggle.is-active span:nth-child(1),
    .site-header__toggle.is-active span:nth-child(3) {
        top: 22px;
    }

    .site-header__navigation {
        top: calc(var(--header-height) + 8px);
        right: 8px;
        left: 8px;

        border-radius: 18px;
    }
}

@media (min-width: 1181px) {
    .neubrandenburg-page .site-header__inner {
        padding-inline: clamp(24px, 2.2vw, 42px);

        grid-template-columns:
            minmax(220px, 0.9fr)
            minmax(0, 1.55fr)
            minmax(290px, 1fr);
    }

    .neubrandenburg-page .site-header__navigation {
        gap: clamp(17px, 1.2vw, 25px);
    }

    .neubrandenburg-page .site-header__navigation > a,
    .neubrandenburg-page .site-header__dropdown-toggle {
        font-size: clamp(12.5px, 0.82vw, 15.5px);
    }

    .neubrandenburg-page .site-header__actions {
        gap: clamp(9px, 0.7vw, 12px);
    }

    .neubrandenburg-page .site-header__project {
        min-width: clamp(164px, 10.6vw, 214px);
        padding: 0 clamp(14px, 0.95vw, 20px);
        gap: 12px;

        font-size: clamp(13px, 0.8vw, 15.5px);
    }

    .neubrandenburg-page .site-header__whatsapp {
        min-width: clamp(122px, 8.6vw, 160px);
        padding: 0 clamp(13px, 0.9vw, 18px);
    }
}


/* =========================================================
   SCREEN 1 — NEUBRANDENBURG HERO
   ========================================================= */

.neubrandenburg-hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: calc(100svh - var(--header-height));

    overflow: hidden;

    background:
        radial-gradient(
            circle at 79% 32%,
            rgba(255, 202, 62, 0.12) 0%,
            rgba(255, 226, 158, 0.045) 35%,
            transparent 62%
        ),
        radial-gradient(
            circle at 15% 18%,
            rgba(255, 180, 0, 0.045) 0%,
            transparent 42%
        ),
        linear-gradient(
            112deg,
            #ffffff 0%,
            #fffefa 50%,
            #fff8e9 100%
        );
}

.neubrandenburg-hero::before {
    content: "";

    position: absolute;
    top: 12%;
    right: -12%;
    z-index: -1;

    width: clamp(680px, 54vw, 1180px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 215, 118, 0.13),
            transparent 70%
        );

    pointer-events: none;
}

.neubrandenburg-hero::after {
    content: "";

    position: absolute;
    top: 17%;
    left: -18%;
    z-index: -1;

    width: clamp(420px, 34vw, 760px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 190, 28, 0.075),
            transparent 68%
        );

    pointer-events: none;
}

.neubrandenburg-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: calc(100svh - var(--header-height));

    padding:
        clamp(32px, 2.7vw, 54px)
        var(--page-space)
        clamp(24px, 2vw, 40px);

    display: grid;
    grid-template-columns:
        minmax(500px, 41fr)
        minmax(0, 59fr);

    grid-template-rows:
        minmax(0, 1fr)
        auto;

    align-items: center;

    column-gap: clamp(10px, 1.4vw, 28px);
}


/* =========================================================
   NEUBRANDENBURG HERO CONTENT
   ========================================================= */

.neubrandenburg-hero__content {
    position: relative;
    z-index: 5;

    grid-column: 1;
    grid-row: 1;

    max-width: clamp(610px, 41vw, 790px);
}

.neubrandenburg-hero__location {
    width: fit-content;

    min-height: clamp(40px, 2.8vw, 52px);
    margin-bottom: clamp(23px, 1.8vw, 36px);
    padding:
        7px
        clamp(15px, 1.15vw, 23px);

    display: inline-flex;
    align-items: center;

    gap: 11px;

    border: 1px solid rgba(239, 170, 0, 0.12);
    border-radius: 999px;

    background: rgba(255, 250, 238, 0.96);
    color: #252525;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-hero__location span {
    width: clamp(22px, 1.55vw, 30px);
    height: clamp(22px, 1.55vw, 30px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ff9f00
        );
}

.neubrandenburg-hero__location svg {
    width: 62%;
    height: 62%;

    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-hero__location strong {
    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1;
    font-weight: 680;
}

.neubrandenburg-hero h1 {
    margin: 0;

    color: #08090a;

    font-size: clamp(58px, 4.28vw, 86px);
    line-height: 1.02;
    font-weight: 680;
    letter-spacing: -0.06em;
}

.neubrandenburg-hero h1 span {
    color: #ff7900;
}

.neubrandenburg-hero__lead {
    max-width: 760px;

    margin:
        clamp(20px, 1.55vw, 31px)
        0
        0;

    color: #595959;

    font-size: clamp(16px, 1.02vw, 20px);
    line-height: 1.52;
    letter-spacing: -0.012em;
}

.neubrandenburg-hero__lead strong {
    color: #1e1e1e;

    font-weight: 730;
}


/* =========================================================
   NEUBRANDENBURG HERO BENEFITS
   ========================================================= */

.neubrandenburg-hero__benefits {
    margin-top: clamp(24px, 1.9vw, 38px);

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1.14fr);

    gap: clamp(13px, 1vw, 20px);
}

.neubrandenburg-hero-benefit {
    min-width: 0;

    display: grid;
    grid-template-columns:
        clamp(54px, 3.8vw, 72px)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(11px, 0.85vw, 17px);
}

.neubrandenburg-hero-benefit__icon {
    width: clamp(54px, 3.8vw, 72px);
    aspect-ratio: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.12);
    border-radius: 50%;

    background: #fff6df;
}

.neubrandenburg-hero-benefit__icon svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: #171717;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-hero-benefit p {
    margin: 0;

    color: #555555;

    font-size: clamp(10px, 0.68vw, 13px);
    line-height: 1.32;
    font-weight: 580;
}

.neubrandenburg-hero-benefit strong {
    display: block;

    color: #1d1d1d;

    font-weight: 750;
}


/* =========================================================
   NEUBRANDENBURG HERO ACTIONS
   ========================================================= */

.neubrandenburg-hero__actions {
    margin-top: clamp(30px, 2.15vw, 43px);

    display: flex;
    align-items: center;

    gap: clamp(13px, 1.05vw, 20px);
}

.neubrandenburg-hero__button {
    min-height: clamp(58px, 4vw, 78px);
    padding:
        0
        clamp(18px, 1.55vw, 31px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: clamp(12px, 0.9vw, 18px);

    border-radius: clamp(12px, 0.9vw, 17px);

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.neubrandenburg-hero__button-icon {
    width: clamp(22px, 1.45vw, 28px);
    height: clamp(22px, 1.45vw, 28px);

    flex: 0 0 auto;
}

.neubrandenburg-hero__button-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-hero__button b {
    font-size: clamp(19px, 1.35vw, 27px);
    line-height: 1;

    transition: transform var(--transition);
}

.neubrandenburg-hero__button--primary {
    min-width: clamp(270px, 18vw, 360px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffb400
        );

    color: #171717;

    box-shadow:
        0 17px 35px rgba(238, 171, 0, 0.24),
        0 4px 10px rgba(238, 171, 0, 0.08);
}

.neubrandenburg-hero__button--secondary {
    min-width: clamp(245px, 16.5vw, 330px);

    border: 1px solid rgba(20, 20, 20, 0.08);

    background: rgba(255, 255, 255, 0.96);
    color: #202020;

    box-shadow:
        0 11px 26px rgba(24, 24, 24, 0.055);
}

.neubrandenburg-hero__button:hover,
.neubrandenburg-hero__button:focus-visible {
    transform: translateY(-3px);

    outline: none;
}

.neubrandenburg-hero__button--primary:hover,
.neubrandenburg-hero__button--primary:focus-visible {
    box-shadow:
        0 23px 45px rgba(238, 171, 0, 0.32);
}

.neubrandenburg-hero__button--secondary:hover,
.neubrandenburg-hero__button--secondary:focus-visible {
    border-color: rgba(239, 170, 0, 0.32);

    background: #ffffff;

    box-shadow:
        0 17px 35px rgba(24, 24, 24, 0.08);
}

.neubrandenburg-hero__button:hover b,
.neubrandenburg-hero__button:focus-visible b {
    transform: translateX(4px);
}


/* =========================================================
   NEUBRANDENBURG HERO VISUAL
   ========================================================= */

.neubrandenburg-hero__visual {
    position: relative;
    z-index: 4;

    grid-column: 2;
    grid-row: 1;

    width: 100%;
    height: clamp(510px, 42vw, 820px);

    align-self: center;
}

.neubrandenburg-hero__orbit {
    position: absolute;
    z-index: 1;

    border: 1.5px dashed rgba(239, 170, 0, 0.34);
    border-radius: 50%;

    pointer-events: none;
}

.neubrandenburg-hero__orbit--one {
    top: 2%;
    left: 4%;

    width: 74%;
    aspect-ratio: 1 / 0.62;

    transform: rotate(-20deg);
}

.neubrandenburg-hero__orbit--two {
    top: 12%;
    left: 10%;

    width: 68%;
    aspect-ratio: 1 / 0.56;

    opacity: 0.78;

    transform: rotate(-22deg);
}

.neubrandenburg-hero__image {
    position: absolute;
    right: -5%;
    bottom: -2%;
    z-index: 3;

    width: 104%;
    max-width: none;
    height: 98%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 28px 30px rgba(35, 31, 23, 0.13)
        );
}

.neubrandenburg-hero__request-card {
    position: absolute;
    top: 7%;
    right: 0;
    z-index: 7;

    width: clamp(270px, 19vw, 360px);
    padding: clamp(20px, 1.55vw, 31px);

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(18px, 1.2vw, 25px);

    background: rgba(255, 255, 255, 0.965);

    box-shadow:
        0 22px 55px rgba(35, 31, 23, 0.12),
        0 4px 12px rgba(35, 31, 23, 0.04);
}

.neubrandenburg-hero__request-card h2 {
    margin: 0 0 clamp(18px, 1.3vw, 27px);

    color: #242424;

    font-size: clamp(14px, 0.96vw, 19px);
    line-height: 1.25;
    font-weight: 720;
}

.neubrandenburg-hero__request-list {
    display: grid;
    gap: clamp(14px, 1.05vw, 21px);
}

.neubrandenburg-hero-request-item {
    display: grid;
    grid-template-columns:
        clamp(42px, 3vw, 58px)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(10px, 0.8vw, 16px);
}

.neubrandenburg-hero-request-item--separated {
    padding-top: clamp(15px, 1.1vw, 22px);

    border-top: 1px solid rgba(20, 20, 20, 0.09);
}

.neubrandenburg-hero-request-item span {
    width: clamp(42px, 3vw, 58px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.12);
    border-radius: 14px;

    background: #fff7e5;
}

.neubrandenburg-hero-request-item svg {
    width: 54%;
    height: 54%;

    fill: none;
    stroke: #1f1f1f;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-hero-request-item strong {
    color: #3f3f3f;

    font-size: clamp(11px, 0.76vw, 15px);
    line-height: 1.32;
    font-weight: 650;
}


/* =========================================================
   NEUBRANDENBURG HERO TRUST
   ========================================================= */

.neubrandenburg-hero__trust {
    position: relative;
    z-index: 8;

    grid-column: 1 / -1;
    grid-row: 2;

    width: 100%;
    min-height: clamp(86px, 6vw, 120px);
    margin-top: clamp(14px, 1.1vw, 22px);
    padding:
        clamp(14px, 1.1vw, 22px)
        clamp(20px, 1.7vw, 34px);

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border: 1px solid rgba(20, 20, 20, 0.06);
    border-radius: clamp(16px, 1.1vw, 22px);

    background: rgba(255, 255, 255, 0.965);

    box-shadow:
        0 18px 45px rgba(35, 31, 23, 0.075),
        0 4px 11px rgba(35, 31, 23, 0.025);
}

.neubrandenburg-hero-trust-item {
    position: relative;

    min-width: 0;
    padding-inline: clamp(15px, 1.2vw, 25px);

    display: grid;
    grid-template-columns:
        clamp(50px, 3.5vw, 68px)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(12px, 0.9vw, 18px);
}

.neubrandenburg-hero-trust-item:first-child {
    padding-left: 0;
}

.neubrandenburg-hero-trust-item:last-child {
    padding-right: 0;
}

.neubrandenburg-hero-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 12%;
    right: 0;

    width: 1px;
    height: 76%;

    background: rgba(20, 20, 20, 0.08);
}

.neubrandenburg-hero-trust-item > span {
    width: clamp(50px, 3.5vw, 68px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.12);
    border-radius: 50%;

    background: #fff7e5;
}

.neubrandenburg-hero-trust-item svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: #1d1d1d;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-hero-trust-item__flag {
    overflow: hidden;
}

.neubrandenburg-hero-trust-item__flag i {
    width: 34px;
    height: 24px;

    display: block;

    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            #000000 0 33.33%,
            #dd0000 33.33% 66.66%,
            #ffce00 66.66% 100%
        );

    box-shadow:
        0 0 0 1px rgba(20, 20, 20, 0.08);
}

.neubrandenburg-hero-trust-item strong,
.neubrandenburg-hero-trust-item small {
    display: block;
}

.neubrandenburg-hero-trust-item strong {
    color: #202020;

    font-size: clamp(11px, 0.78vw, 15px);
    line-height: 1.25;
    font-weight: 730;
}

.neubrandenburg-hero-trust-item small {
    margin-top: 5px;

    color: #666666;

    font-size: clamp(9px, 0.62vw, 12px);
    line-height: 1.35;
    font-weight: 500;
}


/* =========================================================
   NEUBRANDENBURG HERO — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-hero__inner {
        padding:
            32px
            42px
            26px;

        grid-template-columns:
            minmax(470px, 41fr)
            minmax(0, 59fr);
    }

    .neubrandenburg-hero h1 {
        font-size: clamp(56px, 4.15vw, 64px);
    }

    .neubrandenburg-hero__lead {
        font-size: 16px;
    }

    .neubrandenburg-hero__visual {
        height: clamp(500px, 42vw, 630px);
    }

    .neubrandenburg-hero__request-card {
        width: 292px;
        padding: 20px;
    }

    .neubrandenburg-hero__trust {
        min-height: 92px;
    }
}


/* =========================================================
   NEUBRANDENBURG HERO — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-hero {
        min-height: 0;
    }

    .neubrandenburg-hero__inner {
        min-height: 0;

        padding:
            62px
            30px
            54px;

        grid-template-columns: 1fr;
        grid-template-rows:
            auto
            auto
            auto;

        gap: 34px;
    }

    .neubrandenburg-hero__content {
        grid-column: 1;
        grid-row: 1;

        max-width: 880px;
    }

    .neubrandenburg-hero h1 {
        font-size: clamp(58px, 6.6vw, 76px);
    }

    .neubrandenburg-hero__lead {
        max-width: 790px;

        font-size: 18px;
    }

    .neubrandenburg-hero__visual {
        grid-column: 1;
        grid-row: 2;

        height: clamp(600px, 66vw, 760px);
    }

    .neubrandenburg-hero__image {
        right: 0;

        width: 100%;
    }

    .neubrandenburg-hero__request-card {
        right: 2%;

        width: 330px;
    }

    .neubrandenburg-hero__trust {
        grid-column: 1;
        grid-row: 3;

        margin-top: 0;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            18px
            0;
    }

    .neubrandenburg-hero-trust-item:nth-child(2)::after {
        display: none;
    }

    .neubrandenburg-hero-trust-item:nth-child(3) {
        padding-left: 0;
    }
}


/* =========================================================
   NEUBRANDENBURG HERO — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-hero__inner {
        padding:
            58px
            24px
            50px;
    }

    .neubrandenburg-hero h1 {
        font-size: clamp(50px, 7.8vw, 66px);
    }

    .neubrandenburg-hero__benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .neubrandenburg-hero-benefit:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
    }

    .neubrandenburg-hero__actions {
        align-items: stretch;
        flex-direction: column;

        max-width: 520px;
    }

    .neubrandenburg-hero__button,
    .neubrandenburg-hero__button--primary,
    .neubrandenburg-hero__button--secondary {
        width: 100%;
        min-width: 0;

        justify-content: space-between;
    }

    .neubrandenburg-hero__visual {
        height: clamp(520px, 73vw, 660px);
    }

    .neubrandenburg-hero__request-card {
        top: 4%;
        right: 0;

        width: 310px;
    }
}


/* =========================================================
   NEUBRANDENBURG HERO — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-hero::before,
    .neubrandenburg-hero::after,
    .neubrandenburg-hero__orbit {
        display: none;
    }

    .neubrandenburg-hero__inner {
        padding:
            42px
            18px
            42px;

        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .neubrandenburg-hero__location {
        min-height: 38px;
        margin-bottom: 22px;

        padding:
            7px
            13px;

        gap: 9px;
    }

    .neubrandenburg-hero__location span {
        width: 23px;
        height: 23px;
    }

    .neubrandenburg-hero__location strong {
        font-size: 11.5px;
    }

    .neubrandenburg-hero h1 {
        font-size: clamp(38px, 10.4vw, 46px);
        line-height: 1.045;
        letter-spacing: -0.052em;
    }

    .neubrandenburg-hero h1 br {
        display: none;
    }

    .neubrandenburg-hero__lead {
        margin-top: 23px;

        font-size: 16px;
        line-height: 1.53;
    }

    .neubrandenburg-hero__benefits {
        margin-top: 25px;

        display: flex;
        flex-direction: column;

        gap: 14px;
    }

    .neubrandenburg-hero-benefit,
    .neubrandenburg-hero-benefit:last-child {
        max-width: none;

        grid-column: auto;
    }

    .neubrandenburg-hero__actions {
        width: 100%;
        max-width: none;

        margin-top: 27px;

        gap: 12px;
    }

    .neubrandenburg-hero__button,
    .neubrandenburg-hero__button--primary,
    .neubrandenburg-hero__button--secondary {
        min-height: 59px;
        padding-inline: 18px;

        font-size: 13px;
    }

    .neubrandenburg-hero__visual {
        width: 100%;
        height: auto;

        margin-top: 18px;

        aspect-ratio: auto;
    }

    .neubrandenburg-hero__image {
        position: relative;
        right: auto;
        bottom: auto;

        width: 112%;
        height: auto;

        margin-left: -6%;

        object-position: center bottom;

        filter:
            drop-shadow(
                0 18px 20px rgba(35, 31, 23, 0.11)
            );
    }

    .neubrandenburg-hero__request-card {
        position: relative;
        top: auto;
        right: auto;

        width: 100%;
        margin-top: 22px;
        padding: 20px;

        border-radius: 20px;
    }

    .neubrandenburg-hero__request-card h2 {
        font-size: 16px;
    }

    .neubrandenburg-hero-request-item {
        grid-template-columns:
            46px
            minmax(0, 1fr);
    }

    .neubrandenburg-hero-request-item span {
        width: 46px;
    }

    .neubrandenburg-hero-request-item strong {
        font-size: 13px;
    }

    .neubrandenburg-hero__trust {
        width: 100%;
        min-height: 0;

        margin-top: 30px;
        padding: 4px 0 24px;

        display: flex;

        gap: 13px;

        overflow-x: auto;
        overflow-y: visible;

        border: 0;
        border-radius: 0;

        background: transparent;
        box-shadow: none;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .neubrandenburg-hero__trust::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-hero-trust-item,
    .neubrandenburg-hero-trust-item:first-child,
    .neubrandenburg-hero-trust-item:last-child,
    .neubrandenburg-hero-trust-item:nth-child(3) {
        width: 100%;
        min-height: 112px;

        padding: 16px;

        max-width: none;
        flex: 0 0 100%;

        border: 1px solid rgba(20, 20, 20, 0.06);
        border-radius: 16px;

        background: rgba(255, 255, 255, 0.98);

        box-shadow:
            0 10px 27px rgba(34, 31, 23, 0.06);

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .neubrandenburg-hero-trust-item::after {
        display: none;
    }

    .neubrandenburg-hero-trust-item strong {
        font-size: 14px;
    }

    .neubrandenburg-hero-trust-item small {
        font-size: 12px;
    }
}


/* =========================================================
   NEUBRANDENBURG HERO — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-hero__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-hero h1 {
        font-size: clamp(36px, 10vw, 40px);
    }

    .neubrandenburg-hero__location strong {
        font-size: 10.5px;
    }

    .neubrandenburg-hero__button {
        gap: 10px;

        font-size: 12px;
    }

    .neubrandenburg-hero__trust {
        width: 100%;
        padding-right: 0;
    }

    .neubrandenburg-hero-trust-item,
    .neubrandenburg-hero-trust-item:first-child,
    .neubrandenburg-hero-trust-item:last-child,
    .neubrandenburg-hero-trust-item:nth-child(3) {
        width: 100%;
        flex-basis: 100%;
    }
}


/* =========================================================
   NEUBRANDENBURG HERO — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-hero__button,
    .neubrandenburg-hero__button b {
        transition: none !important;
    }

    .neubrandenburg-hero__button:hover,
    .neubrandenburg-hero__button:focus-visible,
    .neubrandenburg-hero__button:hover b,
    .neubrandenburg-hero__button:focus-visible b {
        transform: none;
    }
}


/* =========================================================
   SCREEN 2 — REQUEST TYPES
   ========================================================= */

.neubrandenburg-request-types {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 16% 22%,
            rgba(255, 205, 78, 0.055),
            transparent 36%
        ),
        radial-gradient(
            circle at 84% 28%,
            rgba(255, 224, 150, 0.07),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.neubrandenburg-request-types__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.neubrandenburg-request-types__glow {
    position: absolute;

    border-radius: 50%;
}

.neubrandenburg-request-types__glow--left {
    top: 10%;
    left: -20%;

    width: clamp(480px, 38vw, 900px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 32, 0.07),
            transparent 70%
        );
}

.neubrandenburg-request-types__glow--right {
    top: -18%;
    right: -14%;

    width: clamp(620px, 48vw, 1100px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 218, 135, 0.08),
            transparent 70%
        );
}

.neubrandenburg-request-types__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(42px, 3.1vw, 62px)
        var(--page-space)
        clamp(32px, 2.45vw, 49px);

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   REQUEST TYPES HEADER
   ========================================================= */

.neubrandenburg-request-types__header {
    width: min(100%, 950px);

    margin: 0 auto;

    text-align: center;
}

.neubrandenburg-request-types__kicker {
    width: fit-content;

    min-height: clamp(34px, 2.25vw, 45px);
    margin:
        0
        auto
        clamp(15px, 1.15vw, 23px);

    padding:
        7px
        clamp(14px, 1.05vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(239, 170, 0, 0.15);
    border-radius: 999px;

    background: rgba(255, 252, 244, 0.98);
    color: #242424;

    font-size: clamp(10px, 0.68vw, 13px);
    line-height: 1;
    font-weight: 690;
    letter-spacing: -0.005em;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-request-types__kicker span {
    width: clamp(18px, 1.25vw, 24px);
    height: clamp(18px, 1.25vw, 24px);

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neubrandenburg-request-types__kicker svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #ff9f00;
    stroke-width: 1.95;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-request-types__header h2 {
    margin: 0;

    color: #111214;

    font-size: clamp(42px, 3.05vw, 62px);
    line-height: 1.04;
    font-weight: 670;
    letter-spacing: -0.054em;
}

.neubrandenburg-request-types__header h2 span {
    color: #ff7900;
}

.neubrandenburg-request-types__header p {
    width: min(100%, 870px);

    margin:
        clamp(16px, 1.15vw, 23px)
        auto
        0;

    color: #575757;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1.55;
    letter-spacing: -0.005em;
}


/* =========================================================
   REQUEST TYPES CARDS
   ========================================================= */

.neubrandenburg-request-types__cards-shell {
    width: 100%;

    margin-top: clamp(30px, 2.25vw, 45px);
}

.neubrandenburg-request-types__cards {
    width: 100%;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(15px, 1.1vw, 22px);
}

.neubrandenburg-request-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: clamp(430px, 31vw, 610px);

    overflow: hidden;

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(18px, 1.25vw, 26px);

    background:
        radial-gradient(
            circle at 76% 18%,
            rgba(255, 213, 103, 0.08),
            transparent 50%
        ),
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 18px 46px rgba(35, 31, 23, 0.065),
        0 4px 10px rgba(35, 31, 23, 0.02);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.neubrandenburg-request-card:hover {
    transform: translateY(-4px);

    border-color: rgba(239, 170, 0, 0.18);

    box-shadow:
        0 24px 55px rgba(35, 31, 23, 0.095),
        0 5px 13px rgba(35, 31, 23, 0.03);
}

.neubrandenburg-request-card__icon {
    position: absolute;
    top: clamp(20px, 1.4vw, 28px);
    left: clamp(20px, 1.4vw, 28px);
    z-index: 6;

    width: clamp(50px, 3.5vw, 70px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.12);
    border-radius: 50%;

    background: #fff8e8;

    box-shadow:
        0 9px 22px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-request-card__icon svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: #ff9f00;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-request-card__visual {
    position: relative;
    z-index: 2;

    width: 100%;
    height: clamp(205px, 15.5vw, 310px);

    overflow: hidden;
}

.neubrandenburg-request-card__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 16px 17px rgba(35, 31, 23, 0.12)
        );

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.neubrandenburg-request-card:hover
.neubrandenburg-request-card__visual img {
    transform:
        translateY(-3px)
        scale(1.018);
}

.neubrandenburg-request-card--private
.neubrandenburg-request-card__visual img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
}

.neubrandenburg-request-card--business
.neubrandenburg-request-card__visual img {
    width: 106%;
    max-width: none;
    margin-left: -3%;
}

.neubrandenburg-request-card--file
.neubrandenburg-request-card__visual img {
    width: 108%;
    max-width: none;
    margin-left: -4%;
}

.neubrandenburg-request-card--idea
.neubrandenburg-request-card__visual img {
    width: 109%;
    max-width: none;
    margin-left: -5%;
}

.neubrandenburg-request-card__copy {
    position: relative;
    z-index: 3;

    padding:
        clamp(14px, 1.05vw, 21px)
        clamp(21px, 1.5vw, 30px)
        0;
}

.neubrandenburg-request-card__copy h3 {
    margin: 0;

    color: #141414;

    font-size: clamp(18px, 1.28vw, 26px);
    line-height: 1.12;
    font-weight: 720;
    letter-spacing: -0.038em;
}

.neubrandenburg-request-card__copy p {
    margin:
        clamp(14px, 1vw, 20px)
        0
        0;

    color: #555555;

    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1.5;
    letter-spacing: -0.006em;
}

.neubrandenburg-request-card__bottom {
    position: absolute;
    right: clamp(21px, 1.5vw, 30px);
    bottom: clamp(18px, 1.3vw, 26px);
    left: clamp(21px, 1.5vw, 30px);

    min-height: clamp(32px, 2.25vw, 45px);
    padding-top: clamp(14px, 1vw, 20px);

    display: flex;
    align-items: center;

    gap: clamp(9px, 0.7vw, 14px);

    border-top: 1px solid rgba(20, 20, 20, 0.075);
}

.neubrandenburg-request-card__bottom span {
    width: clamp(18px, 1.25vw, 24px);
    height: clamp(18px, 1.25vw, 24px);

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    position: relative;
}

.neubrandenburg-request-card__bottom span::before {
    content: "";

    position: absolute;
    top: 48%;
    left: 50%;

    width: 46%;
    height: 25%;

    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}

.neubrandenburg-request-card__bottom strong {
    color: #343434;

    font-size: clamp(10.5px, 0.72vw, 14px);
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================================
   REQUEST TYPES NEXT STRIP
   ========================================================= */

.neubrandenburg-request-types__next {
    width: min(100%, 1120px);
    min-height: clamp(48px, 3.4vw, 68px);

    margin-top: clamp(26px, 1.9vw, 38px);
    padding:
        8px
        clamp(18px, 1.35vw, 27px);

    display: grid;
    grid-template-columns:
        clamp(32px, 2.3vw, 45px)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(12px, 0.95vw, 19px);

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 250, 238, 0.96);

    box-shadow:
        0 10px 28px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-request-types__next > span {
    width: clamp(32px, 2.3vw, 45px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #101112;
    color: #ffffff;
}

.neubrandenburg-request-types__next svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-request-types__next p {
    margin: 0;

    color: #454545;

    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1.35;
    font-weight: 560;
    text-align: center;
}

.neubrandenburg-request-types__next strong {
    color: #ff8a00;

    font-weight: 760;
}

.neubrandenburg-request-types__next b {
    color: #ff9f00;

    font-size: clamp(21px, 1.5vw, 30px);
    line-height: 1;
}


/* =========================================================
   REQUEST TYPES — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-request-types__inner {
        padding:
            34px
            42px
            34px;
    }

    .neubrandenburg-request-types__header h2 {
        font-size: clamp(40px, 3vw, 48px);
    }

    .neubrandenburg-request-types__header p {
        font-size: 14px;
    }

    .neubrandenburg-request-card {
        min-height: 415px;
    }

    .neubrandenburg-request-card__visual {
        height: 200px;
    }

    .neubrandenburg-request-card__copy h3 {
        font-size: 20px;
    }

    .neubrandenburg-request-card__copy p {
        font-size: 12px;
    }
}


/* =========================================================
   REQUEST TYPES — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-request-types {
        min-height: 0;
    }

    .neubrandenburg-request-types__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .neubrandenburg-request-types__header {
        max-width: 850px;
    }

    .neubrandenburg-request-types__header h2 {
        font-size: clamp(48px, 5.8vw, 66px);
    }

    .neubrandenburg-request-types__header p {
        font-size: 17px;
    }

    .neubrandenburg-request-types__cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .neubrandenburg-request-card {
        min-height: 555px;
    }

    .neubrandenburg-request-card__visual {
        height: 280px;
    }

    .neubrandenburg-request-card__copy h3 {
        font-size: 25px;
    }

    .neubrandenburg-request-card__copy p {
        font-size: 15px;
    }

    .neubrandenburg-request-types__next {
        max-width: 820px;
    }
}


/* =========================================================
   REQUEST TYPES — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-request-types__inner {
        padding:
            70px
            24px
            54px;
    }

    .neubrandenburg-request-types__header h2 {
        font-size: clamp(43px, 6.9vw, 58px);
    }

    .neubrandenburg-request-card {
        min-height: 525px;
    }

    .neubrandenburg-request-card__visual {
        height: 245px;
    }
}


/* =========================================================
   REQUEST TYPES — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-request-types__glow {
        display: none;
    }

    .neubrandenburg-request-types__inner {
        padding:
            60px
            18px
            48px;

        align-items: stretch;
    }

    .neubrandenburg-request-types__header {
        text-align: left;
    }

    .neubrandenburg-request-types__kicker {
        margin-left: 0;

        font-size: 9.5px;
        line-height: 1.25;
        white-space: normal;
    }

    .neubrandenburg-request-types__header h2 {
        font-size: clamp(37px, 10vw, 45px);
        line-height: 1.045;
    }

    .neubrandenburg-request-types__header h2 br {
        display: none;
    }

    .neubrandenburg-request-types__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .neubrandenburg-request-types__cards-shell {
        width: calc(100% + 18px);

        margin-top: 32px;
    }

    .neubrandenburg-request-types__cards {
        width: 100%;

        padding:
            4px
            54px
            25px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .neubrandenburg-request-types__cards::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-request-card {
        width: calc(100vw - 70px);
        min-height: 520px;

        flex: 0 0 calc(100vw - 70px);

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .neubrandenburg-request-card:hover {
        transform: none;
    }

    .neubrandenburg-request-card__icon {
        top: 18px;
        left: 18px;

        width: 54px;
    }

    .neubrandenburg-request-card__visual {
        height: 250px;
    }

    .neubrandenburg-request-card__copy {
        padding:
            16px
            20px
            0;
    }

    .neubrandenburg-request-card__copy h3 {
        font-size: 22px;
    }

    .neubrandenburg-request-card__copy p {
        font-size: 14px;
    }

    .neubrandenburg-request-card__bottom {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .neubrandenburg-request-card__bottom strong {
        font-size: 12px;
    }

    .neubrandenburg-request-types__next {
        width: 100%;
        min-height: 0;
        margin-top: 22px;
        padding: 16px;

        grid-template-columns:
            38px
            minmax(0, 1fr);

        border-radius: 18px;
    }

    .neubrandenburg-request-types__next > span {
        width: 38px;
    }

    .neubrandenburg-request-types__next p {
        font-size: 13px;
        text-align: left;
    }

    .neubrandenburg-request-types__next b {
        display: none;
    }
}


/* =========================================================
   REQUEST TYPES — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-request-types__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-request-types__header h2 {
        font-size: clamp(35px, 9.8vw, 40px);
    }

    .neubrandenburg-request-types__cards-shell {
        width: calc(100% + 16px);
    }

    .neubrandenburg-request-types__cards {
        padding-right: 48px;
    }

    .neubrandenburg-request-card {
        width: calc(100vw - 64px);

        flex-basis: calc(100vw - 64px);
    }
}


/* =========================================================
   REQUEST TYPES — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-request-card,
    .neubrandenburg-request-card__visual img {
        transition: none !important;
    }

    .neubrandenburg-request-card:hover,
    .neubrandenburg-request-card:hover
    .neubrandenburg-request-card__visual img {
        transform: none;
    }
}


/* =========================================================
   SCREEN 3 — REQUEST ENTRY POINTS
   ========================================================= */

.neubrandenburg-entry-points {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 16% 22%,
            rgba(255, 204, 77, 0.055),
            transparent 36%
        ),
        radial-gradient(
            circle at 84% 28%,
            rgba(255, 224, 150, 0.07),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.neubrandenburg-entry-points__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.neubrandenburg-entry-points__glow {
    position: absolute;

    border-radius: 50%;
}

.neubrandenburg-entry-points__glow--left {
    top: 14%;
    left: -20%;

    width: clamp(470px, 37vw, 900px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 32, 0.065),
            transparent 70%
        );
}

.neubrandenburg-entry-points__glow--right {
    top: -20%;
    right: -14%;

    width: clamp(620px, 48vw, 1100px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 218, 135, 0.08),
            transparent 70%
        );
}

.neubrandenburg-entry-points__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(30px, 2.35vw, 47px)
        var(--page-space)
        clamp(27px, 2vw, 40px);

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   REQUEST ENTRY POINTS HEADER
   ========================================================= */

.neubrandenburg-entry-points__header {
    width: min(100%, 970px);

    margin: 0 auto;

    text-align: center;
}

.neubrandenburg-entry-points__kicker {
    width: fit-content;

    min-height: clamp(33px, 2.2vw, 44px);
    margin:
        0
        auto
        clamp(14px, 1vw, 20px);

    padding:
        7px
        clamp(14px, 1.05vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 252, 244, 0.98);
    color: #242424;

    font-size: clamp(10px, 0.68vw, 13px);
    line-height: 1;
    font-weight: 690;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-entry-points__kicker span {
    width: clamp(18px, 1.25vw, 24px);
    height: clamp(18px, 1.25vw, 24px);

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neubrandenburg-entry-points__kicker svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #ff8a00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-entry-points__header h2 {
    margin: 0;

    color: #111214;

    font-size: clamp(42px, 3.05vw, 62px);
    line-height: 1.04;
    font-weight: 670;
    letter-spacing: -0.055em;
}

.neubrandenburg-entry-points__header h2 span {
    color: #ff7900;
}

.neubrandenburg-entry-points__header p {
    width: min(100%, 760px);

    margin:
        clamp(15px, 1.05vw, 21px)
        auto
        0;

    color: #5d5d5d;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1.5;
    letter-spacing: -0.005em;
}


/* =========================================================
   REQUEST ENTRY POINTS CARDS
   ========================================================= */

.neubrandenburg-entry-points__cards-shell {
    width: 100%;

    margin-top: clamp(25px, 1.85vw, 37px);
}

.neubrandenburg-entry-points__cards {
    width: 100%;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(15px, 1.1vw, 22px);
}

.neubrandenburg-entry-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: clamp(410px, 28.2vw, 565px);

    overflow: hidden;

    padding:
        clamp(18px, 1.3vw, 26px)
        clamp(18px, 1.3vw, 26px)
        clamp(18px, 1.3vw, 26px);

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(18px, 1.25vw, 26px);

    background:
        radial-gradient(
            circle at 78% 17%,
            rgba(255, 213, 103, 0.075),
            transparent 50%
        ),
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 18px 46px rgba(35, 31, 23, 0.06),
        0 4px 10px rgba(35, 31, 23, 0.02);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.neubrandenburg-entry-card:hover {
    transform: translateY(-4px);

    border-color: rgba(239, 170, 0, 0.18);

    box-shadow:
        0 24px 55px rgba(35, 31, 23, 0.095),
        0 5px 13px rgba(35, 31, 23, 0.03);
}

.neubrandenburg-entry-card__number {
    position: absolute;
    top: clamp(16px, 1.15vw, 23px);
    left: clamp(16px, 1.15vw, 23px);
    z-index: 5;

    width: clamp(43px, 3vw, 60px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff6e6;
    color: #ff8a00;

    font-size: clamp(19px, 1.35vw, 27px);
    line-height: 1;
    font-weight: 780;

    box-shadow:
        0 8px 20px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-entry-card__visual {
    position: relative;
    z-index: 2;

    width: 100%;
    height: clamp(185px, 13.5vw, 270px);

    flex: 0 0 auto;

    overflow: visible;
}

.neubrandenburg-entry-card__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 15px 16px rgba(35, 31, 23, 0.12)
        );

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.neubrandenburg-entry-card:hover
.neubrandenburg-entry-card__visual img {
    transform:
        translateY(-3px)
        scale(1.018);
}

.neubrandenburg-entry-card--file
.neubrandenburg-entry-card__visual img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
}

.neubrandenburg-entry-card--spare
.neubrandenburg-entry-card__visual img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
}

.neubrandenburg-entry-card--prototype
.neubrandenburg-entry-card__visual img {
    width: 108%;
    max-width: none;
    margin-left: -4%;
}

.neubrandenburg-entry-card--series
.neubrandenburg-entry-card__visual img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
}

.neubrandenburg-entry-card__copy {
    position: relative;
    z-index: 3;

    margin-top: clamp(9px, 0.7vw, 14px);
}

.neubrandenburg-entry-card__copy h3 {
    margin: 0;

    color: #141414;

    font-size: clamp(17px, 1.18vw, 24px);
    line-height: 1.15;
    font-weight: 720;
    letter-spacing: -0.038em;
}

.neubrandenburg-entry-card__copy p {
    margin:
        clamp(13px, 0.92vw, 18px)
        0
        0;

    color: #555555;

    font-size: clamp(11.5px, 0.78vw, 15px);
    line-height: 1.48;
    letter-spacing: -0.006em;
}

.neubrandenburg-entry-card__button {
    width: 100%;
    min-height: clamp(42px, 2.85vw, 57px);
    margin-top: auto;
    padding:
        0
        clamp(15px, 1.05vw, 21px);

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

    gap: 14px;

    border-radius: clamp(10px, 0.75vw, 15px);

    background: #fff8ec;
    color: #262626;

    font-size: clamp(10.5px, 0.72vw, 14px);
    line-height: 1;
    font-weight: 720;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.neubrandenburg-entry-card__button b {
    color: #ff8a00;

    font-size: clamp(18px, 1.25vw, 25px);
    line-height: 1;

    transition: transform var(--transition);
}

.neubrandenburg-entry-card__button:hover,
.neubrandenburg-entry-card__button:focus-visible {
    background: #ffedc8;

    outline: none;
}

.neubrandenburg-entry-card__button:hover b,
.neubrandenburg-entry-card__button:focus-visible b {
    transform: translateX(4px);
}


/* =========================================================
   REQUEST ENTRY POINTS NOTE
   ========================================================= */

.neubrandenburg-entry-points__note {
    position: relative;

    width: min(100%, 1160px);
    min-height: clamp(72px, 5.7vw, 114px);

    margin-top: clamp(20px, 1.45vw, 29px);
    padding:
        clamp(14px, 1vw, 20px)
        clamp(24px, 1.75vw, 35px);

    display: grid;
    grid-template-columns:
        clamp(48px, 3.3vw, 65px)
        minmax(0, 1fr)
        clamp(145px, 12vw, 240px);

    align-items: center;

    gap: clamp(17px, 1.35vw, 27px);

    overflow: hidden;

    border: 1px solid rgba(239, 170, 0, 0.13);
    border-radius: clamp(16px, 1.1vw, 22px);

    background:
        linear-gradient(
            90deg,
            rgba(255, 250, 238, 0.98),
            rgba(255, 255, 255, 0.96)
        );

    box-shadow:
        0 12px 30px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-entry-points__note-icon {
    width: clamp(48px, 3.3vw, 65px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.13);
    border-radius: 50%;

    background: #fff7e5;
    color: #ff9a00;
}

.neubrandenburg-entry-points__note-icon svg {
    width: 54%;
    height: 54%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.95;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-entry-points__note-copy strong,
.neubrandenburg-entry-points__note-copy span {
    display: block;
}

.neubrandenburg-entry-points__note-copy strong {
    color: #242424;

    font-size: clamp(13px, 0.9vw, 18px);
    line-height: 1.3;
    font-weight: 720;
}

.neubrandenburg-entry-points__note-copy span {
    margin-top: 6px;

    color: #616161;

    font-size: clamp(11px, 0.74vw, 14px);
    line-height: 1.42;
}

.neubrandenburg-entry-points__note img {
    width: 100%;
    height: clamp(70px, 5.1vw, 102px);

    object-fit: contain;
    object-position: right center;

    filter:
        drop-shadow(
            0 13px 14px rgba(35, 31, 23, 0.11)
        );
}


/* =========================================================
   REQUEST ENTRY POINTS NEXT STRIP
   ========================================================= */

.neubrandenburg-entry-points__next {
    width: min(100%, 1160px);
    min-height: clamp(48px, 3.45vw, 69px);

    margin-top: clamp(17px, 1.25vw, 25px);
    padding:
        8px
        clamp(18px, 1.35vw, 27px);

    display: grid;
    grid-template-columns:
        clamp(34px, 2.35vw, 47px)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(12px, 0.95vw, 19px);

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 250, 238, 0.96);

    box-shadow:
        0 10px 28px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-entry-points__next > span {
    width: clamp(34px, 2.35vw, 47px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #101112;
    color: #ffffff;
}

.neubrandenburg-entry-points__next svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-entry-points__next p {
    margin: 0;

    color: #454545;

    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1.35;
    font-weight: 560;
    text-align: center;
}

.neubrandenburg-entry-points__next strong {
    color: #ff8a00;

    font-weight: 760;
}

.neubrandenburg-entry-points__next b {
    color: #ff9f00;

    font-size: clamp(21px, 1.5vw, 30px);
    line-height: 1;
}


/* =========================================================
   REQUEST ENTRY POINTS — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-entry-points__inner {
        padding:
            28px
            42px
            28px;
    }

    .neubrandenburg-entry-points__header h2 {
        font-size: clamp(40px, 3vw, 48px);
    }

    .neubrandenburg-entry-points__header p {
        font-size: 14px;
    }

    .neubrandenburg-entry-card {
        min-height: 390px;
    }

    .neubrandenburg-entry-card__visual {
        height: 176px;
    }

    .neubrandenburg-entry-card__copy h3 {
        font-size: 18px;
    }

    .neubrandenburg-entry-card__copy p {
        font-size: 11.5px;
    }

    .neubrandenburg-entry-card__button {
        font-size: 11px;
    }
}


/* =========================================================
   REQUEST ENTRY POINTS — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-entry-points {
        min-height: 0;
    }

    .neubrandenburg-entry-points__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .neubrandenburg-entry-points__header {
        max-width: 850px;
    }

    .neubrandenburg-entry-points__header h2 {
        font-size: clamp(48px, 5.8vw, 66px);
    }

    .neubrandenburg-entry-points__header p {
        font-size: 17px;
    }

    .neubrandenburg-entry-points__cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .neubrandenburg-entry-card {
        min-height: 520px;
    }

    .neubrandenburg-entry-card__visual {
        height: 245px;
    }

    .neubrandenburg-entry-card__copy h3 {
        font-size: 24px;
    }

    .neubrandenburg-entry-card__copy p {
        font-size: 15px;
    }

    .neubrandenburg-entry-points__note,
    .neubrandenburg-entry-points__next {
        max-width: 850px;
    }
}


/* =========================================================
   REQUEST ENTRY POINTS — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-entry-points__inner {
        padding:
            70px
            24px
            54px;
    }

    .neubrandenburg-entry-points__header h2 {
        font-size: clamp(43px, 6.9vw, 58px);
    }

    .neubrandenburg-entry-card {
        min-height: 505px;
    }

    .neubrandenburg-entry-card__visual {
        height: 225px;
    }

    .neubrandenburg-entry-points__note {
        grid-template-columns:
            56px
            minmax(0, 1fr);

        padding: 20px;
    }

    .neubrandenburg-entry-points__note img {
        display: none;
    }
}


/* =========================================================
   REQUEST ENTRY POINTS — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-entry-points__glow {
        display: none;
    }

    .neubrandenburg-entry-points__inner {
        padding:
            60px
            18px
            48px;

        align-items: stretch;
    }

    .neubrandenburg-entry-points__header {
        text-align: left;
    }

    .neubrandenburg-entry-points__kicker {
        margin-left: 0;

        font-size: 9.5px;
        line-height: 1.25;
        white-space: normal;
    }

    .neubrandenburg-entry-points__header h2 {
        font-size: clamp(37px, 10vw, 45px);
        line-height: 1.045;
    }

    .neubrandenburg-entry-points__header h2 br,
    .neubrandenburg-entry-points__header p br {
        display: none;
    }

    .neubrandenburg-entry-points__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .neubrandenburg-entry-points__cards-shell {
        width: calc(100% + 18px);

        margin-top: 32px;
    }

    .neubrandenburg-entry-points__cards {
        width: 100%;

        padding:
            4px
            54px
            25px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .neubrandenburg-entry-points__cards::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-entry-card {
        width: calc(100vw - 70px);
        min-height: 510px;

        flex: 0 0 calc(100vw - 70px);

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .neubrandenburg-entry-card:hover {
        transform: none;
    }

    .neubrandenburg-entry-card__number {
        top: 17px;
        left: 17px;

        width: 48px;
    }

    .neubrandenburg-entry-card__visual {
        height: 230px;
    }

    .neubrandenburg-entry-card__copy h3 {
        font-size: 22px;
    }

    .neubrandenburg-entry-card__copy p {
        font-size: 14px;
    }

    .neubrandenburg-entry-card__button {
        min-height: 48px;

        font-size: 12px;
    }

    .neubrandenburg-entry-points__note {
        width: 100%;
        min-height: 0;

        margin-top: 20px;

        grid-template-columns:
            48px
            minmax(0, 1fr);

        align-items: flex-start;

        border-radius: 18px;
    }

    .neubrandenburg-entry-points__note-copy strong {
        font-size: 14px;
    }

    .neubrandenburg-entry-points__note-copy span {
        font-size: 12px;
    }

    .neubrandenburg-entry-points__next {
        width: 100%;
        min-height: 0;
        margin-top: 16px;
        padding: 16px;

        grid-template-columns:
            38px
            minmax(0, 1fr);

        border-radius: 18px;
    }

    .neubrandenburg-entry-points__next > span {
        width: 38px;
    }

    .neubrandenburg-entry-points__next p {
        font-size: 13px;
        text-align: left;
    }

    .neubrandenburg-entry-points__next b {
        display: none;
    }
}


/* =========================================================
   REQUEST ENTRY POINTS — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-entry-points__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-entry-points__header h2 {
        font-size: clamp(35px, 9.8vw, 40px);
    }

    .neubrandenburg-entry-points__cards-shell {
        width: calc(100% + 16px);
    }

    .neubrandenburg-entry-points__cards {
        padding-right: 48px;
    }

    .neubrandenburg-entry-card {
        width: calc(100vw - 64px);

        flex-basis: calc(100vw - 64px);
    }
}


/* =========================================================
   REQUEST ENTRY POINTS — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-entry-card,
    .neubrandenburg-entry-card__visual img,
    .neubrandenburg-entry-card__button,
    .neubrandenburg-entry-card__button b {
        transition: none !important;
    }

    .neubrandenburg-entry-card:hover,
    .neubrandenburg-entry-card:hover
    .neubrandenburg-entry-card__visual img,
    .neubrandenburg-entry-card__button:hover b,
    .neubrandenburg-entry-card__button:focus-visible b {
        transform: none;
    }
}


/* =========================================================
   SCREEN 4 — PROJECT PREPARATION
   ========================================================= */

.neubrandenburg-preparation {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(255, 204, 77, 0.055),
            transparent 38%
        ),
        radial-gradient(
            circle at 83% 19%,
            rgba(255, 225, 152, 0.075),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.neubrandenburg-preparation__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.neubrandenburg-preparation__glow {
    position: absolute;

    border-radius: 50%;
}

.neubrandenburg-preparation__glow--left {
    top: 14%;
    left: -20%;

    width: clamp(470px, 37vw, 900px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 32, 0.06),
            transparent 70%
        );
}

.neubrandenburg-preparation__glow--right {
    top: -18%;
    right: -15%;

    width: clamp(620px, 48vw, 1100px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 218, 135, 0.085),
            transparent 70%
        );
}

.neubrandenburg-preparation__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(34px, 2.65vw, 53px)
        var(--page-space)
        clamp(28px, 2.05vw, 41px);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   PROJECT PREPARATION TOP
   ========================================================= */

.neubrandenburg-preparation__top {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(520px, 51fr)
        minmax(0, 49fr);

    align-items: center;

    gap: clamp(30px, 2.8vw, 56px);
}

.neubrandenburg-preparation__header {
    min-width: 0;
}

.neubrandenburg-preparation__kicker {
    width: fit-content;

    min-height: clamp(34px, 2.3vw, 46px);
    margin-bottom: clamp(18px, 1.35vw, 27px);
    padding:
        7px
        clamp(14px, 1.05vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 252, 244, 0.98);
    color: #242424;

    font-size: clamp(10px, 0.68vw, 13px);
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-preparation__kicker span {
    width: clamp(18px, 1.25vw, 24px);
    height: clamp(18px, 1.25vw, 24px);

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neubrandenburg-preparation__kicker svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #ff8a00;
    stroke-width: 1.95;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-preparation__header h2 {
    max-width: 900px;
    margin: 0;

    color: #111214;

    font-size: clamp(45px, 3.35vw, 68px);
    line-height: 1.04;
    font-weight: 670;
    letter-spacing: -0.058em;
}

.neubrandenburg-preparation__header h2 span {
    color: #ff7900;
}

.neubrandenburg-preparation__header p {
    max-width: 830px;
    margin:
        clamp(20px, 1.45vw, 29px)
        0
        0;

    color: #555555;

    font-size: clamp(13px, 0.9vw, 17px);
    line-height: 1.55;
    letter-spacing: -0.005em;
}

.neubrandenburg-preparation__visual {
    position: relative;

    width: 100%;
    height: clamp(270px, 21vw, 420px);
}

.neubrandenburg-preparation__visual > img {
    position: absolute;
    right: -2%;
    bottom: -3%;
    z-index: 2;

    width: 96%;
    height: 96%;

    object-fit: contain;
    object-position: right bottom;

    filter:
        drop-shadow(
            0 20px 20px rgba(35, 31, 23, 0.11)
        );
}

.neubrandenburg-preparation__path {
    position: absolute;
    top: 8%;
    right: 3%;
    z-index: 1;

    width: 62%;
    height: 50%;

    border-top: 1.5px dashed rgba(239, 170, 0, 0.35);
    border-radius: 50%;

    transform: rotate(8deg);
}

.neubrandenburg-preparation__floating-icons {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;

    width: 62%;
    height: 54%;
}

.neubrandenburg-preparation__floating-icons span {
    position: absolute;

    width: clamp(42px, 3.1vw, 62px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.13);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);
    color: #252525;

    box-shadow:
        0 10px 25px rgba(35, 31, 23, 0.055);
}

.neubrandenburg-preparation__floating-icons span:nth-child(1) {
    top: 5%;
    left: 0;
}

.neubrandenburg-preparation__floating-icons span:nth-child(2) {
    top: 11%;
    left: 34%;
}

.neubrandenburg-preparation__floating-icons span:nth-child(3) {
    top: 38%;
    right: 11%;
}

.neubrandenburg-preparation__floating-icons span:nth-child(4) {
    right: 0;
    bottom: -3%;
}

.neubrandenburg-preparation__floating-icons svg {
    width: 48%;
    height: 48%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PROJECT PREPARATION CARDS
   ========================================================= */

.neubrandenburg-preparation__cards {
    width: 100%;

    margin-top: clamp(25px, 1.9vw, 38px);

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: clamp(15px, 1.1vw, 22px);
}

.neubrandenburg-preparation-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: clamp(360px, 23.4vw, 468px);

    padding: clamp(20px, 1.45vw, 29px);

    display: grid;
    grid-template-columns:
        minmax(210px, 0.95fr)
        minmax(0, 1.05fr);

    align-items: stretch;

    overflow: hidden;

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(17px, 1.15vw, 23px);

    background:
        radial-gradient(
            circle at 22% 62%,
            rgba(255, 213, 103, 0.075),
            transparent 50%
        ),
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 17px 42px rgba(35, 31, 23, 0.06),
        0 4px 10px rgba(35, 31, 23, 0.02);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.neubrandenburg-preparation-card:hover {
    transform: translateY(-4px);

    border-color: rgba(239, 170, 0, 0.18);

    box-shadow:
        0 23px 52px rgba(35, 31, 23, 0.09),
        0 5px 12px rgba(35, 31, 23, 0.03);
}

.neubrandenburg-preparation-card__icon {
    position: absolute;
    top: clamp(18px, 1.25vw, 25px);
    left: clamp(18px, 1.25vw, 25px);
    z-index: 6;

    width: clamp(50px, 3.4vw, 68px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(239, 170, 0, 0.13);
    border-radius: 50%;

    background: #fff7e5;
    color: #ff8a00;

    box-shadow:
        0 9px 22px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-preparation-card__icon svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-preparation-card__visual {
    position: relative;
    z-index: 2;

    min-width: 0;
    height: 100%;

    align-self: stretch;
}

.neubrandenburg-preparation-card__visual img {
    position: absolute;
    left: -18%;
    bottom: -5%;

    width: 136%;
    height: 96%;

    object-fit: contain;
    object-position: left bottom;

    filter:
        drop-shadow(
            0 17px 18px rgba(35, 31, 23, 0.13)
        );

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.neubrandenburg-preparation-card:hover
.neubrandenburg-preparation-card__visual img {
    transform:
        translateY(-3px)
        scale(1.018);
}

.neubrandenburg-preparation-card--sketch
.neubrandenburg-preparation-card__visual img {
    left: -13%;

    width: 128%;
    height: 96%;
}

.neubrandenburg-preparation-card--idea
.neubrandenburg-preparation-card__visual img {
    left: -10%;

    width: 122%;
    height: 96%;
}

.neubrandenburg-preparation-card__copy {
    position: relative;
    z-index: 3;

    min-width: 0;

    display: flex;
    flex-direction: column;
}

.neubrandenburg-preparation-card__copy h3 {
    margin: 0;

    color: #151515;

    font-size: clamp(18px, 1.18vw, 24px);
    line-height: 1.2;
    font-weight: 730;
    letter-spacing: -0.034em;
}

.neubrandenburg-preparation-card__copy p {
    margin:
        clamp(15px, 1vw, 20px)
        0
        0;

    color: #555555;

    font-size: clamp(12.5px, 0.84vw, 16px);
    line-height: 1.52;
    letter-spacing: -0.004em;
}

.neubrandenburg-preparation-card__copy a {
    width: fit-content;
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #ff7900;

    font-size: clamp(12px, 0.78vw, 15px);
    line-height: 1.15;
    font-weight: 740;
}

.neubrandenburg-preparation-card__copy a b {
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: 1;

    transition: transform var(--transition);
}

.neubrandenburg-preparation-card__copy a:hover,
.neubrandenburg-preparation-card__copy a:focus-visible {
    outline: none;
}

.neubrandenburg-preparation-card__copy a:hover b,
.neubrandenburg-preparation-card__copy a:focus-visible b {
    transform: translateX(4px);
}


/* =========================================================
   PROJECT PREPARATION NOTICE
   ========================================================= */

.neubrandenburg-preparation__notice {
    position: relative;

    width: min(100%, 1310px);
    min-height: clamp(76px, 5.8vw, 116px);

    margin:
        clamp(20px, 1.5vw, 30px)
        auto
        0;

    padding:
        clamp(14px, 1vw, 20px)
        clamp(26px, 1.9vw, 38px);

    display: grid;
    grid-template-columns:
        clamp(58px, 4vw, 80px)
        minmax(0, 1fr)
        clamp(180px, 14vw, 280px);

    align-items: center;

    gap: clamp(18px, 1.4vw, 28px);

    overflow: hidden;

    border: 1px solid rgba(239, 170, 0, 0.13);
    border-radius: clamp(17px, 1.15vw, 23px);

    background:
        linear-gradient(
            90deg,
            rgba(255, 250, 238, 0.98),
            rgba(255, 255, 255, 0.96)
        );

    box-shadow:
        0 12px 30px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-preparation__notice-icon {
    width: clamp(58px, 4vw, 80px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff8a00;
}

.neubrandenburg-preparation__notice-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-preparation__notice-copy strong,
.neubrandenburg-preparation__notice-copy span {
    display: block;
}

.neubrandenburg-preparation__notice-copy strong {
    color: #242424;

    font-size: clamp(15px, 1vw, 20px);
    line-height: 1.28;
    font-weight: 730;
}

.neubrandenburg-preparation__notice-copy span {
    margin-top: 7px;

    color: #616161;

    font-size: clamp(12px, 0.8vw, 15.5px);
    line-height: 1.46;
}

.neubrandenburg-preparation__notice img {
    width: 100%;
    height: clamp(72px, 5.2vw, 104px);

    object-fit: contain;
    object-position: right center;

    filter:
        drop-shadow(
            0 13px 14px rgba(35, 31, 23, 0.09)
        );
}


/* =========================================================
   PROJECT PREPARATION NEXT STRIP
   ========================================================= */

.neubrandenburg-preparation__next {
    width: min(100%, 1180px);
    min-height: clamp(48px, 3.45vw, 69px);

    margin:
        clamp(17px, 1.25vw, 25px)
        auto
        0;

    padding:
        8px
        clamp(18px, 1.35vw, 27px);

    display: grid;
    grid-template-columns:
        clamp(34px, 2.35vw, 47px)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(12px, 0.95vw, 19px);

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 250, 238, 0.96);

    box-shadow:
        0 10px 28px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-preparation__next > span {
    width: clamp(34px, 2.35vw, 47px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #101112;
    color: #ffffff;
}

.neubrandenburg-preparation__next svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-preparation__next p {
    margin: 0;

    color: #454545;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1.36;
    font-weight: 580;
    text-align: center;
}

.neubrandenburg-preparation__next strong {
    color: #ff8a00;

    font-weight: 760;
}

.neubrandenburg-preparation__next b {
    color: #ff9f00;

    font-size: clamp(21px, 1.5vw, 30px);
    line-height: 1;
}


/* =========================================================
   PROJECT PREPARATION — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-preparation__inner {
        padding:
            30px
            42px
            28px;
    }

    .neubrandenburg-preparation__top {
        grid-template-columns:
            minmax(500px, 51fr)
            minmax(0, 49fr);

        gap: 34px;
    }

    .neubrandenburg-preparation__header h2 {
        font-size: clamp(42px, 3.1vw, 52px);
    }

    .neubrandenburg-preparation__header p {
        font-size: 13.5px;
    }

    .neubrandenburg-preparation__visual {
        height: 260px;
    }

    .neubrandenburg-preparation-card {
        min-height: 365px;
        padding: 20px;

        grid-template-columns:
            minmax(185px, 0.92fr)
            minmax(0, 1.08fr);
    }

    .neubrandenburg-preparation-card__visual img {
        left: -18%;

        width: 136%;
        height: 96%;
    }

    .neubrandenburg-preparation-card--sketch
    .neubrandenburg-preparation-card__visual img {
        left: -13%;

        width: 128%;
    }

    .neubrandenburg-preparation-card--idea
    .neubrandenburg-preparation-card__visual img {
        left: -10%;

        width: 122%;
    }

    .neubrandenburg-preparation-card__copy h3 {
        font-size: 19px;
    }

    .neubrandenburg-preparation-card__copy p {
        font-size: 12.5px;
    }

    .neubrandenburg-preparation-card__copy a {
        font-size: 12px;
    }

    .neubrandenburg-preparation__notice {
        max-width: 1100px;
    }
}


/* =========================================================
   PROJECT PREPARATION — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-preparation {
        min-height: 0;
    }

    .neubrandenburg-preparation__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .neubrandenburg-preparation__top {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .neubrandenburg-preparation__header {
        max-width: 880px;
    }

    .neubrandenburg-preparation__header h2 {
        font-size: clamp(49px, 5.9vw, 68px);
    }

    .neubrandenburg-preparation__header p {
        font-size: 17px;
    }

    .neubrandenburg-preparation__visual {
        height: clamp(330px, 38vw, 440px);
    }

    .neubrandenburg-preparation__visual > img {
        width: 100%;
        height: 100%;
    }

    .neubrandenburg-preparation__cards {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-preparation-card {
        min-height: 370px;

        grid-template-columns:
            minmax(240px, 0.8fr)
            minmax(0, 1.2fr);
    }

    .neubrandenburg-preparation-card__copy h3 {
        font-size: 24px;
    }

    .neubrandenburg-preparation-card__copy p {
        font-size: 15px;
    }

    .neubrandenburg-preparation-card__copy a {
        font-size: 13px;
    }

    .neubrandenburg-preparation__notice,
    .neubrandenburg-preparation__next {
        max-width: 880px;
    }
}


/* =========================================================
   PROJECT PREPARATION — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-preparation__inner {
        padding:
            70px
            24px
            54px;
    }

    .neubrandenburg-preparation__header h2 {
        font-size: clamp(43px, 6.9vw, 58px);
    }

    .neubrandenburg-preparation-card {
        min-height: 390px;

        grid-template-columns:
            minmax(220px, 0.82fr)
            minmax(0, 1.18fr);
    }

    .neubrandenburg-preparation__notice {
        grid-template-columns:
            70px
            minmax(0, 1fr);

        padding: 20px;
    }

    .neubrandenburg-preparation__notice img {
        display: none;
    }
}


/* =========================================================
   PROJECT PREPARATION — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-preparation__glow,
    .neubrandenburg-preparation__path,
    .neubrandenburg-preparation__floating-icons {
        display: none;
    }

    .neubrandenburg-preparation__inner {
        padding:
            60px
            18px
            48px;
    }

    .neubrandenburg-preparation__kicker {
        font-size: 9.5px;
        line-height: 1.25;
        white-space: normal;
    }

    .neubrandenburg-preparation__header h2 {
        font-size: clamp(37px, 10vw, 45px);
        line-height: 1.045;
    }

    .neubrandenburg-preparation__header h2 br {
        display: none;
    }

    .neubrandenburg-preparation__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .neubrandenburg-preparation__visual {
        height: auto;
        margin-top: 26px;

        aspect-ratio: 1 / 0.62;
    }

    .neubrandenburg-preparation__visual > img {
        width: 112%;
        height: 100%;
        margin-left: -6%;

        object-position: center bottom;
    }

    .neubrandenburg-preparation__cards {
        width: calc(100% + 18px);

        padding:
            4px
            54px
            25px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .neubrandenburg-preparation__cards::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-preparation-card {
        width: calc(100vw - 70px);
        min-height: 570px;

        flex:
            0
            0
            calc(100vw - 70px);

        padding: 20px;

        display: flex;
        flex-direction: column;

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .neubrandenburg-preparation-card:hover {
        transform: none;
    }

    .neubrandenburg-preparation-card__icon {
        top: 18px;
        left: 18px;

        width: 54px;
    }

    .neubrandenburg-preparation-card__visual {
        width: 100%;
        height: 235px;

        flex: 0 0 auto;
    }

    .neubrandenburg-preparation-card__visual img {
        position: relative;
        left: auto;
        bottom: auto;

        width: 110%;
        height: 100%;
        margin-left: -5%;

        object-position: center bottom;
    }

    .neubrandenburg-preparation-card__copy {
        margin-top: 16px;
    }

    .neubrandenburg-preparation-card__copy h3 {
        font-size: 22px;
    }

    .neubrandenburg-preparation-card__copy p {
        font-size: 14px;
    }

    .neubrandenburg-preparation-card__copy a {
        margin-top: 22px;

        font-size: 12px;
        line-height: 1.25;
    }

    .neubrandenburg-preparation__notice {
        width: 100%;
        min-height: 0;

        margin-top: 22px;

        grid-template-columns:
            54px
            minmax(0, 1fr);

        align-items: flex-start;

        border-radius: 18px;
    }

    .neubrandenburg-preparation__notice-icon {
        width: 54px;
    }

    .neubrandenburg-preparation__notice-copy strong {
        font-size: 14px;
    }

    .neubrandenburg-preparation__notice-copy span {
        font-size: 12px;
    }

    .neubrandenburg-preparation__next {
        width: 100%;
        min-height: 0;
        margin-top: 16px;
        padding: 16px;

        grid-template-columns:
            38px
            minmax(0, 1fr);

        border-radius: 18px;
    }

    .neubrandenburg-preparation__next > span {
        width: 38px;
    }

    .neubrandenburg-preparation__next p {
        font-size: 13px;
        text-align: left;
    }

    .neubrandenburg-preparation__next b {
        display: none;
    }
}


/* =========================================================
   PROJECT PREPARATION — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-preparation__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-preparation__header h2 {
        font-size: clamp(35px, 9.8vw, 40px);
    }

    .neubrandenburg-preparation__cards {
        width: calc(100% + 16px);

        padding-right: 48px;
    }

    .neubrandenburg-preparation-card {
        width: calc(100vw - 64px);

        flex-basis: calc(100vw - 64px);
    }
}


/* =========================================================
   PROJECT PREPARATION — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-preparation-card,
    .neubrandenburg-preparation-card__visual img,
    .neubrandenburg-preparation-card__copy a b {
        transition: none !important;
    }

    .neubrandenburg-preparation-card:hover,
    .neubrandenburg-preparation-card:hover
    .neubrandenburg-preparation-card__visual img,
    .neubrandenburg-preparation-card__copy a:hover b,
    .neubrandenburg-preparation-card__copy a:focus-visible b {
        transform: none;
    }
}


/* =========================================================
   SCREEN 5 — PROJECT START
   ========================================================= */

.neubrandenburg-project-start {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(111, 155, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 84% 16%,
            rgba(255, 215, 145, 0.09),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #fbfaf8 0%,
            #fffdfa 45%,
            #ffffff 100%
        );
}

.neubrandenburg-project-start__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.neubrandenburg-project-start__glow {
    position: absolute;

    border-radius: 50%;
}

.neubrandenburg-project-start__glow--left {
    top: -8%;
    left: -14%;

    width: clamp(420px, 32vw, 820px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(151, 188, 255, 0.18),
            transparent 72%
        );
}

.neubrandenburg-project-start__glow--right {
    top: -8%;
    right: -14%;

    width: clamp(540px, 38vw, 900px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 219, 168, 0.16),
            transparent 74%
        );
}

.neubrandenburg-project-start__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(20px, 1.55vw, 31px)
        var(--page-space)
        clamp(28px, 2.1vw, 42px);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   PROJECT START HEADER
   ========================================================= */

.neubrandenburg-project-start__header {
    position: relative;

    min-height: clamp(210px, 17vw, 340px);
    padding-top: clamp(8px, 0.6vw, 12px);

    display: grid;
    grid-template-columns:
        minmax(270px, 0.95fr)
        minmax(520px, 1.1fr)
        minmax(270px, 0.95fr);

    align-items: center;

    gap: clamp(18px, 1.5vw, 30px);
}

.neubrandenburg-project-start__headline {
    text-align: center;
}

.neubrandenburg-project-start__kicker {
    width: fit-content;

    min-height: clamp(35px, 2.3vw, 46px);
    margin:
        0
        auto
        clamp(16px, 1.15vw, 23px);

    padding:
        7px
        clamp(14px, 1.05vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 252, 244, 0.98);
    color: #242424;

    font-size: clamp(10px, 0.68vw, 13px);
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-project-start__kicker span {
    width: clamp(18px, 1.25vw, 24px);
    height: clamp(18px, 1.25vw, 24px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.neubrandenburg-project-start__kicker svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #ff8a00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-project-start__headline h2 {
    margin: 0;

    color: #101114;

    font-size: clamp(48px, 3.8vw, 76px);
    line-height: 1.03;
    font-weight: 680;
    letter-spacing: -0.06em;
}

.neubrandenburg-project-start__headline h2 span {
    color: #ff7900;
}

.neubrandenburg-project-start__headline p {
    max-width: 760px;

    margin:
        clamp(18px, 1.3vw, 26px)
        auto
        0;

    color: #535353;

    font-size: clamp(16px, 1.02vw, 20px);
    line-height: 1.56;
    letter-spacing: -0.01em;
}

.neubrandenburg-project-start__decor {
    position: relative;

    height: clamp(200px, 16vw, 320px);
}

.neubrandenburg-project-start__decor img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 18px rgba(35, 31, 23, 0.1)
        );
}

.neubrandenburg-project-start__decor--left img {
    object-position: left center;
}

.neubrandenburg-project-start__decor--right img {
    object-position: right center;
}


/* =========================================================
   PROJECT START CARDS
   ========================================================= */

.neubrandenburg-project-start__cards {
    width: 100%;

    margin-top: clamp(18px, 1.35vw, 27px);

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: clamp(15px, 1.1vw, 22px);
}

.neubrandenburg-project-start-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: clamp(430px, 31vw, 610px);

    padding:
        clamp(22px, 1.6vw, 32px)
        clamp(22px, 1.6vw, 32px)
        clamp(22px, 1.6vw, 32px);

    display: grid;
    grid-template-columns:
        minmax(220px, 0.82fr)
        minmax(0, 1.18fr);

    align-items: stretch;

    overflow: hidden;

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(18px, 1.2vw, 24px);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(252, 251, 249, 0.98)
        );

    box-shadow:
        0 18px 45px rgba(35, 31, 23, 0.06),
        0 4px 10px rgba(35, 31, 23, 0.02);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.neubrandenburg-project-start-card:hover {
    transform: translateY(-4px);

    border-color: rgba(239, 170, 0, 0.18);

    box-shadow:
        0 24px 54px rgba(35, 31, 23, 0.09),
        0 5px 12px rgba(35, 31, 23, 0.03);
}

.neubrandenburg-project-start-card__number {
    position: absolute;
    top: clamp(14px, 1vw, 20px);
    left: clamp(14px, 1vw, 20px);
    z-index: 6;

    min-width: clamp(50px, 3.3vw, 66px);
    height: clamp(50px, 3.3vw, 66px);
    padding-inline: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(20, 20, 20, 0.07);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.96);

    font-size: clamp(24px, 1.55vw, 31px);
    line-height: 1;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(35, 31, 23, 0.05);
}

.neubrandenburg-project-start-card--blue .neubrandenburg-project-start-card__number {
    color: #2e7de9;
}

.neubrandenburg-project-start-card--orange .neubrandenburg-project-start-card__number {
    color: #ff8a00;
}

.neubrandenburg-project-start-card--teal .neubrandenburg-project-start-card__number {
    color: #14a9af;
}

.neubrandenburg-project-start-card__side {
    min-width: 0;
    padding-top: clamp(48px, 3.4vw, 68px);

    display: flex;
    flex-direction: column;
}

.neubrandenburg-project-start-card__icon {
    width: clamp(54px, 3.7vw, 74px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.72);
}

.neubrandenburg-project-start-card__icon svg {
    width: 52%;
    height: 52%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-project-start-card--blue .neubrandenburg-project-start-card__icon,
.neubrandenburg-project-start-card--blue .neubrandenburg-project-start-card__divider,
.neubrandenburg-project-start-card--blue .neubrandenburg-project-start-card__button {
    color: #2e7de9;
}

.neubrandenburg-project-start-card--orange .neubrandenburg-project-start-card__icon,
.neubrandenburg-project-start-card--orange .neubrandenburg-project-start-card__divider,
.neubrandenburg-project-start-card--orange .neubrandenburg-project-start-card__button {
    color: #ff8a00;
}

.neubrandenburg-project-start-card--teal .neubrandenburg-project-start-card__icon,
.neubrandenburg-project-start-card--teal .neubrandenburg-project-start-card__divider,
.neubrandenburg-project-start-card--teal .neubrandenburg-project-start-card__button {
    color: #14a9af;
}

.neubrandenburg-project-start-card__divider {
    width: clamp(46px, 3.1vw, 62px);
    height: 2px;
    margin:
        clamp(15px, 1vw, 20px)
        0
        clamp(17px, 1.15vw, 23px);

    background: currentColor;

    opacity: 0.4;
}

.neubrandenburg-project-start-card__lead {
    display: flex;
    flex-direction: column;
}

.neubrandenburg-project-start-card__lead h3 {
    margin: 0;

    color: #131313;

    font-size: clamp(22px, 1.48vw, 30px);
    line-height: 1.08;
    font-weight: 760;
    letter-spacing: -0.045em;
}

.neubrandenburg-project-start-card__lead p {
    max-width: 300px;

    margin:
        clamp(18px, 1.2vw, 24px)
        0
        0;

    color: #555555;

    font-size: clamp(14px, 0.92vw, 18px);
    line-height: 1.48;
    letter-spacing: -0.006em;
}

.neubrandenburg-project-start-card__visual {
    position: relative;

    min-width: 0;
    height: 100%;
}

.neubrandenburg-project-start-card__visual img {
    position: absolute;
    right: -22%;
    bottom: 2%;

    width: 152%;
    height: 92%;

    object-fit: contain;
    object-position: right bottom;

    filter:
        drop-shadow(
            0 18px 18px rgba(35, 31, 23, 0.13)
        );

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.neubrandenburg-project-start-card:hover
.neubrandenburg-project-start-card__visual img {
    transform:
        translateY(-3px)
        scale(1.018);
}

.neubrandenburg-project-start-card--orange
.neubrandenburg-project-start-card__visual img {
    right: -20%;
    bottom: -1%;

    width: 148%;
    height: 96%;
}

.neubrandenburg-project-start-card--teal
.neubrandenburg-project-start-card__visual img {
    right: -12%;
    bottom: 1%;

    width: 132%;
    height: 94%;
}

.neubrandenburg-project-start-card__button {
    width: fit-content;
    min-height: clamp(44px, 3vw, 60px);
    margin-top: auto;
    padding:
        0
        clamp(16px, 1.08vw, 22px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border-radius: 999px;

    background: color-mix(in srgb, currentColor 12%, white);

    font-size: clamp(13px, 0.86vw, 16px);
    line-height: 1;
    font-weight: 760;

    transition:
        background var(--transition),
        transform var(--transition);
}

.neubrandenburg-project-start-card__button b {
    font-size: clamp(17px, 1.15vw, 23px);
    line-height: 1;

    transition: transform var(--transition);
}

.neubrandenburg-project-start-card__button:hover,
.neubrandenburg-project-start-card__button:focus-visible {
    background: color-mix(in srgb, currentColor 18%, white);

    outline: none;
}

.neubrandenburg-project-start-card__button:hover b,
.neubrandenburg-project-start-card__button:focus-visible b {
    transform: translateX(4px);
}


/* =========================================================
   PROJECT START SOURCES
   ========================================================= */

.neubrandenburg-project-start__sources {
    width: 100%;

    margin-top: clamp(16px, 1.15vw, 23px);
    padding:
        clamp(18px, 1.25vw, 25px)
        clamp(24px, 1.75vw, 35px);

    display: grid;
    grid-template-columns:
        minmax(430px, 0.72fr)
        minmax(0, 1.28fr);

    align-items: center;

    gap: clamp(18px, 1.35vw, 27px);

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(16px, 1.1vw, 22px);

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 14px 34px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-project-start__sources-label {
    display: flex;
    align-items: center;

    gap: clamp(14px, 1vw, 20px);
}

.neubrandenburg-project-start__sources-icon {
    width: clamp(52px, 3.5vw, 70px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 50%;

    color: #a1a8b3;
}

.neubrandenburg-project-start__sources-icon svg {
    width: 52%;
    height: 52%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-project-start__sources-copy strong,
.neubrandenburg-project-start__sources-copy span {
    display: block;
}

.neubrandenburg-project-start__sources-copy strong {
    color: #1f2124;

    font-size: clamp(16px, 1.02vw, 20px);
    line-height: 1.2;
    font-weight: 720;
}

.neubrandenburg-project-start__sources-copy span {
    margin-top: 6px;

    color: #595959;

    font-size: clamp(12px, 0.8vw, 15px);
    line-height: 1.4;
}

.neubrandenburg-project-start__sources-label i {
    color: #ff8a00;

    font-style: normal;
    font-size: clamp(28px, 1.8vw, 36px);
    line-height: 1;
}

.neubrandenburg-project-start__sources-logos {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: clamp(10px, 0.75vw, 15px);
}

.neubrandenburg-project-start__logo-chip {
    min-height: clamp(62px, 4.3vw, 86px);
    padding:
        10px
        clamp(14px, 1vw, 20px);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(9px, 0.7vw, 14px);

    border: 1px solid rgba(20, 20, 20, 0.06);
    border-radius: 14px;

    background: #ffffff;
}

.neubrandenburg-project-start__logo-chip img {
    width: clamp(26px, 1.8vw, 36px);
    height: clamp(26px, 1.8vw, 36px);

    flex: 0 0 auto;

    object-fit: contain;
}

.neubrandenburg-project-start__logo-chip span {
    color: #1f2124;

    font-size: clamp(13px, 0.92vw, 18px);
    line-height: 1;
    font-weight: 760;
    white-space: nowrap;
}


/* =========================================================
   PROJECT START BOTTOM
   ========================================================= */

.neubrandenburg-project-start__bottom {
    width: 100%;

    margin-top: clamp(14px, 1vw, 20px);

    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(250px, 0.62fr);

    gap: clamp(15px, 1.1vw, 22px);
}

.neubrandenburg-project-start__notice,
.neubrandenburg-project-start__next {
    min-width: 0;

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(16px, 1.1vw, 22px);

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 14px 34px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-project-start__notice {
    padding:
        clamp(18px, 1.25vw, 25px)
        clamp(20px, 1.45vw, 29px);

    display: grid;
    grid-template-columns:
        clamp(54px, 3.7vw, 74px)
        minmax(0, 1fr)
        clamp(180px, 14vw, 250px);

    align-items: center;

    gap: clamp(16px, 1.15vw, 23px);
}

.neubrandenburg-project-start__notice-icon {
    width: clamp(54px, 3.7vw, 74px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff8a00;
}

.neubrandenburg-project-start__notice-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-project-start__notice-copy strong,
.neubrandenburg-project-start__notice-copy span {
    display: block;
}

.neubrandenburg-project-start__notice-copy strong {
    color: #222326;

    font-size: clamp(15px, 1vw, 20px);
    line-height: 1.25;
    font-weight: 740;
}

.neubrandenburg-project-start__notice-copy span {
    margin-top: 6px;

    color: #5d5d5d;

    font-size: clamp(12px, 0.8vw, 15px);
    line-height: 1.42;
}

.neubrandenburg-project-start__notice img {
    width: 100%;
    height: clamp(78px, 5.3vw, 112px);

    object-fit: contain;
    object-position: right center;
}

.neubrandenburg-project-start__next {
    padding:
        clamp(18px, 1.25vw, 25px)
        clamp(20px, 1.45vw, 29px);

    display: grid;
    grid-template-columns:
        clamp(44px, 3vw, 60px)
        minmax(0, 1fr);

    align-items: start;

    gap: clamp(14px, 1vw, 20px);
}

.neubrandenburg-project-start__next-icon {
    width: clamp(44px, 3vw, 60px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 170, 0, 0.18);
    border-radius: 50%;

    color: #ff8a00;
    background: #fff8ec;
}

.neubrandenburg-project-start__next-icon svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-project-start__next p {
    margin: 0;

    color: #4d4d4d;

    font-size: clamp(13px, 0.84vw, 16px);
    line-height: 1.45;
    font-weight: 560;
}

.neubrandenburg-project-start__next strong {
    color: #242424;

    font-weight: 760;
}


/* =========================================================
   PROJECT START — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-project-start__inner {
        padding:
            18px
            42px
            28px;
    }

    .neubrandenburg-project-start__headline h2 {
        font-size: clamp(44px, 3.35vw, 58px);
    }

    .neubrandenburg-project-start__headline p {
        font-size: 15px;
    }

    .neubrandenburg-project-start__decor {
        height: 220px;
    }

    .neubrandenburg-project-start-card {
        min-height: 430px;
        padding: 22px;

        grid-template-columns:
            minmax(195px, 0.82fr)
            minmax(0, 1.18fr);
    }

    .neubrandenburg-project-start-card__visual img {
        right: -22%;

        width: 152%;
        height: 92%;
    }

    .neubrandenburg-project-start-card--orange
    .neubrandenburg-project-start-card__visual img {
        right: -20%;

        width: 148%;
        height: 96%;
    }

    .neubrandenburg-project-start-card--teal
    .neubrandenburg-project-start-card__visual img {
        right: -12%;

        width: 132%;
        height: 94%;
    }

    .neubrandenburg-project-start-card__lead h3 {
        font-size: 23px;
    }

    .neubrandenburg-project-start-card__lead p {
        font-size: 14px;
    }

    .neubrandenburg-project-start-card__button {
        font-size: 13px;
    }

    .neubrandenburg-project-start__sources-copy strong {
        font-size: 15px;
    }

    .neubrandenburg-project-start__sources-copy span,
    .neubrandenburg-project-start__notice-copy span,
    .neubrandenburg-project-start__next p {
        font-size: 12px;
    }
}


/* =========================================================
   PROJECT START — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-project-start {
        min-height: 0;
    }

    .neubrandenburg-project-start__inner {
        min-height: 0;

        padding:
            72px
            30px
            58px;
    }

    .neubrandenburg-project-start__header {
        min-height: 0;

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

    .neubrandenburg-project-start__headline {
        order: 1;
    }

    .neubrandenburg-project-start__decor {
        height: 260px;
    }

    .neubrandenburg-project-start__decor--left {
        order: 2;
    }

    .neubrandenburg-project-start__decor--right {
        order: 3;
    }

    .neubrandenburg-project-start__headline h2 {
        font-size: clamp(48px, 5.9vw, 68px);
    }

    .neubrandenburg-project-start__headline p {
        font-size: 17px;
    }

    .neubrandenburg-project-start__cards {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-project-start-card {
        min-height: 360px;

        grid-template-columns:
            minmax(230px, 0.9fr)
            minmax(0, 1.1fr);
    }

    .neubrandenburg-project-start-card__lead h3 {
        font-size: 24px;
    }

    .neubrandenburg-project-start-card__lead p {
        font-size: 15px;
    }

    .neubrandenburg-project-start-card__button {
        font-size: 13px;
    }

    .neubrandenburg-project-start__sources {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-project-start__sources-logos {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .neubrandenburg-project-start__bottom {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-project-start__next {
        max-width: 440px;
    }
}


/* =========================================================
   PROJECT START — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-project-start__inner {
        padding:
            66px
            24px
            52px;
    }

    .neubrandenburg-project-start__headline h2 {
        font-size: clamp(42px, 6.8vw, 58px);
    }

    .neubrandenburg-project-start__decor {
        height: 230px;
    }

    .neubrandenburg-project-start-card {
        min-height: 390px;

        grid-template-columns:
            minmax(210px, 0.9fr)
            minmax(0, 1.1fr);
    }

    .neubrandenburg-project-start__notice {
        grid-template-columns:
            64px
            minmax(0, 1fr);

        padding: 20px;
    }

    .neubrandenburg-project-start__notice img {
        display: none;
    }
}


/* =========================================================
   PROJECT START — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-project-start__glow {
        display: none;
    }

    .neubrandenburg-project-start__inner {
        padding:
            58px
            18px
            46px;
    }

    .neubrandenburg-project-start__header {
        gap: 18px;
    }

    .neubrandenburg-project-start__kicker {
        margin-left: 0;
        margin-right: 0;

        font-size: 9.5px;
        line-height: 1.25;
        white-space: normal;
    }

    .neubrandenburg-project-start__headline {
        text-align: left;
    }

    .neubrandenburg-project-start__headline h2 {
        font-size: clamp(36px, 10vw, 45px);
        line-height: 1.045;
    }

    .neubrandenburg-project-start__headline h2 br {
        display: none;
    }

    .neubrandenburg-project-start__headline p {
        margin-left: 0;
        margin-right: 0;

        font-size: 16px;
        line-height: 1.52;
    }

    .neubrandenburg-project-start__decor {
        height: auto;

        aspect-ratio: 1 / 0.7;
    }

    .neubrandenburg-project-start__cards {
        width: calc(100% + 18px);

        padding:
            4px
            54px
            25px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .neubrandenburg-project-start__cards::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-project-start-card {
        width: calc(100vw - 70px);
        min-height: 570px;

        flex:
            0
            0
            calc(100vw - 70px);

        padding: 20px;

        display: flex;
        flex-direction: column;

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .neubrandenburg-project-start-card:hover {
        transform: none;
    }

    .neubrandenburg-project-start-card__side {
        padding-top: 52px;
    }

    .neubrandenburg-project-start-card__lead h3 {
        font-size: 24px;
    }

    .neubrandenburg-project-start-card__lead p {
        font-size: 14px;
    }

    .neubrandenburg-project-start-card__visual {
        width: 100%;
        height: 235px;
        margin-top: 14px;

        flex: 0 0 auto;
    }

    .neubrandenburg-project-start-card__visual img,
    .neubrandenburg-project-start-card--orange
    .neubrandenburg-project-start-card__visual img,
    .neubrandenburg-project-start-card--teal
    .neubrandenburg-project-start-card__visual img {
        position: relative;
        right: auto;
        bottom: auto;

        width: 112%;
        height: 100%;
        margin-left: -6%;

        object-position: center bottom;
    }

    .neubrandenburg-project-start-card__button {
        margin-top: 20px;

        font-size: 12px;
    }

    .neubrandenburg-project-start__sources {
        padding: 18px;

        border-radius: 18px;
    }

    .neubrandenburg-project-start__sources-label {
        align-items: flex-start;
    }

    .neubrandenburg-project-start__sources-copy strong {
        font-size: 14px;
    }

    .neubrandenburg-project-start__sources-copy span {
        font-size: 12px;
    }

    .neubrandenburg-project-start__sources-label i {
        display: none;
    }

    .neubrandenburg-project-start__sources-logos {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .neubrandenburg-project-start__logo-chip {
        min-height: 58px;
    }

    .neubrandenburg-project-start__notice,
    .neubrandenburg-project-start__next {
        border-radius: 18px;
    }

    .neubrandenburg-project-start__notice-copy strong {
        font-size: 14px;
    }

    .neubrandenburg-project-start__notice-copy span,
    .neubrandenburg-project-start__next p {
        font-size: 12px;
    }
}


/* =========================================================
   PROJECT START — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-project-start__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-project-start__headline h2 {
        font-size: clamp(34px, 9.8vw, 40px);
    }

    .neubrandenburg-project-start__cards {
        width: calc(100% + 16px);

        padding-right: 48px;
    }

    .neubrandenburg-project-start-card {
        width: calc(100vw - 64px);

        flex-basis: calc(100vw - 64px);
    }
}


/* =========================================================
   PROJECT START — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-project-start-card,
    .neubrandenburg-project-start-card__visual img,
    .neubrandenburg-project-start-card__button,
    .neubrandenburg-project-start-card__button b {
        transition: none !important;
    }

    .neubrandenburg-project-start-card:hover,
    .neubrandenburg-project-start-card:hover
    .neubrandenburg-project-start-card__visual img,
    .neubrandenburg-project-start-card__button:hover b,
    .neubrandenburg-project-start-card__button:focus-visible b {
        transform: none;
    }
}


/* =========================================================
   SCREEN 6 — MATERIAL USE APPLICATION
   ========================================================= */

.neubrandenburg-material-use {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 17% 17%,
            rgba(255, 203, 82, 0.055),
            transparent 38%
        ),
        radial-gradient(
            circle at 83% 18%,
            rgba(255, 218, 143, 0.09),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.neubrandenburg-material-use__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.neubrandenburg-material-use__glow {
    position: absolute;

    border-radius: 50%;
}

.neubrandenburg-material-use__glow--left {
    top: 14%;
    left: -20%;

    width: clamp(470px, 37vw, 900px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 32, 0.06),
            transparent 70%
        );
}

.neubrandenburg-material-use__glow--right {
    top: -18%;
    right: -15%;

    width: clamp(620px, 48vw, 1100px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 218, 135, 0.085),
            transparent 70%
        );
}

.neubrandenburg-material-use__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(34px, 2.65vw, 53px)
        var(--page-space)
        clamp(28px, 2.05vw, 41px);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   MATERIAL USE TOP
   ========================================================= */

.neubrandenburg-material-use__top {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(520px, 48fr)
        minmax(0, 52fr);

    align-items: center;

    gap: clamp(34px, 3vw, 60px);
}

.neubrandenburg-material-use__header {
    min-width: 0;
}

.neubrandenburg-material-use__kicker {
    width: fit-content;

    min-height: clamp(34px, 2.3vw, 46px);
    margin-bottom: clamp(18px, 1.35vw, 27px);
    padding:
        7px
        clamp(14px, 1.05vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 252, 244, 0.98);
    color: #242424;

    font-size: clamp(10px, 0.68vw, 13px);
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-material-use__kicker span {
    width: clamp(18px, 1.25vw, 24px);
    height: clamp(18px, 1.25vw, 24px);

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neubrandenburg-material-use__kicker svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #ff8a00;
    stroke-width: 1.95;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-material-use__header h2 {
    max-width: 850px;
    margin: 0;

    color: #111214;

    font-size: clamp(45px, 3.35vw, 68px);
    line-height: 1.04;
    font-weight: 670;
    letter-spacing: -0.058em;
}

.neubrandenburg-material-use__header h2 span {
    color: #ff7900;
}

.neubrandenburg-material-use__header p {
    max-width: 790px;
    margin:
        clamp(20px, 1.45vw, 29px)
        0
        0;

    color: #555555;

    font-size: clamp(13px, 0.9vw, 17px);
    line-height: 1.55;
    letter-spacing: -0.005em;
}

.neubrandenburg-material-use__header p strong {
    color: #ff7900;

    font-weight: 760;
}

.neubrandenburg-material-use__visual {
    position: relative;

    width: 100%;
    min-height: clamp(280px, 21vw, 420px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.neubrandenburg-material-use__visual > img {
    position: relative;
    z-index: 3;

    width: 78%;
    height: clamp(160px, 12vw, 245px);

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 18px 18px rgba(35, 31, 23, 0.12)
        );
}

.neubrandenburg-material-use__wave {
    position: absolute;
    top: 14%;
    right: 6%;
    z-index: 1;

    width: 82%;
    height: 48%;

    border-top: 1.4px solid rgba(239, 170, 0, 0.18);
    border-radius: 50%;

    transform: rotate(-8deg);
}

.neubrandenburg-material-use__factors {
    position: relative;
    z-index: 4;

    width: 100%;
    margin-top: clamp(10px, 0.75vw, 15px);

    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: clamp(9px, 0.75vw, 15px);
}

.neubrandenburg-material-use-factor {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.neubrandenburg-material-use-factor span {
    width: clamp(54px, 3.75vw, 74px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);
    color: #ff8a00;

    box-shadow:
        0 8px 20px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-material-use-factor svg {
    width: 52%;
    height: 52%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-material-use-factor strong {
    margin-top: clamp(8px, 0.65vw, 13px);

    color: #282828;

    font-size: clamp(10.5px, 0.72vw, 14px);
    line-height: 1.22;
    font-weight: 760;
}


/* =========================================================
   MATERIAL USE CARDS
   ========================================================= */

.neubrandenburg-material-use__cards {
    width: 100%;

    margin-top: clamp(28px, 2vw, 40px);

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: clamp(15px, 1.1vw, 22px);
}

.neubrandenburg-material-use-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: clamp(360px, 25vw, 500px);

    padding: clamp(22px, 1.6vw, 32px);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(18px, 1.2vw, 24px);

    background:
        radial-gradient(
            circle at 90% 76%,
            rgba(255, 201, 92, 0.08),
            transparent 42%
        ),
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 18px 45px rgba(35, 31, 23, 0.06),
        0 4px 10px rgba(35, 31, 23, 0.02);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.neubrandenburg-material-use-card:hover {
    transform: translateY(-4px);

    border-color: rgba(239, 170, 0, 0.18);

    box-shadow:
        0 24px 54px rgba(35, 31, 23, 0.09),
        0 5px 12px rgba(35, 31, 23, 0.03);
}

.neubrandenburg-material-use-card__heading {
    display: grid;
    grid-template-columns:
        clamp(62px, 4.2vw, 84px)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(16px, 1.2vw, 24px);
}

.neubrandenburg-material-use-card__heading span {
    width: clamp(62px, 4.2vw, 84px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 138, 0, 0.16);
    border-radius: 50%;

    background: #fff8ec;
    color: #ff8a00;
}

.neubrandenburg-material-use-card__heading svg {
    width: 52%;
    height: 52%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-material-use-card__heading h3 {
    margin: 0;

    color: #121212;

    font-size: clamp(20px, 1.36vw, 28px);
    line-height: 1.13;
    font-weight: 750;
    letter-spacing: -0.043em;
}

.neubrandenburg-material-use-card > p {
    margin:
        clamp(20px, 1.45vw, 29px)
        0
        0;

    color: #555555;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1.5;
    letter-spacing: -0.005em;
}

.neubrandenburg-material-use-card__example {
    min-height: clamp(128px, 9.5vw, 190px);
    margin-top: auto;
    padding:
        clamp(17px, 1.2vw, 24px)
        clamp(18px, 1.35vw, 27px);

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        clamp(105px, 8vw, 160px);

    align-items: center;

    gap: clamp(13px, 1vw, 20px);

    border-radius: clamp(14px, 1vw, 20px);

    background:
        linear-gradient(
            135deg,
            rgba(255, 248, 236, 0.98),
            rgba(255, 253, 249, 0.98)
        );
}

.neubrandenburg-material-use-card__example strong {
    display: block;

    color: #ff7900;

    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1.2;
    font-weight: 780;
}

.neubrandenburg-material-use-card__example ul {
    margin:
        clamp(12px, 0.85vw, 17px)
        0
        0;
    padding: 0;

    display: grid;
    gap: clamp(8px, 0.65vw, 13px);

    list-style: none;
}

.neubrandenburg-material-use-card__example li {
    position: relative;

    padding-left: clamp(25px, 1.75vw, 35px);

    color: #4e4e4e;

    font-size: clamp(12px, 0.8vw, 15px);
    line-height: 1.25;
    font-weight: 560;
}

.neubrandenburg-material-use-card__example li::before {
    content: "";

    position: absolute;
    top: 0.08em;
    left: 0;

    width: clamp(17px, 1.15vw, 23px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ff9f00
        );
}

.neubrandenburg-material-use-card__example li::after {
    content: "";

    position: absolute;
    top: 0.42em;
    left: clamp(5px, 0.35vw, 7px);

    width: clamp(7px, 0.48vw, 10px);
    height: clamp(4px, 0.3vw, 6px);

    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform: rotate(-45deg);
}

.neubrandenburg-material-use-card__example img {
    width: 100%;
    height: clamp(110px, 8vw, 160px);

    object-fit: contain;
    object-position: right bottom;

    filter:
        drop-shadow(
            0 14px 14px rgba(35, 31, 23, 0.12)
        );
}


/* =========================================================
   MATERIAL USE NOTICE
   ========================================================= */

.neubrandenburg-material-use__notice {
    position: relative;

    width: 100%;
    min-height: clamp(84px, 6.3vw, 126px);

    margin-top: clamp(20px, 1.45vw, 29px);
    padding:
        clamp(17px, 1.2vw, 24px)
        clamp(28px, 2vw, 40px);

    display: grid;
    grid-template-columns:
        clamp(62px, 4.2vw, 84px)
        minmax(0, 1fr)
        clamp(175px, 13vw, 260px);

    align-items: center;

    gap: clamp(18px, 1.4vw, 28px);

    overflow: hidden;

    border: 1px solid rgba(239, 170, 0, 0.13);
    border-radius: clamp(17px, 1.15vw, 23px);

    background:
        linear-gradient(
            90deg,
            rgba(255, 250, 238, 0.98),
            rgba(255, 255, 255, 0.96)
        );

    box-shadow:
        0 12px 30px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-material-use__notice-icon {
    width: clamp(62px, 4.2vw, 84px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff8a00;
}

.neubrandenburg-material-use__notice-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-material-use__notice-copy strong,
.neubrandenburg-material-use__notice-copy span {
    display: block;
}

.neubrandenburg-material-use__notice-copy strong {
    color: #242424;

    font-size: clamp(15px, 1vw, 20px);
    line-height: 1.28;
    font-weight: 730;
}

.neubrandenburg-material-use__notice-copy span {
    margin-top: 7px;

    color: #616161;

    font-size: clamp(12px, 0.8vw, 15.5px);
    line-height: 1.46;
}

.neubrandenburg-material-use__notice img {
    width: 100%;
    height: clamp(75px, 5.5vw, 110px);

    object-fit: contain;
    object-position: right center;

    filter:
        drop-shadow(
            0 12px 12px rgba(35, 31, 23, 0.08)
        );
}


/* =========================================================
   MATERIAL USE NEXT STRIP
   ========================================================= */

.neubrandenburg-material-use__next {
    width: 100%;
    min-height: clamp(52px, 3.6vw, 72px);

    margin-top: clamp(17px, 1.25vw, 25px);
    padding:
        8px
        clamp(18px, 1.35vw, 27px);

    display: grid;
    grid-template-columns:
        clamp(38px, 2.6vw, 52px)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(12px, 0.95vw, 19px);

    border: 1px solid rgba(239, 170, 0, 0.14);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 10px 28px rgba(35, 31, 23, 0.045);
}

.neubrandenburg-material-use__next > span {
    width: clamp(38px, 2.6vw, 52px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffb400,
            #ff8a00
        );

    color: #ffffff;
}

.neubrandenburg-material-use__next svg {
    width: 50%;
    height: 50%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-material-use__next p {
    margin: 0;

    color: #454545;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1.36;
    font-weight: 580;
    text-align: center;
}

.neubrandenburg-material-use__next strong {
    color: #ff7900;

    font-weight: 760;
}

.neubrandenburg-material-use__next b {
    color: #ff9f00;

    font-size: clamp(23px, 1.55vw, 31px);
    line-height: 1;
}


/* =========================================================
   MATERIAL USE — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-material-use__inner {
        padding:
            30px
            42px
            28px;
    }

    .neubrandenburg-material-use__top {
        grid-template-columns:
            minmax(500px, 48fr)
            minmax(0, 52fr);

        gap: 34px;
    }

    .neubrandenburg-material-use__header h2 {
        font-size: clamp(42px, 3.1vw, 52px);
    }

    .neubrandenburg-material-use__header p {
        font-size: 13.5px;
    }

    .neubrandenburg-material-use__visual {
        min-height: 270px;
    }

    .neubrandenburg-material-use-card {
        min-height: 385px;
        padding: 22px;
    }

    .neubrandenburg-material-use-card__heading h3 {
        font-size: 21px;
    }

    .neubrandenburg-material-use-card > p {
        font-size: 13px;
    }

    .neubrandenburg-material-use-card__example li {
        font-size: 12px;
    }
}


/* =========================================================
   MATERIAL USE — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-material-use {
        min-height: 0;
    }

    .neubrandenburg-material-use__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .neubrandenburg-material-use__top {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .neubrandenburg-material-use__header {
        max-width: 880px;
    }

    .neubrandenburg-material-use__header h2 {
        font-size: clamp(49px, 5.9vw, 68px);
    }

    .neubrandenburg-material-use__header p {
        font-size: 17px;
    }

    .neubrandenburg-material-use__visual {
        min-height: 380px;
    }

    .neubrandenburg-material-use__visual > img {
        width: 88%;
        height: 240px;
    }

    .neubrandenburg-material-use__cards {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-material-use-card {
        min-height: 410px;
    }

    .neubrandenburg-material-use-card__heading h3 {
        font-size: 27px;
    }

    .neubrandenburg-material-use-card > p {
        font-size: 16px;
    }

    .neubrandenburg-material-use-card__example {
        grid-template-columns:
            minmax(0, 1fr)
            180px;
    }

    .neubrandenburg-material-use-card__example li {
        font-size: 15px;
    }
}


/* =========================================================
   MATERIAL USE — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-material-use__inner {
        padding:
            70px
            24px
            54px;
    }

    .neubrandenburg-material-use__header h2 {
        font-size: clamp(43px, 6.9vw, 58px);
    }

    .neubrandenburg-material-use__factors {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .neubrandenburg-material-use__notice {
        grid-template-columns:
            70px
            minmax(0, 1fr);

        padding: 20px;
    }

    .neubrandenburg-material-use__notice img {
        display: none;
    }
}


/* =========================================================
   MATERIAL USE — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-material-use__glow,
    .neubrandenburg-material-use__wave {
        display: none;
    }

    .neubrandenburg-material-use__inner {
        padding:
            60px
            18px
            48px;
    }

    .neubrandenburg-material-use__kicker {
        font-size: 9.5px;
        line-height: 1.25;
        white-space: normal;
    }

    .neubrandenburg-material-use__header h2 {
        font-size: clamp(37px, 10vw, 45px);
        line-height: 1.045;
    }

    .neubrandenburg-material-use__header h2 br {
        display: none;
    }

    .neubrandenburg-material-use__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .neubrandenburg-material-use__visual {
        min-height: 0;
        margin-top: 28px;
    }

    .neubrandenburg-material-use__visual > img {
        width: 112%;
        height: auto;
        margin-left: -6%;
    }

    .neubrandenburg-material-use__factors {
        margin-top: 22px;

        display: flex;

        gap: 12px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .neubrandenburg-material-use__factors::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-material-use-factor {
        width: 128px;

        flex: 0 0 128px;

        scroll-snap-align: start;
    }

    .neubrandenburg-material-use__cards {
        width: calc(100% + 18px);

        padding:
            4px
            54px
            25px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .neubrandenburg-material-use__cards::-webkit-scrollbar {
        display: none;
    }

    .neubrandenburg-material-use-card {
        width: calc(100vw - 70px);
        min-height: 620px;

        flex:
            0
            0
            calc(100vw - 70px);

        padding: 20px;

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .neubrandenburg-material-use-card:hover {
        transform: none;
    }

    .neubrandenburg-material-use-card__heading {
        grid-template-columns:
            58px
            minmax(0, 1fr);

        gap: 14px;
    }

    .neubrandenburg-material-use-card__heading span {
        width: 58px;
    }

    .neubrandenburg-material-use-card__heading h3 {
        font-size: 23px;
    }

    .neubrandenburg-material-use-card > p {
        font-size: 14px;
    }

    .neubrandenburg-material-use-card__example {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .neubrandenburg-material-use-card__example img {
        justify-self: end;

        width: 150px;
    }

    .neubrandenburg-material-use__notice {
        width: 100%;
        min-height: 0;

        margin-top: 22px;

        grid-template-columns:
            54px
            minmax(0, 1fr);

        align-items: flex-start;

        border-radius: 18px;
    }

    .neubrandenburg-material-use__notice-icon {
        width: 54px;
    }

    .neubrandenburg-material-use__notice-copy strong {
        font-size: 14px;
    }

    .neubrandenburg-material-use__notice-copy span {
        font-size: 12px;
    }

    .neubrandenburg-material-use__next {
        width: 100%;
        min-height: 0;
        margin-top: 16px;
        padding: 16px;

        grid-template-columns:
            38px
            minmax(0, 1fr);

        border-radius: 18px;
    }

    .neubrandenburg-material-use__next > span {
        width: 38px;
    }

    .neubrandenburg-material-use__next p {
        font-size: 13px;
        text-align: left;
    }

    .neubrandenburg-material-use__next b {
        display: none;
    }
}


/* =========================================================
   MATERIAL USE — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-material-use__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-material-use__header h2 {
        font-size: clamp(35px, 9.8vw, 40px);
    }

    .neubrandenburg-material-use__cards {
        width: calc(100% + 16px);

        padding-right: 48px;
    }

    .neubrandenburg-material-use-card {
        width: calc(100vw - 64px);

        flex-basis: calc(100vw - 64px);
    }
}


/* =========================================================
   MATERIAL USE — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-material-use-card {
        transition: none !important;
    }

    .neubrandenburg-material-use-card:hover {
        transform: none;
    }
}


/* =========================================================
   SCREEN 7 — FINAL CTA
   ========================================================= */

.neubrandenburg-final-cta {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(255, 206, 105, 0.12),
            transparent 42%
        ),
        radial-gradient(
            circle at 14% 20%,
            rgba(255, 196, 55, 0.055),
            transparent 36%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffdf8 58%,
            #ffffff 100%
        );
}

.neubrandenburg-final-cta__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.neubrandenburg-final-cta__glow {
    position: absolute;

    border-radius: 50%;
}

.neubrandenburg-final-cta__glow--left {
    top: 20%;
    left: -18%;

    width: clamp(420px, 34vw, 820px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 193, 44, 0.07),
            transparent 72%
        );
}

.neubrandenburg-final-cta__glow--right {
    top: -15%;
    right: -15%;

    width: clamp(650px, 48vw, 1120px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 217, 139, 0.12),
            transparent 72%
        );
}

.neubrandenburg-final-cta__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(42px, 3.1vw, 62px)
        var(--page-space)
        clamp(30px, 2.3vw, 46px);

    display: flex;
    flex-direction: column;
}

.neubrandenburg-final-cta__main {
    display: grid;
    grid-template-columns:
        minmax(520px, 47fr)
        minmax(0, 53fr);

    align-items: center;

    gap: clamp(34px, 3vw, 60px);
}


/* =========================================================
   FINAL CTA CONTENT
   ========================================================= */

.neubrandenburg-final-cta__content {
    min-width: 0;
}

.neubrandenburg-final-cta__kicker {
    width: fit-content;

    min-height: clamp(38px, 2.55vw, 51px);
    margin-bottom: clamp(26px, 1.9vw, 38px);
    padding:
        7px
        clamp(15px, 1.1vw, 22px);

    display: inline-flex;
    align-items: center;

    gap: 11px;

    border: 1px solid rgba(255, 138, 0, 0.15);
    border-radius: 999px;

    background: #fff7e8;
    color: #ff7900;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1;
    font-weight: 760;

    box-shadow:
        0 8px 24px rgba(35, 31, 23, 0.035);
}

.neubrandenburg-final-cta__kicker span {
    width: clamp(26px, 1.75vw, 35px);
    aspect-ratio: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffb400,
            #ff7900
        );

    color: #ffffff;
}

.neubrandenburg-final-cta__kicker svg {
    width: 58%;
    height: 58%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-final-cta__content h2 {
    max-width: 830px;
    margin: 0;

    color: #101114;

    font-size: clamp(58px, 4.3vw, 86px);
    line-height: 1.05;
    font-weight: 680;
    letter-spacing: -0.062em;
}

.neubrandenburg-final-cta__content h2 span {
    color: #ff7900;
}

.neubrandenburg-final-cta__text {
    max-width: 820px;

    margin-top: clamp(28px, 2vw, 40px);

    display: grid;
    gap: clamp(18px, 1.25vw, 25px);
}

.neubrandenburg-final-cta__text p {
    margin: 0;

    color: #515151;

    font-size: clamp(17px, 1.08vw, 21px);
    line-height: 1.58;
    letter-spacing: -0.01em;
}


/* =========================================================
   FINAL CTA VISUAL
   ========================================================= */

.neubrandenburg-final-cta__visual {
    position: relative;

    width: 100%;
    height: clamp(360px, 31vw, 620px);
}

.neubrandenburg-final-cta__circle {
    position: absolute;
    top: 5%;
    left: 14%;
    z-index: 1;

    width: clamp(360px, 29vw, 620px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 211, 126, 0.25),
            rgba(255, 235, 188, 0.13) 58%,
            transparent 74%
        );
}

.neubrandenburg-final-cta__visual > img {
    position: absolute;
    right: -3%;
    bottom: 1%;
    z-index: 3;

    width: 103%;
    height: 88%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 24px 24px rgba(35, 31, 23, 0.13)
        );
}

.neubrandenburg-final-cta__floating-card {
    position: absolute;
    top: 0;
    right: 2%;
    z-index: 5;

    width: clamp(250px, 18vw, 360px);
    padding:
        clamp(19px, 1.35vw, 27px)
        clamp(20px, 1.45vw, 29px);

    display: grid;
    grid-template-columns:
        clamp(52px, 3.6vw, 72px)
        minmax(0, 1fr);

    align-items: start;

    gap: clamp(14px, 1vw, 20px);

    border: 1px solid rgba(20, 20, 20, 0.06);
    border-radius: clamp(18px, 1.25vw, 25px);

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 20px 48px rgba(35, 31, 23, 0.11),
        0 4px 12px rgba(35, 31, 23, 0.03);
}

.neubrandenburg-final-cta__floating-card > span {
    width: clamp(52px, 3.6vw, 72px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 138, 0, 0.17);
    border-radius: 50%;

    background: #fff7e8;
    color: #ff7900;
}

.neubrandenburg-final-cta__floating-card svg {
    width: 52%;
    height: 52%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-final-cta__floating-card strong {
    display: block;

    color: #222222;

    font-size: clamp(16px, 1.08vw, 22px);
    line-height: 1.22;
    font-weight: 760;
    letter-spacing: -0.025em;
}

.neubrandenburg-final-cta__floating-card p {
    margin:
        clamp(13px, 0.9vw, 18px)
        0
        0;

    color: #666666;

    font-size: clamp(12px, 0.78vw, 15px);
    line-height: 1.45;
}


/* =========================================================
   FINAL CTA BENEFITS
   ========================================================= */

.neubrandenburg-final-cta__benefits {
    width: 100%;

    margin-top: clamp(22px, 1.6vw, 32px);
    padding:
        clamp(20px, 1.45vw, 29px)
        clamp(28px, 2vw, 40px);

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border: 1px solid rgba(20, 20, 20, 0.055);
    border-radius: clamp(17px, 1.15vw, 23px);

    background: rgba(255, 255, 255, 0.965);

    box-shadow:
        0 16px 38px rgba(35, 31, 23, 0.055);
}

.neubrandenburg-final-cta-benefit {
    position: relative;

    min-width: 0;
    padding-inline: clamp(24px, 1.9vw, 38px);

    display: grid;
    grid-template-columns:
        clamp(64px, 4.4vw, 88px)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(18px, 1.35vw, 27px);
}

.neubrandenburg-final-cta-benefit:first-child {
    padding-left: 0;
}

.neubrandenburg-final-cta-benefit:last-child {
    padding-right: 0;
}

.neubrandenburg-final-cta-benefit:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 12%;
    right: 0;

    width: 1px;
    height: 76%;

    background: rgba(20, 20, 20, 0.08);
}

.neubrandenburg-final-cta-benefit > span {
    width: clamp(64px, 4.4vw, 88px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 138, 0, 0.15);
    border-radius: 50%;

    background: #fff7e8;
    color: #ff7900;
}

.neubrandenburg-final-cta-benefit svg {
    width: 52%;
    height: 52%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-final-cta-benefit strong {
    display: block;

    color: #222222;

    font-size: clamp(16px, 1.05vw, 21px);
    line-height: 1.25;
    font-weight: 760;
}

.neubrandenburg-final-cta-benefit p {
    margin:
        7px
        0
        0;

    color: #5f5f5f;

    font-size: clamp(12.5px, 0.82vw, 16px);
    line-height: 1.4;
}


/* =========================================================
   FINAL CTA ACTIONS
   ========================================================= */

.neubrandenburg-final-cta__actions {
    width: min(100%, 1220px);

    margin:
        clamp(28px, 2vw, 40px)
        auto
        0;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: clamp(18px, 1.35vw, 27px);
}

.neubrandenburg-final-cta__button {
    min-height: clamp(76px, 5.2vw, 104px);
    padding:
        clamp(14px, 1vw, 20px)
        clamp(28px, 2vw, 40px);

    display: grid;
    grid-template-columns:
        clamp(48px, 3.4vw, 68px)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(18px, 1.35vw, 27px);

    border-radius: clamp(15px, 1vw, 20px);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.neubrandenburg-final-cta__button > span {
    width: clamp(48px, 3.4vw, 68px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.neubrandenburg-final-cta__button svg {
    width: 70%;
    height: 70%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-final-cta__button strong,
.neubrandenburg-final-cta__button small {
    display: block;
}

.neubrandenburg-final-cta__button strong {
    font-size: clamp(16px, 1.05vw, 21px);
    line-height: 1.2;
    font-weight: 760;
}

.neubrandenburg-final-cta__button small {
    margin-top: 6px;

    font-size: clamp(12.5px, 0.82vw, 16px);
    line-height: 1.2;
    font-weight: 560;
}

.neubrandenburg-final-cta__button b {
    font-size: clamp(28px, 1.8vw, 36px);
    line-height: 1;

    transition: transform var(--transition);
}

.neubrandenburg-final-cta__button--primary {
    background:
        linear-gradient(
            135deg,
            #ff9f00,
            #ff7900
        );

    color: #ffffff;

    box-shadow:
        0 18px 40px rgba(255, 121, 0, 0.24);
}

.neubrandenburg-final-cta__button--secondary {
    border: 2px solid #ff8a00;

    background: #ffffff;
    color: #242424;
}

.neubrandenburg-final-cta__button--secondary > span,
.neubrandenburg-final-cta__button--secondary b {
    color: #ff7900;
}

.neubrandenburg-final-cta__button:hover,
.neubrandenburg-final-cta__button:focus-visible {
    transform: translateY(-4px);

    outline: none;
}

.neubrandenburg-final-cta__button--primary:hover,
.neubrandenburg-final-cta__button--primary:focus-visible {
    box-shadow:
        0 24px 52px rgba(255, 121, 0, 0.34);
}

.neubrandenburg-final-cta__button--secondary:hover,
.neubrandenburg-final-cta__button--secondary:focus-visible {
    background: #fff8ec;
}

.neubrandenburg-final-cta__button:hover b,
.neubrandenburg-final-cta__button:focus-visible b {
    transform: translateX(5px);
}


/* =========================================================
   FINAL CTA LOCAL
   ========================================================= */

.neubrandenburg-final-cta__local {
    position: relative;

    width: 100%;
    min-height: clamp(66px, 4.8vw, 96px);

    margin-top: clamp(28px, 2vw, 40px);
    padding:
        clamp(15px, 1.08vw, 22px)
        clamp(28px, 2vw, 40px);

    display: grid;
    grid-template-columns:
        clamp(46px, 3.3vw, 66px)
        minmax(0, 1fr)
        minmax(260px, 31vw);

    align-items: center;

    gap: clamp(18px, 1.35vw, 27px);

    overflow: hidden;

    border: 1px solid rgba(255, 138, 0, 0.12);
    border-radius: clamp(16px, 1.1vw, 22px);

    background: rgba(255, 248, 235, 0.78);
}

.neubrandenburg-final-cta__local > span {
    width: clamp(46px, 3.3vw, 66px);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff7900;
}

.neubrandenburg-final-cta__local > span svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.neubrandenburg-final-cta__local p {
    margin: 0;

    color: #4d4d4d;

    font-size: clamp(14px, 0.92vw, 18px);
    line-height: 1.45;
    font-weight: 560;
}

.neubrandenburg-final-cta__city {
    align-self: end;

    color: rgba(255, 138, 0, 0.28);
}

.neubrandenburg-final-cta__city svg {
    width: 100%;
    height: auto;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   FINAL CTA — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
    .neubrandenburg-final-cta__inner {
        padding:
            36px
            42px
            34px;
    }

    .neubrandenburg-final-cta__main {
        grid-template-columns:
            minmax(500px, 47fr)
            minmax(0, 53fr);

        gap: 36px;
    }

    .neubrandenburg-final-cta__content h2 {
        font-size: clamp(54px, 4.1vw, 70px);
    }

    .neubrandenburg-final-cta__text p {
        font-size: 17px;
    }

    .neubrandenburg-final-cta__visual {
        height: 430px;
    }

    .neubrandenburg-final-cta__floating-card {
        width: 286px;
    }
}


/* =========================================================
   FINAL CTA — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {
    .neubrandenburg-final-cta {
        min-height: 0;
    }

    .neubrandenburg-final-cta__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .neubrandenburg-final-cta__main {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .neubrandenburg-final-cta__content {
        max-width: 900px;
    }

    .neubrandenburg-final-cta__content h2 {
        font-size: clamp(56px, 6.4vw, 78px);
    }

    .neubrandenburg-final-cta__text p {
        font-size: 18px;
    }

    .neubrandenburg-final-cta__visual {
        height: clamp(430px, 48vw, 560px);
    }

    .neubrandenburg-final-cta__visual > img {
        right: 0;

        width: 100%;
    }

    .neubrandenburg-final-cta__benefits {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .neubrandenburg-final-cta-benefit,
    .neubrandenburg-final-cta-benefit:first-child,
    .neubrandenburg-final-cta-benefit:last-child {
        padding-inline: 0;
    }

    .neubrandenburg-final-cta-benefit::after {
        display: none;
    }

    .neubrandenburg-final-cta__actions {
        margin-left: 0;
        margin-right: 0;
    }

    .neubrandenburg-final-cta__local {
        grid-template-columns:
            58px
            minmax(0, 1fr);
    }

    .neubrandenburg-final-cta__city {
        display: none;
    }
}


/* =========================================================
   FINAL CTA — TABLET 900
   ========================================================= */

@media (max-width: 900px) {
    .neubrandenburg-final-cta__inner {
        padding:
            70px
            24px
            54px;
    }

    .neubrandenburg-final-cta__content h2 {
        font-size: clamp(48px, 7.2vw, 66px);
    }

    .neubrandenburg-final-cta__actions {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-final-cta__button {
        max-width: 620px;
    }
}


/* =========================================================
   FINAL CTA — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {
    .neubrandenburg-final-cta__glow {
        display: none;
    }

    .neubrandenburg-final-cta__inner {
        padding:
            60px
            18px
            48px;
    }

    .neubrandenburg-final-cta__kicker {
        font-size: 12px;
        line-height: 1.2;
        white-space: normal;
    }

    .neubrandenburg-final-cta__content h2 {
        font-size: clamp(39px, 10.5vw, 48px);
        line-height: 1.05;
    }

    .neubrandenburg-final-cta__content h2 br {
        display: none;
    }

    .neubrandenburg-final-cta__text p {
        font-size: 16px;
        line-height: 1.52;
    }

    .neubrandenburg-final-cta__visual {
        height: auto;

        aspect-ratio: 1 / 0.78;
    }

    .neubrandenburg-final-cta__circle {
        top: 8%;
        left: 0;

        width: 95%;
    }

    .neubrandenburg-final-cta__visual > img {
        right: -7%;
        bottom: 0;

        width: 112%;
        height: 88%;
    }

    .neubrandenburg-final-cta__floating-card {
        position: relative;
        top: auto;
        right: auto;

        width: 100%;
        margin-top: 18px;
    }

    .neubrandenburg-final-cta__benefits {
        padding: 18px;

        gap: 18px;

        border-radius: 18px;
    }

    .neubrandenburg-final-cta-benefit {
        grid-template-columns:
            54px
            minmax(0, 1fr);

        gap: 14px;
    }

    .neubrandenburg-final-cta-benefit > span {
        width: 54px;
    }

    .neubrandenburg-final-cta-benefit strong {
        font-size: 15px;
    }

    .neubrandenburg-final-cta-benefit p {
        font-size: 12.5px;
    }

    .neubrandenburg-final-cta__button {
        min-height: 74px;
        padding: 14px 16px;

        grid-template-columns:
            44px
            minmax(0, 1fr)
            auto;
    }

    .neubrandenburg-final-cta__button > span {
        width: 44px;
    }

    .neubrandenburg-final-cta__button strong {
        font-size: 15px;
    }

    .neubrandenburg-final-cta__button small {
        font-size: 12px;
    }

    .neubrandenburg-final-cta__local {
        padding: 17px;

        grid-template-columns:
            46px
            minmax(0, 1fr);

        border-radius: 18px;
    }

    .neubrandenburg-final-cta__local > span {
        width: 46px;
    }

    .neubrandenburg-final-cta__local p {
        font-size: 13px;
    }
}


/* =========================================================
   FINAL CTA — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {
    .neubrandenburg-final-cta__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .neubrandenburg-final-cta__content h2 {
        font-size: clamp(36px, 10vw, 42px);
    }

    .neubrandenburg-final-cta__button {
        gap: 12px;
    }
}


/* =========================================================
   FINAL CTA — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .neubrandenburg-final-cta__button,
    .neubrandenburg-final-cta__button b {
        transition: none !important;
    }

    .neubrandenburg-final-cta__button:hover,
    .neubrandenburg-final-cta__button:focus-visible,
    .neubrandenburg-final-cta__button:hover b,
    .neubrandenburg-final-cta__button:focus-visible b {
        transform: none;
    }
}


/* =========================================================
   LANDING FOOTER
   ========================================================= */

.landing-footer {
    position: relative;
    isolation: isolate;

    width: 100%;

    overflow: hidden;

    border-top: 1px solid rgba(20, 20, 20, 0.06);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffdf7 42%,
            #f7f3e9 100%
        );
}

.landing-footer__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.landing-footer__glow {
    position: absolute;

    border-radius: 50%;
}

.landing-footer__glow--left {
    top: -45%;
    left: -13%;

    width: clamp(420px, 36vw, 920px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 38, 0.14) 0%,
            rgba(255, 219, 128, 0.05) 48%,
            transparent 72%
        );
}

.landing-footer__glow--right {
    right: -14%;
    bottom: -65%;

    width: clamp(500px, 42vw, 1050px);
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 91, 0.14) 0%,
            rgba(255, 228, 160, 0.05) 52%,
            transparent 73%
        );
}

.landing-footer__dots {
    position: absolute;
    top: 12%;
    right: 3%;

    width: clamp(110px, 9vw, 220px);
    height: clamp(90px, 7vw, 170px);

    opacity: 0.24;

    background-image:
        radial-gradient(
            circle,
            rgba(225, 159, 0, 0.34) 1.2px,
            transparent 1.4px
        );

    background-size: 13px 13px;
}

.landing-footer__inner {
    position: relative;
    z-index: 2;

    width: 100%;
}

.landing-footer__top {
    width: 100%;
    padding:
        clamp(68px, 5vw, 120px)
        clamp(30px, 3.8vw, 96px)
        clamp(48px, 3.5vw, 84px);

    display: grid;
    grid-template-columns:
        minmax(390px, 1.2fr)
        minmax(290px, 0.72fr)
        minmax(390px, 1fr);

    align-items: start;

    gap: clamp(36px, 3.5vw, 88px);
}

.landing-footer__brand-column {
    min-width: 0;
}

.landing-footer__logo {
    width: clamp(245px, 17vw, 350px);

    display: inline-flex;
}

.landing-footer__logo img {
    width: 100%;
    height: auto;

    object-fit: contain;
}

.landing-footer__brand-column h2 {
    max-width: 680px;
    margin:
        clamp(30px, 2.2vw, 48px)
        0
        0;

    color: #17181a;

    font-size: clamp(34px, 2.5vw, 58px);
    line-height: 1.08;
    font-weight: 640;
    letter-spacing: -0.045em;
}

.landing-footer__brand-column h2 span {
    display: block;

    margin-top: 0.12em;

    color: #e7a500;
}

.landing-footer__description {
    max-width: 650px;
    margin:
        clamp(22px, 1.5vw, 34px)
        0
        0;

    color: #626262;

    font-size: clamp(15px, 1vw, 22px);
    line-height: 1.58;
}

.landing-footer__badges {
    margin-top: clamp(25px, 1.8vw, 38px);

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-footer__badges span {
    min-height: 42px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(225, 160, 0, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.78);
    color: #424242;

    font-size: clamp(11px, 0.7vw, 14px);
    line-height: 1;
    font-weight: 650;
}

.landing-footer__badges svg {
    width: 19px;
    height: 19px;

    flex: 0 0 auto;

    fill: none;
    stroke: #d99a00;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-footer__socials {
    max-width: 650px;
    margin-top: clamp(25px, 1.8vw, 38px);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.landing-footer__socials > a {
    min-width: 0;
    min-height: 72px;
    padding: 10px 14px;

    display: grid;
    grid-template-columns:
        44px
        minmax(0, 1fr)
        20px;

    align-items: center;

    gap: 12px;

    border: 1px solid rgba(20, 20, 20, 0.07);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.88);

    box-shadow:
        0 10px 27px rgba(35, 31, 23, 0.045);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.landing-footer__socials > a:hover,
.landing-footer__socials > a:focus-visible {
    transform: translateY(-3px);

    border-color: rgba(225, 160, 0, 0.24);

    box-shadow:
        0 16px 35px rgba(35, 31, 23, 0.075);

    outline: none;
}

.landing-footer__social-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #fff6dc;
    color: #1d1d1d;
}

.landing-footer__social-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-footer__socials small,
.landing-footer__socials strong {
    display: block;
}

.landing-footer__socials small {
    color: #777777;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 550;
}

.landing-footer__socials strong {
    margin-top: 4px;

    overflow: hidden;

    color: #242424;

    font-size: clamp(13px, 0.82vw, 16px);
    line-height: 1.2;
    font-weight: 680;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-footer__socials b {
    color: #e3a100;

    font-size: 21px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.landing-footer__socials > a:hover b {
    transform: translate(3px, -3px);
}

.landing-footer__links-column {
    min-width: 0;

    display: grid;
    gap: clamp(38px, 3vw, 64px);
}

.landing-footer__link-group h3 {
    margin: 0 0 clamp(22px, 1.5vw, 32px);

    color: #232323;

    font-size: clamp(13px, 0.82vw, 17px);
    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.landing-footer__link-group h3::after {
    content: "";

    width: 44px;
    height: 3px;
    margin-top: 13px;

    display: block;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #e6a300,
            #ffc83f
        );
}

.landing-footer__link-group nav {
    display: grid;
    gap: 8px;
}

.landing-footer__link-group a {
    min-height: 48px;
    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    border-bottom: 1px solid rgba(20, 20, 20, 0.07);

    color: #4e4e4e;

    font-size: clamp(14px, 0.9vw, 18px);
    line-height: 1.2;
    font-weight: 560;

    transition:
        color 0.22s ease,
        padding-left 0.22s ease;
}

.landing-footer__link-group a b {
    color: #dfa000;

    font-size: 19px;
    line-height: 1;

    transition: transform 0.22s ease;
}

.landing-footer__link-group a:hover,
.landing-footer__link-group a:focus-visible {
    padding-left: 8px;

    color: #c98e00;

    outline: none;
}

.landing-footer__link-group a:hover b {
    transform: translateX(4px);
}

.landing-footer__contact-column {
    min-width: 0;
}

.landing-footer__contact-heading > span {
    color: #e3a100;

    font-size: clamp(10px, 0.68vw, 14px);
    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-footer__contact-heading h3 {
    margin:
        clamp(16px, 1vw, 23px)
        0
        0;

    color: #17181a;

    font-size: clamp(29px, 2vw, 45px);
    line-height: 1.1;
    font-weight: 640;
    letter-spacing: -0.042em;
}

.landing-footer__contact-heading p {
    max-width: 580px;
    margin:
        clamp(15px, 1vw, 23px)
        0
        0;

    color: #696969;

    font-size: clamp(14px, 0.86vw, 18px);
    line-height: 1.52;
}

.landing-footer__contact-card {
    margin-top: clamp(25px, 1.8vw, 38px);
    padding: clamp(20px, 1.5vw, 31px);

    border-radius: clamp(20px, 1.35vw, 29px);

    background:
        linear-gradient(
            145deg,
            #202124,
            #121315
        );

    color: #ffffff;

    box-shadow:
        0 24px 55px rgba(19, 19, 19, 0.16);
}

.landing-footer__contact-item {
    min-width: 0;
    min-height: 68px;

    display: grid;
    grid-template-columns:
        48px
        minmax(0, 1fr);

    align-items: center;

    gap: 15px;

    color: inherit;
}

.landing-footer__contact-item + .landing-footer__contact-item {
    margin-top: 10px;
    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-footer__contact-item > .landing-footer__contact-icon {
    width: 48px;
    height: 48px;
    margin: 0;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    align-self: center;

    border: 1px solid rgba(255, 190, 25, 0.16);
    border-radius: 14px;

    background: rgba(255, 188, 18, 0.1);
    color: #ffc229;

    line-height: 0;
}

.landing-footer__contact-item > .landing-footer__contact-icon svg {
    width: 24px;
    height: 24px;

    display: block;
    flex: 0 0 auto;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-footer__contact-item > div > small,
.landing-footer__contact-item > div > strong,
.landing-footer__contact-item > div > span {
    display: block;
}

.landing-footer__contact-item > div > small {
    margin: 0 0 4px;

    color: rgba(255, 255, 255, 0.54);

    font-size: 10px;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.landing-footer__contact-item > div > strong {
    margin: 0;

    color: #ffffff;

    font-size: clamp(14px, 0.9vw, 18px);
    line-height: 1.28;
    font-weight: 670;
}

.landing-footer__contact-item > div > span {
    margin: 4px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: clamp(12px, 0.74vw, 15px);
    line-height: 1.45;
}

a.landing-footer__contact-item {
    transition: transform 0.22s ease;
}

a.landing-footer__contact-item:hover,
a.landing-footer__contact-item:focus-visible {
    transform: translateX(4px);

    outline: none;
}

.landing-footer__contact-button {
    width: 100%;
    min-height: clamp(56px, 3.5vw, 68px);
    margin-top: clamp(22px, 1.5vw, 30px);
    padding: 0 clamp(19px, 1.35vw, 28px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffb400
        );

    color: #171717;

    font-size: clamp(13px, 0.85vw, 17px);
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 15px 32px rgba(255, 181, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.landing-footer__contact-button b {
    font-size: 22px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.landing-footer__contact-button:hover,
.landing-footer__contact-button:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 20px 38px rgba(255, 181, 0, 0.27);

    outline: none;
}

.landing-footer__contact-button:hover b {
    transform: translate(4px, -4px);
}

.landing-footer__bottom {
    width: 100%;
    padding:
        24px
        clamp(30px, 3.8vw, 96px)
        calc(24px + env(safe-area-inset-bottom));

    display: grid;
    grid-template-columns:
        minmax(230px, 1fr)
        auto
        minmax(230px, 1fr);

    align-items: center;

    gap: 20px;

    border-top: 1px solid rgba(20, 20, 20, 0.08);

    background: rgba(255, 255, 255, 0.38);
}

.landing-footer__bottom > p {
    margin: 0;

    color: #747474;

    font-size: clamp(11px, 0.72vw, 14px);
    line-height: 1.4;
}

.landing-footer__bottom > p:last-child {
    text-align: right;
}

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

.landing-footer__legal a,
.landing-footer__legal button {
    position: relative;

    padding: 0 13px;

    border: 0;

    background: transparent;
    color: #626262;

    font: inherit;
    font-size: clamp(11px, 0.72vw, 14px);
    line-height: 1.4;

    cursor: pointer;

    transition: color 0.22s ease;
}

.landing-footer__legal > *:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 0;

    width: 1px;
    height: 14px;

    background: rgba(20, 20, 20, 0.13);

    transform: translateY(-50%);
}

.landing-footer__legal a:hover,
.landing-footer__legal a:focus-visible,
.landing-footer__legal button:hover,
.landing-footer__legal button:focus-visible {
    color: #cb9000;

    outline: none;
}


/* =========================================================
   LANDING FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 1400px) and (min-width: 1181px) {
    .landing-footer__top {
        padding-right: 42px;
        padding-left: 42px;

        grid-template-columns:
            minmax(350px, 1.12fr)
            minmax(240px, 0.68fr)
            minmax(360px, 1fr);

        gap: 34px;
    }

    .landing-footer__bottom {
        padding-right: 42px;
        padding-left: 42px;
    }
}

@media (max-width: 1180px) {
    .landing-footer__top {
        padding: 70px 30px 56px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.9fr);

        gap: 48px 38px;
    }

    .landing-footer__links-column {
        grid-column: 1 / -1;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 36px;
    }

    .landing-footer__bottom {
        padding-right: 30px;
        padding-left: 30px;

        grid-template-columns: 1fr;
    }

    .landing-footer__bottom > p,
    .landing-footer__bottom > p:last-child {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .landing-footer__top {
        padding: 64px 24px 50px;

        grid-template-columns: 1fr;
    }

    .landing-footer__brand-column,
    .landing-footer__contact-column {
        max-width: 760px;
    }

    .landing-footer__links-column {
        grid-column: auto;

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-footer__bottom {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 620px) {
    .landing-footer__dots {
        display: none;
    }

    .landing-footer__top {
        padding: 52px 18px 38px;

        gap: 40px;
    }

    .landing-footer__logo {
        width: 225px;
    }

    .landing-footer__brand-column h2 {
        margin-top: 28px;

        font-size: clamp(32px, 9vw, 40px);
    }

    .landing-footer__description {
        font-size: 15.5px;
    }

    .landing-footer__badges {
        align-items: stretch;
    }

    .landing-footer__badges span {
        width: 100%;
        justify-content: flex-start;
    }

    .landing-footer__socials {
        grid-template-columns: 1fr;
    }

    .landing-footer__socials > a {
        min-height: 68px;
    }

    .landing-footer__links-column {
        display: none;
    }

    .landing-footer__contact-heading h3 {
        font-size: 31px;
    }

    .landing-footer__contact-card {
        padding: 19px;

        border-radius: 21px;
    }

    .landing-footer__contact-item {
        grid-template-columns:
            46px
            minmax(0, 1fr);

        gap: 13px;
    }

    .landing-footer__contact-icon {
        width: 46px;
        height: 46px;
    }

    .landing-footer__contact-button {
        min-height: 58px;
        padding: 0 18px;

        font-size: 13px;
    }

    .landing-footer__bottom {
        padding:
            22px
            18px
            calc(22px + env(safe-area-inset-bottom));

        gap: 17px;
    }

    .landing-footer__legal {
        gap: 9px 0;
    }

    .landing-footer__legal a,
    .landing-footer__legal button {
        padding: 0 10px;
    }
}

@media (max-width: 390px) {
    .landing-footer__top {
        padding-right: 16px;
        padding-left: 16px;
    }

    .landing-footer__logo {
        width: 210px;
    }

    .landing-footer__brand-column h2 {
        font-size: 31px;
    }

    .landing-footer__socials strong {
        font-size: 14px;
    }

    .landing-footer__contact-heading h3 {
        font-size: 29px;
    }

    .landing-footer__contact-item strong {
        font-size: 14px;
    }

    .landing-footer__contact-item span {
        font-size: 12px;
    }

    .landing-footer__bottom {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-footer__socials > a,
    .landing-footer__socials b,
    .landing-footer__link-group a,
    .landing-footer__link-group a b,
    a.landing-footer__contact-item,
    .landing-footer__contact-button,
    .landing-footer__contact-button b {
        transition: none !important;
    }
}


/* =========================================================
   NEUBRANDENBURG FAQ
   ========================================================= */

.neubrandenburg-faq {
    position: relative;
    overflow: hidden;

    padding: 0 0 132px;

    background:
        radial-gradient(circle at top left, rgba(255, 196, 70, 0.17), transparent 34%),
        linear-gradient(180deg, #fffdf7 0%, #fff8ea 52%, #ffffff 100%);
}

.neubrandenburg-faq__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.neubrandenburg-faq__header {
    display: grid;
    gap: 18px;

    max-width: 820px;
    margin: 0 auto 42px;

    text-align: center;
}

.neubrandenburg-faq__eyebrow {
    justify-self: center;

    padding: 10px 18px;
    border: 1px solid rgba(203, 144, 0, 0.2);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 28px rgba(174, 133, 52, 0.12);

    color: #9b6d00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.neubrandenburg-faq__header h2 {
    margin: 0;

    color: #18130c;
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.neubrandenburg-faq__header p {
    margin: 0;

    color: rgba(34, 26, 18, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.neubrandenburg-faq__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.neubrandenburg-faq__intro,
.neubrandenburg-faq__item {
    border: 1px solid rgba(203, 144, 0, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 70px rgba(141, 109, 47, 0.13);
}

.neubrandenburg-faq__intro {
    position: sticky;
    top: 106px;

    display: grid;
    gap: 24px;

    padding: 32px;
}

.neubrandenburg-faq__intro strong {
    color: #1f170f;
    font-size: 28px;
    line-height: 1.1;
}

.neubrandenburg-faq__intro p {
    margin: 0;

    color: rgba(38, 30, 22, 0.8);
    font-size: 16px;
    line-height: 1.75;
}

.neubrandenburg-faq__intro-links {
    display: grid;
    gap: 12px;
}

.neubrandenburg-faq__intro-topic,
.neubrandenburg-faq__link {
    color: #8e6400;
    font-weight: 700;
}

.neubrandenburg-faq__intro-topic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.neubrandenburg-faq__intro-topic::before {
    content: "";

    width: 8px;
    height: 8px;
    border-radius: 999px;

    background: linear-gradient(135deg, #f0ab12, #cf8c00);
    box-shadow: 0 0 0 5px rgba(240, 171, 18, 0.14);
}

.neubrandenburg-faq__link {
    text-decoration: none;
}

.neubrandenburg-faq__link:hover,
.neubrandenburg-faq__link:focus-visible,
.neubrandenburg-faq__answer a:hover,
.neubrandenburg-faq__answer a:focus-visible {
    color: #c68400;
    outline: none;
}

.neubrandenburg-faq__intro-actions {
    display: grid;
    gap: 14px;
}

.neubrandenburg-faq__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 58px;
    padding: 0 22px;
    border-radius: 18px;

    background: linear-gradient(135deg, #f0ab12, #ffcd57);
    box-shadow: 0 16px 30px rgba(206, 142, 15, 0.24);

    color: #1f1300;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.neubrandenburg-faq__items {
    display: grid;
    gap: 18px;
}

.neubrandenburg-faq__item {
    overflow: hidden;
}

.neubrandenburg-faq__item[open] {
    border-color: rgba(203, 144, 0, 0.24);
}

.neubrandenburg-faq__item summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;

    padding: 24px 26px;

    cursor: pointer;
    list-style: none;
}

.neubrandenburg-faq__item summary::-webkit-details-marker {
    display: none;
}

.neubrandenburg-faq__number {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;
    border-radius: 14px;

    background: rgba(255, 198, 79, 0.18);
    color: #9f6f00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.neubrandenburg-faq__question {
    color: #17120d;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.32;
}

.neubrandenburg-faq__state {
    color: #bf8600;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;

    transition: transform 0.24s ease;
}

.neubrandenburg-faq__item[open] .neubrandenburg-faq__state {
    transform: rotate(45deg);
}

.neubrandenburg-faq__answer {
    padding: 0 26px 26px;
}

.neubrandenburg-faq__answer p {
    margin: 0;

    color: rgba(39, 31, 23, 0.82);
    font-size: 16px;
    line-height: 1.78;
}

.neubrandenburg-faq__answer a {
    color: #8e6400;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .neubrandenburg-faq {
        padding-bottom: 108px;
    }

    .neubrandenburg-faq__layout {
        grid-template-columns: 1fr;
    }

    .neubrandenburg-faq__intro {
        position: static;
    }
}

@media (max-width: 620px) {
    .neubrandenburg-faq__inner {
        width: min(100% - 28px, 100%);
    }

    .neubrandenburg-faq__header {
        gap: 16px;
        margin-bottom: 30px;
    }

    .neubrandenburg-faq__header p {
        font-size: 16px;
    }

    .neubrandenburg-faq__intro,
    .neubrandenburg-faq__item {
        border-radius: 24px;
    }

    .neubrandenburg-faq__intro {
        padding: 24px 22px;
    }

    .neubrandenburg-faq__intro strong {
        font-size: 23px;
    }

    .neubrandenburg-faq__item summary {
        grid-template-columns: 36px minmax(0, 1fr) 20px;
        gap: 14px;
        padding: 20px 20px 18px;
    }

    .neubrandenburg-faq__number {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 12px;
    }

    .neubrandenburg-faq__question {
        font-size: 18px;
    }

    .neubrandenburg-faq__state {
        font-size: 24px;
    }

    .neubrandenburg-faq__answer {
        padding: 0 20px 22px;
    }

    .neubrandenburg-faq__answer p {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .neubrandenburg-faq__header h2 {
        font-size: 33px;
    }

    .neubrandenburg-faq__intro {
        padding: 22px 18px;
    }

    .neubrandenburg-faq__item summary,
    .neubrandenburg-faq__answer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .neubrandenburg-faq__question {
        font-size: 17px;
    }
}

@media (min-width: 1181px) {
    .neubrandenburg-page .site-header__inner {
        padding-inline: clamp(24px, 2.2vw, 42px);

        grid-template-columns:
            minmax(220px, 0.9fr)
            minmax(0, 1.55fr)
            minmax(290px, 1fr);
    }

    .neubrandenburg-page .site-header__navigation {
        gap: clamp(16px, 1.15vw, 24px);
    }

    .neubrandenburg-page .site-header__navigation > a,
    .neubrandenburg-page .site-header__dropdown-toggle {
        font-size: clamp(11px, 0.72vw, 14px);
    }

    .neubrandenburg-page .site-header__actions {
        gap: clamp(9px, 0.7vw, 12px);
    }

    .neubrandenburg-page .site-header__project {
        min-width: clamp(170px, 11vw, 220px);
        padding: 0 clamp(16px, 1vw, 22px);
        gap: 14px;

        font-size: clamp(13px, 0.82vw, 16px);
    }

    .neubrandenburg-page .site-header__whatsapp {
        min-width: clamp(128px, 9vw, 166px);
        padding: 0 clamp(14px, 0.95vw, 20px);
    }
}

@media (min-width: 1181px) {
    .neubrandenburg-page .site-header__navigation {
        gap: clamp(16px, 1.15vw, 22px);
    }

    .neubrandenburg-page .site-header__navigation > a,
    .neubrandenburg-page .site-header__dropdown-toggle {
        font-size: clamp(14px, 0.92vw, 16.5px);
    }

    .neubrandenburg-page .site-header__project {
        min-width: clamp(158px, 10.1vw, 205px);
        padding: 0 clamp(13px, 0.9vw, 18px);
        gap: 10px;

        font-size: clamp(13px, 0.8vw, 15.5px);
    }

    .neubrandenburg-page .site-header__whatsapp {
        min-width: clamp(116px, 8.1vw, 152px);
        padding: 0 clamp(12px, 0.82vw, 16px);
    }
}
