/* ========================================
   Build4Ward - Minimal Clean Styles
   ======================================== */

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
    }
}

/* ========================================
   0. Custom Fonts
   ======================================== */

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Thin.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'InterTight';
    src: url('../assets/fonts/InterTight-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* ========================================
   1. Root Variables & Global Styles
   ======================================== */
:root {
    --primary-color: #001431;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'InterTight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   Navbar / Header Styles
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 20, 49, 0.3) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-shrink {
    padding: 0.5rem 2rem;
    background: rgba(0, 20, 49, 0.4) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive navbar padding */
@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar.navbar-shrink {
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0.75rem;
    }

    .navbar.navbar-shrink {
        padding: 0.3rem 0.75rem;
    }

    .navbar-brand img {
        max-height: 50px !important;
    }

    .navbar.navbar-shrink .navbar-brand img {
        max-height: 40px !important;
    }

    .nav-link {
        margin: 0.25rem 0 !important;
        font-size: 0.95rem;
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00 0%, #ff7700 50%, #ff6600 100%);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}

.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #333;
    padding: 8rem 0 12rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.about-section .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #001431;
}

.about-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #001431;
}

.about-section .section-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-video-card {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.5rem;
    overflow: visible;
}

.about-video {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    background: #000;
    display: block;
}

.about-video-card .btn-primary {
    width: 100%;
    max-width: 100%;
}

.about-video-placeholder {
    height: 280px;
    background: linear-gradient(135deg, rgba(13,110,253,0.08) 0%, rgba(13,110,253,0.02) 100%);
    border: 1px dashed rgba(13,110,253,0.3);
    border-radius: 0.5rem;
    color: #0d6efd;
    font-weight: 600;
}

.about-video-placeholder i {
    font-size: 2rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.navbar-brand img {
    width: auto !important;
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.navbar.navbar-shrink .navbar-brand img {
    max-height: 48px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.dropdown-menu {
    background: rgba(0, 20, 49, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Navbar Contact Button */
.btn-contact-nav {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contact-nav:hover {
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Social Icons in Navbar */
.social-icons-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #ff8c00;
    transform: translateY(-3px);
}

/* Responsive: Hide social icons on mobile */
@media (max-width: 768px) {
    .social-icons-nav {
        gap: 0.75rem;
    }
    
    .social-icon {
        font-size: 1rem;
    }
    
    .btn-contact-nav {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   2. Hero Section
   ======================================== */
.hero-section {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #001a3a 0%, #0d3557 50%, #1a4d73 100%);
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 20px;
    }
}

/* Interactive Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-blob {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 30px);
    }
}

.hero-section .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-video {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 140, 0, 0.08) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-content h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.25rem, 5vw, 2rem);
    font-weight: 400;
    margin-bottom: 4rem;
}

/* Hero Feature Cards */
.hero-feature-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 160px;
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3) 0%, rgba(13, 110, 253, 0.1) 100%);
    border-radius: 0.5rem;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: white;
}

.hero-feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.hero-feature-card p {
    margin: 0;
}

/* CTA Buttons Container */
.hero-content .d-flex {
    margin-top: 4rem;
}

/* Hero Card Links */
.hero-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.hero-card-link:hover .hero-feature-card {
    transform: translateY(-5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

/* ========================================
   3. Steuerung Section
   ======================================== */
.steuerung-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    color: #333;
    padding: 8rem 0;
}

/* Systems Section - WAGO & KNX */
.systems-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fd 100%);
    color: #333;
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.system-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.system-image-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.system-image {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.system-card:hover .system-image {
    transform: scale(1.05);
}

.ueberwachung-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #333;
    padding: 8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ueberwachung-section .section-title,
.ueberwachung-section .section-text {
    text-align: right;
}

.ueberwachung-section .col-lg-6:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

/* Technologies Section */
.technologies-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    color: #333;
    padding: 8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #ff8c00;
    font-weight: 500;
}

.tech-column {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid #ff8c00;
}

.tech-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.15);
    border-top-color: #ff7700;
}

.tech-category {
    font-size: 1.25rem;
    color: #001431;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f3f8;
}

.tech-category i {
    color: #ff8c00;
}

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

.tech-list li {
    padding: 0.75rem 0;
    color: #555;
    font-weight: 500;
    transition: all 0.2s ease;
    padding-left: 1.5rem;
    position: relative;
}

.tech-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tech-list li:hover {
    color: #ff8c00;
    padding-left: 2rem;
}

.tech-list li:hover::before {
    opacity: 1;
}

/* Projects Section */
.projects-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #333;
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ff8c00;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.15);
}

.project-title {
    font-size: 1.5rem;
    color: #001431;
    margin-bottom: 0.75rem;
}

.project-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff8c00;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.25rem;
    font-weight: 500;
}

.tech-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tags li {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 119, 0, 0.05) 100%);
    color: #ff8c00;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tech-tags li:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 119, 0, 0.1) 100%);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

.iot-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    color: #333;
    padding: 8rem 0;
}

.alarme-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #333;
    padding: 8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.alarme-section .section-title,
.alarme-section .section-text {
    text-align: right;
}

.alarme-section .col-lg-6:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #001431;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0d6efd;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-left-color: #0b5ed7;
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.info-card h5 {
    font-size: 1rem;
    color: #001431;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.info-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   4. Buttons
   ======================================== */
.btn {
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.btn-outline-light {
    color: white;
    border: 1px solid white;
    background-color: transparent;
}

.btn-outline-light:hover {
    color: var(--dark-color);
    background-color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   4. Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-section {
        padding-top: 80px;
        min-height: auto;
    }
    
    section {
        padding-top: 160px !important;
    }

    .hero-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.25rem;
    }

    .hero-feature-card {
        min-height: 140px;
        padding: 0.75rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-video-placeholder {
        height: 200px;
    }

    .steuerung-section {
        padding: 3rem 0;
    }

    .ueberwachung-section {
        padding: 3rem 0;
    }

    .ueberwachung-section .section-title,
    .ueberwachung-section .section-text {
        text-align: left;
    }

    .ueberwachung-section .col-lg-6:nth-child(2) {
        align-items: flex-start;
    }

    .iot-section {
        padding: 3rem 0;
    }

    .alarme-section {
        padding: 3rem 0;
    }

    .alarme-section .section-title,
    .alarme-section .section-text {
        text-align: left;
    }

    .alarme-section .col-lg-6:nth-child(2) {
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Tablet responsive */
@media (min-width: 768px) and (max-width: 992px) {
    section {
        padding-top: 120px !important;
    }
}

/* ========================================
   5. Utilities
   ======================================== */
.text-white {
    color: white !important;
}

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

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.small {
    font-size: 0.875rem;
}

.display-2 {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
}

.h2 {
    font-size: 2rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* ========================================
   6. Animation Classes
   ======================================== */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Stagger animations for multiple elements */
.animate-stagger > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Section fade in on scroll */
section {
    position: relative;
}

.info-card {
    opacity: 0;
}

/* ========== FOOTER STYLES ========== */

.footer-section {
    background: linear-gradient(135deg, #0a1929 0%, #001a3a 50%, #0d2844 100%);
    color: #e0e0e0;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-section h5,
.footer-section h6 {
    color: #ffffff;
    font-weight: 600;
}

/* Footer Contact Form */
.footer-contact-form-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-contact-form-section h5 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.footer-form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    color: #ffffff;
}

.footer-contact-form .btn-primary {
    background: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
}

.footer-contact-form .btn-primary:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #0d6efd;
}

.footer-contact {
    font-size: 0.95rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.footer-contact p.fw-bold {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-contact-links a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-links a:hover {
    color: #0b5ed7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-bottom-content p {
    color: #b0b0b0;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links-bottom a:hover {
    color: #0d6efd;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 2rem 0;
        margin-top: 5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ========================================
   Services Page Styles
   ======================================== */

/* Services Hero Section */
.services-hero-section {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #001a3a 0%, #0d3557 50%, #1a4d73 100%);
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 140, 0, 0.08) 100%);
    z-index: 1;
}

/* Service Carousel */
.service-carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 0;
    z-index: 10;
}

.service-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.5) rgba(255, 255, 255, 0.1);
    scroll-snap-type: x mandatory;
    position: relative;
    z-index: 10;
}

.service-carousel::-webkit-scrollbar {
    height: 8px;
}

.service-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.service-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 10px;
}

.service-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.7);
}

.service-carousel .hero-card-link {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: center;
}

.service-carousel .hero-feature-card {
    width: 100%;
    height: 100%;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-down-arrow i {
    display: block;
}

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

/* Services Cards Section */
.services-cards-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 6rem 0;
}

.service-card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    height: auto;
    border-left: 5px solid #ff8c00;
    margin-bottom: 3rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.15);
}

.service-header {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid #f0f3f8;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff8c00;
    margin: 0 auto 1rem;
}

.service-title {
    font-size: 1.25rem;
    color: #001431;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    gap: 2rem;
}

.service-section {
    flex: 1;
    margin-bottom: 0;
}

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

.service-subtitle {
    font-size: 1.1rem;
    color: #ff8c00;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.service-subtitle::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ff8c00;
    border-radius: 50%;
    margin-right: 0.75rem;
}

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

.service-list li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-list li:hover {
    color: #ff8c00;
    padding-left: 2.25rem;
}

.service-footer {
    padding: 2rem;
    border-left: 1px solid #f0f3f8;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.03) 0%, rgba(255, 140, 0, 0.01) 100%);
    display: flex;
    align-items: center;
    min-width: 200px;
}

.btn-service {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-service:hover {
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.3);
}

/* Scrollbar styling for service content */
.service-content::-webkit-scrollbar {
    width: 6px;
}

.service-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.service-content::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 3px;
}

.service-content::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Responsive Services Cards */
@media (max-width: 768px) {
    .services-hero-section {
        min-height: 40vh;
        padding-top: 80px;
    }

    .services-hero-section h1 {
        font-size: 2rem;
    }

    .services-hero-section .lead {
        font-size: 1.25rem;
    }

    .services-cards-section {
        padding: 4rem 0;
    }

    .service-card {
        flex-direction: column;
        border-left: none;
        border-top: 5px solid #ff8c00;
        margin-bottom: 2rem;
    }

    .service-header {
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid #f0f3f8;
        min-width: auto;
    }

    .service-content {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-footer {
        padding: 1rem 1.5rem;
        border-left: none;
        border-top: 1px solid #f0f3f8;
        min-width: auto;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #001a3a 0%, #0d3557 50%, #1a4d73 100%);
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 140, 0, 0.08) 100%);
    z-index: 1;
}

.contact-hero-cards {
    margin-top: 3rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ff8c00;
    margin: 0 auto 1rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff8c00;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 6rem 0;
}

.contact-form-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-top: 5px solid #ff8c00;
}

.contact-input {
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-input:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #001431;
    margin-bottom: 0.5rem;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #ff7700 0%, #ff5500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.privacy-link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    padding: 6rem 0;
}

.info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff8c00;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.15);
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 1.5rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .contact-hero-section h1 {
        font-size: 2rem;
    }

    .contact-hero-section .lead {
        font-size: 1.25rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-section,
    .contact-info-section,
    .contact-cta-section {
        padding: 4rem 0;
    }

    .info-box {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   Team Page Styles
   ======================================== */

/* Team Hero Section */
.team-hero-section {
    position: relative;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #001a3a 0%, #0d3557 50%, #1a4d73 100%);
    overflow: hidden;
}

.team-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 140, 0, 0.08) 100%);
    z-index: 1;
}

/* Team Members Section */
.team-members-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 6rem 0;
}

.team-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 5px solid #ff8c00;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.15);
}

.team-image-container {
    background: linear-gradient(135deg, #001a3a 0%, #0d3557 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.team-image-placeholder {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 140, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-image-placeholder {
    border-color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* If you add actual images later */
.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff8c00;
}

.team-content {
    padding: 2.5rem;
}

.team-name {
    font-size: 1.75rem;
    color: #001431;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-contact {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f3f8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-item i {
    color: #ff8c00;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff8c00;
}

.team-specialties {
    margin-top: 1.5rem;
}

.specialties-title {
    font-size: 1.1rem;
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.specialties-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #ff8c00;
    margin-right: 0.75rem;
    border-radius: 2px;
}

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

.specialties-list li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.specialties-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.1rem;
}

.specialties-list li:hover {
    color: #ff8c00;
    padding-left: 2.25rem;
}

/* Team CTA Section */
.team-cta-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Team Page */
@media (max-width: 768px) {
    .team-hero-section {
        min-height: 50vh;
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .team-hero-section h1 {
        font-size: 2rem;
    }

    .team-hero-section .lead {
        font-size: 1.25rem;
    }

    .team-members-section {
        padding: 4rem 0;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .team-image-placeholder {
        width: 140px;
        height: 140px;
        font-size: 4.5rem;
    }

    .team-content {
        padding: 2rem 1.5rem;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-cta-section {
        padding: 4rem 0;
    }
}

/* ========================================
   Legal Pages Styles (Impressum, Datenschutz, etc.)
   ======================================== */

/* Legal Hero Section */
.legal-hero-section {
    position: relative;
    color: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #001a3a 0%, #0d3557 50%, #1a4d73 100%);
    overflow: hidden;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 140, 0, 0.08) 100%);
    z-index: 1;
}

/* Legal Content Section */
.legal-content-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 4rem 0;
    min-height: 60vh;
}

.legal-content-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    border-top: 4px solid #ff8c00;
}

/* Legal Notice Box */
.legal-notice-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 140, 0, 0.03) 100%);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.notice-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 1.25rem;
    color: #001431;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-notice-box p {
    color: #555;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f3f8;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section-title {
    font-size: 1.5rem;
    color: #001431;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #ff8c00;
}

.legal-subsection-title {
    font-size: 1.2rem;
    color: #001431;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content-card a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content-card a:hover {
    color: #ff7700;
    text-decoration: underline;
}

/* ============================================
   Warning Button & Modal Styling
   ============================================ */

.btn-warning-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    color: white;
    border: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-warning-nav:hover {
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    color: white;
}

/* Modal Styling */
.modal-warning-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #ff8c00;
    border-radius: 1.5rem;
}

.modal-warning-header {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    border-bottom: none;
    border-radius: 1.5rem 1.5rem 0 0;
}

.modal-warning-header .modal-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-warning-body {
    padding: 2rem;
    color: #333;
    line-height: 1.8;
}

.warning-address-box {
    background: rgba(255, 140, 0, 0.08);
    border-left: 4px solid #ff8c00;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.warning-address-box strong {
    color: #001431;
}

.modal-warning-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .btn-warning-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


.legal-content-card strong {
    color: #001431;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f3f8;
    text-align: center;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero-section {
        min-height: 30vh;
        padding-top: 80px;
        padding-bottom: 2rem;
    }

    .legal-hero-section h1 {
        font-size: 2rem;
    }

    .legal-hero-section .lead {
        font-size: 1rem;
    }

    .legal-content-section {
        padding: 3rem 0;
    }

    .legal-content-card {
        padding: 2rem 1.5rem;
    }

    .legal-section-title {
        font-size: 1.25rem;
    }

    .legal-subsection-title {
        font-size: 1.1rem;
    }
}
/* ============================================
   Blog Page Styling
   ============================================ */

.blog-hero-section {
    min-height: 50vh;
    background: linear-gradient(135deg, #001431 0%, #0d3557 100%);
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Blog Posts Container */
.blog-posts-container {
    display: grid;
    gap: 2.5rem;
}

.blog-post-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.15);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-date {
    font-size: 0.85rem;
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-post-category {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    padding: 0.25rem 0.75rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001431;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
    color: #ff8c00;
}

.blog-post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more {
    display: inline-block;
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #ff6600;
    transform: translateX(5px);
}

/* Sidebar Widgets */
.blog-widget {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: #001431;
    font-size: 1.1rem;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 0.75rem;
}

/* Search Widget */
.blog-search-input {
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid #ddd;
}

.blog-search-input:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.15);
}

/* Categories Widget */
.blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.blog-categories-list li:last-child {
    border-bottom: none;
}

.blog-categories-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-categories-list a:hover {
    color: #ff8c00;
    padding-left: 0.5rem;
}

.blog-categories-list a::after {
    content: "→";
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-categories-list a:hover::after {
    opacity: 1;
}

/* Recent Posts Widget */
.recent-posts-list {
    display: grid;
    gap: 1rem;
}

.recent-post-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #001431;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-post-title:hover {
    color: #ff8c00;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Empty State */
.empty-state {
    color: #999;
}

/* Newsletter Section */
.blog-newsletter-section {
    background: linear-gradient(135deg, #001431 0%, #0d3557 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

.blog-newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.blog-newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
}

.blog-newsletter-section .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.blog-newsletter-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-section .form-control:focus {
    border-color: #ff8c00;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-section {
        min-height: 35vh;
        padding: 4rem 0;
    }

    .blog-hero-section h1 {
        font-size: 2rem;
    }

    .blog-content-section {
        padding: 3rem 0;
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.25rem;
    }

    .blog-widget {
        padding: 1.25rem;
    }
}

/* ============================================
   Blog Post Content - Universal Styling
   ============================================ */

/* Headings */
.blog-post-article h2,
.blog-post-article h3,
.blog-post-article h4,
.blog-post-article h5,
.blog-post-article h6 {
    color: #001431;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-article h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 0.75rem;
}

.blog-post-article h3 {
    font-size: 1.35rem;
    color: #0d3557;
}

.blog-post-article h4 {
    font-size: 1.15rem;
}

.blog-post-article h5 {
    font-size: 1rem;
}

/* Paragraphs */
.blog-post-article p {
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.blog-post-article strong {
    color: #001431;
    font-weight: 700;
}

.blog-post-article em {
    font-style: italic;
    color: #555;
}

/* Links */
.blog-post-article a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.blog-post-article a:hover {
    color: #ff6600;
    border-bottom: 1px solid #ff6600;
}

/* Lists */
.blog-post-article ul,
.blog-post-article ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-article li {
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.blog-post-article ul li::marker {
    color: #ff8c00;
    font-weight: bold;
}

.blog-post-article ol li::marker {
    color: #ff8c00;
    font-weight: bold;
}

/* Blockquotes */
.blog-post-article blockquote {
    border-left: 4px solid #ff8c00;
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 0.5rem;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
}

.blog-post-article blockquote p {
    margin-bottom: 0;
}

/* Code Blocks */
.blog-post-article code {
    background: #f4f4f4;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Courier New', monospace;
    color: #d63384;
    font-size: 0.9rem;
}

.blog-post-article pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    line-height: 1.5;
}

.blog-post-article pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Images */
.blog-post-article img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-post-article figure {
    margin: 2rem 0;
}

.blog-post-article figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Tables */
.blog-post-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-post-article th {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.blog-post-article td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #555;
}

.blog-post-article tr:hover {
    background: #f9f9f9;
}

/* Horizontal Rule */
.blog-post-article hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff8c00 50%, transparent 100%);
    margin: 2.5rem 0;
}

/* Info/Alert Boxes */
.blog-post-info {
    background: rgba(13, 110, 253, 0.05);
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.blog-post-info p {
    margin-bottom: 0;
}

.blog-post-warning {
    background: rgba(255, 193, 7, 0.05);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.blog-post-warning p {
    margin-bottom: 0;
}

.blog-post-success {
    background: rgba(25, 135, 84, 0.05);
    border-left: 4px solid #198754;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.blog-post-success p {
    margin-bottom: 0;
}

/* Key Takeaways */
.blog-post-takeaways {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid #ff8c00;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-post-takeaways h3 {
    color: #ff8c00;
    margin-top: 0;
}

.blog-post-takeaways ul {
    list-style: none;
    padding-left: 0;
}

.blog-post-takeaways li {
    padding-left: 2rem;
    position: relative;
}

.blog-post-takeaways li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-size: 1.2rem;
}

/* Highlighted Text */
.blog-post-highlight {
    background: linear-gradient(120deg, rgba(255, 140, 0, 0.1), rgba(255, 107, 0, 0.1));
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

/* Call-to-Action inline */
.blog-post-article .blog-cta-inline {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.blog-post-article .blog-cta-inline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Utility spacing */
.blog-post-article .spacer-sm {
    height: 1rem;
}

.blog-post-article .spacer-md {
    height: 1.5rem;
}

.blog-post-article .spacer-lg {
    height: 2rem;
}

@media (max-width: 768px) {
    .blog-post-article h2 {
        font-size: 1.35rem;
    }

    .blog-post-article h3 {
        font-size: 1.15rem;
    }

    .blog-post-article blockquote {
        padding: 1rem;
    }

    .blog-post-article table {
        font-size: 0.9rem;
    }

    .blog-post-article th,
    .blog-post-article td {
        padding: 0.75rem 0.5rem;
    }

    .blog-post-takeaways {
        padding: 1.5rem;
    }
}


/* ============================================
   Blog Post Page Styling
   ============================================ */

.blog-post-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #001431 0%, #0d3557 100%);
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-hero h1 {
    color: white;
}

.blog-post-meta-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.blog-post-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-post-category {
    display: inline-block;
    background: rgba(255, 140, 0, 0.3);
    color: #ffb366;
    padding: 0.35rem 0.85rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 140, 0, 0.5);
}

.blog-post-content-section {
    padding: 4rem 0;
    background: white;
}

.blog-post-article {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.blog-post-intro {
    background: rgba(255, 140, 0, 0.05);
    border-left: 4px solid #ff8c00;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
}

.blog-post-intro p {
    margin: 0;
    font-size: 1.1rem;
    color: #001431;
}

.blog-post-section {
    margin-bottom: 3rem;
}

.blog-post-section h2 {
    font-size: 1.75rem;
    color: #001431;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 0.75rem;
}

.blog-post-section p {
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.blog-post-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.blog-post-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #444;
    margin-bottom: 0.5rem;
}

.blog-post-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.1rem;
}

.blog-post-cta {
    margin: 3rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid #ff8c00;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
}

.cta-card h3 {
    color: #001431;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.blog-post-tags {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
}

.blog-post-tags h4 {
    color: #001431;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    display: inline-block;
    background: white;
    color: #ff8c00;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    border: 1px solid #ff8c00;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-2px);
}

/* Author Info */
.blog-post-author {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
}

.author-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ff8c00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    color: #001431;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Related Posts */
.blog-related-posts {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
}

.blog-related-posts h3 {
    color: #001431;
}

/* Post Navigation */
.blog-post-navigation {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .blog-post-hero {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .blog-post-hero h1 {
        font-size: 1.75rem;
    }

    .blog-post-content-section {
        padding: 2rem 0;
    }

    .blog-post-section h2 {
        font-size: 1.35rem;
    }

    .blog-post-article {
        font-size: 1rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }
}

/* Cookie Banner */
.cookie-banner {position:fixed; bottom:1.25rem; right:1.25rem; left:1.25rem; max-width:520px; margin:0 auto; z-index:1080; background:#0d3557; color:#fff; padding:1.25rem; border-radius:12px; box-shadow:0 18px 38px rgba(0,0,0,0.18); display:none;}
.cookie-banner h5 {margin:0 0 0.5rem; font-weight:700; font-size:1rem;}
.cookie-banner p {margin:0 0 0.5rem; font-size:0.95rem; line-height:1.5;}
.cookie-badges {display:flex; gap:0.5rem; flex-wrap:wrap; margin-bottom:0.75rem;}
.cookie-badge {padding:0.35rem 0.65rem; border-radius:999px; font-size:0.85rem; font-weight:600; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.15);}
.cookie-badge--active {background:rgba(0,255,138,0.12); border-color:rgba(0,255,138,0.35); color:#b4ffd9;}
.cookie-actions {display:flex; gap:0.75rem; flex-wrap:wrap;}
.cookie-actions button {border:none; border-radius:10px; padding:0.65rem 1.1rem; font-weight:700; cursor:pointer; transition:all 0.2s ease;}
.cookie-btn-primary {background:linear-gradient(135deg, #ff8c00 0%, #ff6600 100%); color:#0d1224;}
.cookie-btn-secondary {background:rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.2);}
.cookie-btn-primary:hover {transform:translateY(-1px);}
.cookie-btn-secondary:hover {background:rgba(255,255,255,0.2);}
.cookie-small-note {font-size:0.85rem; opacity:0.8; margin-top:0.6rem;}
@media (max-width: 576px) { .cookie-banner {left:0.75rem; right:0.75rem; padding:1rem;} }
