/* ============================================
   GLOBAL VARIABLES & RESET
   ============================================ */
:root {
    --primary-cyan: #00B4D8;
    --accent-violet: #8B5CF6;
    --dark-gray: #6B7280;
    --near-black: #1F2937;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--near-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVIGATION / HEADER
   ============================================ */
.navbar {
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Weißes Logo auf dunklem Hintergrund */
}

.navbar.scrolled .navbar-logo {
    height: 40px;
    filter: none; /* Original-Farben auf hellem Hintergrund */
}

/* Mobile Menu Logo */
.mobile-menu-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand {
    color: var(--near-black) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    position: relative;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--near-black) !important;
}

/* Override for mobile - always white text */
@media (max-width: 991px) {
    .navbar-nav .nav-link,
    .navbar.scrolled .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    .navbar-nav .nav-link.active,
    .navbar.scrolled .navbar-nav .nav-link.active {
        color: var(--primary-cyan) !important;
    }
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1001;
    display: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.mobile-menu-toggle:focus {
    box-shadow: none;
    outline: none;
}

/* Custom Hamburger Icon */
.mobile-menu-toggle .hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-toggle .hamburger span {
    background: var(--near-black);
}

/* Hamburger Animation when open */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
@media (max-width: 991px) {
    .mobile-nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
        padding: 0 0 2rem 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
        display: flex !important;
        flex-direction: column;
    }
    
    .mobile-nav-menu.show {
        right: 0;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }
    
    .mobile-menu-logo {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.25rem;
        color: #ffffff;
        text-transform: uppercase;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 10px;
        color: #ffffff;
        font-size: 1.25rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: var(--primary-cyan);
    }
    
    /* Mobile menu backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 2rem;
        display: flex !important;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
    }
    
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 1rem 0;
        font-size: 1.1rem;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none !important;
    }
    
    .navbar-nav .nav-link.active {
        color: var(--primary-cyan) !important;
    }

    /* Mobile Mega Menu */
    .has-mega-menu {
        position: relative;
        overflow: visible;
    }
    
    .has-mega-menu > .nav-link .dropdown-arrow {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .has-mega-menu.open > .nav-link .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Mobile Submenu - hidden by default */
    .has-mega-menu .mega-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-top: none !important;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }
    
    /* Show submenu when parent has .open class */
    .has-mega-menu.open .mega-menu {
        display: block;
        padding: 1rem !important;
    }
    
    .mega-menu-container {
        padding: 0 !important;
    }
    
    .mega-menu-grid {
        display: block !important;
        grid-template-columns: unset;
    }
    
    .mega-menu-column {
        padding-left: 1rem;
        border-left: 2px solid var(--primary-cyan);
        margin-bottom: 1.5rem;
    }
    
    .mega-menu-column:last-child {
        margin-bottom: 0;
    }
    
    .mega-menu-column h4 {
        color: var(--primary-cyan) !important;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: none !important;
    }
    
    .mega-menu-column ul {
        display: block !important;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mega-menu-column ul li {
        display: block !important;
        margin-bottom: 0.25rem;
    }
    
    .mega-menu-column ul li a {
        display: flex !important;
        align-items: center;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        gap: 0.75rem;
    }
    
    .mega-menu-column ul li a:hover {
        color: var(--primary-cyan) !important;
    }
    
    .mega-menu-column ul li a i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--primary-cyan) !important;
        font-size: 0.85rem;
        border-radius: 0.5rem;
    }
    
    .mega-menu-column ul li a span {
        display: flex;
        flex-direction: column;
        color: inherit;
    }
    
    .mega-menu-column ul li a span small {
        display: none;
    }
    
    .mega-menu-featured {
        display: none !important;
    }
    
    /* Mobile Nav CTA Button */
    .navbar-nav .nav-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }
    
    .navbar-nav .nav-cta .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    /* Hide mobile menu header on desktop */
    .mobile-menu-header {
        display: flex;
    }
}

/* Desktop Navigation Menu */
@media (min-width: 992px) {
    .mobile-nav-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }
    
    .mobile-menu-header {
        display: none !important;
    }
}

/* ============================================
   MEGA MENU (Desktop only)
   ============================================ */
@media (min-width: 992px) {
    .has-mega-menu {
        position: static;
    }

    .has-mega-menu > .nav-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .has-mega-menu > .nav-link .dropdown-arrow {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .has-mega-menu:hover > .nav-link .dropdown-arrow {
        transform: rotate(180deg);
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 2.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        border-top: 3px solid var(--primary-cyan);
    }

    .mega-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-menu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .mega-menu-column h4 {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary-cyan);
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--light-gray);
    }

    .mega-menu-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-column ul li {
        margin-bottom: 0.5rem;
    }

    .mega-menu-column ul li a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 0;
        color: var(--near-black);
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border-radius: 0.5rem;
    }

    .mega-menu-column ul li a:hover {
        color: var(--primary-cyan);
        transform: translateX(5px);
    }

    .mega-menu-column ul li a i {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-gray);
        border-radius: 0.5rem;
        color: var(--primary-cyan);
        transition: all 0.3s ease;
    }

    .mega-menu-column ul li a:hover i {
        background: var(--primary-cyan);
        color: var(--white);
    }

    .mega-menu-column ul li a span {
        display: flex;
        flex-direction: column;
    }

    .mega-menu-column ul li a span small {
        font-size: 0.75rem;
        color: var(--dark-gray);
        margin-top: 2px;
    }

    /* Mega Menu Featured Card (Desktop) */
    .mega-menu-featured {
        background: linear-gradient(135deg, var(--near-black) 0%, var(--primary-cyan) 100%);
        border-radius: 1rem;
        padding: 2rem;
        color: var(--white);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mega-menu-featured h4 {
        color: var(--white) !important;
        border-bottom-color: rgba(255, 255, 255, 0.2) !important;
    }

    .mega-menu-featured p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }

    .mega-menu-featured .btn {
        align-self: flex-start;
    }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--near-black) 0%, var(--primary-cyan) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-content .btn {
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background-color: var(--primary-cyan);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0096b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--near-black);
    transform: translateY(-2px);
}

/* ============================================
   DIAGONAL ELEMENTS
   ============================================ */
.diagonal-clip {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.diagonal-gradient {
    background: linear-gradient(72deg, var(--near-black) 0%, var(--primary-cyan) 100%);
}

.diagonal-section {
    position: relative;
    padding: 6rem 0;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
    transform-origin: top left;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
    border-top-color: var(--primary-cyan);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--near-black);
}

.service-card p {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.9) 0%, rgba(31, 41, 55, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--white);
    font-size: 1rem;
}

/* Portfolio Filter */
.portfolio-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-filter .btn {
    margin: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-cyan);
    background-color: transparent;
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.portfolio-filter .btn:hover,
.portfolio-filter .btn.active {
    background-color: var(--primary-cyan);
    color: var(--white);
}

/* ============================================
   TIMELINE (Über Uns)
   ============================================ */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-cyan);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: calc(50% + 3rem);
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: calc(50% + 3rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-cyan);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2);
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--near-black);
}

.blog-card-text {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card .btn-link {
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.blog-card .btn-link:hover {
    color: #0096b8;
}

/* Blog Content - Blockquote Footer (Quellenangabe) */
.footer_blockquote,
.blockquote-footer,
blockquote footer {
    color: inherit;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    display: block;
    background-color:white;
}

.footer_blockquote::before,
blockquote footer::before {
    content: "— ";
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Blog Content - Blockquote Styling */
blockquote,
.blockquote {
    background: transparent;
    border-left: 4px solid var(--primary-cyan);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: inherit;
    position: relative;
}

blockquote::before {
    content: """;
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-cyan);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

blockquote p {
    margin-bottom: 0;
    color: inherit;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--near-black);
    border-bottom: 2px solid var(--primary-cyan);
    padding-bottom: 0.5rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 1rem;
}

.sidebar-widget ul li a {
    color: var(--dark-gray);
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 0.5rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    padding: 0.875rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.15);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

footer h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: var(--light-gray);
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 0.5rem;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--primary-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-404 h1 {
    font-size: 10rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--near-black);
}

.section-title p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        padding-left: 80px;
        padding-right: 2rem;
    }

    .timeline-dot {
        left: 30px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .error-404 h1 {
        font-size: 6rem;
    }
}

/* ============================================
   PARALLAX SECTION TRANSITIONS
   ============================================ */

/* Base parallax container */
.parallax-section {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Parallax background layers */
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}

/* Floating elements that move at different speeds */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-slow {
    --parallax-speed: 0.3;
}

.parallax-medium {
    --parallax-speed: 0.5;
}

.parallax-fast {
    --parallax-speed: 0.7;
}

/* Section Reveal Animations */
.reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal-section.revealed {
    opacity: 1;
    transform: none;
}

/* Staggered reveal for children */
.reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Ausnahme für Formularelemente */
.reveal-stagger .contact-form-card,
.reveal-stagger .contact-form-card-modern,
.reveal-stagger .contact-info-card,
.reveal-stagger .form-group-modern,
.reveal-stagger .form-group-simple,
.reveal-stagger .modern-contact-form,
.reveal-stagger [class*="col-"] {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-stagger .contact-form-card *,
.reveal-stagger .contact-form-card-modern *,
.reveal-stagger .contact-info-card *,
.reveal-stagger .form-group-modern *,
.reveal-stagger .form-group-simple *,
.reveal-stagger .modern-contact-form *,
.reveal-stagger [class*="col-"] * {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Horizontal reveal */
.reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 1;
    transform: scale(1);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Rotate reveal */
.reveal-rotate {
    opacity: 1;
    transform: none;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rotate.revealed {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Smooth section dividers with parallax effect */
.section-divider {
    position: relative;
    height: 150px;
    margin: -1px 0;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-divider.divider-wave svg path {
    fill: var(--light-gray);
}

.section-divider.divider-wave-dark svg path {
    fill: var(--near-black);
}

/* Diagonal section transitions */
.diagonal-top {
    position: relative;
}

.diagonal-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}

.diagonal-bottom {
    position: relative;
}

.diagonal-bottom::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
    transform-origin: bottom right;
    z-index: 1;
}

/* 3D Card hover effect */
.card-3d {
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Smooth scroll snap for full-page sections */
.scroll-snap-container {
    scroll-snap-type: y proximity;
    overflow-y: scroll;
    height: 100vh;
}

.scroll-snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
}

/* Magnetic button effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text split animation */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-text.revealed .char {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient shift animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(135deg, var(--near-black), var(--primary-cyan), var(--near-black));
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

/* Image parallax zoom */
.parallax-zoom {
    overflow: hidden;
}

.parallax-zoom img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.parallax-zoom:hover img {
    transform: scale(1.1);
}

/* Cursor follower effect */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.cursor-follower.active {
    opacity: 1;
}

.cursor-follower.hovering {
    transform: scale(1.5);
    background: rgba(0, 180, 216, 0.1);
}

/* Smooth progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), #00D4FF);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

/* Floating action elements */
.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse animation for CTAs */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 180, 216, 0);
    }
}

/* Section overlay with blur effect */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

/* Glowing text effect */
.glow-text {
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.5),
                 0 0 20px rgba(0, 180, 216, 0.3),
                 0 0 30px rgba(0, 180, 216, 0.2);
}

/* Morphing blob background */
.blob-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.3) 0%, rgba(31, 41, 55, 0.3) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 8s ease-in-out infinite;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: translate(10px, -10px) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
        transform: translate(-10px, 10px) rotate(180deg);
    }
    75% {
        border-radius: 30% 70% 60% 40% / 60% 40% 60% 40%;
        transform: translate(5px, 5px) rotate(270deg);
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
        top: 0;
        height: 100%;
    }
    
    .parallax-element {
        transform: none !important;
    }
    
    .blob-bg {
        display: none;
    }
    
    .cursor-follower {
        display: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-stagger > *,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-rotate,
    .parallax-element,
    .card-3d-inner,
    .split-text .char {
        transition: none;
        transform: none;
        opacity: 1;
    }
    
    .float-animation,
    .pulse-animation,
    .blob-bg {
        animation: none;
    }
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation-delay: -7s;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    overflow: visible;
}

.title-line:nth-child(1) { animation: fadeInUp 0.8s ease 0.2s both; }
.title-line:nth-child(2) { animation: fadeInUp 0.8s ease 0.4s both; }
.title-line:nth-child(3) { animation: fadeInUp 0.8s ease 0.6s both; }

.hero-title .title-highlight {
    color: var(--primary-cyan) !important;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-highlight * {
    color: inherit !important;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-rotate-wrapper {
    display: inline-block;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-play-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.75rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-number {
    color: var(--white);
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
}

.hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatCard 6s ease-in-out infinite;
}

.visual-card.card-1 {
    top: 60px;
    right: 20px;
    animation-delay: 0s;
}

.visual-card.card-2 {
    top: 180px;
    right: 100px;
    animation-delay: -2s;
}

.visual-card.card-3 {
    top: 300px;
    right: 40px;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.visual-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}

.visual-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-card .card-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.visual-card .card-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.visual-card .card-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), #8B5CF6);
    border-radius: 100px;
    animation: growBar 2s ease 1.5s both;
}

@keyframes growBar {
    from { width: 0; }
}

.visual-floating-badge {
    position: absolute;
    bottom: 80px;
    right: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    padding: 12px 20px;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    animation: floatCard 5s ease-in-out infinite;
    animation-delay: -1s;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary-cyan);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted-section {
    background: linear-gradient(180deg, #0a0a0f 0%, var(--white) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
}

.trusted-label {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    color: #94A3B8;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.logo-item img {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: var(--primary-cyan);
    opacity: 1;
    transform: scale(1.1);
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-padding {
    padding: 7rem 0;
    position: relative;
}

.section-padding.reveal-section {
    background: linear-gradient(180deg, var(--white) 0%, #F8FAFC 100%);
}

.section-padding.reveal-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-label {
    display: inline-block;
    color: var(--primary-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 223, 0.2);
}

.section-label::before {
    display: none;
}

.section-label.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-label.light::before {
    display: none;
}

.cta-content .section-label {
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.cta-content .section-label::before {
    display: none;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: none;
    color: var(--dark-gray);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-text {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.section-subtext {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   IMAGE SHOWCASE
   ============================================ */
.image-showcase {
    position: relative;
}

.image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Service Icon Box für Leistungsseite */
.service-icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.service-icon-box i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.service-icon-box:hover i {
    transform: scale(1.1);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-showcase:hover .image-main img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
}

.accent-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.accent-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}

.accent-text strong {
    display: block;
    color: var(--near-black);
    font-weight: 700;
}

.accent-text span {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-cyan);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--near-black);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    padding-left: 8px;
}

.feature-list li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* ============================================
   MODERN BUTTON
   ============================================ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--near-black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(5px);
}

.btn-modern.light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-modern.light:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

/* ============================================
   DARK SECTION
   ============================================ */
.bg-dark-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), #8B5CF6);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern.featured {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(0, 180, 216, 0.3);
}

.service-card-modern.featured.ai-world-card {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 180, 216, 0.2) 50%, rgba(236, 72, 153, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.service-card-modern.featured.ai-world-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent, rgba(0, 180, 216, 0.1), transparent);
    animation: ai-card-rotate 8s linear infinite;
    pointer-events: none;
}

@keyframes ai-card-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card-modern.featured.ai-world-card .service-number {
    font-size: 2rem;
    color: rgba(139, 92, 246, 0.4);
}

.service-card-modern.featured.ai-world-card .service-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, var(--primary-cyan) 50%, #EC4899 100%);
    animation: ai-icon-pulse 3s ease-in-out infinite;
}

@keyframes ai-icon-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 180, 216, 0.6); }
}

.service-card-modern.featured.ai-world-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.25);
    line-height: 1;
}

.service-card-modern .service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-card-modern h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
}

.service-card-modern p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--white);
    gap: 12px;
}

/* ============================================
   AI WORLD SECTION - HOME PAGE
   ============================================ */
.ai-world-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--near-black) 0%, #111827 50%, var(--near-black) 100%);
    overflow: hidden;
}

.ai-world-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.ai-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(0, 180, 216, 0.4), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
                      radial-gradient(2px 2px at 50px 160px, rgba(0, 180, 216, 0.3), transparent),
                      radial-gradient(2px 2px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
                      radial-gradient(2px 2px at 130px 80px, rgba(0, 180, 216, 0.4), transparent);
    background-size: 200px 200px;
    animation: ai-particles-float 20s linear infinite;
}

@keyframes ai-particles-float {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.ai-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.ai-glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.5) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: ai-orb-float 8s ease-in-out infinite;
}

.ai-glow-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    bottom: -50px;
    right: 10%;
    animation: ai-orb-float 10s ease-in-out infinite reverse;
}

.ai-glow-orb.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    top: 40%;
    right: -50px;
    animation: ai-orb-float 12s ease-in-out infinite;
}

@keyframes ai-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.ai-badge i {
    font-size: 1rem;
    animation: ai-robot-pulse 2s ease-in-out infinite;
}

@keyframes ai-robot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.ai-world-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ai-gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-world-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* AI Categories Grid */
.ai-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .ai-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-categories {
        grid-template-columns: 1fr;
    }
}

.ai-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.ai-category:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-5px);
}

.ai-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.ai-category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
}

.ai-category h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.ai-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-service-item:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateX(5px);
}

.ai-service-item:hover .ai-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--white);
}

.ai-service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 10px;
    color: var(--primary-cyan);
    font-size: 1rem;
}

.ai-service-info {
    flex: 1;
}

.ai-service-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.ai-service-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.ai-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* AI Seminare Banner */
.ai-seminare-banner {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ai-seminare-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ai-seminare-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 16px;
    font-size: 1.5rem;
    color: white;
}

.ai-seminare-text h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.ai-seminare-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.ai-seminare-buttons {
    display: flex;
    gap: 1rem;
}

.ai-seminar-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-seminar-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.ai-seminar-btn.pro {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-color: transparent;
}

.ai-seminar-btn.pro:hover {
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

/* AI World CTA Button */
.btn-ai-world {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-ai-world::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-ai-world:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
    color: var(--white);
}

.btn-ai-world:hover::before {
    left: 100%;
}

.btn-ai-world i {
    transition: transform 0.3s ease;
}

.btn-ai-world:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .ai-seminare-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-seminare-content {
        flex-direction: column;
    }
}

/* ============================================
   PORTFOLIO MODERN
   ============================================ */
.portfolio-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .portfolio-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-modern {
        grid-template-columns: 1fr;
    }
}

.portfolio-item-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--near-black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-modern.large {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .portfolio-item-modern.large {
        grid-column: span 1;
    }
}

.portfolio-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.portfolio-item-modern.large .portfolio-image {
    padding-top: 50%;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-modern:hover .portfolio-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item-modern:hover .portfolio-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-cyan);
    color: white;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: none;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.portfolio-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--near-black);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-modern:hover .portfolio-link {
    opacity: 1;
    transform: scale(1);
}

.portfolio-link:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.3));
    pointer-events: none;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .stat-item {
        flex-direction: column;
    }
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-content .stat-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ============================================
   AUTOMATION TEASER (AI World)
   ============================================ */
.automation-teaser-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--near-black) 0%, #111827 100%);
}

.automation-teaser {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.automation-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.automation-teaser-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.automation-teaser-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.automation-teaser-text {
    flex: 1;
}

.automation-teaser-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.automation-teaser-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.automation-teaser-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.automation-teaser-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: #fff;
}

.automation-teaser-btn i {
    transition: transform 0.3s ease;
}

.automation-teaser-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Automation Teaser */
@media (max-width: 991px) {
    .automation-teaser-content {
        flex-wrap: wrap;
    }
    
    .automation-teaser-text {
        flex: 1 1 calc(100% - 90px);
    }
    
    .automation-teaser-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .automation-teaser {
        padding: 1.5rem;
    }
    
    .automation-teaser-content {
        flex-direction: column;
        text-align: center;
    }
    
    .automation-teaser-text h3 {
        font-size: 1.2rem;
    }
    
    .automation-teaser-text p {
        font-size: 0.9rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 7rem 0 0 0;
    overflow: hidden;
    margin-bottom: -1px; /* Nahtloser Übergang zum Footer */
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 7rem;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: none;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-secondary.light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary.light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   LIGHT SECTION BACKGROUND
   ============================================ */
.bg-light-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    position: relative;
}

.bg-light-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0, 180, 216, 0.03));
    pointer-events: none;
}

.bg-light-section .btn-modern {
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.15);
}

.bg-light-section .btn-modern:hover {
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.25);
}

/* ============================================
   PORTFOLIO MASONRY PREMIUM
   ============================================ */
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    /* Remove all spans on tablet to prevent overlapping */
    .portfolio-item-premium.tall {
        grid-row: span 1;
    }
    
    .portfolio-item-premium.wide {
        grid-column: span 1;
    }
    
    .portfolio-item-premium {
        min-height: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .portfolio-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    /* Reset all spans on mobile */
    .portfolio-item-premium.tall,
    .portfolio-item-premium.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

.portfolio-item-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 280px;
    height: 280px;
}

@media (max-width: 576px) {
    .portfolio-item-premium {
        min-height: 250px;
        height: 250px;
    }
}

.portfolio-item-premium:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Legacy support - neutralisiere alte tall/wide Klassen */
.portfolio-item-premium.tall,
.portfolio-item-premium.wide {
    grid-row: span 1;
    grid-column: span 1;
}

/* Hidden portfolio items */
.portfolio-item-premium.portfolio-hidden {
    display: none !important;
}

.portfolio-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-premium:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.3) 50%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.portfolio-item-premium:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-premium:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-tag {
    display: inline-block;
    background: var(--primary-cyan);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Multi-Kategorie Tags */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.portfolio-tags .portfolio-tag {
    margin-bottom: 0;
    font-size: 0.65rem;
    padding: 4px 10px;
}

.portfolio-tag-more {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: none;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease 0.1s;
}

.portfolio-item-premium:hover .portfolio-info p {
    max-height: 100px;
    opacity: 1;
}

.portfolio-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--near-black);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.portfolio-item-premium:hover .portfolio-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.portfolio-arrow:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.footer-premium {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-premium .footer-gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(60px);
}

.footer-top {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Weißes Logo im Footer */
    transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-logo {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: none;
}

.footer-logo span {
    color: var(--primary-cyan);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    color: var(--primary-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-cyan);
}

.footer-bottom-premium {
    padding: 2rem 0;
}

.footer-bottom-premium .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-cyan);
}

@media (max-width: 768px) {
    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}

/* ============================================
   RESPONSIVE HERO
   ============================================ */
@media (max-width: 992px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .trusted-logos {
        gap: 2rem;
    }
    
    .logo-item img {
        height: 32px;
        max-width: 100px;
    }
    
    .image-accent {
        bottom: -20px;
        right: 0;
    }
}

/* ============================================
   PAGE HERO (Unterseiten)
   ============================================ */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero .hero-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}

.page-hero .hero-gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-transform: none;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PROCESS GRID
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-item:last-child::after {
    display: none;
}

@media (max-width: 992px) {
    .process-item:nth-child(2)::after,
    .process-item:nth-child(4)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-item::after {
        display: none;
    }
}

.process-number {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.2);
    margin-bottom: 1rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.process-item h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.process-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   TIMELINE MODERN
   ============================================ */
.timeline-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .timeline-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .timeline-modern {
        grid-template-columns: 1fr;
    }
}

.timeline-item-modern {
    position: relative;
}

.timeline-year {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.15);
    margin-bottom: 0.5rem;
}

.timeline-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.timeline-card.featured {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
}

.timeline-card.featured h3,
.timeline-card.featured p {
    color: var(--white);
}

.timeline-card h3 {
    color: var(--near-black);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.timeline-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    color:var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.value-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--near-black);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

.team-info h3 {
    color: var(--near-black);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    text-transform: none;
}

.team-info span {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   CONTACT FORM SIMPLE (NEUES FORMULAR)
   ============================================ */
.contact-form-card {
    background: #FFFFFF !important;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group-simple {
    margin-bottom: 0;
}

.form-group-simple label {
    display: block;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group-simple .form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #FFFFFF;
    color: #1F2937;
    transition: all 0.3s ease;
}

.form-group-simple .form-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group-simple .form-input::placeholder {
    color: #9CA3AF;
}

/* OLD FLOATING LABEL FORM (DEPRECATED) */
.form-group-modern {
    position: relative;
    margin-bottom: 0;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    border: 2px solid #E5E7EB !important;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: #FFFFFF !important;
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder,
.form-group-modern select::placeholder {
    color: transparent !important;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group-modern label {
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    color: #6B7280 !important;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #FFFFFF;
    padding: 0 4px;
    z-index: 1;
}

.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label,
.form-group-modern select:focus + label,
.form-group-modern select:not([value=""]) + label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--primary-cyan) !important;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 12px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.contact-info-item .info-content span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item .info-content p,
.contact-info-item .info-content a {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

.contact-info-item .info-content a:hover {
    color: var(--primary-cyan);
}

.contact-social h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: none;
}

/* Map Section */
.map-section {
    margin-top: -2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 210, 223, 0.2);
}

.faq-item.active {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 30px rgba(0, 210, 223, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black);
    text-align: left;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--primary-cyan);
}

.faq-question:focus {
    outline: none;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-cyan);
    outline-offset: -2px;
}

.faq-question i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-cyan);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-item:hover .faq-question i {
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.2), rgba(138, 43, 226, 0.2));
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.03), rgba(138, 43, 226, 0.03));
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-question i {
        width: 36px;
        height: 36px;
    }
    
    .faq-answer p {
        padding: 1.25rem 1.5rem;
    }
}

/* ============================================
   PORTFOLIO NOTICE
   ============================================ */
.portfolio-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.portfolio-notice .notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.portfolio-notice .notice-content p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.portfolio-notice .notice-content strong {
    color: var(--near-black);
}

@media (max-width: 576px) {
    .portfolio-notice {
        flex-direction: column;
        padding: 1.25rem;
    }
}

/* ============================================
   PORTFOLIO FILTER MODERN
   ============================================ */
.portfolio-filter-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.filter-btn.active {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
}

/* ============================================
   BLOG MODERN STYLES
   ============================================ */

/* Blog Card Featured */
.blog-card-featured {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-card-featured .featured-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.blog-card-featured .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-featured:hover .featured-image img {
    transform: scale(1.05);
}

.blog-card-featured .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-featured .featured-content {
    padding: 2rem;
}

.blog-card-featured h2 {
    color: var(--near-black);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-transform: none;
}

/* Blog Card Modern */
.blog-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.blog-card-modern .blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-modern .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-modern .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-cyan);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-modern .blog-card-content {
    padding: 1.5rem;
}

.blog-card-modern h3 {
    color: var(--near-black);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    text-transform: none;
    line-height: 1.4;
}

.blog-card-modern p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-cyan);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: #0099b8;
}

/* Pagination Modern */
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-modern li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pagination-modern li a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

.pagination-modern li.active a {
    background: var(--primary-cyan);
    color: var(--white);
}

.pagination-modern li.disabled a {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sidebar Modern */
.sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Sticky Sidebar Scrollbar - deaktiviert */
/*
.sticky-sidebar::-webkit-scrollbar {
    width: 4px;
}

.sticky-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 180, 216, 0.3);
    border-radius: 4px;
}

.sticky-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 180, 216, 0.5);
}
*/

.sidebar-widget-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.sidebar-widget-modern h4 {
    color: var(--near-black);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E5E7EB;
    text-transform: none;
}

/* Search Form Modern */
.search-form-modern {
    position: relative;
}

.search-form-modern input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form-modern input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.search-form-modern button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-cyan);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form-modern button:hover {
    background: #0099b8;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.category-list li:last-child a {
    border-bottom: none;
}

.category-list li a:hover {
    color: var(--primary-cyan);
}

.category-list .count {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.popular-post:hover {
    background: #F8FAFC;
}

.popular-post img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post h5 {
    color: var(--near-black);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-transform: none;
    line-height: 1.4;
}

.popular-post span {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 8px 16px;
    background: #F1F5F9;
    border-radius: 100px;
    color: var(--dark-gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%) !important;
    text-align: center;
}

.newsletter-widget h4 {
    color: var(--white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.newsletter-widget .newsletter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.2);
}

.newsletter-widget .newsletter-icon i {
    font-size: 1.8rem;
    color: var(--primary-cyan);
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

/* Newsletter Widget Captcha Styling */
.newsletter-widget .captcha-container {
    margin-bottom: 0.75rem;
}

.newsletter-widget .captcha-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.newsletter-widget .captcha-code {
    padding: 8px 14px;
    font-size: 1rem;
    letter-spacing: 3px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 8px;
    color: var(--primary-cyan);
    font-weight: 700;
}

.newsletter-widget .captcha-refresh {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-widget .captcha-refresh:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
}

.newsletter-widget .captcha-input {
    flex: 0 0 auto;
    min-width: 0;
}

.newsletter-widget .captcha-input input {
    width: 90px;
    padding: 8px 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.newsletter-widget .captcha-input input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0;
    font-size: 0.7rem;
    text-transform: none;
}

.newsletter-widget .captcha-input input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-widget .form-check {
    text-align: left;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
}

.newsletter-widget .form-check-input {
    width: 16px;
    height: 16px;
    margin-left: -1.75rem;
    margin-top: 0.15rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-widget .form-check-input:checked {
    background-color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.newsletter-widget .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.25);
}

.newsletter-widget .form-check-label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem !important;
    line-height: 1.4;
    cursor: pointer;
}

.newsletter-widget .form-check-label a {
    color: var(--primary-cyan) !important;
    text-decoration: underline;
}

.newsletter-widget .form-check-label a:hover {
    color: var(--secondary-magenta) !important;
}

.newsletter-widget .btn-modern {
    width: 100%;
    margin-top: 0.25rem;
}

/* TOC Widget */
.toc-widget .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-widget .toc-list li {
    margin-bottom: 0;
}

.toc-widget .toc-list li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.toc-widget .toc-list li:last-child a {
    border-bottom: none;
}

.toc-widget .toc-list li a:hover {
    color: var(--primary-cyan);
    padding-left: 10px;
}

.toc-widget .toc-list li a.active {
    color: var(--primary-cyan);
    padding-left: 10px;
    font-weight: 600;
    border-bottom-color: var(--primary-cyan);
}

/* ============================================
   BLOG POST ARTICLE STYLES
   ============================================ */

/* Blog Post Hero */
.blog-post-hero .page-hero-content {
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.blog-tag {
    background: rgba(0, 180, 216, 0.2);
    color: var(--primary-cyan);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-post-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.blog-post-info .divider {
    color: rgba(255, 255, 255, 0.3);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Blog Post Article */
.blog-post-article {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.article-featured-image {
    margin: -3rem -3rem 2rem;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post-article .lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-article p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-article h2 {
    color: var(--near-black);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: none;
}

.blog-post-article h3 {
    color: var(--near-black);
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.blog-post-article h4 {
    color: var(--near-black);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.blog-post-article .article-image {
    width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4B5563;
    line-height: 1.6;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
}

.article-quote {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid var(--primary-cyan);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
}

.article-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--near-black);
    margin-bottom: 0.5rem;
}

.article-quote cite {
    color: var(--primary-cyan);
    font-size: 0.95rem;
    font-style: normal;
}

.article-code {
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.article-code .code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #0F172A;
}

.article-code .code-header span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.article-code .copy-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.article-code .copy-btn:hover {
    color: var(--primary-cyan);
}

.article-code pre {
    padding: 1.5rem 20px;
    margin: 0;
    overflow-x: auto;
}

.article-code code {
    color: #E2E8F0;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.article-conclusion {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2.5rem;
}

.article-conclusion h2 {
    color: var(--white);
    margin-top: 0;
}

.article-conclusion p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Author Card */
.author-card {
    display: flex;
    gap: 1.5rem;
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2.5rem;
}

.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-card h4 {
    color: var(--near-black);
    margin-bottom: 0.25rem;
    text-transform: none;
}

.author-card span {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.author-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.share-buttons span {
    color: var(--dark-gray);
    font-weight: 500;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.share-link.facebook { background: #1877F2; }
.share-link.twitter { background: #1DA1F2; }
.share-link.linkedin { background: #0A66C2; }
.share-link.copy { background: var(--near-black); }

.share-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    color: var(--near-black);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: none;
}

@media (max-width: 991px) {
    .blog-post-article {
        padding: 2rem;
    }
    
    .article-featured-image {
        margin: -2rem -2rem 1.5rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-card img {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .blog-card-featured .featured-image {
        height: 250px;
    }
    
    .blog-post-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-info .divider {
        display: none;
    }
}

/* ============================================
   PORTFOLIO DETAIL PAGE
   ============================================ */
.project-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.project-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-cyan);
    transform: translateX(-5px);
}

.project-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.project-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.project-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Project Sections */
.project-section {
    margin-bottom: 4rem;
}

.section-title-modern {
    font-size: 2rem;
    color: var(--near-black);
    margin-bottom: 1.5rem;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.project-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.project-list li:last-child {
    border-bottom: none;
}

.project-list i {
    color: var(--primary-cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-cyan);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.25rem;
    
    margin-bottom: 0.75rem;
    text-transform: none;
}

.solution-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Results Stats */
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Project Testimonial */
.project-testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-cyan);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--near-black);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--near-black);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.25rem;
    color: var(--near-black);
    margin-bottom: 1.5rem;
    text-transform: none;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.info-label i {
    color: var(--primary-cyan);
    font-size: 0.85rem;
}

.info-value {
    color: var(--near-black);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 180, 216, 0.2);
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list i {
    color: var(--primary-cyan);
    font-size: 0.85rem;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Primary Modern Button */
.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}

.btn-primary-modern i {
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover i {
    transform: translateX(5px);
}

.sidebar-cta .btn-primary-modern {
    background: var(--white);
    color: var(--primary-cyan);
}

.sidebar-cta .btn-primary-modern:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .project-hero {
        padding: 100px 0 60px;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 2rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .project-testimonial {
        padding: 2rem;
    }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.service-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-quick-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quick-stat strong {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    font-weight: 700;
}

.quick-stat span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Grid */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-cyan);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-modern i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card-modern h3 {
    font-size: 1.1rem;
    color: var(--near-black);
    margin-bottom: 0.75rem;
    text-transform: none;
}

.feature-card-modern p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Process - Card Stack Design */
/* Bootstrap-Style Timeline - Modern & Clean */
.timeline-process {
    position: relative;
    margin: 4rem auto 0;
    padding: 0;
}

.timeline-process::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 0;
    padding: 2rem 0;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .row {
    position: relative;
}

/* Timeline Dot */
.timeline-dot {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    z-index: 10;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.5);
}

/* Timeline Content Card */
.timeline-content {
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
    border-width: 15px;
}

/* Left side items - arrow pointing left */
.timeline-item:nth-child(odd) .timeline-content::before {
    left: -15px;
    border-color: transparent var(--white) transparent transparent;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.05));
}

/* Right side items - arrow pointing right */
.timeline-item:nth-child(even) .timeline-content::before {
    right: -15px;
    border-color: transparent transparent transparent var(--white);
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.05));
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-cyan);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--near-black);
    margin-bottom: 0.75rem;
    text-transform: none;
    font-weight: 700;
}

.timeline-content > p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-checklist li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--near-black);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-checklist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-checklist li i {
    color: var(--primary-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Timeline Number Badge (optional alternative) */
.timeline-number {
    display: none;
}

/* ============================================
   SEMINAR LAYOUT STYLES
   ============================================ */

/* Sidebar Wrapper mit Sticky */
.seminar-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sidebar Footer / Abschluss */
.sidebar-footer {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border: 2px dashed rgba(0, 180, 216, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: var(--dark-gray);
    margin-top: 0.5rem;
}

.sidebar-footer i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.sidebar-footer span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .seminar-sidebar {
        position: relative;
        top: 0;
    }
}

.seminar-info-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.3);
}

.seminar-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
}

.seminar-info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #fff;
}

.seminar-info-card h3 i {
    margin-right: 0.5rem;
}

.seminar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seminar-info-item:last-of-type {
    border-bottom: none;
}

.seminar-info-item > i {
    width: 40px;
    height: 40px;
    background: rgba(0, 180, 216, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.seminar-info-item div strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.seminar-info-item div span {
    font-size: 1rem;
    font-weight: 500;
}

.seminar-info-item.seminar-price .price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

.seminar-info-item small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}

.trainer-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.trainer-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
}

.trainer-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-cyan);
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-info {
    text-align: center;
}

.trainer-label {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.trainer-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.trainer-title {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.trainer-bio {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.seminar-schedule {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.seminar-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.seminar-schedule h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.seminar-schedule h3 i {
    font-size: 1.25rem;
}

.schedule-timeline {
    position: relative;
    padding-left: 100px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-cyan) 0%, var(--accent-violet) 50%, var(--primary-cyan) 100%);
    border-radius: 3px;
}

.schedule-item {
    position: relative;
    padding: 1rem 0 1rem 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.03) 0%, transparent 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.08) 0%, transparent 100%);
    transform: translateX(5px);
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-time,
.schedule-number {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096c7 100%);
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 180, 216, 0.3);
    line-height: 1.2;
}

.schedule-number {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.5rem;
}

.schedule-content {
    position: relative;
}

.schedule-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--near-black);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}

/* Tag-Trenner für mehrtägige Seminare */
.schedule-day-header {
    margin: 2rem 0 1.5rem -100px;
    padding-left: 100px;
    position: relative;
}

.schedule-day-header::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-violet);
    border-radius: 50%;
    transform: translateY(-50%);
}

.day-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-violet) 0%, #9d4edd 100%);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(114, 9, 183, 0.35);
}

.day-badge::before {
    content: '☀️';
    font-size: 1rem;
}

.schedule-day-header:first-child {
    margin-top: 0;
}

/* Pausen-Styling */
.schedule-item.schedule-pause {
    background: transparent;
    padding: 0.75rem 0 0.75rem 1.5rem;
}

.schedule-item.schedule-pause:hover {
    background: transparent;
    transform: none;
}

.schedule-item.schedule-pause .schedule-content h4 {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-style: italic;
}

.schedule-item.schedule-pause .schedule-content h4 i {
    color: #b5651d;
}

.schedule-item.schedule-pause .schedule-content h4 i.fa-utensils {
    color: #e85d04;
}

.schedule-item.schedule-pause .schedule-time {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    font-size: 0.7rem;
    padding: 0.3rem 0.4rem;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .schedule-timeline {
        padding-left: 0;
    }
    
    .schedule-timeline::before {
        display: none;
    }
    
    .schedule-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
        background: rgba(0, 180, 216, 0.05);
        border-left: 4px solid var(--primary-cyan);
    }
    
    .schedule-item:hover {
        transform: none;
        background: rgba(0, 180, 216, 0.1);
    }
    
    .schedule-time,
    .schedule-number {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: auto;
        display: inline-block;
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
    }
    
    .schedule-day-header {
        margin-left: 0;
        padding-left: 0;
        margin: 1.5rem 0 1rem;
    }
    
    .schedule-day-header::before {
        display: none;
    }
    
    .schedule-item.schedule-pause {
        padding: 0.75rem 1rem;
        background: rgba(0, 0, 0, 0.02);
        border-left-color: var(--dark-gray);
    }
}

.learning-goals {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.learning-goals h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.learning-goals h3 i {
    margin-right: 0.5rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: rgba(0, 180, 216, 0.1);
    transform: translateX(5px);
}

.goal-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.goal-item span {
    font-size: 0.95rem;
    color: var(--near-black);
}

.info-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-box h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box h4 i {
    color: var(--primary-cyan);
}

.info-box p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================
   SEMINAR DATES / TERMINE
   ============================ */
.seminar-dates-section {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.seminar-dates-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.date-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
    border-color: var(--primary-cyan);
}

.date-card-sold-out {
    opacity: 0.7;
}

.date-card-sold-out:hover {
    transform: none;
    border-color: transparent;
}

.date-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.date-badge {
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-cyan);
}

.date-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.date-year {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.date-range-separator {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.5;
}

.date-card-body {
    padding: 1.25rem;
}

.date-info {
    margin-bottom: 1rem;
}

.date-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.date-info-item:last-child {
    border-bottom: none;
}

.date-info-item i {
    width: 20px;
    color: var(--primary-cyan);
    text-align: center;
}

.date-price {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
}

.early-bird-banner {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-old {
    display: block;
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--dark-gray);
    opacity: 0.6;
}

.price-current {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-cyan);
}

.date-card-footer {
    padding: 0 1.25rem 1.25rem;
}

.date-card-footer .btn {
    border-radius: 10px;
    font-weight: 600;
}

/* Responsive Dates */
@media (max-width: 576px) {
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .date-card-header {
        padding: 1rem;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .seminar-dates-section {
        padding: 1.5rem;
    }
}

/* Seminar CTA */
.seminar-cta {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
}

.seminar-cta h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.seminar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
}

.seminar-cta .btn-light {
    background: #fff;
    color: var(--primary-cyan);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.seminar-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .seminar-cta {
        text-align: center;
    }
}

/* Responsive Seminar Styles - Combined */
@media (max-width: 991px) {
    .schedule-timeline {
        padding-left: 80px;
    }
    
    .schedule-timeline::before {
        left: 30px;
    }
    
    .schedule-time,
    .schedule-number {
        left: -80px;
        width: 60px;
        font-size: 0.7rem;
    }
    
    .schedule-day-header {
        margin-left: -80px;
        padding-left: 80px;
    }
    
    .schedule-day-header::before {
        left: 28px;
    }
}

@media (max-width: 576px) {
    .seminar-info-card,
    .seminar-schedule,
    .learning-goals {
        padding: 1.5rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .seminar-schedule h3 {
        font-size: 1.25rem;
    }
}

/* Responsive Timeline */
@media (max-width: 991px) {
    .timeline-process::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -11px;
        right: auto;
        border-right: none;
        border-top: none;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .timeline-content {
        margin-left: 80px;
    }
}

@media (max-width: 576px) {
    .timeline-process::before {
        left: 25px;
    }
    
    .timeline-dot {
        left: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-width: 4px;
    }
    
    .timeline-content {
        margin-left: 70px;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-content > p {
        font-size: 0.9rem;
    }
    
    .timeline-checklist li {
        font-size: 0.9rem;
    }
}

/* Pricing Grid */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--near-black);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.pricing-header p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--near-black);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-cyan);
    font-size: 0.9rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--dark-gray);
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-modern-outline:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-modern {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-logo-wrapper {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.testimonial-company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-company-logo {
    transform: scale(1.05);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--near-black);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-intro {
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}

.faq-intro .section-label {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-intro p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion .faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 180, 216, 0.3);
}

.faq-accordion .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-accordion .faq-question:hover {
    background: rgba(0, 180, 216, 0.05);
}

.faq-accordion .faq-question h3 {
    font-size: 1.1rem;
    color: var(--near-black);
    margin: 0;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-accordion .faq-question i {
    color: var(--primary-cyan);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion .faq-item.active .faq-question {
    background: rgba(0, 180, 216, 0.05);
}

.faq-accordion .faq-item.active .faq-question i,
.faq-accordion .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Bootstrap Collapse kompatible Styles */
.faq-accordion .collapse {
    background: rgba(0, 180, 216, 0.02);
}

.faq-accordion .collapse .faq-answer {
    max-height: none;
    overflow: visible;
}

.faq-accordion .collapsing {
    background: rgba(0, 180, 216, 0.02);
}

.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 180, 216, 0.02);
}

.faq-accordion .faq-item.active .faq-answer {
    max-height: 500px;
}

/* Border unten für geöffnete FAQs */
.faq-accordion .collapse.show .faq-answer,
.faq-accordion .faq-item.active .faq-answer {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
}

.faq-accordion .faq-answer p {
    padding: 1rem 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .faq-intro {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .faq-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .faq-accordion .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-accordion .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-accordion .faq-answer p {
        padding: 0.75rem 1.5rem 1.25rem;
    }
}

/* FAQ Section Background */
.faq-section {
    background: var(--light-gray);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

/* ===================================
   SEO Content Section - 2 Blocks Layout
   =================================== */
.seo-content-section {
    background: var(--white);
    position: relative;
}

.seo-block {
    padding: 2rem 0;
}

.seo-block-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Sticky image effect for desktop - image sticks while text scrolls */
@media (min-width: 992px) {
    .seo-sticky-section {
        overflow: visible !important;
    }
    
    .seo-sticky-section .container,
    .seo-sticky-section .row,
    .seo-sticky-section .col-lg-5,
    .seo-sticky-section .col-lg-7 {
        overflow: visible !important;
    }
    
    .seo-sticky-section .seo-block {
        align-items: stretch !important;
    }
    
    .seo-sticky-section .col-lg-5 {
        display: flex;
        flex-direction: column;
    }
    
    .seo-sticky-image {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

.seo-block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.seo-block-image:hover img {
    transform: scale(1.03);
}

.seo-block-content {
    padding: 0 1.5rem;
}

.seo-block-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;

    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.seo-block-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
}

.seo-block-text p.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--near-black);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.seo-block-text p {
    margin-bottom: 1rem;
}

.seo-block-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.seo-block-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* SEO Block Listen-Styles */
.seo-block-text ul,
.seo-block-text ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.seo-block-text ul {
    list-style: none;
    padding-left: 0;
}

.seo-block-text ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.seo-block-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
}

.seo-block-text ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .seo-block-content {
        padding: 0;
    }
    
    .seo-block-title {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .seo-block {
        padding: 1.5rem 0;
    }
    
    .seo-block-title {
        font-size: 1.4rem;
    }
    
    .seo-block-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .seo-block-text p.lead {
        font-size: 1.1rem;
    }
    
    .seo-block-text h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .seo-block-text h4 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
    }
}

.rounded-lg {
    border-radius: 16px !important;
}

/* Contact Form in Gradient Section */
.bg-gradient-section {
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
}

.cta-content-left {
    color: var(--dark-gray);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.contact-form-card-modern {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Usecase Cards */
.usecase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-cyan);
}

.usecase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.usecase-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.usecase-card h3 {
    font-size: 1.3rem;
    color: var(--near-black);
    margin-bottom: 1rem;
    text-transform: none;
}

.usecase-card > p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.usecase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usecase-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.usecase-features li i {
    color: var(--primary-cyan);
    font-size: 0.9rem;
}

/* Trainer Cards */
.trainer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trainer-image {
    margin-bottom: 1.5rem;
}

.trainer-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.trainer-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.trainer-info h3 {
    font-size: 1.3rem;
    color: var(--near-black);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.trainer-role {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.trainer-info > p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.trainer-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.trainer-skills span {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Captcha Styles */
.captcha-container {
    margin-bottom: 1rem;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.captcha-code {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.25rem;
    user-select: none;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--near-black);
}

.captcha-refresh {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    color: var(--primary-cyan);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
    transform: rotate(180deg);
}

.captcha-input {
    flex: 1;
    min-width: 120px;
}

.captcha-input input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: border-color 0.3s ease;
}

.captcha-input input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: rgba(0,0,0,0.4);
}

.captcha-input input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

/* Dark Mode Captcha */
.captcha-dark .captcha-code {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.captcha-dark .captcha-refresh {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.captcha-dark .captcha-input input {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.captcha-dark .captcha-input input::placeholder {
    color: rgba(255,255,255,0.5);
}

.captcha-dark .captcha-input input:focus {
    border-color: var(--primary-cyan);
}

/* Captcha inside white form card - ensure dark text */
.contact-form-card-modern .captcha-code {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--near-black);
}

.contact-form-card-modern .captcha-refresh {
    border-color: rgba(0,0,0,0.1);
    color: var(--primary-cyan);
    background: transparent;
}

.contact-form-card-modern .captcha-input input {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--near-black);
}

.contact-form-card-modern .captcha-input input::placeholder {
    color: rgba(0,0,0,0.4);
}

.contact-form-card-modern .captcha-input input:focus {
    border-color: var(--primary-cyan);
}

/* Newsletter Captcha Compact */
.newsletter-form .captcha-container {
    margin-bottom: 0.75rem;
}

.newsletter-form .captcha-row {
    gap: 0.5rem;
}

.newsletter-form .captcha-code {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

.newsletter-form .captcha-input input {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid-3 {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .service-detail-hero {
        padding: 100px 0 60px;
    }
    
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-quick-stats {
        gap: 2rem;
    }
    
    .faq-intro {
        position: static;
        margin-bottom: 2rem;
    }
    
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card-modern {
        padding: 2rem;
    }
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ============================================ */

/* Fix für sticky Sidebar - verhindert stretch */
.bg-light .row:has(.sticky-sidebar) {
    align-items: flex-start;
}

.legal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 100px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 0.75rem;
}

.legal-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-cyan);
}

.legal-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.legal-card p + p {
    margin-top: 0.75rem;
}

.legal-card strong {
    color: var(--near-black);
}

.legal-card a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.legal-card a:hover {
    color: var(--secondary-magenta);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
}

.text-primary {
    color: var(--primary-cyan) !important;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-card {
        padding: 1.25rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-consent-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-overlay.hiding {
    opacity: 0;
}

.cookie-consent-banner {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 24px 24px 0 0;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.3);
}

.cookie-consent-overlay.active .cookie-consent-banner {
    transform: translateY(0);
}

.cookie-consent-banner.expanded {
    max-height: 90vh;
}

/* Header */
.cookie-consent-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 180, 216, 0.3);
}

.cookie-icon i {
    font-size: 1.8rem;
    color: var(--primary-cyan);
}

.cookie-consent-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cookie-consent-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Categories */
.cookie-categories {
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 180, 216, 0.3);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-category-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cookie-category-icon.essential {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.cookie-category-icon.statistics {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.cookie-category-icon.marketing {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
}

.cookie-category-icon.external {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.cookie-category-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle-slider {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    top: 2px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle.disabled {
    cursor: default;
}

.cookie-toggle.disabled .cookie-toggle-slider {
    opacity: 0;
    width: 0;
}

.cookie-always-on {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    min-width: 140px;
}

.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00a3c4 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.cookie-btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-save {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Footer */
.cookie-consent-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-consent-footer a:hover {
    color: var(--primary-cyan);
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* Hero Section */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0d0d15 100%);
    overflow: hidden;
}

.landing-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.landing-hero .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.landing-hero .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.landing-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.landing-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

.landing-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
    letter-spacing: 0;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-play-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
}

.landing-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-cyan);
}

.landing-hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--light-gray), transparent);
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem/Solution Section */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.problem-icon.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.problem-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.problem-content p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

.solution-card {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 3rem;
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-transform: none;
}

.solution-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.solution-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.solution-benefits li:last-child {
    border-bottom: none;
}

.solution-benefits li i {
    color: var(--primary-cyan);
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-cyan);
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

/* Landing Services Grid */
.landing-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .landing-services-grid {
        grid-template-columns: 1fr;
    }
}

.landing-service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.landing-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.landing-service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.service-card-content {
    padding: 2rem;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.25rem;
}

.service-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    text-transform: none;
    line-height: 1.3;
}

.service-card-content > p {
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--near-black);
    font-size: 0.95rem;
}

.service-card-features li i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    gap: 0.75rem;
    color: #0891b2;
}

/* Landing Stats Section */
.landing-stats-section {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.landing-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .landing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .landing-stats-grid {
        grid-template-columns: 1fr;
    }
}

.landing-stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number span {
    font-size: 0.6em;
    opacity: 0.8;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Advantage Cards */
.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-cyan);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.advantage-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 180, 216, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    text-transform: none;
    font-weight: 600;
    color: var(--near-black);
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-cyan);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--near-black);
}

/* CTA Section */
.landing-cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.landing-cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.landing-cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding-right: 3rem;
}

.landing-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    text-transform: none;
}

.landing-cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefit-item i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
}

/* Contact Form Card Modern (for landing page) */
.contact-form-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    text-align: center;
    color: var(--near-black);
}

.form-group-modern {
    position: relative;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 1rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: all 0.3s ease;
    color: var(--near-black);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group-modern label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 0.25rem;
}

.form-group-modern textarea ~ label {
    top: 1.25rem;
    transform: none;
}

.form-group-modern input:focus ~ label,
.form-group-modern input:not(:placeholder-shown) ~ label,
.form-group-modern select:focus ~ label,
.form-group-modern select:not([value=""]) ~ label,
.form-group-modern textarea:focus ~ label,
.form-group-modern textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--primary-cyan);
}

.form-group-modern select ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--primary-cyan);
}

/* Captcha in modern form */
.contact-form-card-modern .captcha-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
}

.contact-form-card-modern .captcha-display {
    background: var(--white);
    color: var(--near-black);
    border-color: #e5e7eb;
}

.contact-form-card-modern .captcha-input-wrapper input {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: var(--near-black);
}

.contact-form-card-modern .captcha-input-wrapper input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.contact-form-card-modern .captcha-refresh {
    color: var(--primary-cyan);
    border-color: #e5e7eb;
    background: var(--white);
}

.contact-form-card-modern .captcha-refresh:hover {
    background: var(--primary-cyan);
    color: var(--white);
    border-color: var(--primary-cyan);
}

.contact-form-card-modern .form-check-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.contact-form-card-modern .form-check-label a {
    color: var(--primary-cyan);
}

/* Responsive Landing Page */
@media (max-width: 991px) {
    .landing-hero {
        padding: 120px 0 80px;
    }
    
    .landing-cta-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .cta-benefits {
        align-items: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .landing-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing-hero-shape {
        height: 60px;
    }
    
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .contact-form-card-modern {
        padding: 1.5rem;
    }
    
    .landing-stats-section {
        padding: 3rem 0;
    }
}

.cookie-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.75rem;
}

/* ============================================
   SEO TEXT BLOCKS (Landingpage)
   ============================================ */

/* SEO Section Header - Volle Breite */
.seo-section-header {
    margin-bottom: 2.5rem;
    max-width: 900px;
}

.seo-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    text-transform: none;
    line-height: 1.2;
}

.seo-section-header .section-label {
    margin-bottom: 1rem;
}

.seo-section-header .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0;
    margin-top: 1rem;
}

/* SEO Text Block */
.seo-text-block {
    padding-right: 2rem;
}

.seo-text-block h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    text-transform: none;
}

.seo-text-block .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--near-black);
    margin-bottom: 1.5rem;
}

.seo-text-block p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.seo-text-block p strong {
    color: var(--near-black);
}

.seo-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--near-black);
    font-weight: 500;
}

.highlight-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 10px;
    font-size: 1rem;
}

/* SEO Image Block */
.seo-image-block {
    position: relative;
}

.seo-image-block img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.seo-image-block .image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.image-badge .badge-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.image-badge .badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* SEO Content Grid */
.seo-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 991px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
}

.seo-content-main h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    text-transform: none;
    color: var(--near-black);
}

.seo-content-main h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: none;
    color: var(--near-black);
}

.seo-content-main p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--near-black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-content-main p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* SEO Content Grid Listen-Styles */
.seo-content-main ul,
.seo-content-main ol {
    margin: 1.5rem 0;
    padding-left: 0;
}

.seo-content-main ul {
    list-style: none;
}

.seo-content-main ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.seo-content-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
}

.seo-content-main ol {
    padding-left: 1.5rem;
}

.seo-content-main ol li {
    margin-bottom: 0.875rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.seo-content-main p strong {
    color: var(--near-black);
}

/* SEO Sidebar */
.seo-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: var(--white);
    border: none;
}

.sidebar-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: none;
}

.sidebar-box h4 i {
    color: var(--primary-cyan);
}

.sidebar-box.highlight h4 i {
    color: var(--primary-cyan);
}

.sidebar-box p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.sidebar-box.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-box p strong {
    color: var(--near-black);
}

.sidebar-box.highlight p strong {
    color: var(--white);
}

.sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    gap: 0.75rem;
    color: #0dd9ff;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--near-black);
    font-size: 0.95rem;
}

.location-list li i {
    color: var(--primary-cyan);
    width: 20px;
    text-align: center;
}

/* Responsive SEO Blocks */
@media (max-width: 991px) {
    .seo-section-header {
        margin-bottom: 2rem;
    }
    
    .seo-text-block {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .seo-image-block .image-badge {
        right: 20px;
        bottom: -15px;
        padding: 1rem 1.25rem;
    }
    
    .image-badge .badge-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .seo-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   ROI CALCULATOR MODAL
   ============================================ */

/* ROI Button in Sidebar */
.btn-roi-calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1.25rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-roi-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.btn-roi-calculator i {
    font-size: 1.1rem;
}

/* Modal Styles */
.roi-modal {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 24px;
    overflow: hidden;
}

.roi-modal .modal-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.roi-modal .modal-title {
    color: var(--white);
    font-size: 1.35rem;
    margin: 0;
    text-transform: none;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.btn-close-modal {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.roi-modal .modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* ROI Input Sections */
.roi-input-section {
    margin-bottom: 2rem;
}

.roi-input-section h6 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: none;
}

.roi-input-section h6 i {
    color: var(--primary-cyan);
}

.roi-input-group {
    margin-bottom: 1rem;
}

.roi-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.roi-input-group small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.input-with-unit {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-with-unit:focus-within {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.input-with-unit input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.input-with-unit input:focus {
    outline: none;
}

.input-with-unit .unit {
    padding: 0.875rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Range Slider */
.range-slider-wrapper {
    padding: 0.5rem 0;
}

.range-slider-wrapper input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}

.range-slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
    transition: transform 0.2s ease;
}

.range-slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-slider-wrapper input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.range-value {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 1rem;
}

/* Calculate Button */
.btn-calculate-roi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-calculate-roi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}

/* ROI Results */
.roi-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.roi-results-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.roi-results-header i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.roi-results-header h6 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    text-transform: none;
}

.roi-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .roi-results-grid {
        grid-template-columns: 1fr;
    }
}

.roi-result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roi-result-card.highlight {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-color: rgba(0, 180, 216, 0.3);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.result-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.result-icon.cyan {
    background: rgba(0, 180, 216, 0.15);
    color: var(--primary-cyan);
}

.result-icon.gold {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.result-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.result-content {
    flex: 1;
}

.result-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.result-value {
    display: block;
    color: var(--white);
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.result-unit {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* ROI Summary */
.roi-summary {
    margin-top: 1.5rem;
}

.roi-summary .summary-positive {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.roi-summary .summary-positive i {
    margin-right: 0.5rem;
}

.roi-summary .summary-positive strong {
    color: #10b981;
}

.roi-summary .summary-neutral {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.roi-summary .summary-neutral i {
    margin-right: 0.5rem;
}

/* ROI CTA */
.roi-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.roi-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.roi-cta .btn-hero-primary {
    display: inline-flex;
}

/* Modal Responsive */
@media (max-width: 767px) {
    .roi-modal .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .roi-modal .modal-body {
        padding: 1.5rem;
    }
    
    .roi-modal .modal-title {
        font-size: 1.15rem;
    }
    
    .result-value {
        font-size: 1.25rem;
    }
}

/* Settings Button (floating) */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border: 2px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-cyan);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 6px 25px rgba(0, 180, 216, 0.3);
}

.cookie-settings-btn:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Cookie Settings Label (Mouseover) */
.cookie-settings-label {
    position: absolute;
    right: 60px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.cookie-settings-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.cookie-settings-btn:hover .cookie-settings-label,
.cookie-settings-btn:focus .cookie-settings-label {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 576px) {
    .cookie-consent-banner {
        padding: 1.25rem;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
    }

    .cookie-consent-header h3 {
        font-size: 1.15rem;
    }

    .cookie-consent-header p {
        font-size: 0.85rem;
    }
    
    .cookie-icon {
        width: 50px;
        height: 50px;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cookie-toggle {
        align-self: flex-end;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-btn {
        min-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .cookie-settings-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
        font-size: 1rem;
    }
    
    .cookie-settings-label {
        display: none;
    }
}

/* ============================================
   JOB DETAIL HERO STYLES
   ============================================ */

.job-detail-hero .page-hero-content {
    text-align: center;
}

.job-hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.job-detail-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-detail-hero .hero-badge:hover {
    background: rgba(0, 180, 216, 0.25);
    transform: translateY(-2px);
}

.job-detail-hero .hero-badge-featured {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
}

.job-detail-hero .hero-badge-featured:hover {
    background: rgba(255, 193, 7, 0.3);
}

.job-detail-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.job-detail-hero .hero-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.job-detail-hero .hero-subtitle .badge {
    font-size: 0.85rem;
    padding: 6px 14px;
    font-weight: 500;
}

.job-detail-hero .job-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.job-detail-hero .hero-breadcrumb {
    margin-top: 1rem;
}

.job-detail-hero .breadcrumb-light {
    justify-content: center;
}

.job-detail-hero .breadcrumb-light .breadcrumb-item,
.job-detail-hero .breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.job-detail-hero .breadcrumb-light .breadcrumb-item a:hover {
    color: var(--primary-cyan);
}

.job-detail-hero .breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.4);
}

.job-detail-hero .breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-detail-hero .hero-subtitle {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-hero-meta {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   BREADCRUMB SECTION - Modern Card Style
   ============================================ */
.breadcrumb-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.03), rgba(139, 92, 246, 0.03));
}

.breadcrumb-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-bg, #fff);
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.breadcrumb-card .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-card .breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-card .breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color, #1a1a2e);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    transition: all 0.2s;
    font-weight: 500;
}

.breadcrumb-card .breadcrumb-item a:hover {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary-cyan, #00b4d8);
}

.breadcrumb-card .breadcrumb-item.active {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-cyan, #00b4d8);
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 2rem;
}

.breadcrumb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    color: var(--primary-cyan, #00b4d8);
}

.breadcrumb-card .breadcrumb-item + .breadcrumb-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0.5rem;
    border-right: 2px solid var(--primary-cyan, #00b4d8);
    border-top: 2px solid var(--primary-cyan, #00b4d8);
    transform: rotate(45deg);
    opacity: 0.5;
}

.breadcrumb-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-muted, #64748b);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2rem;
    transition: all 0.2s;
}

.breadcrumb-back:hover {
    color: var(--primary-cyan, #00b4d8);
    background: rgba(0, 180, 216, 0.08);
}

@media (max-width: 768px) {
    .breadcrumb-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumb-card .breadcrumb-item span:not(.breadcrumb-icon) {
        display: none;
    }
    
    .breadcrumb-card .breadcrumb-item.active span:not(.breadcrumb-icon) {
        display: inline;
    }
    
    .breadcrumb-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Breadcrumb Dark Mode */
[data-theme="dark"] .breadcrumb-section,
.dark-mode .breadcrumb-section {
    background: rgba(0, 180, 216, 0.03);
}

[data-theme="dark"] .breadcrumb-card,
.dark-mode .breadcrumb-card {
    background: rgba(30, 30, 50, 0.6);
    border-color: rgba(0, 180, 216, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .breadcrumb-card .breadcrumb-item a,
.dark-mode .breadcrumb-card .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .breadcrumb-card .breadcrumb-item a:hover,
.dark-mode .breadcrumb-card .breadcrumb-item a:hover {
    background: rgba(0, 180, 216, 0.15);
    color: var(--primary-cyan, #00b4d8);
}

[data-theme="dark"] .breadcrumb-card .breadcrumb-item.active,
.dark-mode .breadcrumb-card .breadcrumb-item.active {
    color: #fff;
    background: rgba(0, 180, 216, 0.2);
}

[data-theme="dark"] .breadcrumb-back,
.dark-mode .breadcrumb-back {
    color: rgba(255, 255, 255, 0.6);
}
