@font-face { 
    font-family: 'HP_simplified';
    src: url('/assets/fonts/hp-simplified-265.ttf') format('truetype'); 
    font-display: swap;
}

@font-face { 
    font-family: 'HP_bold';
    src: url('/assets/fonts/hp-simplified-556.ttf') format('truetype'); 
    font-display: swap;
}
@font-face { 
    font-family: 'Barlow_regular';
    src: url('/assets/fonts/Barlow-Regular.ttf') format('truetype'); 
    font-display: swap;
}
@font-face { 
    font-family: 'Barlow_medium';
    src: url('/assets/fonts/Barlow-Medium.ttf') format('truetype');
    font-display: swap; 
}
@font-face { 
    font-family: 'Barlow_semi_bold';
    src: url('/assets/fonts/Barlow-SemiBold.ttf') format('truetype');
    font-display: swap; 
}
@font-face { 
    font-family: 'Barlow_bold';
    src: url('/assets/fonts/Barlow-Bold.ttf') format('truetype');
    font-display: swap; 
}

/*
    main.css structure
    1) Design tokens and base elements
    2) Shared components
    3) Section styles in page order
    4) Responsive overrides grouped near each section
*/

/* Base tokens */
:root{
    --job-blue:#0c1e4d;
    --job-orange:#F9941F;
    --job-orange-light:#FFB83D;
    --job-text:#1f2944;
    --job-white: #ffffff;
    --job-blackpearl80: #091434CC;
    --job-white70: #FFFFFFB2;
    --job-blue-dark: #0D1F4E;
    --job-gray: #6b7280;
}


/*
Jetzt inserieren Navbar-btn
background: linear-gradient(105.23deg, #F9941F 0%, #FFB83D 100%);
*/
*{
    font-family: 'Barlow_regular', arial, sans-serif;
}

.phone-svg{
    margin-top: 3px;
    margin-right: 6px;
}

h1,h2,h2>span,h1>span,h3{
    font-family: 'Barlow_bold';
}

.semi_bold{
    font-family: 'Barlow_semi_bold';
}

.bullet-orange{
    color: var(--job-orange) !important;
    font-size: 1.52rem;
    padding-bottom: 3px;
    padding-right: 3px;
}

body{
    font-family: system-ui, sans-serif;
    margin:0;
    color:var(--job-text);
    background:#f8f9fb;
    overflow-x:hidden;
}

html{
    overflow-x:hidden;
}

.center-dot-semi{
    font-family: 'Barlow_semi_bold';
}

.container{
    max-width:1200px;
}

.header{
    position: fixed;
    width: 100%;
    z-index:1030;
    background:var(--job-white);
}

.navbar-brand{
    color:var(--job-blue);
}

.navbar-logo{
    width: 45px;
    height: 45px;
    display: inline-block;
    border-radius: 10px;
    margin-right: 8px;
}

.brand-caption{
    font-size:.72rem;
    letter-spacing:.09em;
    text-transform:uppercase;
    color:#6b7280;
    font-family: 'Barlow_semi_bold';
}

.brand-title{
    font-size:1rem;
    color:var(--job-blue);
    font-family: 'Barlow_bold';
    line-height: initial;
}

.nav-link{
    color:var(--job-blackpearl80) !important;
    font-family: 'Barlow_medium';
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active{
    color:var(--job-orange) !important;
}

#mainNavbar .btn-sm{
    padding: 10px 32px;
}

.btn{
    border-radius: 10px !important;
}

.btn-main{
    background: linear-gradient(135deg, var(--job-orange)0%, var(--job-orange-light) 100%);
    color: var(--job-white);
    border:none;
    /*box-shadow:0 12px 30px rgba(245,145,30,0.24);*/
    box-shadow: 0px 10px 40px -12px rgba(13, 31, 78, 0.18);
    transition:transform .35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity .2s ease;
    position:relative;
    overflow:hidden;
    font-family: 'Barlow_semi_bold';
    font-size: 1rem;
    padding: 15px 35px;
}

.btn-main:hover{
    opacity:.96;
    color:#fff;
    transform:translateY(-3px) scale(1.01);
    box-shadow:0 16px 42px -14px rgba(13, 31, 78, 0.38);
}

.btn-main::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:72%;
    height:100%;
    background:linear-gradient(100deg, transparent, rgba(255,255,255,0.42), transparent);
    transform:skewX(-22deg);
    transition:left .7s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events:none;
}

.btn-main:hover::after{ left:140%; }

.text-left{ text-align:left; }


/* Kontakt section styles */
.contact-card {
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    border: 1px solid rgba(13,34,61,0.08);
}
.contact-team-section .contact-avatar{
    width: 150px;
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-width: 150px;
}
.svg-wrap svg{
    max-width: 100%;
  height: auto;
}


.contact-card .btn-main {
    min-width: 160px;
}

@media (max-width: 991px) {
    .contact-card { padding: 1.25rem; }
}

/* Contact team grid (kontakt.png) */
.contact-team-section .contact-card { padding:1.25rem; border-radius:16px; }
.contact-team-section .contact-name {color:var(--job-blue); font-family: 'Barlow_bold'; font-size: 1.2rem;}
.contact-team-section .contact-role { font-size:0.9rem; }
.contact-team-section .contact-contacts .text-orange { color:var(--job-orange); }
.contact-team-section .contact-contacts svg { vertical-align: center; margin-right: 5px; }
.contact-team-section .contact-contacts a { text-decoration: none; color: var(--job-gray); }
.contact-team-section .contact-contacts a:hover { text-decoration: underline; color: var(--job-blue); }
.contact-strip { display:flex; justify-content:center; }
.contact-strip-inner { background:#fff; border-radius:12px; overflow:hidden; }
.contact-strip-item { min-width:250px; padding:14px 26px; }
.contact-strip-item .small { color:rgba(13,34,61,0.45); }
.contact-strip-item .fw-bold { color:var(--job-blue); font-family: 'Barlow_semi_bold'; font-weight: normal !important;}
.contact-strip-item .fw-bold a { text-decoration: none; color: var(--job-blue); font-family: 'Barlow_semi_bold'; font-weight: normal !important; }
.contact-strip-item .fw-bold a:hover { text-decoration: underline; color: var(--job-blue); }
.contact-strip-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(249, 148, 31, 0.12);
  color: var(--job-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-strip-item .text-div{
    text-align:left;
}

@media (max-width: 767px) {
    .contact-strip-inner { flex-direction:column; width:100%; }
    .contact-strip-item { border-top:1px solid rgba(13,34,61,0.04); }
    .contact-strip .border-start {
        border-left: none !important;
    }
    .contact-strip .border-end {
        border-right: none !important;
    }
}


.btn-outline-secondary{
    border:2px solid rgba(13,34,61,0.16);
    color:var(--job-blue);
    background:#fff;
    font-family: 'Barlow_semi_bold';
    font-size: 1rem;
    padding: 15px 35px;
}

.btn-outline-secondary:hover{
    background: rgba(255,255,255,0.12);
    color:var(--job-blue);
}

.btn-outline-light{
 border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Barlow_semi_bold';
  font-size: 1rem;
  padding: 15px 35px;
}

.btn-outline-light:hover{
    background:rgba(255,255,255,0.12);
    color:#fff;
}

@media(max-width: 768px) {
    .btn-main, .btn-outline-secondary, .btn-outline-light {
        font-size: 0.90rem;
        padding: 12px 10px;
    }
}

.subheadline{
    font-size:clamp(2.2rem, 5vw, 2.8rem);
    line-height:1.05;
    font-weight:800;
    margin-top:20px;
}

.section-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(245,145,30,0.12);
    color:var(--job-orange);
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-family: 'Barlow_semi_bold';
    font-weight:500;
}

.section-pill-inverse{
    background:rgba(255,255,255,0.16);
    color:#fff;
}

.footer{
    background:var(--job-blue);
    color:#fff;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes clothWave {
    0% {
        background-position: 0% 50%, 8% 20%, 92% 78%;
    }
    50% {
        background-position: 100% 50%, 22% 78%, 78% 22%;
    }
    100% {
        background-position: 0% 50%, 8% 20%, 92% 78%;
    }
}

@keyframes heroOrbFloat {
    0%, 100% { transform:translate3d(calc(var(--hero-orb-x, 0px) - 12px), calc(var(--hero-orb-y, 0px) - 10px), 0) scale(1); }
    50% { transform:translate3d(calc(var(--hero-orb-x, 0px) + 14px), calc(var(--hero-orb-y, 0px) + 12px), 0) scale(1.08); }
}

@keyframes revealUp {
    from {
        opacity:0;
        transform:translate3d(0, 24px, 0) scale(0.985);
    }
    to {
        opacity:1;
        transform:translate3d(0, 0, 0) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% { box-shadow:0 0 0 0 rgba(249,148,31,0.26); }
    60% { box-shadow:0 0 0 18px rgba(249,148,31,0); }
}

.motion-reveal{
    opacity:0;
    transform:translate3d(0, 24px, 0) scale(0.985);
    transition:opacity .65s cubic-bezier(0.2, 0.8, 0.2, 1), transform .65s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay:0s;
    will-change:opacity, transform;
}

.motion-reveal.is-visible{
    opacity:1;
    transform:translate3d(0, 0, 0) scale(1);
}

/* Override Bootstrap bg-dark with animated gradient */
.bg-dark {
    background-image:
        linear-gradient(-45deg, #0c1e4d, #1a2d5c, #0f2a52, #364864),
        radial-gradient(130% 90% at 8% 20%, rgba(255,255,255,0.08), rgba(255,255,255,0) 58%),
        radial-gradient(130% 90% at 92% 78%, rgba(255,255,255,0.07), rgba(255,255,255,0) 60%) !important;
    background-size: 320% 320%, 190% 190%, 190% 190%;
    /*animation: gradientShift 11s ease-in-out infinite, clothWave 16s ease-in-out infinite;*/
    animation: gradientShift 6s ease infinite;
    will-change: background-position;
}

.hero{
    background: linear-gradient(-45deg, #0c1e4d, #1a2d5c, #0f2a52, #364864);    
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    color:#fff;
    padding:100px 0 40px;
    position:relative;
    z-index:1;
    overflow:hidden;
    isolation:isolate;
    --hero-orb-x:0px;
    --hero-orb-y:0px;
}

.hero::before{
    content:"";
    position:absolute;
    inset:auto auto -120px -90px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(249,148,31,0.42) 0%, rgba(249,148,31,0.02) 72%);
    filter:blur(2px);
    animation:heroOrbFloat 8s ease-in-out infinite;
    z-index:-1;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 50% 10%, rgba(255,255,255,0.08), transparent 30%);
    pointer-events:none;
}

.hero .hero-pill,
.hero .hero-title,
.hero .hero-copy,
.hero .hero-copy-bold,
.hero .btn,
.hero .hero-badges span,
.hero .stats-row{
    animation:revealUp .75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero .hero-pill{ animation-delay:80ms; }
.hero .hero-title{ animation:none; }
.hero .hero-copy,
.hero .hero-copy-bold{ animation-delay:220ms; }
.hero .btn{ animation-delay:300ms; }
.hero .hero-badges span{ animation-delay:380ms; }
.hero .stats-row{ animation-delay:440ms; }

.hero-title{
    font-size:clamp(3rem, 8vw, 4rem);
    line-height:1;
    font-weight:500;
}

.hero-copy,
.hero-copy-bold{
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
    color:rgba(255,255,255,0.85);
}

.hero-copy{
    font-size:1.05rem;
    line-height:1.8;
}

.hero-copy-bold{
    color:#fff;
    font-family: 'Barlow_semi_bold';
    font-size: 1.1rem;
}

.hero-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.16);
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:#fff;
    font-family: 'Barlow_semi_bold';
    font-weight:500;
}

.hero-badges{
    color:rgba(255,255,255,.82);
    gap:1.5rem;
}

.hero-badges span{
    display:inline-flex;
    align-items:center;
}

.eyebrow{
    color: var(--job-orange);
    letter-spacing: .14em;
    font-size: .9rem;
    font-family: 'Barlow_bold';
}

.stats-row{
    background:rgba(255,255,255,0.03);
    border:2px solid rgba(255,255,255,0.06);
    display:flex;
    gap:0;
    align-items:center;
    justify-content:space-between;
    padding:18px 22px;
    border-radius:18px;
    backdrop-filter:blur(3px);
    padding: 0.5rem !important;
}

.stat-card{
    flex:1 1 0;
    padding:8px 14px;
    color:var(--job-white);
}

.stat-value{
    font-size:2rem;
    font-weight:500;
    color:var(--job-white);
    font-family: 'Barlow_bold';
}

.stat-label{
    font-size:.78rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--job-white70);
    margin-top:6px;
}

.stat-sep{
    width:1px;
    height:68px;
    background:rgba(255,255,255,0.2);
    margin:0 18px;
}

@media(max-width:768px){
    .stats-row{
        display:block;
        padding:10px;
    }

    .stat-card{
        padding:12px 8px;
        text-align:center;
        border-top:1px solid rgba(255,255,255,0.03);
    }

    .stat-card:first-child{
        border-top:none;
    }

    .stat-sep{display:none}

    .stat-value{font-size:1.5rem}
}

/* Warum JOBMEDIEN Sektion */
.section-why{
    background: linear-gradient(-45deg, #0c1e4d, #1a2d5c, #0f2a52, #364864);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.section-why::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04), transparent 50%);
    pointer-events:none;
}

.why-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    /*background:rgba(245,145,30,0.12);*/
    color:var(--job-orange);
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-family: 'Barlow_semi_bold';
    font-weight:500;
}



.why-copy{
    max-width:820px;
    margin-left:auto;
    margin-right:auto;
    color:rgba(255,255,255,0.8);
    font-size:1.05rem;
    line-height:1.75;
}

.why-card{
    text-align: left;
    background:#fff;
    border-radius:24px;
    box-shadow:0 30px 80px rgba(11,27,43,0.14);
    position:relative;
    overflow:hidden;
    transition:transform .45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .45s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 290px;
}

.why-card:hover{
    transform:translate3d(0, -10px, 0) rotateX(1.2deg);
    box-shadow:0 42px 100px rgba(11,27,43,0.22);
}

.why-card-value{
    font-size:2rem;
    /*font-weight:800;*/
    font-family: 'Barlow_bold';
    color:var(--job-blue);
    line-height:1;
    margin-bottom:6px;
}

.why-card-label{
    /* Fonts/Barlow/SemiBold */
    font-family: 'Barlow_bold';
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    margin-top: 10px;

    /* Colors/Black Pearl */
    color: #091434;
}

.why-card-text{
    /* Fonts/Barlow/Regular */
    font-family: 'Barlow_regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;

    /* Colors/Shuttle Gray */
    color: #5A687C;
}

@media(max-width:768px){
    .section-why{
        padding:70px 0;
    }

    .why-copy{
        font-size:.95rem;
    }

    .why-card{
        padding:28px !important;
    }

    .why-card-value{
        font-size:1.8rem;
    }

    .why-card-label{
        font-size:.85rem;
    }

    .why-card-text{
        font-size:.9rem;
    }
}

.section{
    padding:80px 0;
}


.section-understand{
    padding-top:60px;
    padding-bottom:60px;
}

.pricing-card-grid{
    margin:15px;
}

.pricing-card,
.service-card,
.quote-panel{
    background:#fff;
    border-radius:24px;
    box-shadow:0 30px 70px rgba(11,27,43,0.08);
}

.pricing-card p,
.service-card p,
.quote-text{
    font-family: 'Barlow_regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #5A687C;
}

.section-understand .section-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    background:#fff5e3;
    color:#ff8c04;
    font-size:.85rem;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-family: 'Barlow_semi_bold';
}

.section-understand .understand-title{
    font-size:clamp(2.5rem, 4vw, 3.6rem);
    line-height:1.02;
    font-weight:800;
    color:#0b1b2b;
}

.section-understand .understand-title span{
    color:#ffb400;
}

.section-understand .understand-copy{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
    color:#5f677d;
    line-height:1.75;
}

.section-understand .understand-tagline{
    font-family: 'Barlow_semi_bold';
    color:var(--dark-blue);
}

.service-card{
    border:1px solid rgba(13,34,61,0.08);
    padding:32px;
    transition:transform .42s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .42s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .3s ease;
}

.service-card:hover{
    transform:translate3d(0, -8px, 0);
    box-shadow:0 34px 80px rgba(11,27,43,0.12);
    border-color:rgba(249,148,31,0.28);
}



.service-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background: linear-gradient(135deg, var(--job-orange)0%, var(--job-orange-light) 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
    margin-bottom:18px;
}

.service-card h3{
    margin-bottom:14px;
    /* Fonts/Barlow/Bold */
    font-family: 'Barlow_bold';
    font-style: normal;
    font-size: 18px;
    line-height: 28px;

    /* Colors/Downriver */
    color: #0D1F4E;

}

.quote-panel{
    border:1px solid rgba(13,34,61,0.08);
    padding:32px;
    background: rgba(241, 245, 249, 0.5);
}

.quote-text{
    font-style:italic;
    color:#333;
    font-size:1.05rem;
    width: 70%;
    text-align: center;
    margin: auto;
    margin-bottom: 25px !important;
}

@media(max-width:768px){
    .section-understand .understand-title{
        font-size:2.4rem;
    }

    .service-card,
    .quote-panel{
        border-radius:20px;
    }

    .quote-panel{
        padding:24px;
    }
}

.pricing-card{
    padding:36px;
    text-align:center;
    background:#fff;
    border:1px solid rgba(13,34,61,0.08);
    border-radius:24px;
    transition:transform .25s ease, box-shadow .25s ease;
    position: relative;
}

.pricing-card:hover{
    transform:translateY(-4px);
    box-shadow:0 28px 60px rgba(11,27,43,0.12);
}

.pricing-card-highlight{
    border-color:var(--job-orange);
    box-shadow:0 26px 70px rgba(245,145,30,0.14);
}

.pricing-card h3{
    margin-bottom:14px;
    font-size:1.15rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--job-orange);
}

.pricing-price{
    font-size: 2.5rem !important;
    margin: 18px 0;
    color: var(--job-blue-dark) !important;
    font-family: Barlow_bold !important;
}

.pricing-price span{
    font-size: 1.2rem;
    color: #0D1F4EB2;
    font-family: Barlow_medium;
}

.bestseller-pill{
    position: absolute;
    top: -16px;
    left: 36.5%;
    color: #fff;
    background: linear-gradient(135deg, var(--job-orange)0%, var(--job-orange-light) 100%);
    padding: 6px 18px;
}

.pricing-card ul{
    padding-left:0;
    margin-top:1rem;
    list-style:none;
    color:#5f677d;
}

.pricing-card ul li{
    display:flex;
    align-items:flex-start;
    gap:.75rem;
    margin-bottom:.9rem;
}

.pricing-card ul li::before{
    content:'✓';
    color:var(--job-orange);
    font-weight:700;
    line-height:1;
}

.pricing-card .btn{
    width:100%;
}

.pricing-summary-card{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(11,27,43,0.08);
    border:1px solid rgba(13,34,61,0.08);
}

.pricing-summary-header{
    background: linear-gradient(-45deg, #0c1e4d, #1a2d5c, #0f2a52, #364864);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    color:#fff;
    padding:18px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}

.pricing-summary-title{
    font-size:.95rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color: var(--job-orange);
}

.pricing-summary-flag{
    color:rgba(255,255,255,0.84);
    font-size:.82rem;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.pricing-summary-sidebar{
    background:#f4f7ff;
    padding:32px 30px;
}

.pricing-summary-sidebar h3, .pricing-summary-body h4 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--job-gray);
    font-family: 'Barlow_semi_bold';
    letter-spacing: 0.05rem;
}



.pricing-summary-sidebar p{
    color:#5f677d;
    line-height:1.75;
}

.pricing-summary-list{
    margin:0;
    padding:0;
    list-style:none;
}

.pricing-summary-list li{
    display:flex;
    align-items:flex-start;
    gap:.9rem;
    margin-bottom:1.15rem;
    color:#475168;
}

.pricing-summary-list-icon{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:25px;
    background:rgba(245,145,30,0.14);
    color:var(--job-orange);
    font-weight:700;
    margin-top:3px;
    min-width: 34px;
}

.pricing-summary-body{
    padding:32px 30px;
}

.pricing-summary-body .form-floating input{
    background:#fff;
    border:1px solid #d9e2ef;
    height:56px;
    border-radius:14px;
}

.pricing-summary-body .price-value, .trial-price{
    font-size:3.85rem;
    line-height:1;
    color:var(--job-blue);
    margin-bottom:.5rem;
    font-family: 'Barlow_bold', sans-serif;
}

.pricing-summary-body .price-value span, .trial-price span{
    font-size: 24px;
    font-weight:500;
    font-family: 'Barlow_semi_bold', sans-serif;
    color: #0D1F4EB2;
}

.pricing-summary-body .price-value .price_year{
    font-size: 16px;
    font-weight: 400;
    color: #5A687C;
    font-family: 'Barlow_regular', sans-serif;
}

.price-meta{
    margin-bottom:2rem;
    color:#6b7280;
}

.pricing-summary-note{
    color:#6b7280;
}

.text-orange{
    color:var(--job-orange) !important;
}

@media(min-width:992px){
    .pricing-summary-body{
        border-left:1px solid rgba(13,34,61,0.08);
    }
}

@media(max-width:768px){
    .pricing-summary-card{
        border-radius:22px;
    }
}


.addon-section{
    padding-top:80px;
    padding-bottom:80px;
}

.addon-section .addon-grid a{
    text-decoration:none;
}

.addon-grid .addon-card{
    min-height:140px;
    border-radius:24px;
    border:1px solid rgba(13,34,61,0.08);
    background:#fff;
    box-shadow:0 20px 45px rgba(11,27,43,0.06);
    position:relative;
 transition:transform .42s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .42s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .3s ease;
}

.addon-card:hover{
    transform:translate3d(0, -8px, 0);
    box-shadow:0 34px 80px rgba(11,27,43,0.12);
    border-color:rgba(249,148,31,0.28);
}

.addon-card-icon{
    width:54px;
    height:54px;
    background:rgba(245,145,30,0.12);
    /*background: linear-gradient(135deg, var(--job-orange)0%, var(--job-orange-light) 100%);*/
    color:var(--white);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.35rem;
    margin-bottom:18px;
    float: left;
    margin-right: 20px;
    margin-bottom: 50px;
}

.addon-card h3{
    font-size: 1.05rem;
    margin-bottom: .50rem;
    color: var(--job-blue);
    font-family: 'barlow_bold';
}

.addon-card p{
    color:#5f677d;
    margin-bottom:.1rem;
}

.addon-card-price{
    margin-top:.75rem;
    font-family: 'Barlow_semi_bold';
    color:var(--job-blue);
}

.addon-new-badge{
    position:absolute;
    right:1.25rem;
    top:1.25rem;
    padding:6px 12px;
    border-radius:999px;
    background:var(--job-orange);
    color:#fff;
    font-size:.75rem;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.trial-section{
    padding-top:80px;
    padding-bottom:80px;
    background: linear-gradient(-45deg, #0c1e4d, #1a2d5c, #0f2a52, #364864);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
}

.trial-section .section-pill{
    border: 1px solid rgba(245,145,30,0.25);
    background: rgba(245,145,30,0.25);
    color: var(--job-orange);
    padding: 5px 20px;
}

.display-savings{
    font-size:1.4rem;
    color:#fff;
}

.trial-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:32px;
    box-shadow:0 40px 80px rgba(0,0,0,0.15);
}

.trial-card .btn-main{width:65%;}

.trial-price-card{
    box-shadow:0 18px 35px rgba(11,27,43,0.1);
    margin-top: -230px;
}

.trial-price{
    font-size:4rem;
    font-weight:800;
    margin:0;
    color:var(--job-blue);
}

.trial-price-striked{
text-decoration: line-through;
}

.trial-price span{font-size:1.5rem;}

.trial-note{
    color: #6b7280;
    line-height: 1.7;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(241, 245, 249, 0.5);
    border-radius: 12px;
    padding: 5px;
    border: 1px solid rgba(13,34,61,0.08);
}

.trial-note strong{
    color: var(--job-blue);
    font-family: 'Barlow_bold';
    font-weight: normal;
}

.trial-note span{
    margin-top: 10px;
}

.trial-note p{
    margin-bottom: 0;
    font-size: 0.8rem;
}

.trial-note div{
    text-align: left;
}

.trial-benefits{
    background: var(--job-white);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(13,34,61,0.08);
    width: 66%;
    margin-left: 5.66666667px;
}

.trial-benefits .benefit-item{
    display:flex;
    gap:1rem;
    align-items:flex-start;
    background: rgba(241, 245, 249, 0.5);
    border-radius:12px;
    padding:16px;
    border:1px solid rgba(13,34,61,0.08);
    min-height: 101px;
}

.trial-benefits .benefit-item span{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    /*background:rgba(245,145,30,0.13);*/
    background: linear-gradient(135deg, var(--job-orange)0%, var(--job-orange-light) 100%);
    color:var(--job-blue);
    font-size:1.2rem;
    flex-shrink:0;
}

.trial-benefits .benefit-item strong{
    color:var(--job-blue);
    font-family: 'Barlow_bold';
    font-weight: normal;
}

.trial-benefits .benefit-item p{
    margin:0;
    color:#5f677d;
    line-height:1.5;
    font-size: 0.9rem;
}

.trial-small-note{
    color:#c5d0ef;
    font-size:0.8rem;
}

.text-white{
    color:#fff !important;
}

/* Portale / Netzwerk */
.portale-section{ background:#fff; }

.portale-grid{
    display:grid;
    gap:2rem;
}

.portale-group{
    display:grid;
    gap:1.2rem;
}

.portale-group-title{
    font-size:.95rem;
    color:var(--job-blue);
    letter-spacing:.02em;
    display:flex;
    align-items:center;
    gap:.75rem;
    font-family: 'Barlow_bold';
}

.portale-group-title .icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(249, 148, 31, 0.12);
    color: var(--job-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
.portale-group-title::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--job-orange);
}
*/
.portale-card{
    display:grid;
    gap:.5rem;
    text-decoration:none;
    border:1px solid rgba(13,34,61,0.08);
    background:#fff;
    border-radius:16px;
    transition:transform .35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .25s ease;
    position:relative;
    padding:24px 16px !important;
    text-align:center;
}

.portale-card:hover{
    border-color:var(--job-orange);
    box-shadow:0 22px 52px rgba(11,27,43,0.14);
    transform:translate3d(0, -6px, 0);
}

.portale-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:var(--job-orange);
    font-size:.9rem;
}

.portale-logo > img{
    width:120px;
    height:120px;
    margin:-20px 0;
}

.portale-name{
    color:var(--job-blue);
    font-size:.95rem;
    font-family: 'Barlow_semi_bold';
}

.portale-region{
    font-size:.85rem;
    color:#6b7280;
    line-height:1.4;
}

.portale-arrow{
    position:absolute;
    top:12px;
    right:12px;
    color:var(--job-orange);
    opacity:0;
    transition:opacity .25s ease;
}

.portale-card:hover .portale-arrow{ opacity:1; }

.portale-arrow-befor-hover{
    position:absolute;
    top:12px;
    right:12px;
    opacity:1;
    transition:opacity .25s ease;
}

.portale-card:hover .portale-arrow-befor-hover{ opacity:0; }

.portale-highlight{
    background:#f4f7ff;
    border:1px solid rgba(13,34,61,0.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:280px;
    text-align:center;
}

.portale-highlight-text{
    font-size:1.4rem;
    font-weight:700;
    color:var(--job-blue);
    line-height:1.4;
}

.portale-highlight .btn{ margin-top:1.5rem; }

.portale-highlight .btn-main{
    animation:glowPulse 2.6s ease-in-out infinite;
}
.special-portale .portale-logo{
   display: table-cell;
   width: 35%;
   margin-left: -20px;
}

.special-portale .portale-logo img{
    width: 100px;
}
.special-portal-infos{
    display: grid;
    text-align: left;
}

.special-portal-infos .portale-region{
    font-size: .75rem;
}

.special-portale .portale-card{
    display: flex;
}


.netzwerk-section{ background:#fff; }

.netzwerk-view{
    display:grid;
    grid-template-columns:1fr;
    gap:2.5rem;
    align-items:center;
}

.netzwerk-diagram{
    width:100%;
    max-width:920px;
    position:relative;
    min-height:740px;
    display:grid;
    place-items:center;
    margin:20px auto 0;
}

.netzwerk-ring{
    position:absolute;
    /*width:560px;
    height:560px;*/
    width:680px;
    height:680px;
    border-radius:50%;
    border:2px solid rgba(249,148,31,0.35);
}

.netzwerk-center{
    width:180px;
    height:180px;
    padding:1rem;
    /*background:linear-gradient(135deg, var(--job-orange)0%, var(--job-orange-light) 100%);*/
    background: var(--job-blue);
    border:2px solid #fff;
    border-radius:50%;
    color:var(--job-white);
    font-size:1.1rem;
    line-height:1.15;
    font-family:'Barlow_bold';
    text-align:center;
    display:grid;
    place-items:center;
    box-shadow:0 14px 35px rgba(13,34,61,0.12);
}

.netzwerk-node{
    position:absolute;
    width:170px;
    display:grid;
    justify-items:center;
    gap:8px;
}

.netzwerk-point-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    border:1px solid rgba(249,148,31,0.8);
    background:#fff;
    color:var(--job-orange);
    display:grid;
    place-items:center;
}

.netzwerk-point-icon svg{ display:block; }

.netzwerk-point-icon img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.netzwerk-point-card{
    width:100%;
    padding:12px 10px 10px;
    text-align:center;
    background: #ffffff;/*#f5f6f8;*/
    border:1px solid #d8dde8;
    border-radius:10px;
    box-shadow:0 10px 24px rgba(13,34,61,0.08);
    transition:transform .3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: context-menu;
}
/* Nur anzeigen bei Hover auf Node */
.netzwerk-point-description{
    color:var(--job-gray);
    font-family:'Barlow_regular';
    font-size:.78rem;
    line-height:1.2;
    display:none;
    opacity:0;
    transition: opacity .5s ease;
    padding-top: 4px;
}

.netzwerk-node:hover .netzwerk-point-description{
    display:block;
    opacity:1;
}

.netzwerk-node:hover .netzwerk-point-card{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(13,34,61,0.14);
}

.netzwerk-node:hover .netzwerk-point-icon{
    animation:glowPulse 1.4s ease-out 1;
}

.netzwerk-point-card strong{
    display:block;
    margin-bottom:2px;
    color:var(--job-blue);
    font-family:'Barlow_bold';
    font-size:.98rem;
    line-height:1.2;
    font-weight: normal;
}

.netzwerk-meta{
    color:var(--job-orange);
    font-family:'Barlow_regular';
    font-size:.76rem;
    line-height:1.2;
}

.netzwerk-list{
    display:none !important;
    padding:0 1rem;
}

.netzwerk-list .side-icons{
    display:flex;
    align-items:center;
    justify-content:center;
}

.netzwerk-list .side-icons img{
    width:20px;
}

.netzwerk-card {
   float: right;
   width: 80%;
}

.netzwerk-mobile-grid{
    position:relative;
    display:grid;
    gap:12px;
}

.netzwerk-mobile-grid::before{
    content:"";
    position:absolute;
    left:21px;
    top:-18px;
    bottom:-18px;
    width:1px;
    background: linear-gradient(to bottom, rgba(249,148,31,0.50) 0%, rgba(249,148,31,0.02) 100%);
}

.first-netzwerk-row .netzwerk-meta{
    font-family:'Barlow_semi_bold';
    text-align:left;
    text-transform:uppercase;
    font-size:.75rem;
}

.first-netzwerk-row .netzwerk-card-header strong{
    width:100% !important;
    float:none !important;
}

.first-netzwerk-row .netzwerk-card{
    border: none;
  padding-left: 5px !important;
}

.first-netzwerk-row .portale-card:hover{
    border: none;
    transform: none;
    box-shadow: none;
}

.first-netzwerk-row .side-icons{
    background: var(--job-orange) !important;
    border: none !important;
}

.first-netzwerk-row .container-side-icons{
    padding-top: 30px !important;
    margin-top: -18px;
}

.netzwerk-mobile-row{
    position:relative;
    display:flex;
    /*align-items:center;*/
    gap:8px;
}

.netzwerk-mobile-row .side-icons{
    position:relative;
    z-index:1;
    flex:0 0 44px;
    width:44px;
    height:44px;
    border:2px solid #F9941F6B;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:top;
    font-size:8px;
}

.netzwerk-mobile-row .container-side-icons{
    padding:5px 0;
    background:#fff;
    border-radius:50%;
    display: flex;
    height: fit-content;
}

.netzwerk-mobile-row .netzwerk-card{
    flex:1;
    width:auto;
    float:none;
}

.netzwerk-mobile-row .netzwerk-card-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.netzwerk-mobile-row .netzwerk-card-header strong,
.netzwerk-mobile-row .netzwerk-card-header .netzwerk-meta{
    width:auto;
    float:none;
}

.netzwerk-list .netzwerk-card-header strong{
    width: 50%;
    float: left;
    text-align: left;
    font-family: Barlow_semi_bold;
    font-weight: normal;
    color: var(--job-blue);
}

.netzwerk-list .netzwerk-card-header .netzwerk-meta{
    width: 50%;
    float: right;
    text-align: right;
    margin-top: 7px;
    font-family: Barlow_semi_bold;
}

.netzwerk-list .netzwerk-card-text{
    text-align:left;
    color:var(--job-gray);
    font-size:.88rem;
    margin: 0;
}
.netzwerk-list ul{ display:grid; gap:1rem; }

.netzwerk-list li{
    padding:18px 20px;
    border-radius:18px;
    background:#f7f8fc;
    color:var(--job-text);
    font-weight:600;
}

.node-1{top:0px; left:42%; /*transform:translateX(-50%);*/}
.node-2{top:102px; right:125px;}
.node-3{top:310px; right:38px;}
.node-4{bottom:70px; right:100px;}
.node-5{bottom:-60px; left:42%; /*transform:translateX(-50%);*/}
.node-6{bottom:70px; left:100px;}
.node-7{top:310px; left:38px;}
.node-8{top:102px; left:125px;}

/* Team + Unternehmer */
.team-visual{margin-bottom:1px !important;}
.team-visual .svg-wrap{ max-width:1100px; margin:0 auto; }
.team-visual .responsive-img{ width:100%; height:auto; display:block; }
.team-cta{padding-top: 1rem; padding-bottom: 1rem; margin-top: -1px !important;}
.team-cta .icon-circle{ font-size:1.1rem; background: rgba(245,145,30,0.12);width:44px;height:44px; min-width: 44px;}
.team-cta .semi_bold{ font-size: 1.5rem;}
.unternehmer-section{ position:relative; overflow:hidden;}

.unternehmer-copy{
    max-width:780px;
    font-size:1.05rem;
    line-height:1.75;
}

.unternehmer-card{
    border-radius:24px;
    padding:34px 28px 26px;
    transition:transform .42s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.unternehmer-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 72px rgba(11,27,43,0.14);
}

.unternehmer-avatar{
    width:96px;
    height:96px;
    border-radius:50%;
    margin:0 auto 20px;
    border:3px solid rgba(249,148,31,0.28);
    background:linear-gradient(135deg, #eef4ff 0%, #d8e3f8 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--job-blue);
    font-family:'Barlow_bold';
    font-size:1.15rem;
    letter-spacing:.08em;
}

.unternehmer-avatar-duo{
    width:112px;
    background:transparent;
    border:none;
    gap:0;
    position:relative;
}

.unternehmer-avatar-duo span,
.unternehmer-avatar > span{
    display:flex;
    align-items:center;
    justify-content:center;
}

.unternehmer-avatar-duo span{
    width:66px;
    height:66px;
    border-radius:50%;
    background:linear-gradient(135deg, #eef4ff 0%, #d8e3f8 100%);
    border:3px solid rgba(249,148,31,0.28);
    color:var(--job-blue);
    font-family:'Barlow_bold';
    font-size:.95rem;
    letter-spacing:.08em;
    position:absolute;
    top:11px;
}

.unternehmer-avatar-duo span:first-child{ left:4px; }
.unternehmer-avatar-duo span:last-child{ right:4px; }

.unternehmer-quote-mark{
    color:var(--job-orange);
    font-size:2rem;
    line-height:1;
    margin-bottom:10px;
    font-family:'Barlow_bold';
}

.unternehmer-quote-mark > svg{ 
    width: 20px;
  height: 20px;
}

.unternehmer-quote{
    color:var(--job-blue);
    font-size:1.2rem;
    line-height:1.45;
    min-height:78px;
    margin-bottom:22px;
    color: #0D1F4E !important;
    font-size: 16px !important;
}

.unternehmer-name{
    color:var(--job-blue);
    font-size:1rem;
    margin-bottom:4px;
}

.unternehmer-company,
.unternehmer-footnote{ color:#7b859d; }

.unternehmer-company{
    font-size:.88rem;
    margin-bottom:0;
}

.unternehmer-footnote{
    font-size:1rem;
    margin-bottom:16px;
}

.unternehmer-carousel{
    position:relative;
    padding:0 56px;
}

.unternehmer-viewport{ 
    overflow:hidden; 
    padding-bottom: 25px;
}

.unternehmer-track{
    display:flex;
    gap:24px;
    will-change:transform;
    transition:transform .45s ease;
}

.unternehmer-slide{
    flex:0 0 calc((100% - 48px) / 3);
    min-width:0;
}

.unternehmer-carousel-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(13,34,61,0.12);
    background:#fff;
    color:var(--job-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 26px rgba(13,31,78,0.14);
    z-index:5;
    border:none;
}

.unternehmer-carousel-nav:hover{ color:var(--job-orange); }
.unternehmer-carousel-prev{ left:0; }
.unternehmer-carousel-next{ right:0; }

.unternehmer-section .service-card{
    background:#fff;
    border:1px solid rgba(13,34,61,0.08);
    box-shadow:0 20px 20px rgba(13,31,78,0.08);
}

.unternehmer-section .service-icon{
    width:88px;
    height:88px;
    border-radius:50%;
    margin:0 auto 18px;
    position:relative;
    overflow:hidden;
}

.unternehmer-section .service-icon span{
    position:absolute;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#fff;
    color:var(--job-blue);
    border:2px solid rgba(249,148,31,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Barlow_bold';
    font-size:.95rem;
}

.unternehmer-section .unternehmer-avatar-duo span:first-child{ left:6px; }
.unternehmer-section .unternehmer-avatar-duo span:last-child{ right:6px; }

/* Responsive */
@media(max-width:992px){
    .netzwerk-view{ grid-template-columns:1fr; }
    .netzwerk-diagram{ min-height:520px; padding:2rem; }
    .netzwerk-diagram{ display:none; }
    .netzwerk-list{ display:block !important; }
    .trial-price-card{ margin-top: 0; width: 100%;}
    .trial-benefits{ width: 100%; margin-left: 0; }
    .addon-card h3{ font-size: 1rem; }
   
    #kontakt .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
}

@media(max-width:768px){
    .hero{ padding:80px 0 60px; }

    .portale-section{ padding:60px 0; }
    .portale-grid{ gap:1rem; }
    .portale-group{ gap:.8rem; }
    .portale-card{ padding:16px 12px !important; min-height:auto; }
    .special-portale .portale-logo {width: auto; margin-left: 0; }
    .portale-region{ font-size:.75rem; }
    .portale-highlight{ min-height:220px; padding:30px 20px; }
    .portale-highlight-text{ font-size:1.15rem; }

    .netzwerk-diagram{ display:none; }
    .netzwerk-list{ display:block !important; }

    .team-cta .icon-circle{display:none !important;}
    .team-cta{text-align:center; padding-top: 0rem; padding-bottom: 0rem;}
    .team-cta .semi_bold{ font-size: 1.2rem; margin-bottom: 0.5rem; }
    .unternehmer-card{ padding:28px 22px 24px; }
    .unternehmer-track{ gap:18px; }
    .unternehmer-slide{ flex-basis:100%; }
    .unternehmer-quote{ min-height:0; font-size:1.05rem; }
    .unternehmer-carousel{ padding:0 10px; }
    .unternehmer-carousel-nav{ width:42px; height:42px; }

    .addon-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
    .addon-card{ padding:28px; }
    .addon-new-badge{ margin-bottom:1rem; }

    .trial-card{ padding:24px; }
    .trial-card .btn-main{width:90%;}
    .trial-card .row{ display:grid; gap:20px; }
    .trial-price-card{ width:100%; padding:30px 20px; margin-top:24px; }
    .trial-benefits .benefit-item{ flex-direction:column; gap:12px; }
    .trial-benefits{ width:100%; }
    .trial-benefits .benefit-item span{ width:38px; height:38px; }
    .trial-benefits .benefit-item div{ width:100%; }
    .trial-small-note{ text-align:center; }

    #kontakt .col-sm-6 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Eine Mission (Seite 14) */
.mission-section{
    padding-top: 96px;
    padding-bottom: 88px;
}

.mission-portrait-wrap{
    width: min(100%, 300px);
}

.mission-portrait-circle{
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    background: #eef2f7;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mission-portrait-circle img{
    width: 72%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}


.mission-title{
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 0.98;
}

.mission-person{
    color: #66738b;
    font-size: 1.06rem;
}

.mission-quote-box{
    background: #fff;
    border: 1px solid rgba(13, 34, 61, 0.10);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(13, 31, 78, 0.06);
    text-align: left;
    position: relative;
}

.mission-quote-mark{
    position: absolute;
    top: -24px;
    left: 22px;
    color: var(--job-orange);
    font-size: 3rem;
    line-height: 1;
    font-family: 'Barlow_bold';
    background: #fff;
}

.mission-quote-text {
  color: #1e3159;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  font-style: italic;
}

.mission-quote-author{
    color: var(--job-orange);
    font-family: 'Barlow_bold';
    font-size: 1.05rem;
}

.mission-goal-card{
    background: #fff;
    border: 1px solid rgba(13, 34, 61, 0.10);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(13, 31, 78, 0.05);
}

.mission-goal-icon{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(249, 148, 31, 0.12);
    color: var(--job-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.mission-goal-card h3{
    color: var(--job-blue);
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'barlow_bold';
}

.mission-goal-card p{
    color: #526179;
    font-size: .9rem;
    margin-bottom: 0;
}

@media (max-width: 991px){
    .mission-section{
        padding-top: 74px;
        padding-bottom: 72px;
    }

    .mission-portrait-circle{
        width: 236px;
        height: 236px;
    }

    .mission-person{
        font-size: 0.98rem;
    }

    .mission-quote-text{
        font-size: 1.18rem;
    }
}

@media (max-width: 575px){
    .mission-portrait-circle{
        width: 206px;
        height: 206px;
    }

    .mission-quote-box{
        padding: 24px 18px;
    }

    .mission-quote-mark{
        left: 16px;
        top: -18px;
    }

    .mission-goal-card h3{
        font-size: 1.2rem;
    }
}

/* Seite 15 CTA direkt unter Mission */
.mission-cta-section{
    background: transparent;
    padding-top: 0;
    padding-bottom: 88px;
}

.mission-cta-card{
    padding: 44px 28px 36px;
}

.mission-cta-badge{
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 14px 6px 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    gap: 5px;
    background: rgba(255,255,255,0.08);
    font-size: .85rem;
    font-weight: 500;
    font-family: 'Barlow_semi_bold';
}

.mission-cta-badge strong{
    color: var(--job-orange);
    font-family: 'Barlow_semi_bold';
}

.mission-cta-badge-avatar{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--job-orange);
    background: #fff;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.mission-cta-badge-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-cta-badge-star{
    color: var(--job-orange);
    font-size: 1.15rem;
    line-height: 1;
}

.mission-cta-title{
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.3rem, 6vw, 4.05rem);
    line-height: 1.02;
    font-family: 'Barlow_bold';
    color: #f7fbff;
}

.mission-cta-copy{
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.1rem, 2vw, 2rem);
    line-height: 1.45;
    color: rgba(232, 240, 255, 0.9);
}



.mission-cta-points{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    color: rgba(234, 242, 255, 0.88);
    font-size: 1.08rem;
}

@media (max-width: 991px){
    .mission-cta-section{
        padding-bottom: 72px;
    }

    .mission-cta-card{
        padding: 34px 20px 28px;
    }

    .mission-cta-badge{
        font-size: 0.92rem;
    }


    .mission-cta-points{
        gap: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 575px){
    .mission-cta-title{
        font-size: clamp(1.95rem, 9.2vw, 2.5rem);
    }

    .mission-cta-copy{
        font-size: 1.08rem;
    }

    .mission-cta-badge{
        padding: 6px 10px 6px 8px;
    }

    .mission-cta-points{
        font-size: 0.96rem;
        gap: 10px 18px;
    }
}

/* FAQ (Seite 17) */
.faq-section{
    padding-top: 86px;
    padding-bottom: 92px;
}

.faq-intro{
    color: #5f6f89;
    font-size: 1.15rem;
}

.faq-list-wrap{
    max-width: 1020px;
}

.faq-accordion{
    display: grid;
    gap: 12px;
}

.faq-accordion .faq-item{
    border: 1px solid rgba(13, 34, 61, 0.10);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 14px rgba(13, 31, 78, 0.03);
}

.faq-accordion .accordion-button{
    border: 0;
    background: #fff;
    color: #11244d;
    font-family: 'Barlow_bold';
    font-size: 1.22rem;
    line-height: 1.28;
    padding: 1.28rem 1.35rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background: #f9fbff;
    color: #0f2450;
}

.faq-accordion .accordion-button::after{
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-accordion .accordion-body{
    border-top: 1px solid rgba(13, 34, 61, 0.08);
    color: #50607a;
    font-size: 1.02rem;
    line-height: 1.62;
    padding: 1.05rem 1.35rem 1.2rem;
}

.faq-cta-box{
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(13, 34, 61, 0.10);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(13, 31, 78, 0.05);
    padding: 30px 22px;
}

.faq-cta-box h3{
    color: var(--job-blue);
    font-size: 2.05rem;
    margin-bottom: 10px;
}

.faq-cta-box p{
    color: #5f6f89;
    font-size: 1.12rem;
    margin-bottom: 22px;
}

@media (max-width: 991px){
    .faq-section{
        padding-top: 72px;
        padding-bottom: 74px;
    }

    .faq-accordion .accordion-button{
        font-size: 1.22rem;
        padding: 1rem 1.05rem;
    }

    .faq-accordion .accordion-body{
        padding: 0.95rem 1.05rem 1.05rem;
    }

    .faq-cta-box h3{
        font-size: 1.62rem;
    }

    .faq-cta-box p{
        font-size: 1rem;
    }
}

@media (max-width: 575px){
    .faq-intro{
        font-size: 1rem;
    }

    .faq-accordion .accordion-button{
        font-size: 1.06rem;
    }

    .faq-cta-box{
        padding: 22px 14px;
    }

    .faq-cta-box .btn{
        width: 100%;
    }
}

/* Footer (footer.png) */
.footer-clean{
    background: #10255a;
    color: #dbe5ff;
}

.footer-clean-inner{
    padding-top: 48px;
    padding-bottom: 34px;
}

.footer-clean-grid{
    align-items: flex-start;
}

.footer-brand{
    gap: 10px;
    color: #ffffff;
}

.footer-brand-badge{
    width: 45px;
    height: 45px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(113, 131, 178, 0.05);
    border: 5px solid rgba(113, 134, 161, 0.10);  
    color: #ffffff;
    font-size: 8px;
    line-height: 1.05;
    font-family: 'Barlow_bold';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-brand-badge img{
    width: 42px;
    height: 42px;
}

.footer-brand-name{
    letter-spacing: 0.02em;
    font-size: 1.15rem;
    font-family: 'Barlow_semi_bold';
}

.footer-brand-copy{
    color: rgba(231, 237, 255, 0.72);
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-col-title{
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-family: 'Barlow_semi_bold';
}

.footer-links{
    display: grid;
    gap: 8px;
}

.footer-links-2col{
    display: grid;
    /* Erstellt zwei Spalten: z. B. beide gleich breit (1fr 1fr) */
    grid-template-columns: 1fr 1fr;
    
    /* Definiert 4 Zeilen (wichtig, damit das 5. Element in die nächste Spalte springt) */
    grid-template-rows: repeat(4, auto);
    
    /* Ändert den Fluss: Elemente werden untereinander statt nebeneinander platziert */
    grid-auto-flow: column;
    
    /* Optionaler Abstand zwischen den Elementen */
    gap: 8px; 
    /*grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;*/
}

.footer-links a,
.footer-links span{
    color: rgba(231, 237, 255, 0.76);
    font-size: 1rem;
    text-decoration: none;
}

.footer-links a:hover{
    color: #ffffff;
    text-decoration: underline;
}

.footer-legal{
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 16px;
    color: rgba(231, 237, 255, 0.62);
    font-size: 0.9rem;
}

@media (max-width: 991px){
    .footer-clean-inner{
        padding-top: 38px;
        padding-bottom: 28px;
    }

    .footer-brand-copy{
        max-width: none;
    }
}

@media (max-width: 575px){
    .footer-clean-inner{
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .footer-col-title{
        margin-bottom: 10px;
    }

    .footer-links{
        gap: 6px;
    }

    .footer-links-2col{
        grid-template-columns: 1fr;
    }

    .footer-legal{
        font-size: 0.84rem;
    }
}

/* Referenzen (Seite 8) */
.referenzen-section{
    padding-top: 92px;
    padding-bottom: 82px;
}

.referenzen-head{
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.referenzen-sub{
    color: #586a87;
    font-size: 1.08rem;
}

.referenzen-wall{
    border: 1px solid #d7dce4;
    border-radius: 18px;
    background: #ededed;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.referenzen-wall-image{
    display: block;
    border-radius: 8px;
}

.referenzen-wall-image-mobile{
    display: none;
}


@media (max-width: 991px){
    .referenzen-section{
        padding-top: 74px;
        padding-bottom: 68px;
    }

    .referenzen-sub{
        font-size: 1rem;
    }

    .referenzen-wall{
        border-radius: 14px;
    }
}

@media (max-width: 575px){
    .referenzen-section{
        padding-top: 66px;
        padding-bottom: 60px;
    }

    .referenzen-wall{
        padding: 10px !important;
        border-radius: 12px;
    }

     .referenzen-wall-image{
        display: none;
    }

    .referenzen-wall-image-mobile{
        display: block;
    }
}

/* Seite 9 - Full width quote */
.region-story-section{
    width: 100%;
    background: #10245b;
    padding: 86px 0 74px;
}

.region-story-inner{
    max-width: 980px;
}


.region-story-mark{
    color: var(--job-orange);
    font-size: 4.4rem;
    line-height: 1;
    margin-top: 8px;
    font-family: 'Barlow_bold';
}

.region-story-quote{
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
    font-size: clamp(1rem, 4.1vw, 2.08rem);
    line-height: 1.25;
    font-family: 'Barlow_medium';
    color: #f2f6ff;
}

.region-story-stars{
    color: var(--job-orange);
    display: inline-flex;
    gap: 10px;
    font-size: 1.6rem;
    line-height: 1;
}

.region-story-company{
    font-size: 1.2rem;
    font-family: 'Barlow_medium';
    color: #f7fbff;
}

.region-story-meta{
     color: var(--job-white70);
    font-size: 0.9rem;
}

.region-story-pin > svg{
    vertical-align: center;
    margin-right: 5px;
}

.region-story-foot{
    color: var(--job-white70);
    font-size: 1rem;
    font-style: italic;
}

@media (prefers-reduced-motion: reduce){
    *,
    *::before,
    *::after{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
        scroll-behavior:auto !important;
    }

    .motion-reveal{
        opacity:1 !important;
        transform:none !important;
    }
}

@media (max-width: 991px){
    .region-story-section{
        padding: 72px 0 62px;
    }

    .region-story-quote{
        font-size: clamp(1.55rem, 5.4vw, 2.2rem);
        line-height: 1.3;
    }

    .region-story-company{
        font-size: 1.55rem;
    }

    .region-story-meta{
        font-size: 1.02rem;
    }

    .region-story-foot{
        font-size: 1.14rem;
    }
}

@media (max-width: 575px){
    .region-story-section{
        padding: 62px 0 54px;
    }

    .region-story-mark{
        font-size: 3.2rem;
    }

    .region-story-stars{
        font-size: 1.3rem;
        gap: 7px;
    }

    .region-story-company{
        font-size: 1.28rem;
    }

    .region-story-meta{
        font-size: 0.95rem;
    }

    .region-story-foot{
        font-size: 1rem;
    }
}
