/*
Theme Name: Canopy
Author: Seibel365
Version: 1.1
*/

/* ==================================================
   FONTS
================================================== */

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
         url('fonts/OpenSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-SemiBold.woff2') format('woff2'),
         url('fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Bold.woff2') format('woff2'),
         url('fonts/OpenSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
         url('fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
         url('fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2'),
         url('fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==================================================
   ROOT
================================================== */

:root {
    --blue: #005baa;
    --blue-light: #019fe4;

    --green: #16a34a;
    --green-light: #22c55e;

    --red: #d10a10;
    --red-dark: #b3000f;

    --white: #ffffff;
    --gray: #f5f7f8;
    --gray-dark: #64748b;
    --dark: #1e293b;

    --radius: 18px;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --container: 1200px;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --hero-title: clamp(52px, 7vw, 92px);
    --section-title: clamp(38px, 4vw, 58px);
    --card-title: 26px;

    --text-large: 21px;
    --text-normal: 16px;
    --text-small: 15px;
    --text-line-height: 1.6;
    --card-line-height: 1.75;
}

/* ==================================================
   RESET / BASIS
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
     -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    line-height: 1.1;
    font-weight: 700;
	 text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
	font-weight: 600;

}

p {
    margin: 0 0 20px;
}

#preloader{
	position:fixed;
	inset:0;
	background:#fff;
	z-index:99999;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:20px;
	transition:.5s;
}

.preloader-logo{
	font-family:'Poppins',sans-serif;
	font-size:32px;
	font-weight:600;
	color:#005baa;
	letter-spacing:.08em;
}

.preloader-line{
	width:180px;
	height:3px;
	background:#eef1f5;
	position:relative;
	overflow:hidden;
	border-radius:999px;
}

.preloader-line::after{
	content:"";
	position:absolute;
	top:0;
	left:-40%;
	width:40%;
	height:100%;
	background:#e30613;
	animation:loading 1.4s infinite;
}

@keyframes loading{
	from{left:-40%;}
	to{left:100%;}
}

.preloader-text{
	font-size:14px;
	color:#64748b;
	letter-spacing:.04em;
	margin:0;
}

/* ==================================================
   ADMIN BAR
================================================== */

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ==================================================
   CONTAINER
================================================== */

.container,
.hero-content,
.header-inner {
    width: min(var(--container), calc(100% - 32px));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ==================================================
   HEADER / NAVIGATION
================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid rgba(0,91,170,.10);
    box-shadow: 0 8px 30px rgba(15,23,42,.06);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 58px;
    width: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu li {
    list-style: none;
}

.menu a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: #1d2939;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: color .22s ease;
}

.menu a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width .25s ease;
}

.menu a::after {
    display: none;
}

.menu a:hover,
.menu .current-menu-item > a,
.menu .current_page_item > a {
    color: var(--blue);
}

.menu a:hover::before,
.menu .current-menu-item > a::before,
.menu .current_page_item > a::before {
    width: 26px;
}

.menu-toggle {
    display: none;
}


/* ==================================================
   MENU PHONE DESKTOP
   WordPress-Menüklasse: menu-phone
================================================== */

.main-nav .menu-phone {
    margin-left: 28px;
    padding-left: 28px;
    border-left: 1px solid rgba(0,91,170,.14);
}

.main-nav .menu-phone > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 0;

    background: transparent;
    border: 0;
    border-radius: 0;

    color: var(--blue) !important;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    transition: color .25s ease;
}

.main-nav .menu-phone > a::before {
    content: "";

    position: static;
    left: auto;
    bottom: auto;

    display: inline-block;

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;
    background: var(--green);

    transform: none;
    transition: .25s ease;
}

.main-nav .menu-phone > a::after,
.main-nav .menu-phone.current-menu-item > a::after,
.main-nav .menu-phone.current_page_item > a::after {
    display: none !important;
}

.main-nav .menu-phone > a:hover {
    color: var(--red) !important;
}

.main-nav .menu-phone > a:hover::before {
    transform: scale(1.18);
}


/* ==================================================
   MOBILE NAVIGATION
================================================== */

@media (max-width: 760px) {

    .header-inner {
        position: relative;
        height: 78px;
    }

    .logo img {
        height: 48px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        margin-left: auto;
        background: none;
        border: 0;
        cursor: pointer;
        z-index: 10006;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--blue);
        border-radius: 999px;
        transition: .25s ease;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;

        display: flex;
        flex-direction: column;

        width: 300px;
        max-width: 82vw;
        height: 100vh;

        z-index: 10005;

        padding: 115px 34px 40px;

        background: #fff;
        box-shadow: -10px 0 30px rgba(0,0,0,.12);

        transform: translateX(100%);
        transition: transform .3s ease;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav .menu {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        width: 100%;
    }

    .main-nav .menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0,91,170,.08);
    }

    .main-nav .menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 18px 0;

        color: #1e293b;
        font-size: 18px;
        font-weight: 600;
    }

    .main-nav .menu a::before {
        display: none;
    }

    .main-nav .menu a::after {
        content: "→";
        display: block;
        position: static;

        width: auto;
        height: auto;

        background: none;
        color: var(--blue);

        opacity: .45;
        transition: .2s ease;
    }

    .main-nav .menu a:hover {
        color: var(--blue);
    }

    .main-nav .menu a:hover::after {
        transform: translateX(4px);
        opacity: 1;
    }

    /* Telefonbutton mobil unten im Menü */

    .main-nav .menu-phone {
        margin: auto 0 0;
        padding: 22px 0 0;

        border-left: 0;
        border-top: 1px solid rgba(0,91,170,.10);
        border-bottom: none;
    }

    .main-nav .menu-phone > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: 100%;
        padding: 16px 20px;
        border-radius: 8px;
        background: var(--red);
        border: 1px solid var(--red);
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        transform: none !important;
    }

    .main-nav .menu-phone > a::before {
        content: "☎";
        color: #fff;
        font-size: 16px;
        transform: none !important;
    }

    .main-nav .menu-phone > a::after {
        display: none !important;
    }

    .main-nav .menu-phone > a:hover {
        background: var(--red-dark);
        color: #fff !important;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(15,23,42,.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .25s ease;
    }

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .phone {
        display: none;
    }
}

/* ==================================================
   BUTTONS
================================================== */

.button{
    display:inline-block;
    padding:16px 32px;
    margin:6px;
    border-radius:999px;
    font-weight:700;
    transition:.25s ease;
}

.button-primary{
    background:var(--blue);
    color:#fff;
}

.button-primary:hover{
    background:#00498a;
    color:#fff;
}

.button-secondary{
    background:var(--red);
    color:#fff;
}

.button-secondary:hover{
    background:var(--red-dark);
    color:#fff;
}

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 190px 0 120px;
    background: url('images/hero-fallback.png') center center / cover no-repeat;
}

.hero-video,
.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0,20,45,.92) 0%,
            rgba(0,55,105,.80) 44%,
            rgba(0,20,40,.65) 100%
        ),
        rgba(0,0,0,.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.kicker {
    display: inline-block;
    margin-bottom: 26px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.kicker::before,
.page-kicker::before{
	content:"⌯";
	display:inline-block;
	font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Noto Sans Symbols", "Arial Unicode MS", "Segoe UI", sans-serif;
	color:var(--red);
	font-size:22px;
	font-weight:300;
	line-height:1;
	transform:translateY(-1px);
	opacity:.9;
	font-style:normal;
	font-variant:normal;
	text-rendering:geometricPrecision;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 28px;
    font-family: var(--font-heading);
    font-size: var(--hero-title);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.hero p {
    max-width: 720px;
    margin-top: 0;
    font-size: 22px;
    line-height: 1.7;
}

/* Hero Cards */

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 920px;
    margin-top: 60px;
}

.card {
    position: relative;
    padding: 38px;
    border-radius: 24px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.10);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.card::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 38px;
    width: 3px;
    height: 36px;
    background: var(--red);
    border-radius: 999px;
}

.card::after {
    content: "→";
    position: absolute;
    right: 28px;
    bottom: 24px;
    font-size: 18px;
    opacity: .35;
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.28);
}

.card:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.card strong {
    font-size: var(--card-title);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.card span {
    display: block;
    margin-top: 16px;
    opacity: .92;
    font-size: var(--text-normal);
    line-height: var(--card-line-height);
}

/* ==================================================
   GENERAL CONTENT
================================================== */

section {
    padding: 90px 0;
}

.section-light {
    background: #fff;
}

.section-gray {
    background: var(--gray);
}

.section-title {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 26px;
    font-size: var(--section-title);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-title p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: #475569;
    font-size: var(--text-large);
    line-height: var(--text-line-height);
}

/* ==================================================
   PAGE TEMPLATE
================================================== */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0 120px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,20,45,.85) 0%,
            rgba(0,55,105,.65) 55%,
            rgba(0,20,45,.45) 100%
        );
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-kicker {
  margin: 0 0 18px;
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.page-main-section {
    padding: 90px 0;
}

.content-sidebar-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 50px;
    align-items: start;
    overflow: visible !important;
}


.main-content {
    width: 100%;
    max-width: 760px;
    min-width: 0;
	overflow: visible !important;
}

.main-content-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible !important;
}

.main-content h2 {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
    color: var(--red);
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -.02em;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.main-content h3 {
    margin-top: 38px;
    color: var(--blue);
}

.main-content p,
.main-content li {
    max-width: 100%;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.85;
    overflow-wrap: break-word;
}

.main-content-inner ul {
    list-style: none;
    padding: 0;
    margin: 30px 0px 30px 20px;
}

.main-content-inner li {
    position: relative;
    padding-left: 28px;
}

.main-content-inner li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--blue-light);
    font-size: 12px;
}

.main-content-inner ol{
    margin:60px 0;
    padding:0;
    list-style:none;
    counter-reset:step;
}

.main-content-inner ol li{

    counter-increment:step;

    position:relative;

    padding:0 0 24px 60px;
    margin-bottom:24px;

    border-bottom:1px solid #edf1f5;
}

.main-content-inner ol li:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.main-content-inner ol li::before{

    content:counter(step);

    position:absolute;
    left:0;
    top:2px;

    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--blue-light);
    color:#fff;
    font-weight:700;
}

.main-content-inner ol li strong{
    display:block;
    margin-bottom:6px;
    color:var(--blue);
    font-size:20px;
}

.main-content-inner ol li br{
    display:none;
}

.main-content-inner .service-areas{
    margin:55px 0;
}

.main-content-inner .service-area{
    padding:0 0 28px 0;
    margin-bottom:28px;
    border-bottom:1px solid #edf1f5;
}

.main-content-inner .service-area:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.main-content-inner .service-area h3{
    margin:0 0 10px;
    font-size:22px;
    font-weight:600;
    color:var(--blue);
}

.main-content-inner .service-area p{
    margin:0;
}

/* ==================================================
   SIDEBAR
================================================== */

.sticky-sidebar {
    position: sticky;
    top: 130px;
    align-self: start;
}

body.admin-bar .sticky-sidebar {
    top: 162px;
}

.sidebar-card {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #eef1f5;
}

.sidebar-card h3 {
    color: var(--blue);
    margin-bottom: 16px;
}

.sidebar-card p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 26px;
}

.sidebar-list {
    border-top: 1px solid rgba(0,91,170,.10);
    margin-bottom: 28px;
}

.sidebar-list div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,91,170,.10);
}

.sidebar-list span {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sidebar-list strong,
.sidebar-list a {
    display: block;
    color: var(--dark);
    font-size: var(--text-normal);
    font-weight: 600;
    line-height: 1.55;
}

.sidebar-list a {
    color: var(--blue);
}

.sidebar-button {
    display: block;
    padding: 14px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: all .25s ease;
}

.sidebar-button:hover {
    background: #fff;
    color: var(--blue);
    border-color: var(--blue);
}

/* ==================================================
   COMPANY / CUSTOMER SECTIONS
================================================== */

.company-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,.68), rgba(255,255,255,.68)),
        url('images/company-bg.png') center center / cover no-repeat;
}

.company-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.company-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.company-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255,255,255,.45);
}

.company-section .container,
.customer-section .container {
    position: relative;
    z-index: 2;
}

.company-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 90px;
    align-items: center;
}

.reverse-layout {
    grid-template-columns: 1fr 380px;
}

.company-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.company-box {
    position: relative;
    padding: 34px 34px 34px 58px;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(0,91,170,.08);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(15,23,42,.07);
    transition: .25s ease;
}

.company-box::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 32px;
    width: 3px;
    height: 36px;
    background: var(--red);
    border-radius: 999px;
}

.company-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.company-box h3 {
    margin-bottom: 14px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: var(--card-title);
    font-weight: 600;
    letter-spacing: -.025em;
}

.company-box p,
.process-box p {
    font-size: var(--text-normal);
    line-height: var(--card-line-height);
}

.company-content h2 {
    max-width: 800px;
    margin-bottom: 30px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: var(--section-title);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.company-content p,
.cta p {
    max-width: 780px;
    color: #475569;
    font-size: var(--text-large);
    line-height: var(--text-line-height);
}

.customer-section {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.customer-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.customer-bg-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

.customer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(15,23,42,.78) 0%,
            rgba(15,23,42,.62) 45%,
            rgba(15,23,42,.35) 100%
        );
}

.customer-section .company-content h2 {
    color: #fff;
}

.customer-section .company-content p {
    color: rgba(255,255,255,.85);
}

.customer-section .company-box {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

/* ==================================================
   PROCESS SECTION
================================================== */

.process-section {
    position: relative;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-box {
    position: relative;
    padding: 38px 30px 34px;
    background: #fff;
    border: 1px solid rgba(0,91,170,.08);
    border-radius: 24px;
    box-shadow: 0 16px 46px rgba(15,23,42,.06);
    transition: .25s ease;
}

.process-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(15,23,42,.10);
}

.process-number {
    position: relative;
    display: inline-block;
    margin-bottom: 34px;
    color: rgba(0,91,170,.20);
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
}

.process-number::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 34px;
    height: 3px;
    background: var(--red);
    border-radius: 999px;
}

.process-box h3 {
    margin-bottom: 16px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: var(--card-title);
    font-weight: 600;
    line-height: 1.25;
}

/* ==================================================
   PARTNER FAQ / INFO
================================================== */

.partner-bottom {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 70px auto 0;
    padding: 46px 52px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.partner-bottom-faq {
    flex: 1 1 58%;
}

.partner-bottom-text {
    flex: 1 1 42%;
    padding-left: 8px;
}

.partner-bottom-faq details {
    overflow: hidden;
    margin-bottom: 14px;
    background: #f8fafc;
    border: 1px solid #edf1f5;
    border-radius: 14px;
}

.partner-bottom-faq details:last-child {
    margin-bottom: 0;
}

.partner-bottom-faq summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 19px 56px 19px 22px;
    font-weight: 600;
}

.partner-bottom-faq summary::-webkit-details-marker {
    display: none;
}

.partner-bottom-faq summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.partner-bottom-faq details[open] summary::after {
    content: "−";
}

.partner-bottom-faq details p {
    margin: 0;
    padding: 0 22px 20px;
    line-height: 1.7;
}

.partner-bottom-text .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.partner-bottom-text h3 {
    margin: 0 0 18px;
    font-size: 2rem;
    line-height: 1.12;
}

.partner-bottom-text p {
    margin: 0;
    line-height: 1.8;
}

.partner-button {
    display: block;
    max-width: 290px;
    margin-top: 25px;
    padding: 14px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: all .25s ease;
}

.partner-button:hover {
    background: #fff;
    color: var(--red);
    border-color: var(--red);
}

/* ==================================================
   IDEA SECTION
================================================== */

.idea-section{
    background:#fff;
}

.idea-flow{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:0;
    margin-top:40px;
}

.idea-step{
    text-align:center;
    min-width:140px;
    transition:.25s ease;
}

.idea-circle{
    width:20px;
    height:20px;
    margin:0 auto 18px;
    border-radius:50%;
    transition:.25s ease;
}

/* ==================================================
   IDEA CIRCLES
================================================== */

/* Blau */

.idea-step:nth-child(1) .idea-circle,
.idea-step:nth-child(5) .idea-circle,
.idea-step:nth-child(9) .idea-circle{
    background:var(--blue-light);
    box-shadow:0 0 0 7px rgba(31,149,208,.12);
}

/* Rot */

.idea-step:nth-child(3) .idea-circle,
.idea-step:nth-child(7) .idea-circle{
    background:var(--red);
    box-shadow:0 0 0 7px rgba(227,6,19,.10);
}

/* ==================================================
   IDEA LINES
================================================== */

.idea-line{
    width:80px;
    height:2px;
    margin:0 10px;
    background:#dbe4ee;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

.idea-step h3{
    margin:0;
    color:var(--dark);
    font-size:var(--text-normal);
    font-weight:600;
    line-height:1.3;
}

.idea-text{
    max-width:760px;
    margin:50px auto 0;
    text-align:center;
}

.idea-text p{
    margin:0;
    color:#475569;
    font-size:var(--text-large);
    line-height:var(--text-line-height);
}

/* ==================================================
   HOVER
================================================== */

.idea-step:hover .idea-circle{
    transform:scale(1.15);
}

.idea-step:hover h3{
    color:var(--blue);
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:760px){

    .idea-flow{
        flex-direction:column;
        gap:20px;
    }

    .idea-line{
        width:2px;
        height:40px;
        margin:0;
    }

    .idea-step{
        min-width:auto;
    }

}

/* ==================================================
   PARTNER WERDEN PAGE
================================================== */

.partner-page {
    background: var(--white);
}

/* Hero */

.partner-page-hero {
    min-height: auto;
}

.partner-page-hero .container {
    position: relative;
    z-index: 2;
}

.partner-hero-text {
    max-width: 760px;
    margin: 28px 0 30px;
    color: rgba(255,255,255,.88);
    font-size: 22px;
    line-height: 1.75;
}

.partner-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Sections */

.partner-section .section-title {
    margin-bottom: 60px;
}

.partner-section .company-cards-horizontal {
    align-items: stretch;
}

/* Geeignet für */

.partner-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.partner-fit-box {
    position: relative;
    padding: 32px;
    background: var(--gray);
    border: 1px solid rgba(0,91,170,.08);
    border-radius: 24px;
}

.partner-fit-box::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 46px;
    height: 4px;
    background: var(--red);
    border-radius: 0 0 999px 999px;
}

.partner-fit-box h3 {
    margin: 0 0 14px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.partner-fit-box p {
    margin: 0;
    color: #475569;
    font-size: var(--text-normal);
    line-height: var(--card-line-height);
}

/* FAQ */

.partner-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.partner-faq-item {
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(0,91,170,.08);
    border-radius: 24px;
    box-shadow: 0 16px 46px rgba(15,23,42,.06);
}

.partner-faq-item h3 {
    margin: 0 0 14px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.partner-faq-item p {
    margin: 0;
    color: #475569;
    font-size: var(--text-normal);
    line-height: var(--card-line-height);
}

/* Kontaktbereich */

.partner-contact-section {
    padding-bottom: 110px;
}

.partner-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 56px;
    align-items: start;
}

.partner-contact-text h2 {
    max-width: 620px;
    margin-bottom: 26px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: var(--section-title);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.partner-contact-text > p {
    max-width: 680px;
    margin: 0 0 34px;
    color: #475569;
    font-size: var(--text-large);
    line-height: var(--text-line-height);
}

.partner-contact-points {
    display: grid;
    gap: 18px;
}

.partner-contact-points div {
    position: relative;
    padding: 0 0 0 24px;
    border-left: 4px solid var(--red);
}

.partner-contact-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.partner-contact-points p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* Formularbox */

.partner-form-box {
    padding: 36px;
    background: var(--gray);
    border: 1px solid rgba(0,91,170,.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.partner-form-box h3 {
    margin: 0 0 24px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
}

/* ==================================================
   PARTNER FORMULAR – CONTACT FORM 7
================================================== */

.partner-page .wpcf7-form {
    display: block;
}

.partner-page .wpcf7-form p {
    margin: 0;
}

.partner-form-row {
    display: block;
    width: 100%;
    margin-bottom: 14px;
}

.partner-page .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.partner-page .wpcf7 input:not([type="submit"]):not([type="checkbox"]),
.partner-page .wpcf7 textarea,
.partner-page .wpcf7 select {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #d8dee6;
    border-radius: 10px;
    background: #fff;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    box-shadow: none;
}

.partner-page .wpcf7 textarea {
    height: 138px;
    min-height: 138px;
    padding: 15px 16px;
    resize: vertical;
}

/* Datenschutz */

.partner-form-privacy {
    margin: 18px 0 0;
}

.partner-form-privacy .wpcf7-list-item {
    margin: 0;
}

.partner-form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.partner-form-privacy input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 4px 0 0;
    flex: 0 0 auto;
}

/* Button */

.partner-form-submit {
    margin-top: 22px;
}

.partner-page .wpcf7 input.partner-button,
.partner-page .wpcf7 .partner-button {
    display: block;
    max-width: 290px;
    width: auto;
    margin-top: 25px;
    padding: 14px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease;
}

.partner-page .wpcf7 input.partner-button:hover,
.partner-page .wpcf7 .partner-button:hover {
    background: #fff;
    color: var(--red);
    border-color: var(--red);
}

/* Meldungen */

.partner-page .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: var(--red);
    font-size: 13px;
}

.partner-page .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 14px 18px !important;
    border-radius: 10px;
}

/* Responsive */

@media (max-width: 1000px) {

    .partner-fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

}

@media (max-width: 900px) {

    .partner-section .company-cards-horizontal {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {

    .partner-hero-text {
        font-size: 18px;
    }

    .partner-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .partner-hero-buttons .button {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .partner-fit-grid,
    .partner-faq-grid {
        grid-template-columns: 1fr;
    }

    .partner-fit-box,
    .partner-faq-item,
    .partner-form-box {
        padding: 28px;
    }

    .partner-contact-section {
        padding-bottom: 80px;
    }

    .partner-contact-text h2 {
        font-size: 38px;
    }

    .partner-form-two {
        grid-template-columns: 1fr;
    }

    .partner-page .wpcf7 input.partner-button,
    .partner-page .wpcf7 .partner-button {
        width: 100%;
        max-width: none;
    }

}

/* ==================================================
   ÜBER UNS - Unternehmensdaten
================================================== */

.company-details{
    margin-top:30px;
}

.company-detail{
    padding:18px 0;
    border-top:1px solid rgba(0,91,170,.08);
}

.company-detail:first-child{
    border-top:none;
    padding-top:0;
}

.company-detail strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-detail span{
    display:block;
    color:#475569;
    line-height:1.75;
    word-break:break-word;
}

.company-detail a{
    color:var(--blue);
    text-decoration:none;
    transition:.25s ease;
}

.company-detail a:hover{
    color:var(--red);
}

.company-link{

    display:inline-flex;
    align-items:center;
    gap:10px;

    color:var(--blue);

    font-weight:600;
    text-decoration:none;

    transition:.25s ease;
}

.company-link::before{

    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--blue-light);
    transition:.25s ease;
}

.company-link:hover{

    color:var(--red);

}

.company-link:hover::before{

    transform:scale(1.5);

}


/* ==================================================
   SERVICES PAGE
================================================== */

.services-page{
	background:#fff;
}

/* Kategorien */

.services-page .service-category{
	padding:90px 0;
	background:#fff;
}

.services-page .service-category:first-of-type{
	padding-top:90px;
}

.services-page .service-category:nth-of-type(even){
	background:var(--gray);
}

/* Kategorie-Kopf */

.services-page .service-category-head{
	max-width:900px;
	margin:0 auto 58px;
	text-align:center;
}

.services-page .service-category-head .kicker{
	display:block;
	margin-bottom:14px;
}

.services-page .service-category-head h2{
	margin:0 0 20px;
	font-family:var(--font-heading);
	font-size:clamp(34px,4vw,52px);
	line-height:1.12;
	font-weight:600;
	letter-spacing:-.035em;
	color:var(--dark);
}

.services-page .service-category-head p{
	max-width:760px;
	margin:0 auto;
	font-size:18px;
	line-height:1.8;
	color:var(--gray-dark);
}

/* Karten */

.services-page .service-card-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:30px;
}

.services-page .service-card-grid > article{
	display:flex;
	flex-direction:column;
	min-height:100%;
	padding:34px;
	background:#fff;
	border:1px solid #e5eaf0;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	transition:.25s ease;
}

.services-page .service-card-grid > article:hover{
	transform:translateY(-3px);
	box-shadow:0 18px 45px rgba(0,0,0,.10);
	border-color:rgba(0,91,170,.25);
}

.services-page .service-card-grid > article h3{
	margin:0 0 16px;
	font-family:var(--font-heading);
	font-size:var(--card-title);
	line-height:1.25;
	font-weight:600;
	letter-spacing:-.025em;
	color:var(--dark);
}

.services-page .service-card-grid > article p{
	flex:1;
	margin:0 0 28px;
	font-size:16px;
	line-height:1.75;
	color:var(--gray-dark);
}

/* Kartenlink */

.services-page .card-link{
	display:inline-flex;
	align-items:center;
	gap:8px;
	margin-top:auto;
	color:var(--blue);
	font-weight:700;
	text-decoration:none;
	transition:.25s ease;
}

.services-page .card-link::after{
	content:"→";
	transition:.25s ease;
}

.services-page .card-link:hover{
	color:var(--red);
}

.services-page .card-link:hover::after{
	transform:translateX(4px);
}

/* Responsive */

@media (max-width:1000px){

	.services-page .service-card-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

}

@media (max-width:700px){

	.services-page .service-category{
		padding:65px 0;
	}

	.services-page .service-category-head{
		margin-bottom:38px;
		text-align:left;
	}

	.services-page .service-category-head p{
		margin:0;
	}

	.services-page .service-category-head h2{
		font-size:34px;
	}

	.services-page .service-card-grid{
		grid-template-columns:1fr;
		gap:20px;
	}

	.services-page .service-card-grid > article{
		padding:26px;
	}

}

/* ==================================================
   ANSPRECHPARTNER & FACHBEREICHE / NETWORK PAGE
================================================== */

.network-page .network-section{
	background:var(--gray);
}

.network-page .section-title{
	max-width:860px;
	margin-bottom:50px;
}

.network-grid{
	display:grid;
	grid-template-columns:repeat(3, minmax(0, 1fr));
	gap:30px;
	align-items:stretch;
}

.network-card{
	display:flex;
	flex-direction:column;
	gap:22px;
	min-height:100%;
	padding:34px;
	background:#fff;
	border:1px solid #e5eaf0;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	transition:.25s ease;
}

.network-card:hover{
	transform:translateY(-3px);
	box-shadow:0 18px 45px rgba(0,0,0,.10);
	border-color:rgba(0,91,170,.25);
}

.network-card-head{
	border-bottom:1px solid #e5eaf0;
	padding-bottom:18px;
}

.network-card-kicker{
	margin:0 0 8px;
	font-size:14px;
	font-weight:700;
	letter-spacing:.08em;
	text-transform:uppercase;
	color: var(--blue-light);
}

.network-card h3{
	margin:0;
	font-size:28px;
	line-height:1.2;
	color:var(--dark);
}

.network-main{
	display:block;
	padding:22px;
	border-radius:16px;
	background:#f8fafc;
	border:1px solid #e5eaf0;
	text-decoration:none;
	transition:.25s ease;
}

.network-main strong{
	display:block;
	margin-bottom:8px;
	font-size:18px;
	line-height:1.35;
	color:var(--dark);
}

.network-main span{
	display:block;
	color:var(--gray-dark);
	line-height:1.65;
}

.network-main:hover{
	transform:translateY(-3px);
	border-color:rgba(0,91,170,.25);
	box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.network-links{
	display:flex;
	flex-direction:column;
	gap:8px;
	margin-top:auto;
}

.network-links a{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:12px 0;
	border-bottom:1px solid #eef2f6;
	color: var(--gray-dark);
	font-weight:600;
	text-decoration:none;
	transition:.2s ease;
}

.network-links a::after{
	content:"→";
	color:var(--blue);
	transition:.2s ease;
}

.network-links a:hover{
	color:var(--blue);
	padding-left:6px;
}

.network-links a:hover::after{
	transform:translateX(4px);
}

.network-links a.is-disabled{
	opacity:.45;
	cursor:default;
	pointer-events:none;
	color:#94a3b8;
}

.network-links a.is-disabled::after{
	color:#cbd5e1;
}

@media (max-width:1024px){

	.network-grid{
		grid-template-columns:repeat(2, minmax(0, 1fr));
	}

}

@media (max-width:700px){

	.network-page .section-title{
		margin-bottom:36px;
	}

	.network-grid{
		grid-template-columns:1fr;
		gap:20px;
	}

	.network-card{
		padding:26px;
	}

	.network-card h3{
		font-size:24px;
	}

	.network-main{
		padding:18px;
	}

}

/* ==================================================
   JOBS / KARRIERE
================================================== */

/* Übersicht */

.jobs-page .jobs-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:30px;
	margin-top:60px;
	align-items:stretch;
}

.jobs-page .jobs-card{
	display:flex;
	flex-direction:column;
	width:100%;
	overflow:hidden;
	background:#fff;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	transition:transform .25s ease, box-shadow .25s ease;
}

.jobs-page .jobs-card:hover{
	transform:translateY(-6px);
	box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.jobs-page .career-card-image{
	display:block;
	height:220px;
	overflow:hidden;
	background:var(--gray);
}

.jobs-page .career-card-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition:transform .35s ease;
}

.jobs-page .jobs-card:hover .career-card-image img{
	transform:scale(1.04);
}

.jobs-page .career-card-content{
	display:flex;
	flex-direction:column;
	flex:1;
	padding:30px;
}

.jobs-page .career-meta{
	margin:0 0 16px;
	font-size:14px;
	font-weight:700;
	color:var(--gray-dark);
}

.jobs-page .jobs-card h3{
	margin:0 0 18px;
	font-size:28px;
	line-height:1.25;
}

.jobs-page .jobs-card h3 a{
	color:var(--dark);
	text-decoration:none;
	transition:.25s ease;
}

.jobs-page .jobs-card h3 a:hover{
	color:var(--blue);
}

.jobs-page .jobs-card p{
	margin:0 0 24px;
	line-height:1.75;
}

/* Badges */

.job-badges{
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	margin:0 0 18px;
}

.job-badges span{
	display:inline-flex;
	align-items:center;
	padding:7px 12px;
	border-radius:999px;
	background:rgba(1,159,228,.10);
	color:var(--blue);
	font-size:14px;
	font-weight:700;
	line-height:1.2;
}

/* Buttons */

.jobs-page .btn-red,
.job-single-page .btn-red{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:14px 24px;
	background:var(--red);
	border:2px solid var(--red);
	border-radius:8px;
	color:#fff;
	font-weight:700;
	text-decoration:none;
	transition:.25s ease;
}

.jobs-page .btn-red{
	margin-top:auto;
	align-self:flex-start;
}

.jobs-page .btn-red:hover,
.job-single-page .btn-red:hover{
	background:#fff;
	color:var(--red);
}

/* Detailseite */

.job-facts-section {
	background: var(--white);
	padding: 0 0 20px;
}

.job-facts-bar{
	margin-top:-38px;
	position:relative;
	z-index:5;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:25px;
	padding:22px 26px;
	background:#fff;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
}

.job-facts{
	display:flex;
	flex-wrap:wrap;
	gap:14px 26px;
}

.job-facts span{
	font-size:15px;
	color:var(--gray-dark);
}

.job-facts strong{
	color:var(--dark);
}

.job-facts-bar .btn-red{
	width:auto;
	min-width:220px;
}

.job-single-page .content-sidebar-grid{
	align-items:flex-start;
	gap:70px;
}

.job-single-content{
	max-width:680px;
	background:#fff;
}

.job-single-content h2:first-child{
	margin-top:0;
}

.job-single-content h2{
	margin-top:44px;
	margin-bottom:18px;
}

.job-single-content p{
	line-height:1.8;
}

.job-single-content ul{
	margin:20px 0;
	padding-left:22px;
}

.job-single-content li{
	margin-bottom:10px;
	line-height:1.7;
}

.job-apply-box{
	margin-top:50px;
}

.job-sidebar-box{
	position:sticky;
	top:130px;
	background:#fff;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	padding:34px;
}

.job-sidebar-box h3{
	margin:0 0 22px;
	font-size:24px;
}

.job-detail-list{
	list-style:none;
	margin:0 0 28px;
	padding:0;
}

.job-detail-list li{
	padding:16px 0;
	border-bottom:1px solid rgba(0,0,0,.08);
}

.job-detail-list strong{
	display:block;
	margin-bottom:4px;
	font-size:14px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.08em;
	color:var(--gray-dark);
}

.job-detail-list span{
	display:block;
	font-weight:700;
	color:var(--dark);
}

.job-sidebar-box .btn-red{
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	margin-top:32px;
}

.job-contact{
	margin-top:0;
	padding-top:16px;
}

.job-contact h4{
	margin:0 0 14px;
	font-size:20px;
}

.job-contact p{
	margin:0 0 10px;
}

/* ==================================================
   JOB FILTER
================================================== */

.jobs-filter-panel{

	display:grid;
	grid-template-columns:repeat(2, minmax(0,1fr));

	gap:24px;

	margin:0 0 50px;

	padding:30px;

	background:#fff;

	border:1px solid #e5eaf0;

	border-radius:var(--radius);

	box-shadow:var(--shadow);

}

.jobs-filter-field label{

	display:block;
	margin-bottom:10px;
	font-size:14px;
	font-weight:700;
	letter-spacing:.08em;
	text-transform:uppercase;
	color:var(--gray-dark);

}

.jobs-filter-field select{

	width:100%;
	height:52px;
	padding:0 18px;
	border:1px solid #dbe3ea;
	border-radius:12px;
	background:#f8fafc;
	color:var(--dark);
	font-size:16px;
	font-weight:600;
	font-family:inherit;
	cursor:pointer;
	transition:.25s ease;

}

.jobs-filter-field select:hover{

	border-color:var(--blue);
	background:#fff;

}

.jobs-filter-field select:focus{

	outline:none;
	border-color:var(--blue);
	background:#fff;
	box-shadow:0 0 0 4px rgba(0,91,170,.12);

}

.jobs-filter-field select option{

	font-size:15px;

}

/* Mobile */

@media (max-width:760px){

	.jobs-filter-panel{

		grid-template-columns:1fr;

		padding:22px;

		gap:18px;

		margin-bottom:35px;

	}

}

.jobs-load-wrap {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.jobs-empty {
	margin-top: 30px;
}

/* ==================================================
   JOBS LOAD MORE
================================================== */

.jobs-load-wrap{
	display:flex;
	justify-content:center;
	margin:70px 0 30px;
}

.jobs-load-button{
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:18px;

	background:none;
	border:0;
	padding:0;

	cursor:pointer;
}

.jobs-load-icon{

	width:72px;
	height:72px;

	border-radius:50%;

	background:var(--red);
	color:#fff;

	display:flex;
	align-items:center;
	justify-content:center;

	font-size:30px;
	font-weight:700;

	box-shadow:0 12px 30px rgba(0,0,0,.12);

	transition:.25s ease;

	animation:jobsBounce 2.5s infinite;

}

.jobs-load-button:hover .jobs-load-icon{

	background:var(--red-dark);
	transform:translateY(5px);

}

.jobs-load-text{

	font-size:18px;
	font-weight:700;
	color:var(--dark);

	transition:.25s ease;

}

.jobs-load-button:hover .jobs-load-text{

	color:var(--blue);

}

@keyframes jobsBounce{

	0%,20%,50%,80%,100%{
		transform:translateY(0);
	}

	40%{
		transform:translateY(6px);
	}

	60%{
		transform:translateY(2px);
	}

}

@media (max-width:760px){

	.jobs-load-wrap{
		margin:50px 0 20px;
	}

	.jobs-load-icon{

		width:60px;
		height:60px;

		font-size:24px;

	}

	.jobs-load-text{

		font-size:16px;

	}

}

/* Responsive */

@media (max-width:980px){
	.jobs-page .jobs-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

	.job-facts-bar{
		flex-direction:column;
		align-items:flex-start;
	}

	.job-facts-bar .btn-red{
		width:100%;
	}
}

@media (max-width:900px){
	.job-sidebar-box{
		position:static;
	}

	.job-single-page .content-sidebar-grid{
		gap:40px;
	}
}

@media (max-width:640px){
	.jobs-page .jobs-grid{
		grid-template-columns:1fr;
	}

	.jobs-page .career-card-image{
		height:200px;
	}

	.job-facts-section{
		padding-top:25px;
	}

	.job-facts-bar{
		margin-top:0;
		padding:24px;
	}
}

/* ==================================================
   BEWERBUNGSFORMULAR
================================================== */

.application-form-box .form-row{
	display:flex;
	gap:24px;
	margin-bottom:22px;
}

.application-form-box .form-col{
	flex:1;
}

.application-form-box label{
	display:block;
	margin-bottom:8px;
	font-weight:700;
	color:var(--dark);
}

.application-form-box input,
.application-form-box textarea,
.application-form-box select{
	width:100%;
	padding:16px 18px;

	border:1px solid #d8dee5;
	border-radius:10px;

	background:#fff;
	color:var(--dark);
	font-size:16px;

	box-sizing:border-box;
	transition:.25s ease;
}

.application-form-box textarea{
	min-height:180px;
	resize:vertical;
}

.application-form-box input:focus,
.application-form-box textarea:focus,
.application-form-box select:focus{
	outline:none;
	border-color:var(--blue-light);
	box-shadow:0 0 0 4px rgba(1,159,228,.12);
}

.application-form-box h3{
	margin:0 0 24px;
	font-size:28px;
}

.application-form-box hr{
	margin:40px 0;
	border:0;
	border-top:1px solid rgba(0,0,0,.08);
}

.application-form-box input[type=file]{
	padding:14px;
	background:var(--gray);
	border:2px dashed rgba(0,91,170,.18);
	cursor:pointer;
}

.application-form-box .wpcf7-acceptance{
	display:flex;
	align-items:flex-start;
	gap:12px;
	margin:30px 0;
	line-height:1.7;
}

.application-form-box .wpcf7-acceptance input{
	width:auto;
	margin-top:4px;
}

.application-form-box input[type=submit]{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	padding:16px 30px;

	background:var(--red);
	border:2px solid var(--red);
	border-radius:8px;

	color:#fff;
	font-weight:700;
	cursor:pointer;

	transition:.25s ease;
}

.application-form-box input[type=submit]:hover{
	background:#fff;
	color:var(--red);
}

.application-form-box .wpcf7-spinner{
	margin-left:15px;
}

.custom-file-upload{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	padding:22px 24px;
	margin-top:8px;
	border:2px dashed rgba(0,91,170,.22);
	border-radius:14px;
	background:var(--gray);
	transition:.25s ease;
}

.custom-file-upload:hover{
	border-color:var(--blue-light);
	background:#fff;
}

.custom-file-text{
	display:flex;
	flex-direction:column;
	gap:5px;
}

.custom-file-text strong{
	color:var(--dark);
	font-size:17px;
}

.custom-file-text span{
	color:var(--gray-dark);
	font-size:14px;
}

.custom-file-text em{
	color:var(--blue);
	font-size:14px;
	font-style:normal;
	font-weight:700;
}

.custom-file-button{
	padding:12px 18px;
	background:var(--blue);
	border:0;
	border-radius:8px;
	color:#fff;
	font-weight:700;
	cursor:pointer;
}

.custom-file-upload .wpcf7-form-control-wrap{
	display:none;
}

.application-form-box input[type=submit]{
	width:auto;
	min-width:240px;
	max-width:320px;
	padding:15px 28px;
	display:inline-flex;
}

@media (max-width:700px){

	.application-form-box .form-row{
		flex-direction:column;
		gap:0;
	}

}

/* ==================================================
   404 PAGE – SEIBEL365
================================================== */

.error-page{
	background:var(--gray);
}

.error-hero{
	position:relative;
	padding:120px 0 90px;
	background:var(--gray);
	overflow:hidden;
}

.error-hero::before{
	content:"";
	position:absolute;
	inset:0;
	background:
		linear-gradient(135deg,rgba(0,91,170,.08),rgba(255,255,255,0) 38%),
		linear-gradient(315deg,rgba(209,10,16,.06),rgba(255,255,255,0) 34%);
	pointer-events:none;
}

.error-container{
	position:relative;
	z-index:2;
	max-width:1200px;
	margin:0 auto;
}

.error-intro{
	max-width:820px;
	margin:0 auto 52px;
	text-align:center;
}

.error-intro .page-kicker{
	margin-bottom:18px;
	color:var(--blue);
}

.error-intro h1{
	margin:0 0 24px;
	color:var(--dark);
	font-family:var(--font-heading);
	font-size:clamp(46px,6vw,78px);
	font-weight:700;
	line-height:1.05;
	letter-spacing:-.04em;
}

.error-lead{
	max-width:700px;
	margin:0 auto;
	color:var(--gray-dark);
	font-size:20px;
	line-height:1.75;
}

/* Buttons oben */

.error-actions{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	gap:16px;
	margin:34px 0 0;
}

.error-actions .btn{
	min-width:220px;
	justify-content:center;
}

/* Boxen wie Karten auf den anderen Seiten */

.error-boxes{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:28px;
	margin-top:0;
}

.error-box{
	position:relative;
	display:flex;
	flex-direction:column;
	min-height:285px;

	padding:34px;
	border-radius:var(--radius);
	background:#fff;
	box-shadow:var(--shadow);
	color:inherit;
	text-decoration:none;
	overflow:hidden;

	transition:transform .25s ease, box-shadow .25s ease;
}

.error-box::before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:5px;
	height:100%;
	background:var(--red);
}

.error-box:hover{
	transform:translateY(-5px);
	box-shadow:0 16px 38px rgba(0,0,0,.11);
}

.error-label{
	display:inline-flex;
	align-items:center;
	margin-bottom:20px;

	color:var(--blue);
	font-size:14px;
	font-weight:800;
	letter-spacing:2px;
	text-transform:uppercase;
}

.error-box h3{
	margin:0 0 16px;
	color:var(--dark);
	font-family:var(--font-heading);
	font-size:26px;
	line-height:1.2;
}

.error-box p{
	margin:0 0 28px;
	color:var(--gray-dark);
	font-size:16px;
	line-height:1.75;
}

.error-box span{
	margin-top:auto;

	display:inline-flex;
	align-items:center;
	justify-content:center;

	width:max-content;
	max-width:100%;

	padding:12px 22px;
	border-radius:8px;

	background:var(--red);
	border:2px solid var(--red);

	color:#fff;
	font-weight:700;
	font-size:15px;

	transition:.25s ease;
}

.error-box:hover span{
	background:#fff;
	color:var(--red);
}

/* Hinweis unten */

.error-note{
	margin-top:34px;
	padding:34px;

	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:32px;

	border-radius:var(--radius);
	background:#fff;
	box-shadow:var(--shadow);
}

.error-note-text{
	max-width:760px;
}

.error-note h3{
	margin:0 0 10px;
	color:var(--dark);
	font-family:var(--font-heading);
	font-size:28px;
	line-height:1.2;
}

.error-note p{
	margin:0;
	color:var(--gray-dark);
	line-height:1.75;
}

.error-note .btn{
	flex-shrink:0;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1000px){

	.error-hero{
		padding:95px 0 75px;
	}

	.error-boxes{
		grid-template-columns:1fr;
		max-width:640px;
		margin-left:auto;
		margin-right:auto;
	}

	.error-box{
		min-height:auto;
	}

	.error-note{
		max-width:640px;
		margin-left:auto;
		margin-right:auto;
		flex-direction:column;
		align-items:flex-start;
	}
}

@media(max-width:760px){

	.error-hero{
		padding:78px 0 64px;
	}

	.error-intro{
		margin-bottom:38px;
	}

	.error-intro h1{
		font-size:clamp(40px,11vw,54px);
	}

	.error-lead{
		font-size:18px;
	}

	.error-actions{
		flex-direction:column;
	}

	.error-actions .btn{
		width:100%;
		max-width:340px;
	}

	.error-box{
		padding:30px 26px;
	}

	.error-box span{
		width:100%;
	}

	.error-note{
		padding:28px 26px;
	}
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1000px){

	.error-hero{
		padding:95px 0 80px;
	}

	.error-boxes{
		grid-template-columns:1fr;
		max-width:620px;
		margin-left:auto;
		margin-right:auto;
	}

	.error-box{
		min-height:auto;
	}

	.error-note{
		flex-direction:column;
		align-items:flex-start;
	}

}

@media(max-width:760px){

	.error-hero{
		min-height:auto;
		padding:80px 0 70px;
	}

	.error-hero::before{
		top:62px;
		font-size:180px;
	}

	.error-container h1{
		font-size:clamp(40px,12vw,54px);
		letter-spacing:-.035em;
	}

	.error-lead{
		font-size:18px;
		line-height:1.7;
	}

	.error-actions{
		margin-bottom:44px;
	}

	.error-actions .btn{
		width:100%;
		max-width:340px;
	}

	.error-box{
		padding:30px 26px;
	}

	.error-box h3{
		font-size:24px;
	}

	.error-box span{
		width:100%;
	}

	.error-note{
		padding:26px;
		text-align:left;
	}

}
/* ==================================================
   BOXEN
================================================== */

.error-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.error-card{

    background:#fff;
    border-radius:22px;
    padding:36px;

    box-shadow:0 18px 40px rgba(0,0,0,.06);

    transition:.25s ease;
}

.error-card:hover{

    transform:translateY(-6px);
}

.error-icon{

    width:76px;
    height:76px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:26px;

    border-radius:50%;
    background:#eef5fc;

    font-size:34px;
}

.error-card h3{

    margin:0 0 18px;
    font-size:32px;
    line-height:1.15;
}

.error-card p{

    margin:0 0 28px;

    color:var(--gray-dark);
    line-height:1.8;
}

.error-card .btn{

    width:100%;
}

/* ==================================================
   INFO BOX
================================================== */

.error-bottom{

    margin-top:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;

    background:#fff;
    border-radius:22px;

    padding:34px 40px;

    box-shadow:0 18px 40px rgba(0,0,0,.05);
}

.error-bottom h3{

    margin:0 0 10px;
    font-size:32px;
}

.error-bottom p{

    margin:0;
    color:var(--gray-dark);
}

.error-bottom .btn{

    flex-shrink:0;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1000px){

    .error-grid{

        grid-template-columns:1fr;
    }

    .error-bottom{

        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:760px){

    .error-hero{

        padding:80px 0;
    }

    .error-hero::before{

        font-size:180px;
        top:80px;
    }

    .error-content h1{

        font-size:50px;
    }

    .error-lead{

        font-size:19px;
    }

    .error-card{

        padding:28px;
    }

}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 110px 0 38px;
    background: #0f172a;
    color: #fff;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-bg-word {
    position: absolute;
    top: -35px;
    left: 50%;
    max-width: 100vw;
    overflow: hidden;
    color: rgba(255,255,255,.045);
    font-family: var(--font-heading);
    font-size: clamp(58px,18vw,190px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.07em;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%);
}

.footer-claim {
    max-width: 820px;
    margin-bottom: 90px;
}

.footer-claim h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -.055em;
}

.footer-claim p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 1.25rem;
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 70px;
    padding: 54px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-col h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: .02em;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-links a {
    color: rgba(255,255,255,.70);
    text-decoration: none;
    transition: .25s ease;
}

.footer-col a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-contact a {
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-contact a:first-of-type {
    color: #fff;
    font-size: 1.35rem;
}

.footer-bottom{
	display:grid;
	grid-template-columns:1fr auto 1fr;
	align-items:center;
	padding-top:32px;
	border-top:1px solid rgba(255,255,255,.08);
	gap:20px;
}

.footer-links{
	display:flex;
	justify-content:flex-end;
	gap:24px;
}

.footer-signature{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	color:inherit;
	font:inherit;
	opacity:.75;
	white-space:nowrap;
}

.footer-puzzle{
	display:inline-block;
	animation:floatPuzzle 6s ease-in-out infinite;
}

@keyframes floatPuzzle{
	0%,100%{
		transform:translateY(0);
	}
	50%{
		transform:translateY(-4px);
	}
}

.footer-phone {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.footer-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue-light);
    font-weight: 600;
}

.footer-link:hover {
    color: #fff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1000px) {

    :root {
        --text-large: 19px;
    }

    .header-inner {
        height: 78px;
    }

    .logo img {
        height: 48px;
    }

    .menu {
        gap: 18px;
    }

    .menu a {
        padding: 8px 0;
        font-size: 14px;
    }

    .phone {
        display: none;
    }

    .company-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .company-content {
        grid-row: 1;
    }

    .company-cards {
        grid-row: 2;
    }

    .company-content h2 {
        font-size: clamp(40px, 7vw, 64px);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .page-main-section {
        overflow: hidden;
    }

    .content-sidebar-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
        min-width: 0;
		align-items: start;
    }

    .main-content,
    .sticky-sidebar,
    .sidebar-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    .main-content h2 {
        font-size: clamp(30px, 5vw, 42px);
        line-height: 1.15;
        letter-spacing: -.02em;
    }

    .partner-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 34px;
        padding: 30px;
    }

    .partner-bottom-faq,
    .partner-bottom-text {
        width: 100%;
        flex: none;
    }

    .partner-bottom-text {
        padding-left: 0;
    }

    .partner-bottom-text h3 {
        font-size: 1.65rem;
    }

    .idea-flow {
        flex-direction: column;
        gap: 20px;
    }

    .idea-line {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .reverse-layout,
    .company-cards-horizontal {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 85px 0 34px;
    }

    .footer-claim {
        margin-bottom: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 42px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {

    :root {
        --text-large: 17px;
    }

    section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 70px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 18px;
    }

    .cards,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .cards {
        gap: 18px;
        margin-top: 45px;
    }

    .card {
        padding: 30px;
    }

    .card::before {
        left: 14px;
        top: 24px;
    }

    .box {
        padding: 26px;
    }

    .page-hero {
        padding: 150px 0 80px;
    }

    .page-hero h1 {
        font-size: 42px;
        line-height: 1.05;
        overflow-wrap: break-word;
    }

    .main-content h2 {
        font-size: 32px;
        line-height: 1.18;
        letter-spacing: -.01em;
    }

    .company-section {
        padding: 80px 0;
    }

    .company-content h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .company-box {
        padding: 30px 28px 30px 54px;
    }

    .company-box::before {
        left: 14px;
        top: 24px;
        height: 32px;
    }

    .company-box h3 {
        margin-bottom: 12px;
    }

    .process-section {
        padding: 70px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-box {
        padding: 32px 28px;
    }
	
	  .footer-signature{
        display:none;
    }

}