/* ============================================================
   SONG UG (Haftungsbeschränkt) – Hauptstylesheet
   Farbpalette: Tiefes Marineblau / Gold-Akzente / Weiß
   ============================================================ */

/* ========== RESET & ROOT ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primärfarben */
    --navy:          #0A1628;
    --navy-mid:      #112240;
    --navy-light:    #1A3358;
    --navy-subtle:   #233D5B;

    /* Akzentfarben */
    --gold:          #C9A84C;
    --gold-light:    #E8C96B;
    --gold-pale:     #F5E6B4;
    --gold-dark:     #A07C30;

    /* Neutrale */
    --white:         #FFFFFF;
    --off-white:     #F8F9FA;
    --gray-100:      #EDF2F7;
    --gray-200:      #E2E8F0;
    --gray-300:      #CBD5E0;
    --gray-400:      #A0AEC0;
    --gray-500:      #718096;
    --gray-600:      #4A5568;
    --gray-700:      #2D3748;
    --gray-800:      #1A202C;

    /* Erfolg / Fehler */
    --success:       #48BB78;
    --error:         #FC8181;

    /* Gradienten */
    --grad-gold:     linear-gradient(135deg, #C9A84C, #E8C96B);
    --grad-navy:     linear-gradient(135deg, #0A1628, #1A3358);
    --grad-hero:     linear-gradient(135deg, #0A1628 0%, #112240 60%, #1A3358 100%);

    /* Schatten */
    --shadow-sm:     0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    --shadow-md:     0 4px 16px rgba(0,0,0,.18);
    --shadow-lg:     0 10px 40px rgba(0,0,0,.25);
    --shadow-xl:     0 20px 60px rgba(0,0,0,.35);
    --shadow-gold:   0 8px 30px rgba(201,168,76,.25);

    /* Radien */
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-full:   999px;

    /* Typografie */
    --font-heading:  'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:     'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Abstände */
    --space-xs:      0.5rem;
    --space-sm:      1rem;
    --space-md:      2rem;
    --space-lg:      4rem;
    --space-xl:      7rem;

    /* Übergänge */
    --trans-fast:    0.2s ease;
    --trans-mid:     0.35s ease;
    --trans-slow:    0.6s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease infinite;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(201,168,76,.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    background: var(--grad-gold);
    border-radius: var(--radius-full);
    animation: fillBar 1.8s ease forwards;
}

@keyframes fillBar {
    from { width: 0; }
    to   { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-outline,
.btn-cta,
.btn-cta-white,
.btn-cta-outline,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--trans-mid);
    border: 2px solid transparent;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,168,76,.4);
    background: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2rem;
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-cta {
    background: var(--grad-gold);
    color: var(--navy);
    padding: 0.65rem 1.4rem;
    box-shadow: var(--shadow-gold);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,.4);
}

.btn-cta-white {
    background: var(--white);
    color: var(--navy);
    padding: 1rem 2.2rem;
    font-size: 1rem;
}
.btn-cta-white:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border-color: rgba(255,255,255,.5);
}
.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}

/* ========== SECTION HEADER ========== */
.section { padding: var(--space-xl) 0; }

.section-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    justify-content: center;
}
.section-header .section-label::before { display: none; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.gradient-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--trans-mid);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    cursor: pointer;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: rgba(255,255,255,.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: 0.05em;
    position: relative;
    transition: color var(--trans-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    border-radius: var(--radius-full);
    transition: width var(--trans-mid);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: var(--radius-full);
    transition: all var(--trans-mid);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    padding: 8rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201,168,76,.08) 0, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201,168,76,.05) 0, transparent 50%);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 60%, rgba(10,22,40,.9) 100%),
        radial-gradient(ellipse at 70% 50%, rgba(26,51,88,.6) 0, transparent 70%);
}

/* Decorative grid lines */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title span { display: block; }
.hero-title .line-1 { animation: slideInLeft 0.8s ease 0.2s both; }
.hero-title .line-2 { animation: slideInLeft 0.8s ease 0.4s both; }
.hero-title .line-3 { animation: slideInLeft 0.8s ease 0.6s both; }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 1s both;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,.55);
}

.trust-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-group {
    position: relative;
    width: 360px;
    height: 360px;
}

.hero-visual-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.2);
    animation: rotateRing 12s linear infinite;
}

.ring-1 { width: 220px; height: 220px; animation-duration: 12s; }
.ring-2 { width: 170px; height: 170px; animation-duration: 16s; animation-direction: reverse; }
.ring-3 { width: 120px; height: 120px; animation-duration: 8s; }

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.visual-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.brand-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 165px;
    animation: floatCard 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.card-1 { top: 10px;  left: -10px;  animation-delay: 0s; }
.card-2 { top: 10px;  right: -10px; animation-delay: 1.5s; }
.card-3 { bottom: 30px; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }

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

.card-3 {
    animation-name: floatCard3;
}

@keyframes floatCard3 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}

.card-icon {
    width: 38px;
    height: 38px;
    background: var(--grad-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i { color: var(--navy); font-size: 1rem; }

.card-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.card-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,.55);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,.4);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    transition: color var(--trans-fast);
}

.hero-scroll-indicator a:hover { color: var(--gold); }

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: var(--radius-full);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%   { transform: translateY(0); opacity: 1; }
    80%  { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ========== STATS BANNER ========== */
.stats-banner {
    background: var(--navy);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stats-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stats-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.stats-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
    margin-top: 0.4rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.stats-divider {
    width: 1px;
    height: 60px;
    background: rgba(201,168,76,.2);
}

/* ========== ABOUT ========== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    padding: 2rem;
}

.about-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: var(--grad-navy);
    border-radius: var(--radius-lg);
    opacity: 0.06;
}

.about-img-content {
    position: relative;
    z-index: 1;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.icon-cell {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-light);
    transition: all var(--trans-mid);
    border: 1px solid var(--gray-200);
}

.icon-cell:hover, .icon-cell.accent {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.icon-cell.center-cell {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
}

.icon-cell.center-cell small {
    font-size: 0.6rem;
    display: block;
}

.about-badge-float {
    position: absolute;
    bottom: 1rem;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--gold);
    z-index: 2;
}

.about-badge-float i {
    font-size: 2rem;
    color: var(--gold);
}

.about-badge-float strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

.about-badge-float small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.about-text .lead-text {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
}

.about-text > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    transition: all var(--trans-mid);
}

.highlight-item:hover {
    transform: translateX(6px);
    background: var(--gray-100);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--gold);
    font-size: 1.1rem;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========== LEISTUNGEN ========== */
.leistungen {
    background: var(--off-white);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.leistung-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all var(--trans-mid);
    overflow: hidden;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--trans-mid);
    transform-origin: left;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,.3);
}

.leistung-card:hover::before { transform: scaleX(1); }

.leistung-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, var(--white) 0%, rgba(201,168,76,.04) 100%);
    box-shadow: var(--shadow-gold);
}

.leistung-card.featured::before { transform: scaleX(1); }

.featured-ribbon {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--grad-gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leistung-icon-wrap {
    margin-bottom: 1.5rem;
}

.leistung-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans-mid);
}

.leistung-card:hover .leistung-icon {
    background: var(--grad-gold);
}

.leistung-card:hover .leistung-icon i {
    color: var(--navy);
}

.leistung-icon i {
    font-size: 1.7rem;
    color: var(--gold);
    transition: color var(--trans-mid);
}

.leistung-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.leistung-card > p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.leistung-list {
    margin-bottom: 1.5rem;
}

.leistung-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 0.6rem;
}

.leistung-list i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.leistung-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.04em;
    transition: gap var(--trans-fast);
}

.leistung-link:hover { gap: 0.8rem; }

/* ========== VORTEILE ========== */
.vorteile {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.vorteile::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
}

.vorteile .section-title { color: var(--white); }
.vorteile .section-label { color: var(--gold); }

.vorteile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.vorteile-text > p {
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vorteil-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.vorteil-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.07);
    transition: all var(--trans-mid);
}

.vorteil-item:hover {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.2);
    transform: translateX(6px);
}

.vorteil-check {
    width: 32px;
    height: 32px;
    background: var(--grad-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vorteil-check i { color: var(--navy); font-size: 0.8rem; font-weight: 700; }

.vorteil-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.vorteil-item p {
    color: rgba(255,255,255,.5);
    font-size: 0.86rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.07);
    transition: all var(--trans-mid);
}

.process-step:hover {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.2);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.process-step:hover .step-num { opacity: 1; }

.step-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.step-content p {
    color: rgba(255,255,255,.5);
    font-size: 0.86rem;
    line-height: 1.6;
}

.process-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(201,168,76,.3), transparent);
    margin: 0 0 0 2.25rem;
}

/* ========== TEAM ========== */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    transition: all var(--trans-mid);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    position: relative;
    background: var(--navy);
    padding: 2.5rem 1rem 1.5rem;
    overflow: hidden;
}

.team-avatar::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: rgba(201,168,76,.08);
    border-radius: 50%;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(201,168,76,.3);
}

.avatar-placeholder i {
    font-size: 2rem;
    color: rgba(255,255,255,.4);
}

.team-socials {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all var(--trans-mid);
}

.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}

.team-socials a {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.75rem;
    transition: background var(--trans-fast);
}

.team-socials a:hover { background: var(--gold); color: var(--navy); }

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.team-role {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== REFERENZEN ========== */
.referenzen {
    background: var(--off-white);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: all var(--trans-mid);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,.3);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.testimonial-card > p {
    font-size: 0.97rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--gray-100);
    padding-top: 1.2rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: rgba(255,255,255,.4);
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.testi-prev, .testi-next {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
    transition: all var(--trans-fast);
    display: none; /* shown on mobile */
}

.testi-prev:hover, .testi-next:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.testi-dots {
    display: flex;
    gap: 0.5rem;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--trans-fast);
}

.testi-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: var(--radius-full);
}

/* Partner Logos */
.partner-logos {
    margin-top: 4rem;
    text-align: center;
}

.partner-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--trans-mid);
}

.logo-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.logo-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

.logo-item:hover span { color: var(--navy); }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--grad-navy);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.08) 0, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.05) 0, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== KONTAKT ========== */
.kontakt {
    background: var(--white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.kontakt-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.kontakt-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.kontakt-logo small {
    font-size: 0.6em;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.kontakt-card-header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,.5);
}

.kontakt-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kontakt-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.ki-icon {
    width: 38px;
    height: 38px;
    background: rgba(201,168,76,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ki-icon i { color: var(--gold); font-size: 0.95rem; }

.ki-text h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    color: rgba(255,255,255,.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.ki-text p, .ki-text a {
    font-size: 0.88rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
}

.ki-text a:hover { color: var(--gold); }

.kontakt-social {
    display: flex;
    gap: 0.75rem;
}

.kontakt-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 0.9rem;
    transition: all var(--trans-fast);
    border: 1px solid rgba(255,255,255,.08);
}

.kontakt-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Kontakt Form */
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--trans-fast);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.btn-submit {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--trans-mid);
    position: relative;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 2px solid var(--navy);
}

.btn-submit:hover:not(:disabled) {
    background: var(--grad-gold);
    color: var(--navy);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: flex; align-items: center; gap: 0.5rem; }

.form-success {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(72,187,120,.1);
    border: 1px solid rgba(72,187,120,.3);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    color: #276749;
    animation: fadeInUp 0.5s ease;
}

.form-success.show { display: flex; }
.form-success i { font-size: 1.5rem; margin-top: 0.1rem; }
.form-success strong { display: block; margin-bottom: 0.25rem; font-family: var(--font-heading); }
.form-success p { font-size: 0.88rem; opacity: 0.8; }

/* ========== FOOTER ========== */
.footer-top {
    background: var(--navy);
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    font-size: 0.85rem;
    transition: all var(--trans-fast);
    border: 1px solid rgba(255,255,255,.08);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-links h4,
.footer-kontakt h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 1.2rem;
}

.footer-links li,
.footer-kontakt li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    transition: color var(--trans-fast);
}

.footer-links a:hover { color: var(--gold); }

.footer-kontakt li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.86rem;
    color: rgba(255,255,255,.45);
}

.footer-kontakt i { color: var(--gold); font-size: 0.85rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer-kontakt a { color: rgba(255,255,255,.55); transition: color var(--trans-fast); }
.footer-kontakt a:hover { color: var(--gold); }

.footer-bottom {
    background: rgba(0,0,0,.4);
    padding: 1.3rem 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,.3);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,.3);
    transition: color var(--trans-fast);
}

.footer-legal a:hover { color: var(--gold); }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--grad-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    color: var(--navy);
    font-size: 1rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--trans-mid);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201,168,76,.5);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; }
    .hero-card-group { width: 280px; height: 280px; }
    .about-grid { grid-template-columns: 1fr; }
    .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 1.8rem;
        padding: 2rem;
        transition: left var(--trans-mid);
        box-shadow: 4px 0 30px rgba(0,0,0,.4);
        z-index: 999;
    }

    .nav-menu.active { left: 0; }
    .hamburger { display: flex; z-index: 1000; position: relative; }

    .nav-link { font-size: 1.1rem; }

    .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero-trust { gap: 1rem; }

    .vorteile-grid { grid-template-columns: 1fr; }
    .kontakt-grid  { grid-template-columns: 1fr; }
    .kontakt-card  { position: static; }

    .stats-divider { display: none; }
    .stats-row { gap: 2rem 3rem; }
    .stats-item { min-width: 120px; }

    .testimonials-track { grid-template-columns: 1fr; }
    .testi-prev, .testi-next { display: flex; }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 2.5rem;
    }

    .hero { padding: 6rem 0 3rem; }
    .hero-badge { font-size: 0.72rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-trust { flex-direction: column; gap: 0.6rem; }
    .hero-card-group { width: 240px; height: 240px; }
    .ring-1 { width: 180px; height: 180px; }
    .ring-2 { width: 130px; height: 130px; }
    .ring-3 { width: 90px; height: 90px; }

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

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-row { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }

    .about-icon-grid { gap: 0.6rem; }
    .icon-cell { font-size: 1.1rem; }

    .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .stats-num { font-size: 2.2rem; }
    .nav-btn { display: none; }
    .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 42px; height: 42px; }
}

/* ========== DARK SECTION TEXT OVERRIDES ========== */
.vorteile .section-header .section-title { color: var(--white); }
.referenzen .section-title,
.team .section-title,
.leistungen .section-title,
.kontakt .section-title { color: var(--navy); }

/* ========== BRANCHEN SECTION ========== */
.branchen {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.branchen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.branchen .section-header { position: relative; z-index: 1; }
.branchen .section-title { color: var(--white); }
.branchen .section-subtitle { color: rgba(255,255,255,.55); }

.branchen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.branche-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--trans-mid);
}

.branche-card:hover {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

.branche-icon {
    width: 70px;
    height: 70px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform var(--trans-mid);
}

.branche-card:hover .branche-icon {
    transform: scale(1.1) rotate(5deg);
}

.branche-icon i {
    font-size: 1.6rem;
    color: var(--navy);
}

.branche-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.branche-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.branche-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.branche-tags span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius-full);
    padding: 0.2rem 0.6rem;
}

/* ========== PRELOADER TAGLINE ========== */
.preloader-tagline {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: rgba(255,255,255,.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

/* ========== FOOTER SLOGAN ========== */
.footer-slogan {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem !important;
    opacity: 0.8;
}

/* ========== GRÜNDER SECTION ========== */
.gruender {
    background: var(--off-white);
}

.gruender-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Profil-Karte */
.profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.profile-avatar {
    background: var(--navy);
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.avatar-initials {
    width: 90px;
    height: 90px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    border: 3px solid rgba(201,168,76,.4);
}

/* Profile Photo – echtes Foto ersetzt Avatar-Initials */
.profile-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(201,168,76,.4);
    display: block;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.profile-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 0.15rem;
}

.profile-subtitle {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.profile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.profile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--navy);
    transition: color var(--trans-fast);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
}

.profile-contact-item:hover {
    color: var(--gold-dark);
    background: var(--off-white);
}

.profile-contact-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.profile-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.profile-social a {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: all var(--trans-fast);
}

.profile-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Biografie */
.bio-lead {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gruender-bio > p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.kompetenzen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kompetenz-bereich {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.kompetenz-bereich h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

.kompetenz-bereich h4 i { color: var(--gold); }

.kompetenz-bereich ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kompetenz-bereich li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.kompetenz-bereich li i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Expertise Tags */
.branchen-expertise {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.branchen-expertise h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--trans-fast);
}

.tag:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.tag i { color: var(--gold); font-size: 0.8rem; }

/* Qualifikationen */
.qualifikationen {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.qual-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.qual-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--trans-mid);
    border-left: 3px solid transparent;
}

.qual-card:hover {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.qual-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qual-icon i { color: var(--gold); font-size: 1.2rem; }

.qual-type {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.35rem;
}

.qual-content h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.qual-content p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== RESPONSIVE ERGÄNZUNGEN ========== */
@media (max-width: 1200px) {
    .branchen-grid { grid-template-columns: repeat(2, 1fr); }
    .gruender-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .profile-card { position: static; }
    .kompetenzen-grid { grid-template-columns: 1fr; }
    .qual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .branchen-grid { grid-template-columns: 1fr 1fr; }
    .gruender-grid { grid-template-columns: 1fr; }
    .qual-grid { grid-template-columns: 1fr; }
    .kompetenzen-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .branchen-grid { grid-template-columns: 1fr; }
}

