/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

.bau-page {
    background: #ffffff;
    color: #1d2433;
    overflow-x: clip;
}

.service-shell,
.bau-shell {
    width: min(1360px, calc(100% - 120px));
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .service-shell,
    .bau-shell {
        width: calc(100% - 64px);
    }
}

@media (max-width: 640px) {
    .service-shell,
    .bau-shell {
        width: calc(100% - 32px);
    }
}

/* =========================================================
   HERO
========================================================= */

.bau-hero {
    position: relative;
    width: 100%;
    min-height: 860px;
    padding: 0;
    overflow: hidden;
    background: #071734;
}

.bau-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 23, 52, 0.88) 0%, rgba(7, 23, 52, 0.70) 30%, rgba(7, 23, 52, 0.38) 58%, rgba(7, 23, 52, 0.16) 100%),
        linear-gradient(180deg, rgba(7, 23, 52, 0.08) 0%, rgba(7, 23, 52, 0.18) 100%);
}

.bau-hero::after {
    display: none;
}

.bau-hero .bau-shell {
    position: relative;
    z-index: 4;
    min-height: 860px;
}

.bau-hero-grid {
    position: relative;
    min-height: 860px;
    display: flex;
    align-items: flex-end;
}

.bau-hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.bau-hero-image img,
.bau-hero-image video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 860px;
    object-fit: cover;
    object-position: center center;
    transform: none;
}

.bau-hero-image video {
    pointer-events: none;
}

.bau-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(13, 20, 34, 0.68) 0%, rgba(13, 20, 34, 0.46) 34%, rgba(13, 20, 34, 0.20) 62%, rgba(13, 20, 34, 0.08) 100%),
        linear-gradient(180deg, rgba(13, 20, 34, 0.10) 0%, rgba(13, 20, 34, 0.06) 100%);
}

.bau-hero__inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 820px;
    padding: 220px 0 20px;
}

.bau-hero .subheadline {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.10);
}

.bau-hero h1 {
    margin: 0 0 18px;
    max-width: 13ch;
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-wrap: balance;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.bau-hero .intro {
    margin: 0;
    max-width: 800px;
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255,255,255,0.93);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.bau-hero .intro strong {
    color: #ffffff;
    font-weight: 800;
}

.bau-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.bau-hero__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(18, 32, 60, 0.10);
}

.bau-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* =========================================================
   BUTTONS
========================================================= */

.bau-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.bau-page .btn:hover {
    transform: translateY(-1px);
}

.bau-page .btn-primary {
    background: #2f7cff;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(47, 124, 255, 0.20);
}

.bau-page .btn-primary:hover {
    box-shadow: 0 16px 30px rgba(47, 124, 255, 0.24);
}

.bau-page .btn-secondary {
    background: #ffffff;
    color: #1d2433;
    border: 1px solid #dfe6f2;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.05);
}

.bau-hero .btn-primary {
    box-shadow: 0 16px 30px rgba(47, 124, 255, 0.26);
}

.bau-hero .btn-secondary {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.9);
}

.bau-page .btn-secondary:hover {
    border-color: #2f7cff;
    background: #f4f8ff;
}

/* =========================================================
   SERVICE OVERVIEW / INHALTSVERZEICHNIS
========================================================= */

.service-overview-nav {
    position: relative;
    margin-top: 0;
    padding: 56px 0 24px;
    z-index: 5;
}

.service-overview-nav__box {
    position: relative;
    padding: 26px 26px 24px;
    border: 1px solid rgba(223, 230, 242, 0.96);
    border-radius: 28px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 28px 64px rgba(18, 32, 60, 0.12);
    overflow: hidden;
}

.service-overview-nav__box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(47,124,255,0.10), transparent 28%),
        linear-gradient(180deg, rgba(248,251,255,0.88) 0%, rgba(255,255,255,0.96) 100%);
}

.service-overview-nav__head {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin-bottom: 20px;
}

.service-overview-nav__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(47,124,255,0.06);
}

.service-overview-nav__head h2 {
    margin: 0 0 12px;
    max-width: 11ch;
    font-size: clamp(30px, 3.2vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #1d2433;
    text-wrap: balance;
}

.service-overview-nav__head p {
    margin: 0;
    max-width: 980px;
    font-size: 16px;
    line-height: 1.65;
    color: #5b6576;
}

.service-overview-nav__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-overview-nav__link {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 16px 18px;
    border: 1px solid #dfe6f2;
    border-radius: 20px;
    background: #ffffff;
    color: #1d2433;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 10px 24px rgba(18, 32, 60, 0.05);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.service-overview-nav__link:hover {
    transform: translateY(-2px);
    border-color: #c8d9fb;
    background: #f8fbff;
    box-shadow: 0 16px 28px rgba(18, 32, 60, 0.08);
}

.service-overview-nav__link::before {
    content: "↘";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    border-radius: 50%;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   CONTENT
========================================================= */

.bau-content {
    padding: 96px 0 110px;
}

.bau-layout {
    width: 100%;
}

.bau-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.bau-section,
.bau-faq {
    width: 100%;
}

.bau-section {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid #e8eef7;
}

.bau-section:last-child {
    margin-bottom: 0;
}

.bau-section h2,
.bau-faq h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1d2433;
    max-width: 24ch;
    text-wrap: balance;
}

.bau-section h3,
.faq-item h3,
.bau-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.28;
    color: #1d2433;
}

.bau-section p,
.faq-item p,
.bau-card p {
    margin: 0 0 18px;
    max-width: 840px;
    color: #586375;
    font-size: 17px;
    line-height: 1.78;
}

/* =========================================================
   INLINE BOXES / CARDS
========================================================= */

.bau-inline-boxes {
    border-bottom: 0;
    padding-bottom: 4px;
}

.bau-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bau-card {
    padding: 28px 26px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
}

.bau-card-accent {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.bau-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.bau-card p {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

.bau-card .btn {
    margin-top: 4px;
}

.bau-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bau-card ul li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 26px;
    color: #1d2433;
    font-size: 15px;
    line-height: 1.65;
}

.bau-card ul li:last-child {
    margin-bottom: 0;
}

.bau-card ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #2f7cff;
    font-weight: 800;
}

/* =========================================================
   HIGHLIGHT
========================================================= */

.bau-highlight {
    border-bottom: 0;
    margin-bottom: 46px;
    padding-bottom: 0;
}

.bau-highlight-box {
    padding: 34px 34px;
    border: 1px solid #dfe6f2;
    border-radius: 28px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 18px 38px rgba(18, 32, 60, 0.06);
}

.bau-highlight-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =========================================================
   MEDIA BLOCKS
========================================================= */

.bau-media-block {
    border-bottom: 0;
    padding-bottom: 8px;
}

.bau-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 34px;
    align-items: center;
}

.bau-media-grid--reverse {
    grid-template-columns: 520px minmax(0, 1fr);
}

.bau-media-grid--reverse .bau-media-text {
    order: 2;
}

.bau-media-grid--reverse .bau-media-placeholder {
    order: 1;
}

.bau-media-text,
.bau-media-placeholder {
    min-width: 0;
}

.bau-media-placeholder img,
.bau-media-placeholder video {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    border: 1px solid #dfe6f2;
    box-shadow: 0 18px 38px rgba(18, 32, 60, 0.08);
    background: #eef4fb;
}

/* =========================================================
   BASIC LISTS
========================================================= */

.bau-list,
.bau-steps {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.bau-list li,
.bau-steps li {
    position: relative;
    margin: 0 0 12px;
    padding: 14px 16px 14px 52px;
    border: 1px solid #dfe6f2;
    border-radius: 18px;
    background: #f8fbff;
    color: #1d2433;
    font-size: 16px;
    line-height: 1.65;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.04);
}

.bau-list li::before,
.bau-steps li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bau-steps {
    counter-reset: bausteps;
}

.bau-steps li::before {
    counter-increment: bausteps;
    content: counter(bausteps);
    font-size: 12px;
}

/* =========================================================
   TYPE GRID
========================================================= */

.bau-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.bau-type-card {
    padding: 24px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    min-width: 0;
}

.bau-type-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.26;
    color: #1d2433;
}

.bau-type-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
    color: #586375;
}

/* =========================================================
   LINKS
========================================================= */

.bau-links {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.bau-links a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid #dfe6f2;
    border-radius: 18px;
    background: #ffffff;
    color: #1d2433;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bau-links a:hover {
    transform: translateY(-1px);
    border-color: #2f7cff;
    background: #f4f8ff;
    box-shadow: 0 12px 26px rgba(18, 32, 60, 0.06);
}

/* =========================================================
   CREATIVE STEPS
========================================================= */

.bau-steps-visual {
    border-bottom: 0;
    padding-bottom: 8px;
}

.steps-creative-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.step-creative {
    position: relative;
    padding: 26px;
    border: 1px solid #dfe6f2;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(18, 32, 60, 0.06);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.step-creative:hover {
    transform: translateY(-3px);
    border-color: #c9d9f5;
    box-shadow: 0 20px 40px rgba(18, 32, 60, 0.08);
}

.step-creative__top {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.step-creative__number {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, #2f7cff 0%, #1968f1 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(47, 124, 255, 0.18);
}

.step-creative__top h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.28;
}

.step-creative__media {
    margin-bottom: 18px;
}

.step-creative__media img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
}

.step-creative p {
    margin: 0;
    max-width: 100%;
    color: #586375;
    font-size: 16px;
    line-height: 1.72;
}

/* =========================================================
   PREMIUM STEPS TIMELINE
========================================================= */

.bau-timeline {
    position: relative;
    margin-top: 38px;
    padding: 8px 0 8px;
}

.bau-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        rgba(47, 124, 255, 0.08) 0%,
        rgba(47, 124, 255, 0.40) 16%,
        rgba(47, 124, 255, 0.20) 100%
    );
    border-radius: 999px;
}

.bau-step-card {
    position: relative;
    width: calc(50% - 42px);
    margin-bottom: 26px;
    padding: 24px 24px 22px 88px;
    border: 1px solid #dfe6f2;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(18, 32, 60, 0.06);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.bau-step-card:last-child {
    margin-bottom: 0;
}

.bau-step-card:hover {
    transform: translateY(-3px);
    border-color: #c9d9f5;
    box-shadow: 0 22px 42px rgba(18, 32, 60, 0.09);
}

.bau-step-card:nth-child(odd) {
    margin-right: auto;
}

.bau-step-card:nth-child(even) {
    margin-left: auto;
}

.bau-step-card::before {
    content: "";
    position: absolute;
    top: 36px;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, rgba(47, 124, 255, 0.20), rgba(47, 124, 255, 0.55));
}

.bau-step-card:nth-child(odd)::before {
    right: -42px;
}

.bau-step-card:nth-child(even)::before {
    left: -42px;
}

.bau-step-card::after {
    content: "";
    position: absolute;
    top: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2f7cff;
    box-shadow: 0 0 0 10px rgba(47, 124, 255, 0.12);
}

.bau-step-card:nth-child(odd)::after {
    right: -50px;
}

.bau-step-card:nth-child(even)::after {
    left: -50px;
}

.bau-step-number {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, #2f7cff 0%, #1968f1 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow: 0 12px 24px rgba(47, 124, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bau-step-content h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.28;
    color: #1d2433;
}

.bau-step-content p {
    margin: 0;
    max-width: 100%;
    color: #586375;
    font-size: 16px;
    line-height: 1.72;
}

.bau-step-card:nth-child(1),
.bau-step-card:nth-child(4),
.bau-step-card:nth-child(7) {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bau-step-card:nth-child(2),
.bau-step-card:nth-child(5) {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.bau-step-card:nth-child(3),
.bau-step-card:nth-child(6) {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.bau-contact-section {
    border-bottom: 0;
    padding-bottom: 4px;
}

.bau-contact-section .bau-highlight-box {
    padding: 38px 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(47,124,255,0.08), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.bau-contact-section .bau-hero__actions {
    margin-top: 26px;
}

/* =========================================================
   LOCATIONS
========================================================= */

.bau-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.bau-locations span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #f4f8ff;
    border: 1px solid #dfe6f2;
    color: #1d2433;
    font-size: 14px;
    font-weight: 600;
}

/* =========================================================
   FAQ
========================================================= */

.bau-faq {
    margin-top: 10px;
}

.faq-item {
    padding: 24px 26px;
    margin-bottom: 16px;
    border: 1px solid #dfe6f2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(18, 32, 60, 0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    margin-top: 0;
}

.faq-item p {
    max-width: 100%;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {
    .service-overview-nav__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =========================================================
   LAPTOP / COMPACT
========================================================= */

@media (min-width: 992px) and (max-height: 900px) {
    .service-shell,
    .bau-shell {
        width: min(1280px, calc(100% - 96px));
    }

    .bau-hero,
    .bau-hero .bau-shell,
    .bau-hero-grid,
    .bau-hero-image img,
    .bau-hero-image video {
        min-height: 760px;
    }

    .bau-hero__inner {
        max-width: 760px;
        padding: 180px 0 18px;
    }

    .bau-hero .subheadline {
        min-height: 32px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .bau-hero h1 {
        margin: 0 0 14px;
        max-width: 14ch;
        font-size: clamp(34px, 3.3vw, 52px);
        line-height: 0.98;
    }

    .bau-hero .intro {
        max-width: 720px;
        font-size: 15px;
        line-height: 1.58;
    }

    .bau-hero__badges {
        gap: 8px;
        margin-top: 16px;
    }

    .bau-hero__badges span {
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
    }

    .bau-hero__actions {
        gap: 10px;
        margin-top: 18px;
    }

    .bau-page .btn {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 14px;
        font-size: 13px;
    }

    .service-overview-nav {
        padding-top: 100px;
        padding-bottom: 24px;
    }

    .service-overview-nav__box {
        padding: 22px 22px 20px;
        border-radius: 24px;
    }

    .service-overview-nav__box::before {
        border-radius: 24px;
    }

    .service-overview-nav__head {
        margin-bottom: 16px;
    }

    .service-overview-nav__kicker {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 11px;
    }

    .service-overview-nav__head h2 {
        font-size: clamp(22px, 2vw, 30px);
        margin-bottom: 8px;
        max-width: 12ch;
    }

    .service-overview-nav__head p {
        font-size: 14px;
        line-height: 1.56;
    }

    .service-overview-nav__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .service-overview-nav__link {
        min-height: 52px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .service-overview-nav__link::before {
        width: 22px;
        height: 22px;
        margin-right: 10px;
        font-size: 11px;
    }

    .bau-content {
        padding: 58px 0 70px;
    }

    .bau-section {
        padding: 0 0 28px;
        margin-bottom: 28px;
    }

    .bau-section h2,
    .bau-faq h2 {
        margin: 0 0 12px;
        font-size: clamp(24px, 2vw, 34px);
        line-height: 1.08;
        max-width: 26ch;
    }

    .bau-section h3,
    .faq-item h3,
    .bau-card h3 {
        margin: 0 0 10px;
        font-size: 19px;
        line-height: 1.25;
    }

    .bau-section p,
    .faq-item p,
    .bau-card p {
        margin: 0 0 12px;
        max-width: 820px;
        font-size: 15px;
        line-height: 1.58;
    }

    .bau-highlight-box {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .bau-highlight-kicker {
        min-height: 32px;
        padding: 0 12px;
        margin-bottom: 12px;
        font-size: 11px;
    }

    .bau-media-grid {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 24px;
    }

    .bau-media-grid--reverse {
        grid-template-columns: 440px minmax(0, 1fr);
    }

    .bau-media-placeholder img,
    .bau-media-placeholder video {
        height: 340px;
        border-radius: 22px;
    }

    .bau-type-grid,
    .steps-creative-grid {
        gap: 14px;
        margin-top: 18px;
    }

    .bau-card,
    .bau-type-card,
    .step-creative,
    .faq-item {
        padding: 18px;
        border-radius: 20px;
    }

    .step-creative__number {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 14px;
        font-size: 18px;
        flex-basis: 46px;
    }

    .bau-step-card {
        padding: 18px 18px 18px 78px;
        border-radius: 20px;
    }

    .bau-step-number {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 16px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .bau-section h2,
    .bau-faq h2 {
        max-width: 100%;
        font-size: clamp(26px, 6vw, 38px);
    }

    .bau-hero {
        min-height: 760px;
    }

    .bau-hero .bau-shell,
    .bau-hero-grid {
        min-height: 760px;
    }

    .bau-hero-image {
        min-height: 760px;
    }

    .bau-hero-image img,
    .bau-hero-image video {
        min-height: 760px;
    }

    .bau-hero__inner {
        max-width: 100%;
        padding: 0 0 60px;
    }

    .bau-hero h1 {
        max-width: 14ch;
        font-size: clamp(36px, 6.8vw, 52px);
        line-height: 1;
    }

    .bau-hero .intro {
        max-width: 700px;
        font-size: 16px;
        line-height: 1.68;
    }

    .service-overview-nav {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .service-overview-nav__box {
        padding: 22px 22px 20px;
        border-radius: 24px;
    }

    .service-overview-nav__box::before {
        border-radius: 24px;
    }

    .service-overview-nav__head {
        margin-bottom: 18px;
    }

    .service-overview-nav__kicker {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 11px;
    }

    .service-overview-nav__head h2 {
        max-width: 12ch;
        font-size: clamp(26px, 5.8vw, 40px);
        line-height: 1.02;
    }

    .service-overview-nav__head p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }

    .service-overview-nav__grid,
    .bau-type-grid,
    .steps-creative-grid,
    .bau-media-grid,
    .bau-media-grid--reverse,
    .bau-inline-grid {
        grid-template-columns: 1fr;
    }

    .bau-media-grid--reverse .bau-media-text,
    .bau-media-grid--reverse .bau-media-placeholder {
        order: initial;
    }

    .bau-timeline::before {
        left: 25px;
        transform: none;
    }

    .bau-step-card,
    .bau-step-card:nth-child(odd),
    .bau-step-card:nth-child(even) {
        width: calc(100% - 58px);
        margin-left: auto;
        margin-right: 0;
    }

    .bau-step-card {
        padding: 22px 20px 22px 82px;
    }

    .bau-step-card::before,
    .bau-step-card:nth-child(odd)::before,
    .bau-step-card:nth-child(even)::before {
        left: -34px;
        right: auto;
        width: 34px;
        top: 34px;
    }

    .bau-step-card::after,
    .bau-step-card:nth-child(odd)::after,
    .bau-step-card:nth-child(even)::after {
        left: -42px;
        right: auto;
        top: 26px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
    .bau-page .btn {
        width: 100%;
    }

    .bau-hero {
        min-height: 660px;
    }

    .bau-hero .bau-shell,
    .bau-hero-grid {
        min-height: 660px;
    }

    .bau-hero-image {
        min-height: 660px;
    }

    .bau-hero-image img,
    .bau-hero-image video {
        min-height: 660px;
    }

    .bau-hero__inner {
        max-width: 100%;
        padding: 0 0 44px;
    }

    .bau-hero h1 {
        max-width: 100%;
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.04;
        margin-bottom: 14px;
    }

    .bau-hero .intro {
        font-size: 15px;
        line-height: 1.62;
        max-width: 100%;
    }

    .bau-hero .subheadline {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .bau-hero__badges {
        display: none;
    }

    .bau-hero__actions {
        flex-direction: column;
        margin-top: 18px;
    }

    .service-overview-nav {
        padding: 28px 0 18px;
    }

    .service-overview-nav__box {
        padding: 20px;
        border-radius: 22px;
    }

    .service-overview-nav__box::before {
        border-radius: 22px;
    }

    .service-overview-nav__kicker {
        min-height: 32px;
        padding: 0 11px;
        margin-bottom: 12px;
        font-size: 10px;
    }

    .service-overview-nav__head h2 {
        max-width: 100%;
        font-size: clamp(24px, 8vw, 32px);
        line-height: 1.04;
    }

    .service-overview-nav__head p {
        font-size: 14px;
        line-height: 1.62;
    }

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

    .service-overview-nav__link {
        min-height: 56px;
        padding: 12px 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    .service-overview-nav__link::before {
        width: 26px;
        height: 26px;
        margin-right: 10px;
    }

    .bau-section p,
    .faq-item p,
    .bau-card p,
    .bau-type-card p,
    .bau-step-content p,
    .step-creative p {
        font-size: 15px;
        line-height: 1.72;
    }

    .bau-list li,
    .bau-steps li {
        font-size: 15px;
        padding: 13px 14px 13px 48px;
    }

    .bau-card,
    .bau-type-card,
    .step-creative,
    .faq-item {
        padding: 22px;
        border-radius: 22px;
    }

    .bau-highlight-box {
        padding: 22px;
        border-radius: 22px;
    }

    .bau-media-placeholder img,
    .bau-media-placeholder video {
        height: 300px;
        border-radius: 22px;
    }

    .step-creative__top {
        align-items: flex-start;
    }

    .step-creative__number {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
        flex-basis: 48px;
    }

    .step-creative__top h3 {
        font-size: 20px;
    }

    .step-creative__media img {
        height: 240px;
        border-radius: 18px;
    }

    .bau-timeline {
        margin-top: 28px;
    }

    .bau-step-card,
    .bau-step-card:nth-child(odd),
    .bau-step-card:nth-child(even) {
        width: calc(100% - 44px);
    }

    .bau-step-card {
        padding: 18px 18px 18px 72px;
        border-radius: 20px;
        margin-bottom: 18px;
    }

    .bau-step-number {
        width: 40px;
        height: 40px;
        left: 16px;
        top: 16px;
        border-radius: 13px;
        font-size: 16px;
    }

    .bau-step-content h3 {
        font-size: 18px;
        margin: 0 0 8px;
    }

    .bau-step-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .bau-timeline::before {
        left: 19px;
    }

    .bau-step-card::before,
    .bau-step-card:nth-child(odd)::before,
    .bau-step-card:nth-child(even)::before {
        left: -24px;
        width: 24px;
    }

    .bau-step-card::after,
    .bau-step-card:nth-child(odd)::after,
    .bau-step-card:nth-child(even)::after {
        left: -31px;
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 6px rgba(47, 124, 255, 0.12);
    }

    .bau-locations span {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }
}