@font-face {
    font-family: "Special Gothic Expanded One";
    src: url("src/fonts/special-gothic-expanded-one-v2-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geliat ExtraLight";
    src: url("src/fonts/GeliatExtraLight/font.woff2") format("woff2"),
         url("src/fonts/GeliatExtraLight/font.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("src/fonts/inter-v20-latin/inter-v20-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("src/fonts/inter-v20-latin/inter-v20-latin-italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("src/fonts/inter-v20-latin/inter-v20-latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("src/fonts/inter-v20-latin/inter-v20-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("src/fonts/inter-v20-latin/inter-v20-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-body: "Geliat ExtraLight", "Inter", sans-serif;
    --font-heading: "Special Gothic Expanded One", "Inter", sans-serif;
    --primary-blue: #315aab;
    --secondary-blue: #315aab;
    --silver: #c0c0c0;
    --dark-silver: #8a8a8a;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --blue-glow-text: 0 0 12px rgba(29, 124, 255, 0.55);
    --blue-glow-box: 0 0 24px rgba(29, 124, 255, 0.38);
    --blue-glow-box-strong: 0 0 36px rgba(29, 124, 255, 0.52);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    font-style: normal;
}

/* Typography */
h1, h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.03em;
}

h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.02em;
}

.hero-subtitle,
.about-description {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: normal;
}

p, .service-card p, .info-item p {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
}

.partners-intro-title,
.section-eyebrow,
.service-eyebrow,
.contact-modal-title,
.ueber-hero-eyebrow,
.hero-badge,
.hero-panel-title {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: normal;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(0.5turn, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.31) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
}

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

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    pointer-events: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-spacer {
    width: 60px;
}

/* Burger Menu Button */
.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu:hover span {
    background: var(--primary-blue);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}

.side-menu.active {
    pointer-events: auto;
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-menu.active .side-menu-overlay {
    opacity: 1;
}

.side-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    max-height: 100dvh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px) saturate(180%) brightness(1.1);
    -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1.1);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    padding: 80px 40px 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(49, 90, 171, 0.8) transparent;
}

.side-menu-content::-webkit-scrollbar {
    width: 6px;
}

.side-menu-content::-webkit-scrollbar-track {
    background: transparent;
}

.side-menu-content::-webkit-scrollbar-thumb {
    background: rgba(49, 90, 171, 0.8);
    border-radius: 999px;
}

.side-menu-content::-webkit-scrollbar-thumb:hover {
    background: rgba(49, 90, 171, 1);
}

.side-menu.active .side-menu-content {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 10px;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
    text-shadow: var(--blue-glow-text);
}

.side-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 0 auto;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.side-nav-group {
    display: grid;
    gap: 12px;
}

.side-nav-submenu,
.side-nav-meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav-submenu {
    display: grid;
    gap: 10px;
    margin-left: 18px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.side-nav-meta {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.side-menu-content .cta-button {
    flex-shrink: 0;
}

.side-nav-menu a,
.side-nav-meta a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-style: normal;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-nav-group-link {
    font-weight: 500;
}

.side-nav-submenu a {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 4px 0;
    border-bottom: none;
}

.side-nav-meta a {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 0;
    border-bottom: none;
}

.side-nav-menu a:hover,
.side-nav-meta a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
    text-shadow: var(--blue-glow-text);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: var(--font-body);
    font-style: normal;
    box-shadow: var(--blue-glow-box);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 126, 255, 0.4), var(--blue-glow-box-strong);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(6, 12, 24, 0.28) 0%, rgba(6, 12, 24, 0.12) 30%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: 160px;
    padding-bottom: 190px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-copy {
    width: min(100%, 1100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-title {
    max-width: 1100px;
    font-size: clamp(22px, 2.75vw, 43px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
    max-width: 980px;
    font-size: clamp(18px, 1.55vw, 30px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 1px;
}

.hero-cta {
    min-width: min(100%, 360px);
    padding: 18px 38px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    background: rgba(12, 10, 10, 0.92);
    box-shadow: 0 10px 24px rgba(6, 40, 85, 0.22);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-cta:hover {
    background: rgba(18, 22, 34, 0.94);
    box-shadow: 0 12px 28px rgba(6, 40, 85, 0.32), 0 0 18px rgba(49, 90, 171, 0.18);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Partners Intro */
.partners-intro {
    padding: 30px 0 20px;
    background: var(--black);
    text-align: center;
}

.partners-intro-title {
    font-size: 24px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-primary);
    border: none;
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-style: normal;
    box-shadow: var(--blue-glow-box);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 126, 255, 0.5), var(--blue-glow-box-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--silver);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.service-video-trigger {
    background: rgba(7, 10, 18, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-video-trigger::before {
    content: "▶";
    font-size: 12px;
    line-height: 1;
}

.service-video-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Services Section */
.services {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 50%, var(--black) 100%);
    overflow: hidden;
}

.services-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.services-img {
    position: absolute;
    height: 80%;
    width: auto;
    opacity: 0;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.services-img-1 {
    left: 5%;
    top: 10%;
    transform: translate3d(-30%, 0, 0);
}

.services-img-2 {
    right: 5%;
    top: 10%;
    transform: translate3d(30%, 0, 0);
}

.services-fade {
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.services-fade.left {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, var(--dark-bg) 30%, transparent 100%);
}

.services-fade.right {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, var(--dark-bg) 30%, transparent 100%);
}

.services .container,
.services-video .container,
.faq-hero .container,
.service-hero .container {
    position: relative;
    z-index: 2;
}

.home-gallery .container,
.contact-page .container,
.google-reviews .container,
.schulungen-hero .container,
.training-highlight--city .container,
.ueber-story .container,
.values-section .container,
.timeline-section .container,
.team-section .container,
.ueber-strengths .container,
.ueber-cta-card > *,
.service-panel > *,
.service-cta-box > *,
.service-section-photo .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.04em;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-intro {
    max-width: 980px;
    margin: -32px auto 78px;
    color: var(--text-secondary);
    font-size: 22px;
    line-height: 1.75;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(10, 126, 255, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: var(--blue-glow-box);
}

.service-icon svg {
    color: var(--text-primary);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.services-video {
    position: relative;
    padding: 0 0 120px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 52%, #04070d 100%);
    overflow: hidden;
}

.services-video::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background:
        linear-gradient(180deg,
            rgba(4, 7, 13, 0) 0%,
            rgba(4, 7, 13, 0.38) 26%,
            rgba(5, 9, 16, 0.78) 62%,
            #08111d 100%);
    pointer-events: none;
    z-index: 1;
}

.services-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(8, 10, 18, 0.86);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.services-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Home Gallery */
.home-gallery {
    position: relative;
    margin-top: -68px;
    padding: 168px 0 120px;
    background: linear-gradient(180deg, #08111d 0%, var(--dark-bg) 24%, #04070d 48%, var(--darker-bg) 100%);
    overflow: hidden;
}

.home-gallery::before,
.home-gallery::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.6;
}

.home-gallery::before {
    width: 300px;
    height: 300px;
    top: 70px;
    left: -120px;
    background: rgba(49, 90, 171, 0.25);
}

.home-gallery::after {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: 90px;
    background: rgba(255, 255, 255, 0.08);
}

.section-eyebrow {
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
}

.home-gallery-header {
    margin-bottom: 34px;
}

.home-gallery-title {
    text-align: left;
    margin: 12px 0 0;
}

.home-gallery-content {
    display: grid;
    grid-template-columns: minmax(320px, 660px) minmax(320px, 1fr);
    gap: 64px;
    align-items: center;
}

.home-gallery-copy-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    max-width: 620px;
    min-height: 620px;
    justify-self: center;
    text-align: left;
}

.home-gallery-copy-title {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

.home-gallery-copy {
    color: var(--text-secondary);
    font-size: 21px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin: 0;
}

.home-gallery-highlights {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.home-gallery-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.6;
}

.home-gallery-highlights li::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

.home-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.home-gallery-link::after {
    content: "";
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 126, 255, 0.95), rgba(255, 255, 255, 0.45));
    box-shadow: 0 0 18px rgba(10, 126, 255, 0.28);
    transition: width 0.3s ease, transform 0.3s ease;
}

.home-gallery-link:hover,
.home-gallery-link:focus-visible {
    color: #ffffff;
    transform: translateX(6px);
}

.home-gallery-link:hover::after,
.home-gallery-link:focus-visible::after {
    width: 72px;
    transform: translateX(2px);
}

.home-gallery-marquee {
    --home-gallery-side-fade: 120px;
    --home-gallery-vertical-fade: 120px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    width: min(100%, 660px);
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    min-height: 620px;
    transform: rotate(-8deg);
    transform-origin: left center;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--home-gallery-side-fade),
        #000 calc(100% - var(--home-gallery-side-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--home-gallery-side-fade),
        #000 calc(100% - var(--home-gallery-side-fade)),
        transparent 100%
    );
}

.home-gallery-column {
    --gallery-track-delay: 0s;
    position: relative;
    flex: 0 0 calc((100% - 36px) / 3);
    width: calc((100% - 36px) / 3);
    height: 620px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0,
        #000 var(--home-gallery-vertical-fade),
        #000 calc(100% - var(--home-gallery-vertical-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0,
        #000 var(--home-gallery-vertical-fade),
        #000 calc(100% - var(--home-gallery-vertical-fade)),
        transparent 100%
    );
}

.home-gallery-column-1 {
    --gallery-track-delay: -7s;
}

.home-gallery-column-2 {
    --gallery-track-delay: -2.5s;
}

.home-gallery-column-3 {
    --gallery-track-delay: -11s;
}

.home-gallery-track {
    --marquee-offset: 0px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    will-change: transform;
    animation-delay: var(--gallery-track-delay);
}

.home-gallery-track-up {
    animation: home-gallery-scroll-up 26s linear infinite;
}

.home-gallery-track-down {
    animation: home-gallery-scroll-down 30s linear infinite;
}

.home-gallery-track-slow {
    animation-duration: 24s;
}

.home-gallery-marquee:hover .home-gallery-track {
    animation-play-state: paused;
}

.home-gallery-card {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.04) brightness(0.88);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.home-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.26), 0 0 22px rgba(29, 124, 255, 0.08);
}

.home-gallery-card:hover img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1.08) brightness(0.96);
}

@keyframes home-gallery-scroll-up {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-1 * var(--marquee-offset, 0px)));
    }
}

@keyframes home-gallery-scroll-down {
    from {
        transform: translateY(calc(-1 * var(--marquee-offset, 0px)));
    }
    to {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-gallery-marquee {
        transform: none;
    }

    .home-gallery-track {
        animation: none !important;
        transform: translateY(0) !important;
    }
}

/* About Section */
.about {
    position: relative;
    padding: 148px 0 88px;
    background: var(--darker-bg);
    overflow: visible;
    z-index: 2;
}

.about-bg-images {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 100vw;
    height: calc(100% + 28px);
    padding: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    transform: translateX(-50%);
}

.about-img {
    position: absolute;
    width: 100vw;
    min-width: 100vw;
    max-width: none;
    max-height: none;
    height: auto;
    display: block;
    opacity: 0;
    object-fit: contain;
    mask-image: linear-gradient(180deg, transparent 0%, black 14%, black 84%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 14%, black 84%, transparent 100%);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.about-img-1 {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    margin: 0 auto;
    transform: translate3d(0, 0, 0);
}

.about-fade {
    position: absolute;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    pointer-events: none;
}

.about .container {
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content > .section-title {
    position: relative;
    z-index: -1;
    transform: translateY(-82px);
    margin-bottom: 42px;
}

.about-text {
    text-align: center;
    position: relative;
    z-index: 3;
}

.about-detail {
    padding: 0 0 120px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--black) 100%);
}

.about-detail-card {
    max-width: 1040px;
    margin: 0 auto;
    padding: 44px 52px;
    display: grid;
    gap: 28px;
    text-align: center;
}

.about-detail-title {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin: 0;
}

.about-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.about-highlights {
    list-style: none;
    display: grid;
    gap: 14px;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.6;
}

.about-highlights li::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 56px;
    font-weight: 400;
    font-family: var(--font-body);
    font-style: normal;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--black) 100%);
}

.contact-page {
    min-height: 100vh;
    padding-top: 180px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.85)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.6)) 45%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.9)) 100%),
        url("src/img/site-fotos/service-heroes/contact-hero-security-consultation.jpg") center/cover no-repeat;
    background-position: center center, center center, center center;
    filter: var(--page-hero-layer-filter, none);
    z-index: 0;
    transform: translateZ(0);
    animation: serviceHeroZoomOut 20s ease-in-out infinite alternate;
}

.contact-intro {
    max-width: 820px;
    margin: 28px 0 0;
}

.contact-intro-title {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.contact-intro-text {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 42px;
}

.contact-form-wrapper {
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 3px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    transition: all 0.3s ease;
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(219, 225, 235, 0.56);
}

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

.form-group input[type="file"] {
    padding: 14px 16px;
}

.form-group input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.form-group--full {
    grid-column: 1 / -1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding: 30px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 18px;
}

.info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--text-primary);
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 180px 0 120px;
    background: var(--black);
}

.legal-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.legal-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.legal-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

.legal-block p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
}

.legal-address {
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-blue);
    text-decoration-color: rgba(6, 40, 85, 0.7);
    text-shadow: var(--blue-glow-text);
}

.legal-list {
    list-style: none;
    display: grid;
    gap: 10px;
    padding-left: 0;
}

.legal-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    max-width: 280px;
    min-width: 0;
}

.footer-logo .logo {
    position: static;
    left: auto;
    transform: none;
    justify-content: flex-start;
}

.footer-logo .logo-img {
    height: 46px;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(150px, 220px) minmax(280px, 380px);
    gap: clamp(32px, 4vw, 72px);
    align-items: start;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto 40px;
}

.footer-content > * {
    min-width: 0;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 6px;
    max-width: 280px;
}

.footer-certificate {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-certificate-label {
    display: none;
}

.footer-certificate-image {
    display: block;
    width: 100%;
    max-width: 155px;
    height: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    align-self: start;
    width: 100%;
    max-width: 220px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

.footer-contact {
    display: grid;
    gap: 22px;
    width: 100%;
    max-width: 380px;
    align-self: start;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.footer-contact-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3px;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

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

.footer-contact-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.footer-contact-label {
    margin: 0;
    color: var(--text-primary);
    font-size: 13px;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer-contact-copy a,
.footer-contact-copy p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    text-decoration: none;
}

.footer-contact-copy a:hover {
    color: var(--text-primary);
}

.footer-contact-note {
    font-size: 0.92em;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 980px) {
    .about-img-1 {
        width: 112vw;
        min-width: 112vw;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        padding-top: 150px;
        padding-bottom: 180px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 44px;
    }

    .services-intro {
        max-width: 860px;
        margin: -26px auto 64px;
        font-size: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .services-video {
        padding-bottom: 104px;
    }

    .services-video::after {
        height: 180px;
    }

    .services-video-frame {
        border-radius: 24px;
    }

    .about {
        padding-top: 132px;
        padding-bottom: 56px;
    }

    .about-bg-images {
        top: -96px;
        height: calc(100% + 96px);
    }

    .about-content > .section-title {
        transform: translateY(-48px);
        margin-bottom: 24px;
    }

    .about-detail {
        padding-bottom: 96px;
    }

    .about-detail-card {
        padding: 36px 32px;
        gap: 22px;
    }

    .home-gallery-header {
        margin-bottom: 28px;
    }

    .home-gallery {
        margin-top: -52px;
        padding-top: 138px;
    }

    .home-gallery-content {
        grid-template-columns: minmax(280px, 520px) minmax(280px, 1fr);
        gap: 40px;
    }

    .home-gallery-copy-block {
        min-height: 560px;
        max-width: 540px;
    }

    .home-gallery-copy {
        font-size: 19px;
    }

    .home-gallery-copy-title {
        font-size: 36px;
    }

    .home-gallery-marquee {
        width: min(100%, 520px);
        min-height: 560px;
        gap: 16px;
        padding: 28px 0;
        transform: rotate(-6deg);
        --home-gallery-side-fade: 96px;
        --home-gallery-vertical-fade: 108px;
    }

    .home-gallery-column {
        flex-basis: calc((100% - 32px) / 3);
        width: calc((100% - 32px) / 3);
        height: 560px;
    }

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

    .contact-intro {
        max-width: 760px;
    }

    .contact-intro-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 170px;
    }

    .hero-copy {
        gap: 20px;
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 0.24em;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        max-width: 360px;
        font-size: 17px;
    }

    .section-title {
        font-size: clamp(27px, 7vw, 32px);
        line-height: 1.14;
        letter-spacing: 0.02em;
        text-wrap: balance;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .services-intro {
        max-width: 100%;
        margin: -12px auto 40px;
        font-size: 16px;
        line-height: 1.68;
    }

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

    .service-card {
        padding: 24px 22px;
    }

    .service-card h3 {
        font-size: 20px;
        line-height: 1.22;
        overflow-wrap: anywhere;
        hyphens: auto;
        text-wrap: balance;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.68;
    }

    .services-video {
        padding-bottom: 88px;
    }

    .services-video::after {
        height: 150px;
    }

    .services-video-frame {
        border-radius: 20px;
    }

    .about-detail {
        padding-bottom: 84px;
    }

    .about-detail-card {
        padding: 32px 24px;
    }

    .about-detail-title {
        font-size: 26px;
    }

    .contact-intro-title {
        font-size: 20px;
    }

    .contact-intro-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .home-gallery {
        margin-top: -38px;
        padding: 126px 0 95px;
    }

    .home-gallery-content {
        grid-template-columns: 1fr;
        gap: 28px;
        justify-items: center;
    }

    .home-gallery-copy {
        font-size: 17px;
    }

    .home-gallery-copy-title {
        font-size: 30px;
    }

    .home-gallery-highlights li {
        font-size: 16px;
    }

    .home-gallery-link {
        font-size: 15px;
        letter-spacing: 0.14em;
    }

    .home-gallery-copy-block {
        display: grid;
        justify-items: center;
        align-content: center;
        max-width: 620px;
        width: min(100%, 420px);
        min-height: 220px;
        gap: 18px;
        padding: 6px 0;
        text-align: center;
    }

    .home-gallery-link {
        justify-content: center;
    }

    .home-gallery-marquee {
        width: min(100%, 420px);
        min-height: 500px;
        gap: 12px;
        padding: 18px 0;
        border-radius: 28px;
        transform: rotate(-4deg);
        --home-gallery-side-fade: 72px;
        --home-gallery-vertical-fade: 84px;
    }

    .home-gallery-column {
        flex-basis: calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        height: 500px;
    }

    .home-gallery-column-3 {
        display: none;
    }

    .home-gallery-track {
        gap: 14px;
    }

    .home-gallery-card {
        border-radius: 18px;
    }

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

    .about {
        padding-top: 112px;
        padding-bottom: 48px;
    }

    .about-bg-images {
        top: 0;
        height: 100%;
        overflow: hidden;
    }

    .about-content > .section-title {
        transform: none;
        margin-bottom: 18px;
    }

    .about-detail {
        padding-bottom: 72px;
    }

    .about-detail-card {
        padding: 28px 20px;
        gap: 20px;
    }

    .about-detail-title {
        font-size: 22px;
    }

    .footer {
        padding: 52px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer-brand {
        width: 100%;
        align-items: center;
        max-width: 320px;
        justify-self: center;
    }

    .footer-logo {
        align-items: center;
        gap: 10px;
    }

    .footer-logo p {
        max-width: 320px;
        margin-top: 0;
        text-align: center;
    }

    .footer-certificate {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        max-width: 320px;
        align-items: center;
        text-align: center;
        justify-self: center;
    }

    .footer-contact {
        width: min(100%, 360px);
        justify-items: center;
        justify-self: center;
    }

    .footer-contact-item {
        width: min(100%, 360px);
    }

    .footer-contact-copy {
        align-items: center;
        text-align: center;
    }

    .legal-page {
        padding: 160px 0 100px;
    }

    .legal-content {
        padding: 36px 28px;
    }

    .legal-block h2 {
        font-size: 20px;
    }

    .legal-block h3 {
        font-size: 18px;
    }

    .legal-block p {
        font-size: 16px;
    }
}

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

    html[data-page="index"] .services .section-title {
        max-width: 10ch;
        font-size: 28px;
    }

    html[data-page="index"] .services-intro {
        margin: -8px auto 32px;
        font-size: 15px;
        line-height: 1.62;
    }

    html[data-page="index"] .service-card {
        padding: 22px 20px;
    }

    html[data-page="index"] .service-card h3 {
        font-size: 18px;
    }

    .footer {
        padding: 44px 0;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-logo .logo-img {
        height: 40px;
    }

    .footer-logo p {
        max-width: 260px;
        font-size: 15px;
        line-height: 1.5;
    }

    .footer-certificate {
        width: auto;
        padding: 0;
    }

    .footer-certificate-image {
        max-width: 150px;
    }

    .footer-links {
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-links a {
        display: block;
        width: 100%;
        max-width: none;
        padding: 0;
        text-align: center;
    }

    .footer-contact {
        gap: 18px;
    }

    .footer-contact-item {
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: center;
        width: min(100%, 320px);
        margin: 0 auto;
        text-align: center;
    }

    .footer-contact-icon {
        padding-top: 0;
    }

    .footer-contact-copy a,
    .footer-contact-copy p {
        font-size: 15px;
    }

    .footer-bottom {
        padding-top: 24px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-title {
        font-size: 14px;
    }

    .services-intro {
        margin: -12px auto 40px;
        font-size: 16px;
        line-height: 1.65;
    }

    .services-video {
        padding-bottom: 72px;
    }

    .services-video-frame {
        border-radius: 16px;
    }

    .about-detail-card {
        padding: 24px 18px;
        gap: 18px;
    }

    .about-detail-title {
        font-size: 20px;
    }

    .hero-content {
        padding-top: 128px;
        padding-bottom: 164px;
    }

    .hero-copy {
        gap: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-cta {
        padding: 16px 26px;
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .legal-list li {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .hero-video video {
        object-position: 62% center;
    }

    .contact-page::before {
        background-position: center center, 64% 18%;
    }

    .ueber-hero::before {
        background-position: center center, center center, center center;
    }

    .service-hero-media-asset {
        object-position: 62% 18%;
        transform: scale(1.04);
    }

    .contact-intro {
        margin-top: 24px;
    }

    .contact-intro-title {
        font-size: 20px;
    }

    .contact-intro-text {
        font-size: 16px;
    }

    .home-gallery-header {
        margin-bottom: 24px;
    }

    .home-gallery-copy {
        font-size: 16px;
        line-height: 1.7;
    }

    .home-gallery-copy-title {
        font-size: 24px;
    }

    .home-gallery-highlights {
        justify-items: center;
    }

    .home-gallery-highlights li {
        font-size: 15px;
        text-align: left;
    }

    .home-gallery-link {
        font-size: 13px;
    }

    .home-gallery-copy-block {
        width: min(100%, 300px);
        min-height: 200px;
        padding: 0;
    }

    .home-gallery-marquee {
        width: min(100%, 240px);
        max-width: 240px;
        min-height: 420px;
        margin: 0;
        transform: none;
        --home-gallery-side-fade: 56px;
        --home-gallery-vertical-fade: 72px;
    }

    .home-gallery-column-2 {
        display: none;
    }

    .home-gallery-column-1 {
        flex-basis: 100%;
        width: 100%;
        height: 420px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Partners Section */
.partners {
    position: relative;
    padding: 30px 0 80px;
    background: var(--black);
    overflow: hidden;
}

.partners .section-title {
    margin-bottom: 60px;
}

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    z-index: 2;
}

.logo-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.logo-row:last-of-type {
    margin-bottom: 0;
}

.logo-row-1 {
    z-index: 3;
}

.logo-row-2 {
    z-index: 2;
}

.logo-row-3 {
    z-index: 1;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Row 1 - Moving Right */
.logo-row-1 .logo-track {
    animation: scrollRight 40s linear infinite;
}

/* Row 2 - Moving Left */
.logo-row-2 .logo-track {
    animation: scrollLeft 35s linear infinite;
}

/* Row 3 - Moving Right */
.logo-row-3 .logo-track {
    animation: scrollRight 45s linear infinite;
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
    transform: scale(1.1);
}

.google-reviews {
    position: relative;
    margin-top: -64px;
    padding: 148px 0 104px;
    background: linear-gradient(180deg, #010204 0%, #07111d 22%, #050810 56%, #010204 100%);
    color: var(--text-primary);
    overflow: hidden;
    z-index: 1;
}

.google-reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 17, 29, 0) 0%, rgba(7, 17, 29, 0.82) 18%, rgba(7, 17, 29, 0.14) 36%, rgba(7, 17, 29, 0) 52%),
        radial-gradient(circle at 12% 18%, rgba(49, 90, 171, 0.18), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(214, 220, 234, 0.1), transparent 24%);
    pointer-events: none;
}

.google-reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.google-reviews-summary {
    position: relative;
    display: grid;
    gap: 12px;
    justify-items: start;
    max-width: 560px;
    isolation: isolate;
}

.google-reviews-summary::before {
    content: "";
    position: absolute;
    top: -58px;
    left: -136px;
    width: 560px;
    height: 360px;
    background:
        radial-gradient(circle at 26% 34%, rgba(49, 90, 171, 0.28) 0%, rgba(49, 90, 171, 0.16) 24%, rgba(49, 90, 171, 0) 62%),
        radial-gradient(circle at 34% 62%, rgba(18, 38, 84, 0.28) 0%, rgba(18, 38, 84, 0) 68%);
    filter: blur(18px);
    opacity: 0.96;
    pointer-events: none;
    z-index: -1;
}

.google-reviews-label {
    margin: 0;
    color: rgba(220, 226, 240, 0.68);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.google-reviews-title {
    margin: 0;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 0.95;
    color: var(--text-primary);
}

.google-reviews-stars {
    color: var(--primary-blue);
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-shadow: 0 0 18px rgba(49, 90, 171, 0.22);
}

.google-reviews-meta {
    margin: 0;
    color: rgba(220, 226, 240, 0.78);
    font-size: 18px;
    line-height: 1.5;
}

.google-reviews-source {
    margin: 4px 0 0;
    color: rgba(235, 239, 248, 0.88);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.google-reviews-link::after {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease, transform 0.3s ease;
}

.google-reviews-link:hover,
.google-reviews-link:focus-visible {
    color: #dbe3f7;
    transform: translateX(4px);
}

.google-reviews-link:hover::after,
.google-reviews-link:focus-visible::after {
    width: 56px;
    transform: translateX(2px);
}

.google-reviews-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.google-reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
    animation: google-reviews-scroll 56s linear infinite;
}

.google-review-card {
    flex: 0 0 380px;
    width: 380px;
    min-height: 272px;
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 17, 27, 0.92) 0%, rgba(9, 13, 22, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    display: grid;
    align-content: start;
    gap: 18px;
}

.google-review-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}

.google-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #556676;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
}

.google-review-avatar--image {
    background: linear-gradient(135deg, rgba(49, 90, 171, 0.62), var(--primary-blue));
    font-size: 18px;
    letter-spacing: 0.04em;
}

.google-review-author h3,
.google-review-author p {
    margin: 0;
}

.google-review-author h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
}

.google-review-author p {
    color: rgba(206, 214, 227, 0.62);
    font-size: 14px;
    line-height: 1.4;
}

.google-review-stars {
    color: var(--primary-blue);
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-shadow: 0 0 16px rgba(49, 90, 171, 0.18);
}

.google-review-copy {
    margin: 0;
    color: rgba(228, 233, 244, 0.86);
    font-size: 16px;
    line-height: 1.72;
}

.google-reviews-marquee:hover .google-reviews-track {
    animation-play-state: paused;
}

@keyframes google-reviews-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 9px));
    }
}

/* Gradient Fade Masks */
.hh-logo-fade {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hh-logo-fade.left {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.hh-logo-fade.right {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

/* Animation Keyframes */
@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive Partners Section */
@media (max-width: 768px) {
    .logo-track {
        gap: 50px;
    }

    .partner-logo {
        height: 45px;
    }

    .hh-logo-fade {
        width: 100px;
    }

    .google-reviews {
        margin-top: -46px;
        padding: 122px 0 84px;
    }

    .google-reviews-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .google-reviews-summary {
        justify-items: center;
        text-align: center;
    }

    .google-reviews-summary::before {
        top: -46px;
        left: 50%;
        width: min(84vw, 500px);
        height: 300px;
        transform: translateX(-50%);
    }

    .google-reviews-marquee {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-mask-image: none;
        mask-image: none;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .google-reviews-marquee::-webkit-scrollbar {
        display: none;
    }

    .google-reviews-track {
        display: flex;
        gap: 16px;
        width: max-content;
        min-width: 100%;
        animation: none;
        overflow: visible;
        padding-right: 20px;
    }

    .google-review-card {
        min-width: min(88vw, 340px);
        flex: 0 0 min(88vw, 340px);
        scroll-snap-align: start;
        min-height: 260px;
        padding: 22px;
        border-radius: 20px;
    }

    .google-review-card[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 480px) {
    .google-reviews {
        margin-top: -34px;
        padding: 98px 0 72px;
    }

    .google-reviews-title {
        font-size: 30px;
    }

    .google-reviews-summary::before {
        top: -34px;
        width: 92vw;
        height: 248px;
    }

    .google-reviews-stars {
        font-size: 28px;
    }

    .google-reviews-meta {
        font-size: 16px;
    }

    .google-reviews-source {
        font-size: 18px;
    }

    .google-reviews-link {
        gap: 10px;
        font-size: 10px;
    }

    .google-reviews-link::after {
        width: 32px;
    }

    .google-review-author h3 {
        font-size: 18px;
    }

    .google-review-copy {
        font-size: 16px;
    }
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 60px;
    height: 60px;
    padding: 0 20px 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: 2px solid var(--glass-border);
    color: white;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(6, 40, 85, 0.5), var(--blue-glow-box);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(6, 40, 85, 0.7), var(--blue-glow-box-strong);
}

.floating-contact-btn svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-contact-btn-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.floating-contact-btn--compact {
    width: 60px;
    min-width: 60px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
}

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

/* Contact Modal */
.contact-modal {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-modal-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    width: 350px;
    max-width: calc(100vw - 60px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.contact-modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.contact-modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-modal-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    flex-shrink: 0;
}

.contact-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-modal-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.contact-modal-title {
    font-size: 12px;
    color: var(--text-secondary);
}

.contact-modal-body {
    margin-bottom: 20px;
}

.contact-modal-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-modal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: white;
    transform: translateX(3px);
}

.contact-link svg {
    flex-shrink: 0;
}

.contact-modal-phone {
    justify-content: center;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    background: rgba(49, 90, 171, 0.14);
    border-color: rgba(49, 90, 171, 0.34);
    box-shadow: 0 8px 24px rgba(6, 40, 85, 0.16);
}

.contact-modal-phone svg {
    color: var(--primary-blue);
}

.contact-modal-phone:hover {
    transform: translateY(-2px);
    background: rgba(49, 90, 171, 0.2);
    border-color: rgba(49, 90, 171, 0.52);
}

.contact-modal-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(10, 126, 255, 0.18);
}

.contact-modal-cta:hover {
    box-shadow: 0 10px 24px rgba(10, 126, 255, 0.22);
}

.service-video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 11, 0.84);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    padding: 26px;
    border-radius: 28px;
    background: rgba(7, 10, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.service-video-modal-kicker {
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-video-modal-title {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 18px;
    padding-right: 64px;
}

.service-video-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-video-modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(49, 90, 171, 0.8);
    transform: translateY(-2px);
}

.service-video-modal-frame {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.service-video-modal-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

/* Responsive Contact Modal */
@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 55px;
        padding: 0 16px 0 14px;
        gap: 10px;
    }

    .floating-contact-btn--compact {
        width: 55px;
        min-width: 55px;
        padding: 0;
    }

    .floating-contact-btn-label {
        font-size: 12px;
    }

    .floating-contact-btn svg {
        width: 22px;
        height: 22px;
    }

    .contact-modal {
        bottom: 90px;
        right: 20px;
        left: 20px;
    }

    .contact-modal-content {
        width: 100%;
    }

    .service-video-modal {
        padding: 18px;
    }

    .service-video-modal-dialog {
        padding: 18px;
        border-radius: 22px;
    }

    .service-video-modal-title {
        padding-right: 52px;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .contact-modal {
        bottom: auto;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }

    .contact-modal.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .contact-modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .service-video-modal {
        padding: 12px;
    }

    .service-video-modal-dialog {
        padding: 14px;
        border-radius: 18px;
    }

    .service-video-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .service-video-modal-frame {
        border-radius: 14px;
    }
}

/* FAQ Page Styles */
.page-hero--bright {
    --page-hero-overlay-top: rgba(0, 0, 0, 0.3);
    --page-hero-overlay-mid: rgba(0, 0, 0, 0.3);
    --page-hero-overlay-side-mid: rgba(2, 5, 11, 0.15);
    --page-hero-overlay-side-end: rgba(2, 5, 11, 0.3);
    --page-hero-media-filter: saturate(1.02) brightness(0.72) contrast(1.02);
    --page-hero-layer-filter: saturate(1.02) brightness(1.06) contrast(1.01);
}

.faq-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 100%);
    text-align: center;
    overflow: hidden;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.76)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.48)) 45%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.88)) 100%),
        linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(2, 5, 11, 0.58)) 0%, var(--page-hero-overlay-side-mid, rgba(2, 5, 11, 0.14)) 40%, var(--page-hero-overlay-side-end, rgba(2, 5, 11, 0.46)) 100%),
        url("src/img/site-fotos/scenes/faq-night-security-team.jpg") center 20% / cover no-repeat;
    filter: var(--page-hero-layer-filter, none);
    transform: scale(1.08);
    transform-origin: center center;
    animation: faqHeroZoomInward 18s ease-in-out infinite alternate;
    z-index: 0;
}

.faq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(10, 126, 255, 0.16), transparent 36%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 30%);
    z-index: 1;
    pointer-events: none;
}

.faq-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--black);
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--glass-border);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(6, 40, 85, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--silver);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.faq-answer ul,
.faq-answer ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: white;
    font-weight: 600;
}

.faq-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(6, 40, 85, 0.1), rgba(10, 61, 110, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.faq-cta-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 36px;
    align-items: center;
}

.faq-cta-visual {
    margin: 0;
    min-height: 320px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.faq-cta-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(120deg, rgba(10, 126, 255, 0.12), transparent 58%);
    pointer-events: none;
}

.faq-cta-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    object-position: center 24%;
}

.faq-cta-copy {
    text-align: center;
}

.faq-cta h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 0 60px;
    }

    .faq-hero::before {
        background:
            linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.78)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.52)) 45%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.9)) 100%),
            linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(2, 5, 11, 0.66)) 0%, var(--page-hero-overlay-side-mid, rgba(2, 5, 11, 0.22)) 44%, var(--page-hero-overlay-side-end, rgba(2, 5, 11, 0.5)) 100%),
            url("src/img/site-fotos/service-heroes/eventschutz-hero-night-security-team.jpg") 58% 20% / cover no-repeat;
        transform: scale(1.08);
    }

    .faq-hero-title {
        font-size: 32px;
    }

    .faq-hero-subtitle {
        font-size: 16px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-category {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .faq-cta-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .faq-cta-visual,
    .faq-cta-visual img {
        min-height: 220px;
    }

    .faq-cta h2 {
        font-size: 22px;
    }

    .faq-cta p {
        font-size: 16px;
    }
}

@keyframes faqHeroZoomInward {
    0% {
        transform: scale(1.14);
    }
    100% {
        transform: scale(1.02);
    }
}

/* Schulungen Page Styles */
.schulungen-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.schulungen-hero--image {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 100%);
}

.schulungen-hero--image::before,
.training-highlight--city::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.schulungen-hero--image::before {
    background:
        radial-gradient(circle at 14% 18%, rgba(49, 90, 171, 0.18), transparent 26%),
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.82)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.62)) 42%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.88)) 100%),
        url("src/img/site-fotos/scenes/training-security-team.jpg");
    background-size: auto, auto, cover;
    background-position: center center, center center, center 24%;
    filter: var(--page-hero-layer-filter, none);
    transform-origin: center center;
    will-change: transform;
    animation: serviceHeroZoomOut 18s ease-in-out infinite alternate;
}

.schulungen-hero--image .schulungen-hero-title,
.schulungen-hero--image .schulungen-hero-subtitle {
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

.schulungen-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.schulungen-hero-subtitle {
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 20px;
    font-weight: 600;
}

.schulungen-hero-text {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Training Highlight Section */
.training-highlight {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--black);
}

.training-highlight--city::before {
    background:
        radial-gradient(circle at 88% 18%, rgba(49, 90, 171, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.8) 48%, rgba(0, 0, 0, 0.9) 100%),
        url("src/img/site-fotos/scenes/training-city-briefing.jpg");
    background-size: auto, auto, cover;
    background-position: center center, center center, center center;
}

.training-highlight-content {
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.training-highlight-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--blue-glow-box);
}

.training-highlight-icon img {
    width: 60px;
    height: 60px;
    display: block;
}

.training-highlight-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.training-subtitle {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 20px;
}

.training-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.training-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.training-feature img,
.training-feature svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: block;
    color: var(--primary-blue);
    filter: drop-shadow(0 0 6px rgba(10, 126, 255, 0.35));
}

/* Training Programs Grid */
.training-programs {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(6, 40, 85, 0.3);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--blue-glow-box);
}

.program-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.program-topics li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.program-topics li:last-child {
    border-bottom: none;
}

.program-topics li:before {
    content: "→";
    color: var(--primary-blue);
    margin-right: 10px;
    font-weight: bold;
    text-shadow: var(--blue-glow-text);
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background-color: var(--black);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.audience-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: var(--blue-glow-text);
}

.audience-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.audience-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.benefits-marquee {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.benefits-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    animation: benefits-scroll 52s linear infinite;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex: 0 0 320px;
    width: 320px;
    min-height: 250px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 17, 27, 0.92) 0%, rgba(9, 13, 22, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--blue-glow-box);
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.benefits-marquee:hover .benefits-track {
    animation-play-state: paused;
}

@keyframes benefits-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 15px));
    }
}

@keyframes benefits-scroll-mobile {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 8px));
    }
}

/* Schulungen CTA Section */
.schulungen-cta {
    padding: 80px 0;
    background-color: var(--black);
}

.schulungen-cta-content {
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
}

.schulungen-cta-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.schulungen-cta-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 40, 85, 0.4);
}

.contact-info {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.contact-info p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 10px 0;
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

/* Responsive Schulungen Styles */
@media (max-width: 768px) {
    .schulungen-hero {
        padding: 120px 0 60px;
    }

    .schulungen-hero-title {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.12;
        white-space: nowrap;
    }

    .schulungen-hero-subtitle {
        font-size: 18px;
    }

    .training-highlight-content {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .training-highlight-info h2 {
        font-size: 24px;
    }

    .training-features {
        grid-template-columns: 1fr;
    }

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

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

    .benefits-marquee {
        overflow: hidden;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .benefits-track {
        gap: 16px;
        width: max-content;
        min-width: 100%;
        overflow: visible;
        padding-bottom: 0;
        animation: benefits-scroll-mobile 38s linear infinite;
    }

    .benefit-item {
        width: min(82vw, 320px);
        min-width: 0;
        flex: 0 0 min(82vw, 320px);
    }

    .schulungen-cta-content {
        padding: 40px 20px;
    }

    .schulungen-cta-content h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

/* Unified Button Styles */
.btn-primary,
.btn-secondary,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-style: normal;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary,
.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-primary);
    border: none;
    box-shadow: var(--blue-glow-box);
}

.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 126, 255, 0.5), var(--blue-glow-box-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--silver);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Ueber Uns Page */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.ueber-hero {
    position: relative;
    min-height: 90vh;
    padding: 190px 0 120px;
    background:
        radial-gradient(circle at 14% 18%, rgba(10, 126, 255, 0.18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(214, 225, 255, 0.08), transparent 20%),
        linear-gradient(180deg, #07111f 0%, #03060c 100%);
    overflow: hidden;
}

.ueber-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.8)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.5)) 42%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.94)) 100%),
        linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(6, 18, 42, 0.82)) 0%, var(--page-hero-overlay-side-mid, rgba(6, 18, 42, 0.42)) 36%, var(--page-hero-overlay-side-end, rgba(2, 5, 12, 0.68)) 100%),
        url("src/img/site-fotos/service-heroes/eventschutz-hero-night-security-team.jpg") center/cover no-repeat;
    background-position: center center, center center, center center;
    filter: var(--page-hero-layer-filter, saturate(1.08) brightness(0.86) contrast(1.03));
    transform: scale(1.06);
    animation: heroZoom 18s ease-in-out infinite;
    z-index: 0;
}

.ueber-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(10, 126, 255, 0.28), transparent 30%),
        radial-gradient(circle at 80% 16%, rgba(214, 225, 255, 0.14), transparent 20%),
        radial-gradient(circle at 54% 78%, rgba(10, 126, 255, 0.16), transparent 28%),
        linear-gradient(90deg, rgba(7, 18, 42, 0.18) 0%, transparent 42%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.ueber-hero-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 126, 255, 0.34), rgba(10, 126, 255, 0));
    filter: blur(20px);
    opacity: 0.72;
    mix-blend-mode: screen;
    animation: orbFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.ueber-hero-orb.orb-1 {
    top: 6%;
    left: -4%;
    width: 360px;
    height: 360px;
}

.ueber-hero-orb.orb-2 {
    bottom: 8%;
    right: -2%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(214, 225, 255, 0.16), rgba(214, 225, 255, 0));
    animation-delay: -4s;
}

.ueber-hero-orb.orb-3 {
    top: 42%;
    left: 48%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(10, 126, 255, 0.22), rgba(10, 126, 255, 0));
    animation-delay: -8s;
}

.ueber-hero .container {
    position: relative;
    z-index: 3;
}

.ueber-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.ueber-hero-content,
.ueber-hero-panel {
    margin-top: clamp(40px, 12vh, 140px);
}

.ueber-hero-eyebrow {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--silver);
    font-size: 12px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(6, 40, 85, 0.12);
    margin-bottom: 14px;
}

.ueber-hero-title {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.ueber-hero-text {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 560px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.ueber-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-badge {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(95, 136, 218, 0.28);
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(7, 18, 42, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 26px rgba(6, 40, 85, 0.14);
}

.ueber-hero-panel {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.78), rgba(8, 11, 18, 0.58));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 40px rgba(10, 126, 255, 0.08);
}

.ueber-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.72;
    animation: panelScan 14s linear infinite;
    z-index: 0;
}

.ueber-hero-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -50px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 126, 255, 0.22), rgba(10, 126, 255, 0));
    filter: blur(14px);
    z-index: 0;
    pointer-events: none;
}

.ueber-hero-panel > * {
    position: relative;
    z-index: 1;
}

.hero-panel-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--silver);
}

.ueber-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
}

.metric-label {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.hero-panel-note p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.hero-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-panel-tags span {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
}

.ueber-story {
    margin-top: -72px;
    padding: 170px 0 110px;
    background: linear-gradient(180deg, #08111d 0%, var(--dark-bg) 24%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.ueber-story::before,
.values-section::before,
.timeline-section::before,
.team-section::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: start;
}

.story-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-card p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.story-list {
    list-style: none;
    display: grid;
    gap: 12px;
    padding-left: 0;
}

.story-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.story-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
    box-shadow: var(--blue-glow-box);
}

.mission-grid {
    display: grid;
    gap: 18px;
}

.mission-card {
    padding: 24px 26px;
}

.mission-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
}

.mission-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.ueber-strengths {
    padding: 120px 0 130px;
    background:
        radial-gradient(circle at 14% 18%, rgba(10, 126, 255, 0.15), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(214, 225, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #060a12 0%, #08111d 48%, #04070c 100%);
    position: relative;
    overflow: hidden;
}

.ueber-strengths::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 82%, rgba(10, 126, 255, 0.14), transparent 24%),
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.04), transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 18%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

.ueber-strengths::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -140px;
    border-radius: 50%;
    background: rgba(10, 126, 255, 0.14);
    filter: blur(90px);
    pointer-events: none;
}

.ueber-strengths--merged {
    padding-bottom: 0;
}

.ueber-strengths-header {
    max-width: 940px;
    margin: 0 auto 54px;
    text-align: center;
}

.ueber-strengths-title {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 1.04;
    letter-spacing: 0.01em;
    text-shadow: 0 0 28px rgba(10, 126, 255, 0.08);
}

.ueber-strengths-lead {
    margin: 22px auto 0;
    max-width: 760px;
    color: var(--text-secondary);
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.75;
}

.ueber-strengths-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.08fr) minmax(0, 0.94fr);
    gap: 28px;
    align-items: start;
}

.ueber-strength-card {
    --strength-offset: 0px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(180deg, rgba(7, 12, 20, 0.96) 0%, rgba(4, 8, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform: translateY(var(--strength-offset));
}

.ueber-strength-card:hover {
    transform: translateY(calc(var(--strength-offset) - 8px));
    box-shadow: 0 30px 84px rgba(0, 0, 0, 0.46);
    border-color: rgba(49, 90, 171, 0.34);
}

.ueber-strength-card--featured {
    --strength-offset: -18px;
    border-color: rgba(49, 90, 171, 0.26);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(49, 90, 171, 0.08);
}

.ueber-strength-card-media {
    margin: 0;
    overflow: hidden;
    background: #0d1523;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ueber-strength-card-media img {
    width: 100%;
    height: 292px;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.92) brightness(0.84) contrast(1.04);
    transition: transform 0.8s ease, filter 0.45s ease;
}

.ueber-strength-card--featured .ueber-strength-card-media img {
    height: 340px;
}

.ueber-strength-card:hover .ueber-strength-card-media img {
    transform: scale(1.04);
    filter: saturate(1) brightness(0.92) contrast(1.06);
}

.ueber-strength-card-body {
    padding: 28px 28px 34px;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.ueber-strength-card-body h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(20px, 1.45vw, 24px);
    line-height: 1.15;
    text-align: center;
    text-wrap: balance;
    hyphens: auto;
    overflow-wrap: anywhere;
}

.ueber-strength-card-body p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    hyphens: auto;
}

.values-section {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    width: 380px;
    height: 380px;
    top: -150px;
    right: -120px;
    background: rgba(214, 225, 255, 0.08);
    filter: blur(86px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.value-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 126, 255, 0.4);
    box-shadow: var(--blue-glow-box);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    box-shadow: var(--blue-glow-box);
}

.value-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.timeline-section {
    padding: 110px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.ueber-support-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
    gap: 32px;
    align-items: center;
}

.ueber-support-visual {
    position: relative;
    margin: 0;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.ueber-support-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(3, 6, 12, 0.18) 40%, rgba(3, 6, 12, 0.36) 100%),
        linear-gradient(90deg, rgba(7, 17, 29, 0.28) 0%, rgba(7, 17, 29, 0.02) 46%, rgba(7, 17, 29, 0.32) 100%);
    pointer-events: none;
    z-index: 1;
}

.ueber-support-visual img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    object-position: 42% center;
    filter: saturate(0.96) brightness(0.88) contrast(1.04);
}

.ueber-support-copy {
    display: grid;
    gap: 26px;
    align-items: start;
}

.ueber-support-title {
    margin-bottom: 0;
    text-align: left;
}

.ueber-support-card {
    max-width: none;
    margin: 0;
    text-align: left;
}

.timeline-section::before {
    width: 620px;
    height: 260px;
    left: 50%;
    bottom: -150px;
    transform: translateX(-50%);
    background: rgba(10, 126, 255, 0.1);
    filter: blur(100px);
}

.ueber-support-card p {
    margin: 0;
}

.timeline {
    position: relative;
    display: grid;
    gap: 24px;
    margin-top: 50px;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(10, 126, 255, 0.8), rgba(10, 126, 255, 0.1));
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: none;
}

.timeline-year {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-card {
    padding: 22px 26px;
}

.timeline-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.team-section {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    width: 420px;
    height: 420px;
    top: 30px;
    right: -170px;
    background: rgba(10, 126, 255, 0.11);
    filter: blur(88px);
}

.team-intro {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 720px;
    margin-top: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-photo {
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-role {
    color: var(--primary-blue);
    text-shadow: var(--blue-glow-text);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.ueber-cta {
    padding: 110px 0;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.ueber-cta--embedded {
    padding: clamp(54px, 6vw, 84px) 0 0;
    background: transparent;
}

.ueber-cta .container,
.service-cta .container {
    max-width: none;
    padding: 0;
}

.ueber-cta-card {
    width: 100%;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(10, 126, 255, 0.14), transparent 32%),
        linear-gradient(90deg, rgba(11, 17, 29, 0.96) 0%, rgba(9, 13, 22, 0.94) 42%, rgba(7, 10, 16, 0.97) 66%, rgba(4, 6, 10, 0.99) 100%);
}


.ueber-cta-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.96fr) minmax(0, 1.04fr);
    gap: 0;
    align-items: stretch;
    min-height: 560px;
}

.ueber-cta-visual {
    margin: 0;
    overflow: hidden;
    min-height: 100%;
    height: 100%;
    position: relative;
    box-shadow: none;
}

.ueber-cta-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.26) 100%),
        linear-gradient(90deg, rgba(5, 8, 14, 0) 0%, rgba(5, 8, 14, 0.06) 40%, rgba(5, 8, 14, 0.48) 68%, rgba(5, 8, 14, 0.88) 84%, rgba(5, 8, 14, 1) 100%),
        var(--cta-bg-image);
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-position: center center, center center, var(--cta-bg-position, center center);
    transform: scale(1.05);
    transition: transform 1s ease;
    pointer-events: none;
}

.ueber-cta-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 5, 10, 0.12) 0%, rgba(3, 5, 10, 0.45) 100%);
    mix-blend-mode: screen;
    opacity: 0.8;
    pointer-events: none;
}

.ueber-cta-card:hover .ueber-cta-visual::before {
    transform: scale(1);
}

.ueber-cta-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 1;
    padding: 72px clamp(32px, 5vw, 84px) 64px 56px;
}

.ueber-cta-copy .cta-buttons {
    justify-content: flex-start;
}

.ueber-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(10, 126, 255, 0.2), transparent 55%);
    opacity: 0.7;
    z-index: 0;
}

.ueber-cta-card h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.ueber-cta-card p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
}

.ueber-cta-card .cta-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.ueber-cta-card--about {
    min-height: clamp(560px, 68vw, 760px);
    background: #04070d;
}

.ueber-cta-card--about::before {
    display: none;
}

.ueber-cta-layout--about {
    position: relative;
    display: block;
    min-height: inherit;
    isolation: isolate;
}

.ueber-cta-visual--about {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.ueber-cta-visual--about::before {
    background: var(--cta-bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--cta-bg-position, center center);
    transform: scale(1.14);
    transform-origin: center center;
    transition: none;
    animation: ueberCtaZoomOut 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.ueber-cta-visual--about::after {
    background:
        linear-gradient(90deg, rgba(4, 7, 13, 0.16) 0%, rgba(4, 7, 13, 0.28) 34%, rgba(4, 7, 13, 0.56) 56%, rgba(4, 7, 13, 0.84) 74%, rgba(4, 7, 13, 0.96) 100%),
        linear-gradient(180deg, rgba(3, 5, 10, 0.1) 0%, rgba(3, 5, 10, 0.48) 100%);
    mix-blend-mode: normal;
    opacity: 1;
}

.ueber-cta-copy--about {
    width: min(100%, 620px);
    min-height: clamp(560px, 68vw, 760px);
    margin-left: auto;
    padding: clamp(76px, 8vw, 118px) clamp(32px, 6vw, 104px) clamp(64px, 7vw, 94px);
    align-items: flex-start;
    background: none;
    border: 0;
    box-shadow: none;
}

.ueber-cta-copy--about h2 {
    max-width: 10ch;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.02;
    text-shadow: none;
}

.ueber-cta-copy--about p {
    max-width: 35ch;
    margin-bottom: 18px;
    color: rgba(245, 247, 250, 0.88);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.7;
    text-shadow: none;
}

.ueber-cta-copy--about p:last-child {
    margin-bottom: 0;
}

@keyframes ueberCtaZoomOut {
    from {
        transform: scale(1.14);
    }

    to {
        transform: scale(1);
    }
}

@keyframes heroZoom {
    0%, 100% {
        transform: scale(1.06);
    }
    50% {
        transform: scale(1.12);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-18px) translateX(12px);
    }
}

@keyframes panelScan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@media (max-width: 1024px) {
    .ueber-hero-grid {
        grid-template-columns: 1fr;
    }

    .ueber-hero {
        min-height: auto;
        padding: 170px 0 110px;
    }

    .ueber-hero-title {
        font-size: 42px;
    }

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

    .ueber-support-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ueber-support-visual,
    .ueber-support-visual img {
        min-height: 420px;
    }

    .ueber-support-title,
    .ueber-support-card {
        text-align: center;
    }

    .ueber-strengths-grid {
        grid-template-columns: 1fr;
    }

    .ueber-strength-card,
    .ueber-strength-card--featured {
        --strength-offset: 0px;
    }

    .ueber-cta-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .ueber-cta-visual {
        min-height: 340px;
    }

    .ueber-cta-visual::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 56%, rgba(5, 8, 14, 0.9) 100%),
            var(--cta-bg-image);
        background-repeat: no-repeat;
        background-size: cover, cover;
        background-position: center center, var(--cta-bg-position, center center);
    }

    .ueber-cta-copy {
        padding: 40px 32px 44px;
    }

    .ueber-cta-card--about,
    .ueber-cta-copy--about {
        min-height: 620px;
    }

    .ueber-cta-copy--about {
        width: min(100%, 560px);
        padding: 64px 44px 56px;
    }
}

@media (max-width: 768px) {
    .hero-video video {
        object-position: 58% center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.28);
    }

    .contact-page::before {
        background-position: center center, 62% 22%;
        animation: none;
        transform: none;
    }

    .ueber-hero::before {
        background-position: center center, center center, center center;
        animation: none;
        transform: none;
    }

    .ueber-hero::after {
        background:
            radial-gradient(circle at 18% 18%, rgba(10, 126, 255, 0.22), transparent 34%),
            radial-gradient(circle at 84% 14%, rgba(214, 225, 255, 0.1), transparent 24%),
            radial-gradient(circle at 50% 78%, rgba(10, 126, 255, 0.12), transparent 30%);
    }

    .ueber-hero-orb {
        opacity: 0.5;
        filter: blur(26px);
    }

    .ueber-hero-orb.orb-1 {
        width: 240px;
        height: 240px;
        left: -12%;
    }

    .ueber-hero-orb.orb-2 {
        width: 200px;
        height: 200px;
        right: -8%;
    }

    .ueber-hero-orb.orb-3 {
        width: 160px;
        height: 160px;
        left: 58%;
    }

    .service-hero--media .service-hero-media::after {
        background:
            linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.78)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.55)) 42%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.9)) 100%),
            linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(2, 5, 11, 0.82)) 0%, var(--page-hero-overlay-side-mid, rgba(2, 5, 11, 0.48)) 38%, var(--page-hero-overlay-side-end, rgba(2, 5, 11, 0.7)) 100%);
    }

    .service-hero-media-asset {
        object-position: 58% 20%;
        transform: scale(1.08);
        animation: none;
    }

    .ueber-hero {
        padding: 150px 0 90px;
    }

    .ueber-hero-content {
        display: grid;
        justify-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ueber-hero-title {
        font-size: 34px;
    }

    .ueber-hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        text-align: left;
    }

    .ueber-hero-content,
    .ueber-hero-panel {
        margin-top: clamp(20px, 6vh, 60px);
    }

    .ueber-hero-actions {
        justify-content: center;
        width: 100%;
    }

    .ueber-hero-actions .btn-primary,
    .ueber-hero-actions .btn-secondary {
        width: min(100%, 320px);
    }

    .hero-badges {
        justify-content: center;
    }

    .ueber-hero-fade {
        height: 160px;
    }

    .ueber-story {
        margin-top: -46px;
        padding-top: 132px;
    }

    .ueber-support-visual,
    .ueber-support-visual img {
        min-height: 320px;
    }

    .ueber-hero-metrics {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .ueber-strengths {
        padding: 96px 0 104px;
    }

    .ueber-strengths--merged {
        padding-bottom: 0;
    }

    .ueber-strengths-header {
        margin-bottom: 36px;
    }

    .ueber-strength-card-media img,
    .ueber-strength-card--featured .ueber-strength-card-media img {
        height: 240px;
    }

    .ueber-strength-card-body {
        padding: 24px 22px 28px;
    }

    .ueber-strength-card-body h3 {
        font-size: 22px;
    }

    .ueber-strength-card-body p {
        font-size: 17px;
    }

    .ueber-cta-card {
        min-height: auto;
    }

    .ueber-cta--embedded {
        padding-top: 40px;
    }

    .ueber-cta-visual {
        min-height: 260px;
    }

    .ueber-cta-card h2 {
        font-size: 24px;
    }

    .ueber-cta-copy {
        text-align: center;
        padding: 32px 24px 36px;
    }

    .ueber-cta-copy .cta-buttons {
        justify-content: center;
    }

    .ueber-cta-card--about,
    .ueber-cta-copy--about {
        min-height: 560px;
    }

    .ueber-cta-visual--about::before {
        background-position: var(--cta-bg-position-mobile, center center);
    }

    .ueber-cta-visual--about::after {
        background:
            linear-gradient(180deg, rgba(4, 7, 13, 0.06) 0%, rgba(4, 7, 13, 0.22) 32%, rgba(4, 7, 13, 0.56) 60%, rgba(4, 7, 13, 0.9) 100%);
    }

    .ueber-cta-copy--about {
        width: 100%;
        justify-content: flex-end;
        text-align: left;
        padding: 32px 24px 36px;
    }

    .ueber-cta-copy--about h2 {
        max-width: 12ch;
        font-size: clamp(28px, 8vw, 38px);
    }

    .ueber-cta-copy--about p {
        max-width: 100%;
        font-size: 16px;
    }
}

/* Service Detail Pages */
.service-detail-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(10, 126, 255, 0.16), transparent 38%),
        radial-gradient(circle at top right, rgba(192, 192, 192, 0.1), transparent 32%),
        linear-gradient(180deg, #02050b 0%, #05080f 35%, #000 100%);
}

.service-hero {
    position: relative;
    padding: 180px 0 110px;
    overflow: hidden;
}

.service-hero::before,
.service-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.service-hero::before {
    width: 340px;
    height: 340px;
    top: 70px;
    left: -90px;
    background: rgba(10, 126, 255, 0.22);
}

.service-hero::after {
    width: 280px;
    height: 280px;
    right: -60px;
    top: 120px;
    background: rgba(192, 192, 192, 0.14);
}

.service-hero--media .service-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.service-hero--media .service-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.72)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.45)) 42%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.86)) 100%),
        linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(2, 5, 11, 0.78)) 0%, var(--page-hero-overlay-side-mid, rgba(2, 5, 11, 0.4)) 36%, var(--page-hero-overlay-side-end, rgba(2, 5, 11, 0.58)) 100%);
    z-index: 1;
}

.service-hero-media-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.16);
    transform-origin: center center;
    filter: var(--page-hero-media-filter, saturate(1.05) brightness(0.58) contrast(1.04));
    will-change: transform;
    animation: serviceHeroZoomOut 18s ease-in-out infinite alternate;
}

.service-hero--video .service-hero-media-asset {
    object-position: center center;
    transform: scale(1.08);
    animation: none;
}

.service-hero--it .service-hero-media-asset {
    object-position: center 22%;
    transform: scale(1.1);
    filter: var(--page-hero-media-filter, saturate(0.92) brightness(0.42) contrast(1.04));
    animation: none;
}

.service-hero--technik .service-hero-media-asset {
    object-position: center 32%;
    transform: scale(1.06);
    filter: var(--page-hero-media-filter, saturate(0.9) brightness(0.38) contrast(1.02));
    animation: none;
}

.service-hero--services .service-hero-media-asset {
    object-position: center 26%;
    transform: scale(1.08);
    filter: var(--page-hero-media-filter, saturate(0.98) brightness(0.62) contrast(1.01));
    animation: none;
}

.service-hero--services .service-hero-media::after {
    background:
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.58)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.34)) 42%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.76)) 100%),
        linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(2, 5, 11, 0.62)) 0%, var(--page-hero-overlay-side-mid, rgba(2, 5, 11, 0.28)) 36%, var(--page-hero-overlay-side-end, rgba(2, 5, 11, 0.46)) 100%);
}

.case-studies-hero .service-hero-media::after {
    background:
        linear-gradient(180deg, var(--page-hero-overlay-top, rgba(0, 0, 0, 0.8)) 0%, var(--page-hero-overlay-mid, rgba(0, 0, 0, 0.52)) 42%, var(--page-hero-overlay-bottom, rgba(0, 0, 0, 0.88)) 100%),
        linear-gradient(90deg, var(--page-hero-overlay-side-start, rgba(2, 5, 11, 0.76)) 0%, var(--page-hero-overlay-side-mid, rgba(2, 5, 11, 0.34)) 38%, var(--page-hero-overlay-side-end, rgba(2, 5, 11, 0.54)) 100%);
}

.case-studies-hero .service-hero-media-asset {
    object-position: 42% center;
    filter: var(--page-hero-media-filter, saturate(1.02) brightness(0.48) contrast(1.02));
}

.case-study-page .service-hero {
    padding-bottom: 132px;
}

.case-study-page section + section {
    padding-top: 44px;
}

.case-study-page .service-overview,
.case-study-page .service-benefits,
.case-study-page .service-sectors,
.case-study-page .service-process,
.case-study-page .service-cta {
    padding-bottom: 132px;
}

.service-hero--media .service-eyebrow {
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
}

.service-hero--media .service-hero-title,
.service-hero--media .service-hero-subtitle {
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.service-hero--media .service-panel {
    background: rgba(7, 10, 18, 0.5);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 40px;
    align-items: start;
}

.service-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: var(--text-secondary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.service-hero-title {
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.service-hero-subtitle {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.service-hero-text,
.service-overview-copy p,
.service-cta-copy p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
}

.service-actions,
.service-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.service-actions a,
.service-cta-actions a,
.cta-buttons a,
.footer-links a,
.legal-content a {
    text-decoration: none;
}

.service-panel,
.service-overview-card,
.service-benefit-card,
.service-sector-card,
.service-step,
.service-cta-box {
    border-radius: 20px;
}

.service-panel {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.service-panel::before,
.service-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 126, 255, 0.16), transparent 58%);
    opacity: 0.9;
    pointer-events: none;
}

.service-panel h2,
.service-overview-copy h2,
.service-benefits .section-title,
.service-sectors .section-title,
.service-process .section-title,
.service-cta-copy h2 {
    margin-bottom: 20px;
}

.service-panel-list,
.service-checklist,
.service-sector-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.service-panel-list li,
.service-checklist li,
.service-sector-list li {
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.service-panel-list li::before,
.service-checklist li::before,
.service-sector-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-blue), #2a86ff);
    box-shadow: 0 0 16px rgba(10, 126, 255, 0.4);
}

.service-panel-note {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-panel-note dt {
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-panel-note dd {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.service-overview,
.service-benefits,
.service-sectors,
.service-process,
.service-cta {
    padding: 0 0 110px;
}

.service-cta {
    background: var(--black);
    position: relative;
    z-index: 2;
}

.service-detail-page section + section {
    padding-top: 36px;
}

.service-detail-page .service-overview,
.service-detail-page .service-benefits,
.service-detail-page .service-sectors,
.service-detail-page .service-process,
.service-detail-page .service-cta {
    padding-bottom: 128px;
}

.service-section-photo {
    position: relative;
    overflow: hidden;
}

.service-section-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-section-photo--harbor::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(49, 90, 171, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(2, 5, 11, 0.92) 0%, rgba(2, 5, 11, 0.8) 42%, rgba(2, 5, 11, 0.94) 100%),
        url("src/img/site-fotos/contact-section-fotos/contact-section-6.jpg");
    background-size: auto, auto, cover;
    background-position: center center, center center, center 42%;
}

.service-section-photo--alster::before {
    background:
        radial-gradient(circle at 88% 22%, rgba(192, 192, 192, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(2, 5, 11, 0.9) 0%, rgba(2, 5, 11, 0.78) 44%, rgba(2, 5, 11, 0.94) 100%),
        url("src/img/site-fotos/contact-section-fotos/contact-section-2.jpg");
    background-size: auto, auto, cover;
    background-position: center center, center center, center center;
}

.service-section-photo--event::before {
    background:
        radial-gradient(circle at 16% 24%, rgba(49, 90, 171, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(2, 5, 11, 0.54) 0%, rgba(2, 5, 11, 0.72) 38%, rgba(2, 5, 11, 0.9) 100%),
        linear-gradient(180deg, rgba(2, 5, 11, 0.9) 0%, rgba(2, 5, 11, 0.74) 42%, rgba(2, 5, 11, 0.94) 100%),
        url("src/img/site-fotos/scenes/secunect-team-headquarters.jpg");
    background-size: auto, auto, auto, cover;
    background-position: center center, center center, center center, center 22%;
}

.service-overview-grid,
.service-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
    gap: 34px;
    align-items: start;
}

.service-cta-visual {
    margin: 32px 0 0;
    overflow: hidden;
    border-radius: 22px;
    position: relative;
    min-height: 280px;
}

.service-cta-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%),
        linear-gradient(120deg, rgba(10, 126, 255, 0.12), transparent 58%);
    z-index: 1;
    pointer-events: none;
}

.service-cta-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    object-fit: cover;
    object-position: center 28%;
}

.service-overview-card {
    padding: 30px;
    min-width: 0;
}

.service-overview-card h3,
.service-benefit-card h3,
.service-sector-card h3,
.service-step h3 {
    font-size: 21px;
    margin-bottom: 12px;
    line-height: 1.18;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}

.service-overview-card p,
.service-benefit-card p,
.service-sector-card p,
.service-step p {
    color: var(--text-secondary);
}

.service-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.service-fact {
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-fact-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-fact-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.service-benefits-grid,
.service-sectors-grid,
.service-process-grid {
    display: grid;
    gap: 24px;
}

.service-benefits-grid,
.service-sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-benefit-card,
.service-sector-card,
.service-step,
.service-cta-box {
    padding: 30px;
    min-width: 0;
}

.service-benefit-card:hover,
.service-sector-card:hover,
.service-step:hover,
.service-overview-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}

.career-application {
    padding: 0 0 128px;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.career-application-header {
    max-width: 840px;
    margin-bottom: 32px;
}

.career-application-header p,
.career-application-card p,
.career-form-meta {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.career-application-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 380px);
    gap: 30px;
    align-items: start;
}

.career-application-shell,
.career-application-card {
    border-radius: 24px;
}

.career-application-shell {
    padding: 34px;
}

.career-application-form {
    display: grid;
    gap: 22px;
}

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

.form-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.form-help {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.application-choice-section {
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.application-choice-section legend {
    padding-right: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.application-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.application-choice-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.application-choice {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.application-choice:hover {
    border-color: rgba(10, 126, 255, 0.4);
    background: rgba(10, 126, 255, 0.08);
    transform: translateY(-1px);
}

.application-choice input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-blue);
}

.application-choice-section--invalid {
    border-color: rgba(255, 102, 102, 0.68);
    box-shadow: 0 0 0 1px rgba(255, 102, 102, 0.24);
}

.career-consent {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    line-height: 1.7;
}

.career-consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--primary-blue);
}

.career-consent a {
    color: var(--text-primary);
}

.career-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
}

.career-form-meta {
    margin: 0;
}

.form-status,
.career-form-status {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.6;
}

.form-status[data-state="info"],
.career-form-status[data-state="info"] {
    background: rgba(10, 126, 255, 0.08);
    border-color: rgba(10, 126, 255, 0.24);
    color: #d7e8ff;
}

.form-status[data-state="success"],
.career-form-status[data-state="success"] {
    background: rgba(38, 166, 91, 0.12);
    border-color: rgba(38, 166, 91, 0.3);
    color: #d9ffe7;
}

.form-status[data-state="error"],
.career-form-status[data-state="error"] {
    background: rgba(214, 68, 68, 0.12);
    border-color: rgba(214, 68, 68, 0.3);
    color: #ffdada;
}

.captcha-panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.captcha-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.captcha-label {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.captcha-question {
    margin: 0 0 16px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

.captcha-refresh {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-blue);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.captcha-refresh:hover {
    color: #68aeff;
}

.captcha-panel.is-loading .captcha-refresh {
    opacity: 0.6;
    pointer-events: none;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.career-application-info {
    display: grid;
    gap: 22px;
}

.career-application-card {
    padding: 28px;
}

.career-application-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.career-application-form button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.case-study-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.case-study-card-link .service-benefit-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.case-study-card-copy {
    display: grid;
    gap: 12px;
}

.case-study-card-meta {
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.case-study-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.case-study-card-arrow::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.case-study-card-link:hover .case-study-card-arrow::after,
.case-study-card-link:focus-visible .case-study-card-arrow::after {
    transform: translateX(4px);
}

.case-study-card-link:focus-visible {
    outline: 2px solid rgba(49, 90, 171, 0.75);
    outline-offset: 8px;
    border-radius: 24px;
}

.service-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    box-shadow: var(--blue-glow-box);
    font-weight: 700;
}

.service-contact-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.service-contact-list li {
    color: var(--text-secondary);
}

.service-contact-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-advisor-card {
    padding: 34px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    align-items: center;
}

.service-advisor-photo {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.service-advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-advisor-role {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    margin-bottom: 8px;
}

.service-advisor-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 14px 0;
    color: var(--text-secondary);
}

.service-advisor-meta a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .service-hero-grid,
    .service-overview-grid,
    .service-cta-grid,
    .service-process-grid,
    .service-benefits-grid,
    .service-sectors-grid,
    .career-application-layout,
    .career-application-form-grid,
    .application-choice-grid--wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 150px 0 90px;
    }

    .service-hero-grid > div,
    .service-hero-title,
    .service-hero-subtitle,
    .service-hero-text {
        min-width: 0;
        max-width: 100%;
    }

    .service-hero--it .service-hero-media-asset {
        object-position: 58% 20%;
        transform: scale(1.16);
    }

    .service-hero--technik .service-hero-media-asset {
        object-position: center 26%;
        transform: scale(1.1);
    }

    .service-hero--services .service-hero-media-asset {
        object-position: 56% 22%;
        transform: scale(1.12);
    }

    .case-studies-hero .service-hero-media-asset {
        object-position: center center;
    }

    .service-detail-page section + section {
        padding-top: 24px;
    }

    .service-detail-page .service-overview,
    .service-detail-page .service-benefits,
    .service-detail-page .service-sectors,
    .service-detail-page .service-process,
    .service-detail-page .service-cta {
        padding-bottom: 104px;
    }

    .case-study-page .service-hero {
        padding-bottom: 104px;
    }

    .case-study-page section + section {
        padding-top: 28px;
    }

    .case-study-page .service-overview,
    .case-study-page .service-benefits,
    .case-study-page .service-sectors,
    .case-study-page .service-process,
    .case-study-page .service-cta {
        padding-bottom: 104px;
    }

    .service-hero-subtitle {
        font-size: 18px;
        line-height: 1.48;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .service-hero-title {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.08;
        letter-spacing: 0.01em;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
        text-wrap: balance;
    }

    .service-hero-title .gradient-text {
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .service-hero-text,
    .service-overview-copy p,
    .service-cta-copy p {
        font-size: 16px;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .service-hero-text {
        line-height: 1.7;
    }

    .service-actions {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .service-actions a {
        width: min(100%, 320px);
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .service-panel {
        padding: 24px 20px 26px;
    }

    .service-panel h2 {
        font-size: 24px;
        line-height: 1.14;
        letter-spacing: 0.01em;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .service-panel-list {
        gap: 10px;
    }

    .service-panel-list li {
        padding-left: 20px;
        font-size: 15px;
        line-height: 1.5;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .service-panel-list li::before {
        top: 0.72em;
        width: 7px;
        height: 7px;
    }

    .service-panel-note {
        margin-top: 22px;
        padding-top: 16px;
    }

    .service-panel-note dd {
        font-size: 22px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

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

    .service-cta-visual,
    .service-cta-visual img {
        min-height: 220px;
    }

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

    .career-application {
        padding-bottom: 104px;
    }

    .career-application-shell {
        padding: 24px 20px;
    }

    .application-choice-section {
        padding: 18px;
    }

    .application-choice-grid {
        grid-template-columns: 1fr;
    }

    .career-form-actions {
        align-items: stretch;
    }

    .career-form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .schulungen-hero--image::before {
        background-position: center center, center center, 62% 24%;
        animation: none;
        transform: none;
    }
}

@keyframes serviceHeroZoomOut {
    0% {
        transform: scale(1.16);
    }
    100% {
        transform: scale(1.04);
    }
}

/* Flat black content theme outside heroes */
.service-detail-page,
.case-study-page {
    background: var(--black);
}

body .partners-intro,
body .partners,
body .google-reviews,
body .services,
body .services-video,
body .home-gallery,
body .about,
body .about-detail,
body .legal-page,
body .footer,
body .faq-section,
body .faq-cta,
body .training-highlight,
body .training-programs,
body .target-audience,
body .benefits-section,
body .schulungen-cta,
body .ueber-story,
body .values-section,
body .timeline-section,
body .team-section,
body .ueber-strengths,
body .ueber-cta,
body .service-overview,
body .service-benefits,
body .service-sectors,
body .service-process,
body .service-cta,
body .service-section-photo {
    background: var(--black);
}

.services-bg-images,
.services-fade,
.about-fade {
    display: none;
}

.about-content > .section-title {
    z-index: 1;
    transform: none;
    margin-bottom: 52px;
}

body .about-bg-images {
    display: block;
}

body .about-img {
    opacity: 0.58;
    filter: brightness(0.8) saturate(0.82);
}

.google-review-card,
.ueber-cta-card,
.faq-cta {
    background: rgba(7, 10, 18, 0.94);
}

body .google-reviews::before,
body .home-gallery::before,
body .ueber-story::before,
body .values-section::before,
body .timeline-section::before,
body .team-section::before,
body .ueber-strengths::before,
body .home-gallery::after,
body .ueber-strengths::after,
body .services-video::after,
body .ueber-cta-card::before,
body .service-section-photo::before,
body .training-highlight--city::before {
    content: none;
}

.faq-cta-visual::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Landing page spacing cleanup */
html[data-page="index"] {
    --landing-section-space-lg: clamp(80px, 8vw, 104px);
    --landing-section-space-md: clamp(64px, 6vw, 88px);
    --landing-section-space-sm: clamp(24px, 3vw, 32px);
    --landing-section-heading-gap: clamp(24px, 3vw, 34px);
    --landing-section-copy-gap: clamp(40px, 4vw, 56px);
}

html[data-page="index"] .partners-intro {
    padding: var(--landing-section-space-sm) 0 0;
}

html[data-page="index"] .partners {
    padding: 32px 0 var(--landing-section-space-md);
}

html[data-page="index"] .google-reviews,
html[data-page="index"] .services,
html[data-page="index"] .home-gallery {
    margin-top: 0;
}

html[data-page="index"] .google-reviews {
    padding: var(--landing-section-space-md) 0;
}

html[data-page="index"] .google-reviews-layout {
    justify-items: start;
    gap: var(--landing-section-heading-gap);
}

html[data-page="index"] .google-reviews-summary {
    justify-items: start;
    margin: 0;
    text-align: left;
}

html[data-page="index"] .google-reviews-link {
    justify-content: flex-start;
}

html[data-page="index"] .services {
    padding: var(--landing-section-space-md) 0 var(--landing-section-space-lg);
}

html[data-page="index"] .services .section-title,
html[data-page="index"] .services-intro,
html[data-page="index"] .about .section-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

html[data-page="index"] .services-intro {
    margin: var(--landing-section-heading-gap) auto var(--landing-section-copy-gap);
}

html[data-page="index"] .services-video {
    padding-bottom: var(--landing-section-space-lg);
}

html[data-page="index"] .home-gallery {
    padding: var(--landing-section-space-lg) 0;
}

html[data-page="index"] .home-gallery-header {
    max-width: 760px;
    margin: 0 auto var(--landing-section-copy-gap);
    text-align: center;
}

html[data-page="index"] .home-gallery-title {
    text-align: center;
}

html[data-page="index"] .home-gallery-link {
    justify-content: center;
}

html[data-page="index"] .about {
    padding: var(--landing-section-space-lg) 0 var(--landing-section-space-md);
}

html[data-page="index"] .about-content > .section-title {
    display: block;
    width: 100%;
    margin: 0 auto var(--landing-section-heading-gap);
    text-align: center;
}

html[data-page="index"] .about-detail {
    padding-bottom: var(--landing-section-space-lg);
}

html[data-page="ueber-uns"] .values-section > .container > .section-title,
html[data-page="ueber-uns"] .team-section > .container > .section-title,
html[data-page="ueber-uns"] .timeline-section > .container > .section-title {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

html[data-page="ueber-uns"] .team-section {
    padding-top: 0;
}

html[data-page="ueber-uns"] .ueber-cta {
    padding-top: 0;
}

html[data-page="ueber-uns"] .ueber-story {
    margin-top: 0;
    padding-top: clamp(92px, 8vw, 112px);
    padding-bottom: 0;
    background: linear-gradient(180deg, #07101b 0%, #08111d 28%, #050911 100%);
    isolation: isolate;
}

html[data-page="ueber-uns"] .ueber-story::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(4, 8, 14, 0.96) 0%, rgba(4, 8, 14, 0.84) 26%, rgba(4, 8, 14, 0.58) 52%, rgba(4, 8, 14, 0.86) 76%, rgba(4, 8, 14, 0.96) 100%),
        linear-gradient(180deg, rgba(4, 8, 14, 0.18) 0%, rgba(4, 8, 14, 0.28) 34%, rgba(4, 8, 14, 0.74) 100%);
    opacity: 0.95;
    z-index: 0;
    pointer-events: none;
}

html[data-page="ueber-uns"] .ueber-story::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(49, 90, 171, 0.16), transparent 22%),
        radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 72% 78%, rgba(49, 90, 171, 0.12), transparent 24%);
    pointer-events: none;
    z-index: 0;
}

html[data-page="ueber-uns"] .ueber-story .story-card,
html[data-page="ueber-uns"] .ueber-story .mission-card {
    background:
        linear-gradient(180deg, rgba(10, 14, 22, 0.88) 0%, rgba(7, 10, 18, 0.94) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

html[data-page="ueber-uns"] .ueber-story .story-card {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

html[data-page="ueber-uns"] .values-section {
    overflow: visible;
    z-index: 1;
}

html[data-page="ueber-uns"] .values-ceo-visual {
    position: absolute;
    top: clamp(-150px, -10vw, -78px);
    right: clamp(12px, 3vw, 48px);
    width: clamp(320px, 40vw, 620px);
    margin: 0;
    pointer-events: none;
    z-index: 0;
}

html[data-page="ueber-uns"] .values-ceo-visual::before {
    content: "";
    position: absolute;
    inset: 10% 8% 4%;
    background: radial-gradient(circle at 50% 40%, rgba(49, 90, 171, 0.24), transparent 62%);
    filter: blur(34px);
    opacity: 0.9;
    z-index: -1;
}

html[data-page="ueber-uns"] .values-ceo-visual img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.82;
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.34));
    transform: translate3d(0, 150px, 0);
    will-change: transform, opacity;
}

html[data-page="ueber-uns"] .values-section > .container,
html[data-page="ueber-uns"] .values-section .values-grid {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    html[data-page="ueber-uns"] .ueber-story {
        padding-top: 92px;
    }

    html[data-page="ueber-uns"] .values-ceo-visual {
        top: -104px;
        width: min(46vw, 460px);
    }
}

@media (max-width: 768px) {
    html[data-page="ueber-uns"] .ueber-story {
        padding-top: 84px;
    }

    html[data-page="ueber-uns"] .values-ceo-visual {
        top: -72px;
        right: 50%;
        width: min(82vw, 360px);
        transform: translateX(50%);
    }

    html[data-page="ueber-uns"] .values-ceo-visual img {
        opacity: 0.66;
    }
}

@media (max-width: 768px) {
    html[data-page="contact"] .contact-page {
        padding-top: 132px;
        padding-bottom: 80px;
    }

    html[data-page="contact"] .contact-page::before {
        background-size: auto, min(250vw, 970px) auto;
        background-position: center center, center top;
        background-repeat: no-repeat, no-repeat;
        animation: none;
        transform: none;
    }

    html[data-page="contact"] .contact-page::after {
        content: "";
        position: absolute;
        top: min(140.625vw, 546px);
        left: 0;
        right: 0;
        height: clamp(160px, 28vw, 220px);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 68%, #000 100%);
        transform: translateY(-100%);
        pointer-events: none;
        z-index: 0;
    }

    html[data-page="contact"] .contact-page > .container {
        display: grid;
        justify-items: center;
    }

    html[data-page="contact"] .contact-page .section-title,
    html[data-page="contact"] .contact-intro,
    html[data-page="contact"] .contact-content {
        width: min(100%, 360px);
        margin-left: auto;
        margin-right: auto;
    }

    html[data-page="contact"] .contact-page .section-title,
    html[data-page="contact"] .contact-intro {
        text-align: center;
    }

    html[data-page="contact"] .contact-intro {
        margin-top: 18px;
    }

    html[data-page="contact"] .contact-content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 22px;
        margin-top: 34px;
    }

    html[data-page="contact"] .contact-form-wrapper,
    html[data-page="contact"] .contact-info,
    html[data-page="contact"] .info-item {
        width: 100%;
        max-width: 360px;
    }

    html[data-page="contact"] .contact-form-wrapper {
        padding: 28px 20px;
    }

    html[data-page="contact"] .contact-form {
        gap: 18px;
    }

    html[data-page="contact"] .form-group input,
    html[data-page="contact"] .form-group select,
    html[data-page="contact"] .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    html[data-page="contact"] .form-group textarea {
        min-height: 110px;
    }

    html[data-page="contact"] .contact-form .btn-primary {
        width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
    }

    html[data-page="contact"] .contact-info {
        align-items: center;
        gap: 16px;
    }

    html[data-page="contact"] .info-item {
        padding: 22px 20px;
        text-align: center;
    }

    html[data-page="contact"] .info-item:hover {
        transform: none;
    }
}
