/*******************************************************************
*
*   BU YAZILIM "aCadir" TARAFINDAN KODLANMISTIR.
*   PHP8 - SQLITE - HTML - CSS - JS
*
*   2015 - 2026                          aCadir@gmail.com
********************************************************************/

/* ====================================================
   FROM: _inc_ust.html
   ==================================================== */

:root {
            --brand-navy: #1a4731;
            --brand-navy-dark: #0f2d1e;
            --brand-navy-light: #1e5c3c;
            --brand-blue: #16a34a;
            --brand-blue-accent: #22c55e;
            --brand-blue-light: #f0fdf4;
            --brand-gold: #f59e0b;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border-color: #e2e8f0;
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --shadow-card: 0 4px 20px rgba(26, 71, 49, 0.06);
            --shadow-hover: 0 16px 36px rgba(22, 163, 74, 0.16);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
            color: var(--brand-navy);
            font-weight: 700;
        }

        img, iframe, video {
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .container {
            width: 100%;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 16px;
            }
        }

        /* Top Header Bar - Hidden for sleek floating pill header */
        .ust-topbar {
            display: none !important;
        }

        /* ====================================================
           FLOATING PILL NAVBAR (Dribbble Glassmorphism Style)
           ==================================================== */
        .ust-navbar-wrap {
            position: sticky;
            top: 20px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            padding: 0 20px;
            margin-bottom: -86px;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        .ust-navbar-wrap .container {
            max-width: 1140px;
            padding: 0;
        }
        .navbar-flex {
            position: relative;
            background: rgba(15, 45, 30, 0.78);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 9999px;
            height: 64px;
            padding: 6px 14px 6px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
            pointer-events: auto;
            transition: all 0.3s ease;
        }

        /* Brand Logo */
        .site-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0;
            flex-shrink: 0;
        }
        .site-brand img {
            max-height: 34px;
            width: auto;
            display: block;
            object-fit: contain;
            transition: opacity 0.2s ease;
        }
        .site-brand:hover img {
            opacity: 0.9;
        }

        /* Navigation Links Wrap */
        .navbar-nav-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            min-width: 0;
        }

        /* Navigation Links */
        .navbar-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
            gap: 6px;
            height: 64px;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
        }
        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14.5px;
            font-weight: 600;
            letter-spacing: 0.1px;
            padding: 8px 16px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .nav-link:hover,
        .nav-item.active > .nav-link,
        .nav-item.dropdown:hover > .nav-link {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.12);
        }
        .nav-link::after { display: none !important; }
        .nav-caret {
            font-size: 10px;
            opacity: 0.65;
            transition: transform 0.2s ease;
        }
        .nav-item.dropdown:hover .nav-caret {
            transform: rotate(180deg);
        }

        /* Dropdown Menu (Floating Dark Glassmorphism) */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 230px;
            background: rgba(15, 45, 30, 0.96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 18px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 1050;
        }
        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-item a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            font-size: 13.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: all 0.15s ease;
        }
        .dropdown-item a:hover {
            color: #86efac;
            background: rgba(255, 255, 255, 0.08);
            padding-left: 24px;
        }

        /* Right Actions Container */
        .navbar-right-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        /* Unified Language Switcher */
        .lang-switcher {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            background: rgba(255, 255, 255, 0.08);
            padding: 3px 6px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.14);
        }
        .lang-link {
            color: rgba(255, 255, 255, 0.65);
            font-size: 11.5px;
            font-weight: 700;
            padding: 4px 9px;
            border-radius: 14px;
            text-decoration: none !important;
            transition: all 0.2s ease;
        }
        .lang-link:hover, .lang-link.active {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.22);
        }

        /* Mobile Toggle Button */
        .mobile-toggle {
            display: none;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            width: 40px;
            height: 40px;
            font-size: 17px;
            border-radius: 50%;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Mobile Drawer */
        @keyframes mobileDrawerSlide {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .ust-navbar-wrap {
                top: 12px;
                padding: 0 12px;
                margin-bottom: -70px;
            }
            .navbar-flex {
                height: 54px;
                padding: 4px 10px 4px 18px;
            }
            .site-brand img { max-height: 28px; }
            .lang-link { font-size: 11px; padding: 3px 7px; }
            .mobile-toggle { display: inline-flex; }
            .navbar-nav-wrap {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                width: 100%;
                background: rgba(15, 45, 30, 0.98);
                backdrop-filter: blur(24px);
                -webkit-backdrop-filter: blur(24px);
                border: 1px solid rgba(255, 255, 255, 0.16);
                border-radius: 24px;
                padding: 18px 18px 22px 18px;
                box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
                max-height: calc(100vh - 85px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                z-index: 999;
            }
            .navbar-nav-wrap.show {
                display: block !important;
                animation: mobileDrawerSlide 0.22s ease-out forwards;
            }
            .navbar-nav {
                flex-direction: column;
                height: auto;
                align-items: stretch;
                gap: 6px;
            }
            .nav-item { height: auto; width: 100%; }
            .nav-link {
                height: auto;
                padding: 12px 16px;
                border-radius: 12px;
                color: #ffffff;
                background: rgba(255, 255, 255, 0.06);
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 14.5px;
            }
            .nav-link:hover, .nav-item.active > .nav-link {
                background: rgba(255, 255, 255, 0.14);
                color: #86efac;
            }
            .dropdown-menu {
                display: none;
                position: static;
                transform: none;
                box-shadow: none;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-left: 3px solid var(--brand-blue-accent);
                border-radius: 12px;
                background: rgba(0, 0, 0, 0.2);
                margin: 6px 0 8px 12px;
                padding: 6px 0;
                min-width: 0;
                opacity: 1;
                visibility: visible;
            }
            .nav-item.dropdown.open .dropdown-menu {
                display: block;
            }
            .nav-item.dropdown.open .nav-caret {
                transform: rotate(180deg);
            }
        }

        @media (max-width: 480px) {
            .ust-navbar-wrap {
                top: 8px;
                padding: 0 8px;
                margin-bottom: -64px;
            }
            .navbar-flex {
                height: 50px;
                padding: 4px 8px 4px 14px;
                gap: 8px;
            }
            .site-brand img { max-height: 25px; }
            .navbar-right-actions { gap: 6px; }
            .lang-switcher { padding: 2px 4px; gap: 1px; }
            .lang-link { font-size: 10px; padding: 3px 5px; }
            .mobile-toggle { width: 36px; height: 36px; font-size: 15px; }
            .navbar-nav-wrap {
                top: 56px;
                padding: 14px;
                border-radius: 18px;
            }
        }


/* ====================================================
   FROM: _inc_alt.html
   ==================================================== */

.alt-footer {
        background-color: var(--brand-navy);
        color: #94a3b8;
        padding-top: 70px;
        border-top: 3px solid var(--brand-blue-accent);
        margin-top: auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }
    .footer-col h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 32px;
        height: 2.5px;
        background: var(--brand-blue-accent);
    }
    .footer-col p {
        font-size: 13.5px;
        line-height: 1.7;
        color: #cbd5e1;
    }
    .footer-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(71, 160, 202, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(71, 160, 202, 0.3);
        padding: 6px 12px;
        border-radius: var(--radius-xs);
        font-size: 11.5px;
        font-weight: 700;
        margin-top: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-links a {
        color: #cbd5e1;
        font-size: 13.5px;
        font-weight: 600;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .footer-links a:hover {
        color: #ffffff;
        transform: translateX(4px);
    }
    .footer-links a i {
        color: var(--brand-blue-accent);
        font-size: 10px;
    }
    .footer-contact-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
    }
    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.5;
        color: #cbd5e1;
    }
    .footer-contact-list li i {
        color: var(--brand-blue-accent);
        margin-top: 3px;
        width: 16px;
        flex-shrink: 0;
    }
    .footer-social-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }
    .footer-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff !important;
        font-size: 14px;
        transition: all 0.25s ease;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .footer-social-link:hover {
        background: var(--brand-blue-accent);
        border-color: var(--brand-blue-accent);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(71, 160, 202, 0.4);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 24px 0;
        font-size: 13px;
        color: #94a3b8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
    }
    .footer-bottom a { color: #cbd5e1; font-weight: 500; }
    .footer-bottom a:hover { color: #ffffff; }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 16px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }
    .footer-bottom-links li {
        display: inline-flex;
        align-items: center;
    }
    .footer-bottom-links li:not(:last-child)::after {
        content: "•";
        margin-left: 16px;
        color: rgba(255, 255, 255, 0.25);
        font-size: 10px;
    }
    .footer-bottom-links a {
        color: #94a3b8;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-bottom-links a:hover {
        color: var(--brand-blue-accent);
    }

    /* =========================================================
       SLICK FLOATING ACTION BUTTONS (WHATSAPP & CALL)
       ========================================================= */
    .slick-floating-wrap {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
    }
    .slick-btn {
        display: flex;
        align-items: center;
        background: #ffffff;
        border-radius: 50px;
        padding: 6px 16px 6px 6px;
        width: 195px;
        box-sizing: border-box;
        box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        text-decoration: none !important;
    }
    .slick-btn:hover {
        transform: scale(1.06) translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }
    .slick-btn-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 20px;
        flex-shrink: 0;
    }
    .slick-btn-text {
        margin-left: 10px;
        font-size: 12.5px;
        font-weight: 700;
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
    .slick-btn-label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.7;
    }
    /* WhatsApp */
    .slick-whatsapp {
        border: 2px solid #25d366;
    }
    .slick-whatsapp .slick-btn-icon {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }
    .slick-whatsapp .slick-btn-text {
        color: #128c7e;
    }
    /* Telefon */
    .slick-phone {
        border: 2px solid var(--brand-blue-accent);
    }
    .slick-phone .slick-btn-icon {
        background: linear-gradient(135deg, var(--brand-blue-accent) 0%, var(--brand-navy) 100%);
    }
    .slick-phone .slick-btn-text {
        color: var(--brand-navy);
    }

    @media (max-width: 992px) {
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    }
    @media (max-width: 600px) {
        .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .footer-bottom-links { justify-content: center; gap: 12px; }
        .footer-bottom-links li:not(:last-child)::after { margin-left: 12px; }
        .slick-btn-text { display: none; }
        .slick-btn { width: auto; padding: 4px; border-radius: 50%; }
        .slick-floating-wrap { bottom: 18px; right: 18px; gap: 10px; }
    }


/* ====================================================
   FROM: anasayfa.html
   ==================================================== */

/* =========================================================
       HERO VIDEO BACKGROUND SECTION (Consulting & Modern Video)
       ========================================================= */
    .hero-video-wrap {
        position: relative;
        width: 100%;
        min-height: 75vh;
        overflow: hidden;
        background: linear-gradient(135deg, #0f2d1e 0%, #1a4731 60%, #1e5c3c 100%);
        display: flex;
        align-items: center;
        border-bottom: 3px solid var(--brand-blue-accent);
    }
    .hero-poster-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: 1;
        opacity: 0.75;
    }
    .hero-video-wrap.video-playing .hero-poster-bg {
        display: none !important;
        opacity: 0;
        pointer-events: none;
    }
    .video-bg-container {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none !important;
        user-select: none;
        z-index: 2;
        overflow: hidden;
        opacity: 0.75;
        filter: brightness(0.9) saturate(1.1);
    }
    .video-bg-container .mbYTP_wrapper,
    .video-bg-container .playerBox,
    .video-bg-container iframe {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100vw !important;
        height: 56.25vw !important; /* 16:9 oran */
        min-height: 100% !important;
        min-width: 177.77vh !important; /* 16:9 oran */
        transform: translate(-50%, -50%) scale(1.15) !important;
        transform-origin: center center !important;
        pointer-events: none !important;
        border: none !important;
        max-width: none !important;
    }

    @media (max-width: 980px) {
        .hero-video-wrap {
            min-height: 560px;
        }
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(15, 45, 30, 0.88) 0%, rgba(26, 71, 49, 0.72) 55%, rgba(30, 92, 60, 0.45) 100%);
        z-index: 2;
    }
    .hero-content {
        position: relative;
        z-index: 3;
        max-width: 820px;
        padding: 80px 0;
        color: #ffffff;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(34, 197, 94, 0.18);
        border: 1px solid rgba(34, 197, 94, 0.4);
        color: #86efac;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
        backdrop-filter: blur(4px);
    }
    .hero-title {
        font-size: 46px;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -0.5px;
        color: #ffffff;
        margin-bottom: 18px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .hero-title span {
        color: #86efac;
    }
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.7;
        color: #e2e8f0;
        margin-bottom: 35px;
        max-width: 720px;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
    .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .btn-hero-primary {
        background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-navy-light) 100%);
        color: #ffffff !important;
        font-size: 14.5px;
        font-weight: 700;
        padding: 14px 34px;
        border-radius: var(--radius-xs);
        box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s ease;
    }
    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(22, 163, 74, 0.55);
    }
    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff !important;
        font-size: 14.5px;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: var(--radius-xs);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(4px);
        transition: all 0.25s ease;
    }
    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #ffffff;
    }
    .btn-hero-whatsapp {
        background-color: #25d366 !important;
        border: 1px solid #20ba59 !important;
        color: #ffffff !important;
        font-size: 14.5px;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: var(--radius-xs);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
        transition: all 0.25s ease;
    }
    .btn-hero-whatsapp i {
        font-size: 1.25rem;
    }
    .btn-hero-whatsapp:hover,
    .hero-wp-btn:hover {
        background-color: #20ba59 !important;
        border-color: #1ea951 !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.52) !important;
        color: #ffffff !important;
    }

    /* Quick Stats Bar */
    .hero-stats-bar {
        position: relative;
        z-index: 4;
        margin-top: -45px;
        margin-bottom: 50px;
    }
    .stats-card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        background: #ffffff;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 30px rgba(15, 45, 30, 0.08);
        border: 1px solid var(--border-color);
        padding: 26px 30px;
    }
    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        border-right: 1px solid var(--border-color);
        padding-right: 14px;
    }
    .stat-item:last-child {
        border-right: none;
        padding-right: 0;
    }
    .stat-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-sm);
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }
    .stat-number {
        font-size: 26px;
        font-weight: 900;
        color: var(--brand-navy);
        line-height: 1;
        margin-bottom: 4px;
    }
    .stat-label {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text-muted);
        line-height: 1.3;
    }

    /* Section Headers */
    .section-header-center {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px auto;
    }
    .section-subtitle {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--brand-blue-accent);
        margin-bottom: 8px;
        display: inline-block;
    }
    .section-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.25;
        letter-spacing: -0.5px;
    }
    .section-desc {
        font-size: 15.5px;
        color: var(--text-muted);
        margin-top: 10px;
    }

    /* Core Services Grid (Alternativkraft & Consulting style) */
    .services-section {
        padding: 60px 0 80px 0;
        background: #f8fafc;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .service-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 34px 28px;
        box-shadow: var(--shadow-card);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-blue-accent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: #cbd5e1;
    }
    .service-card:hover::before {
        opacity: 1;
    }
    .service-icon-box {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-sm);
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 22px;
        transition: all 0.3s ease;
    }
    .service-card:hover .service-icon-box {
        background: var(--brand-blue-accent);
        color: #ffffff;
        transform: scale(1.05);
    }
    .service-card-title {
        font-size: 19px;
        font-weight: 800;
        margin-bottom: 12px;
        color: var(--brand-navy);
    }
    .service-card-desc {
        font-size: 14px;
        color: #64748b;
        line-height: 1.65;
        margin-bottom: 20px;
        flex: 1;
    }
    .service-card-link {
        color: var(--brand-blue);
        font-size: 13.5px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .service-card:hover .service-card-link {
        color: var(--brand-blue-accent);
        gap: 10px;
    }

    /* Featured Jobs Section */
    .home-jobs-section {
        padding: 80px 0;
        background: #ffffff;
    }
    .home-jobs-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .home-job-item {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        box-shadow: var(--shadow-card);
        transition: all 0.25s ease;
    }
    .home-job-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: #94a3b8;
    }
    .home-job-info h3 {
        font-size: 19px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 6px;
    }
    .home-job-meta {
        display: flex;
        gap: 16px;
        font-size: 13px;
        color: #64748b;
        flex-wrap: wrap;
    }

    /* Consultation Banner */
    .consult-banner {
        background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
        border-radius: var(--radius-lg);
        padding: 50px 45px;
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        margin: 60px 0;
        box-shadow: 0 14px 35px rgba(15, 45, 30, 0.15);
    }
    .consult-banner h3 {
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 10px;
    }
    .consult-banner p {
        color: #cbd5e1;
        font-size: 15.5px;
        max-width: 620px;
    }

    @media (max-width: 950px) {
        .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .hero-title { font-size: 34px; }
        .stats-card-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
        .stat-item { border-right: none; }
        .consult-banner { flex-direction: column; text-align: center; }
        .home-job-item { flex-direction: column; align-items: stretch; }
    }
    @media (max-width: 600px) {
        .services-grid { grid-template-columns: 1fr; }
        .hero-title { font-size: 28px; }
        .stats-card-grid { grid-template-columns: 1fr; }
    }


/* ====================================================
   FROM: sablon_genel.html
   ==================================================== */

.page-hero {
        position: relative;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        border-bottom: 3px solid var(--brand-blue-accent);
        color: #ffffff;
        padding: 60px 0;
        margin-bottom: 45px;
    }
    .page-hero-bg {
        position: absolute;
        inset: -15px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(4px) brightness(0.85);
        -webkit-filter: blur(4px) brightness(0.85);
        transform: scale(1.04);
        z-index: 1;
    }
    .page-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15, 45, 30, 0.82) 0%, rgba(26, 71, 49, 0.65) 100%);
        z-index: 2;
    }
    .page-hero .container {
        position: relative;
        z-index: 3;
    }
    .page-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .page-breadcrumb a { color: #cbd5e1; font-weight: 500; }
    .page-breadcrumb a:hover { color: #ffffff; }
    .page-breadcrumb i { font-size: 11px; opacity: 0.7; }
    .page-title {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: -0.6px;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    }
    .page-lead {
        font-size: 16.5px;
        color: #e2e8f0;
        margin-top: 10px;
        max-width: 820px;
        line-height: 1.6;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .page-container {
        padding-bottom: 70px;
    }
    .page-content-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 45px;
        box-shadow: var(--shadow-sm);
    }
    .page-featured-img-wrap {
        width: 100%;
        max-height: 480px;
        overflow: hidden;
        border-radius: var(--radius-md);
        margin-bottom: 35px;
        box-shadow: var(--shadow-sm);
        background: #f1f5f9;
        display: block;
        position: relative;
    }
    .page-featured-img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }
    .page-featured-img-wrap:hover .page-featured-img {
        transform: scale(1.02);
    }
    .page-body-text {
        font-size: 16px;
        line-height: 1.85;
        color: #334155;
    }
    .page-body-text p { margin-bottom: 20px; }
    .page-body-text h2, .page-body-text h3 {
        color: var(--brand-navy);
        margin: 32px 0 16px 0;
        font-weight: 800;
        letter-spacing: -0.3px;
    }
    .page-body-text ul, .page-body-text ol {
        margin: 16px 0 24px 24px;
    }
    .page-body-text li {
        margin-bottom: 8px;
    }
    .page-body-text blockquote {
        border-left: 4px solid var(--brand-blue-accent);
        padding: 14px 20px;
        margin: 24px 0;
        background: #f8fafc;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-style: italic;
        color: #475569;
    }
    .page-info-box {
        margin-top: 35px;
        padding: 22px 26px;
        background: #f8fafc;
        border-left: 4px solid var(--brand-blue-accent);
        border-radius: var(--radius-sm);
        font-size: 14.5px;
        color: #334155;
    }
    .page-info-box p { margin-bottom: 6px; }
    .page-info-box p:last-child { margin-bottom: 0; }

    /* Gallery Grid Section */
    .page-gallery-section {
        margin-top: 45px;
        padding-top: 35px;
        border-top: 1px solid #e2e8f0;
    }
    .page-gallery-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .page-gallery-title i {
        color: var(--brand-blue-accent);
    }
    .page-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }
    .gallery-item-card {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-sm);
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        aspect-ratio: 4 / 3;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: all 0.3s ease;
    }
    .gallery-item-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        border-color: var(--brand-blue-accent);
    }
    .gallery-item-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }
    .gallery-item-card:hover img {
        transform: scale(1.06);
    }
    .gallery-item-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 22px;
        transition: opacity 0.3s ease;
    }
    .gallery-item-card:hover .gallery-item-overlay {
        opacity: 1;
    }
    .gallery-item-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        color: #ffffff;
        font-size: 12.5px;
        padding: 12px 10px 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Verwandte Aktivitäten Section */
    .page-activities-section {
        margin-top: 50px;
        padding-top: 35px;
        border-top: 1px solid #e2e8f0;
    }
    .page-activities-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .page-activities-title i {
        color: var(--brand-blue-accent);
    }
    .page-activities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
        gap: 24px;
    }
    .activity-sub-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
    }
    .activity-sub-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
        border-color: var(--brand-blue-accent);
    }
    .activity-sub-thumb {
        height: 170px;
        position: relative;
        overflow: hidden;
        background: #e2e8f0;
    }
    .activity-sub-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .activity-sub-card:hover .activity-sub-thumb img {
        transform: scale(1.05);
    }
    .activity-sub-body {
        padding: 18px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .activity-sub-tag {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--brand-blue-accent);
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    .activity-sub-name {
        font-size: 16px;
        font-weight: 800;
        color: #1e293b;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    .activity-sub-desc {
        font-size: 13.5px;
        color: #64748b;
        line-height: 1.55;
        margin-bottom: 14px;
        flex: 1;
    }
    .activity-sub-link {
        font-size: 13px;
        font-weight: 700;
        color: var(--brand-blue-accent);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
    }
    .activity-sub-card:hover .activity-sub-link {
        color: var(--brand-blue-accent);
    }

    @media (max-width: 768px) {
        .page-content-card { padding: 25px 20px; }
        .page-title { font-size: 26px; }
        .page-hero { padding: 40px 0; }
        .page-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .page-activities-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
        .page-gallery-grid { grid-template-columns: 1fr; }
        .page-title { font-size: 22px; }
    }


/* ====================================================
   FROM: sablon_ilan.html
   ==================================================== */

.jobs-hero {
        position: relative;
        background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 60%, var(--brand-navy-light) 100%);
        color: #ffffff;
        padding: 60px 0;
        border-bottom: 3px solid var(--brand-blue-accent);
    }
    .jobs-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .jobs-breadcrumb a { color: #cbd5e1; }
    .jobs-breadcrumb a:hover { color: #ffffff; }
    .jobs-title {
        font-size: 36px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
    }
    .jobs-lead {
        font-size: 16px;
        color: #cbd5e1;
        margin-top: 10px;
        max-width: 780px;
        line-height: 1.6;
    }

    .jobs-section {
        padding: 50px 0 80px 0;
    }

    /* Live Search & Filter Bar */
    .jobs-filter-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px;
        box-shadow: var(--shadow-card);
        margin-bottom: 40px;
    }
    .filter-grid {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1fr;
        gap: 16px;
        align-items: center;
    }
    .filter-input-wrap {
        position: relative;
    }
    .filter-input-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        font-size: 15px;
    }
    .filter-input {
        width: 100%;
        padding: 12px 14px 12px 42px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-xs);
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: all 0.2s ease;
    }
    .filter-input:focus {
        border-color: var(--brand-blue-accent);
        box-shadow: 0 0 0 3px rgba(71, 160, 202, 0.15);
    }
    .filter-select {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-xs);
        font-size: 14px;
        font-family: inherit;
        outline: none;
        background: #ffffff;
        cursor: pointer;
    }
    .filter-select:focus {
        border-color: var(--brand-blue-accent);
    }
    .filter-badge-bar {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px dashed var(--border-color);
    }
    .filter-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        background: #f1f5f9;
        color: var(--brand-navy);
        cursor: pointer;
        border: 1px solid transparent;
        transition: all 0.15s ease;
    }
    .filter-pill:hover, .filter-pill.active {
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        border-color: var(--brand-blue-accent);
    }

    /* Job Card Item */
    .job-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 28px;
        margin-bottom: 20px;
        box-shadow: var(--shadow-card);
        transition: all 0.25s ease;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
    }
    .job-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: #cbd5e1;
    }
    .job-card-main {
        flex: 1;
    }
    .job-badge-wrap {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .job-badge {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 3px 10px;
        border-radius: var(--radius-xs);
    }
    .badge-sector {
        background: #e0f2fe;
        color: #0369a1;
    }
    .badge-city {
        background: #f1f5f9;
        color: #475569;
    }
    .job-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 10px;
    }
    .job-title a:hover {
        color: var(--brand-blue-accent);
    }
    .job-desc {
        font-size: 14.5px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .job-meta-row {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 13px;
        color: #64748b;
        flex-wrap: wrap;
    }
    .job-meta-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .job-meta-item i {
        color: var(--brand-blue-accent);
    }
    .job-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 170px;
    }
    .btn-job-detail {
        background: var(--brand-navy);
        color: #ffffff !important;
        text-align: center;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 700;
        border-radius: var(--radius-xs);
        transition: all 0.2s ease;
    }
    .btn-job-detail:hover {
        background: var(--brand-blue);
    }
    .btn-job-apply {
        background: #25d366;
        color: #ffffff !important;
        text-align: center;
        padding: 9px 16px;
        font-size: 12.5px;
        font-weight: 700;
        border-radius: var(--radius-xs);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.2s ease;
    }
    .btn-job-apply:hover {
        background: #1eb956;
    }

    /* Single Job Detail View */
    .job-detail-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-card);
    }
    .job-detail-content {
        margin-top: 25px;
        font-size: 15.5px;
        line-height: 1.8;
        color: #334155;
    }
    .job-detail-content h3 {
        font-size: 20px;
        font-weight: 800;
        margin: 25px 0 12px 0;
        color: var(--brand-navy);
        border-bottom: 2px solid var(--brand-blue-light);
        padding-bottom: 6px;
    }
    .job-detail-content ul {
        margin: 12px 0 20px 24px;
    }
    .job-detail-content li {
        margin-bottom: 6px;
    }
    .job-contact-box {
        margin-top: 40px;
        background: var(--brand-navy-dark);
        color: #ffffff;
        border-radius: var(--radius-md);
        padding: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .job-contact-box h4 {
        color: #ffffff;
        font-size: 20px;
        margin-bottom: 6px;
    }
    .job-contact-box p {
        color: #cbd5e1;
        font-size: 14px;
    }

    @media (max-width: 800px) {
        .filter-grid { grid-template-columns: 1fr; }
        .job-card { flex-direction: column; align-items: stretch; }
        .job-actions { flex-direction: row; }
        .job-contact-box { flex-direction: column; text-align: center; }
    }


/* ====================================================
   FROM: sablon_iletisim.html
   ==================================================== */

.contact-hero {
        position: relative;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        border-bottom: 3px solid var(--brand-blue-accent);
        color: #ffffff;
        padding: 60px 0;
        margin-bottom: 45px;
    }
    .contact-hero-bg {
        position: absolute;
        inset: -20px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(5px) brightness(0.68);
        -webkit-filter: blur(5px) brightness(0.68);
        transform: scale(1.05);
        z-index: 1;
    }
    .contact-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(25, 28, 31, 0.58) 0%, rgba(34, 38, 42, 0.45) 100%);
        z-index: 2;
    }
    .contact-hero .container {
        position: relative;
        z-index: 3;
    }
    .contact-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .contact-breadcrumb a { color: #cbd5e1; }
    .contact-breadcrumb a:hover { color: #ffffff; }
    .contact-title {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: -0.6px;
        color: #ffffff;
    }
    .contact-lead {
        font-size: 16.5px;
        color: #cbd5e1;
        margin-top: 10px;
        max-width: 800px;
        line-height: 1.6;
    }

    .contact-container {
        padding-bottom: 70px;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.35fr;
        gap: 40px;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    /* Info Cards Column */
    .contact-info-wrap {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .contact-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px;
        box-shadow: var(--shadow-sm);
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: all 0.2s ease;
    }
    .contact-card:hover {
        border-color: #cbd5e1;
        box-shadow: var(--shadow-md);
    }
    .contact-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }
    .contact-card-body h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--brand-navy);
        margin-bottom: 4px;
    }
    .contact-card-body p, .contact-card-body a {
        font-size: 14.5px;
        color: #475569;
        line-height: 1.5;
    }
    .contact-card-body a:hover {
        color: var(--brand-blue-accent);
    }

    /* Form Column */
    .contact-form-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-sm);
    }
    .contact-form-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 8px;
    }
    .contact-form-card p.form-desc {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 24px;
    }
    .form-group {
        margin-bottom: 18px;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .form-label {
        display: block;
        font-size: 13.5px;
        font-weight: 600;
        color: #334155;
        margin-bottom: 6px;
    }
    .form-label span.req { color: #dc2626; }
    .form-input, .form-textarea, .form-select {
        width: 100%;
        padding: 11px 14px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        font-size: 14.5px;
        font-family: inherit;
        color: var(--text-dark);
        background: #f8fafc;
        transition: all 0.2s ease;
    }
    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--brand-blue-accent);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(71, 160, 202, 0.12);
    }
    .form-textarea {
        resize: vertical;
        min-height: 120px;
    }
    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: #64748b;
        margin-bottom: 22px;
        line-height: 1.5;
    }
    .form-checkbox input {
        margin-top: 3px;
    }
    .alert-success {
        background: #ecfdf5;
        border: 1px solid #6ee7b7;
        color: #065f46;
        padding: 18px 20px;
        border-radius: var(--radius-md);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14.5px;
        font-weight: 600;
    }
    .alert-danger {
        background: #fef2f2;
        border: 1px solid #fca5a5;
        color: #991b1b;
        padding: 14px 18px;
        border-radius: var(--radius-md);
        margin-bottom: 24px;
        font-size: 14px;
    }

    /* Submit Button */
    .btn-submit-contact {
        width: 100%;
        padding: 15px 24px;
        background: var(--brand-blue-accent);
        color: #ffffff !important;
        border: none;
        border-radius: var(--radius-xs);
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.25s ease;
        box-shadow: 0 4px 14px rgba(71, 160, 202, 0.35);
    }
    .btn-submit-contact:hover {
        background: var(--brand-blue);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(71, 160, 202, 0.45);
    }
    .btn-submit-contact:active {
        transform: translateY(0);
    }

    /* Map Card */
    .map-wrap {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }
    .map-header {
        padding: 20px 26px;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .map-header h4 {
        font-size: 17px;
        font-weight: 700;
        color: var(--secondary);
    }
    .map-header span {
        font-size: 13px;
        color: var(--text-muted);
    }
    .map-iframe {
        width: 100%;
        height: 380px;
        border: 0;
        display: block;
    }

    @media (max-width: 900px) {
        .contact-grid { grid-template-columns: 1fr; }
        .form-row { grid-template-columns: 1fr; }
        .contact-form-card { padding: 26px 20px; }
    }


/* ====================================================
   FROM: sablon_blog.html
   ==================================================== */

.blog-hero {
        position: relative;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        color: #ffffff;
        padding: 60px 0;
        border-bottom: 3px solid var(--brand-blue-accent);
    }
    .blog-hero-bg {
        position: absolute;
        inset: -15px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(4px) brightness(0.8);
        -webkit-filter: blur(4px) brightness(0.8);
        transform: scale(1.04);
        z-index: 1;
    }
    .blog-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15, 45, 30, 0.82) 0%, rgba(26, 71, 49, 0.65) 100%);
        z-index: 2;
    }
    .blog-hero .container {
        position: relative;
        z-index: 3;
    }
    .blog-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .blog-breadcrumb a { color: #cbd5e1; }
    .blog-breadcrumb a:hover { color: #ffffff; }
    .blog-title {
        font-size: 36px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
    }
    .blog-lead {
        font-size: 16px;
        color: #cbd5e1;
        margin-top: 10px;
        max-width: 800px;
        line-height: 1.6;
    }

    .blog-section {
        padding: 50px 0 80px 0;
    }

    /* Grid Layout */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 30px;
    }
    .blog-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all 0.25s ease;
        display: flex;
        flex-direction: column;
    }
    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: #cbd5e1;
    }
    .blog-card-img-placeholder {
        height: 200px;
        background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.35);
        font-size: 48px;
        position: relative;
    }
    .blog-card-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--brand-blue-accent);
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: var(--radius-xs);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .blog-card-body {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .blog-meta-top {
        font-size: 12.5px;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    .blog-card-title {
        font-size: 19px;
        font-weight: 800;
        line-height: 1.35;
        margin-bottom: 12px;
        color: var(--brand-navy);
    }
    .blog-card-title a:hover {
        color: var(--brand-blue-accent);
    }
    .blog-card-excerpt {
        font-size: 14px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
    }
    .btn-read-more {
        color: var(--brand-blue);
        font-size: 13.5px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .btn-read-more:hover {
        color: var(--brand-blue-accent);
        gap: 10px;
    }

    /* Single Post Detail */
    .post-container {
        max-width: 860px;
        margin: 0 auto;
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 45px;
        box-shadow: var(--shadow-card);
    }
    .post-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
        font-size: 13.5px;
        color: #64748b;
        flex-wrap: wrap;
    }
    .post-body {
        font-size: 16px;
        line-height: 1.8;
        color: #334155;
    }
    .post-body h2, .post-body h3 {
        margin: 30px 0 14px 0;
        color: var(--brand-navy);
    }
    .post-body ul, .post-body ol {
        margin: 14px 0 20px 24px;
    }
    .post-body li {
        margin-bottom: 8px;
    }
    .post-lead {
        font-size: 18px;
        font-weight: 500;
        color: var(--brand-navy-light);
        margin-bottom: 24px;
        line-height: 1.7;
    }
    .post-author-box {
        margin-top: 40px;
        background: #f8fafc;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--brand-navy);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

/* ====================================================
   DRIBBLE SHOT (FleexStudio 24793565) POS LANDING STYLES
   ==================================================== */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

/* ====================================================
   HERO SECTION MODERN RESPONSIVE STYLES
   ==================================================== */
.hero-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 85px 0;
}
.hero-text-col {
    position: relative;
    z-index: 3;
}
.hero-title-main {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1px;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 22px;
}
.hero-desc-main {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions-wrap {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-wp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff !important;
    font-size: 15.5px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
    transition: all 0.25s ease;
    text-decoration: none !important;
}
.hero-wp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.52);
    color: #ffffff !important;
}
.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}
.hero-trust-item i {
    color: #86efac;
}

/* POS Terminal Mockup Frame */
.hero-mockup-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-terminal-frame {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
    max-width: 470px;
    width: 100%;
    position: relative;
    z-index: 3;
}
.hero-terminal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}
.hero-terminal-dots {
    display: flex;
    gap: 7px;
}
.dot-red {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ef4444;
    display: inline-block;
}
.dot-yellow {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #f59e0b;
    display: inline-block;
}
.dot-green {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
}
.hero-tse-badge {
    font-size: 12px;
    font-weight: 700;
    color: #86efac;
    background: rgba(34, 197, 94, 0.18);
    padding: 4px 12px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    display: inline-block;
}
.hero-terminal-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, rgba(15, 45, 30, 0.4) 100%);
    opacity: 0.3;
}
.hero-terminal-img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.04);
}

/* Floating Metric Pills */
.hero-float-pills-wrap {
    position: static;
}
.hero-float-pill {
    position: absolute;
    z-index: 4;
    background: #ffffff;
    border-radius: 18px;
    padding: 11px 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dcfce7;
    animation: floatSlow 4s ease-in-out infinite;
    white-space: nowrap;
}
.pill-pos-1 { top: 110px; left: -30px; animation-delay: 0s; }
.pill-pos-2 { top: 170px; right: -30px; animation-delay: 2s; }
.pill-pos-3 { bottom: 110px; left: -30px; animation-delay: 1.5s; }
.pill-pos-4 { bottom: 50px; right: -30px; animation-delay: 3s; }

.pill-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f0fdf4;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.pill-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.pill-value {
    font-size: 17px;
    font-weight: 900;
    color: var(--brand-navy);
    line-height: 1.2;
}

/* Tablet & Mobile Hero Rules */
@media (max-width: 992px) {
    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 95px 0 35px 0;
        text-align: center;
    }
    .hero-title-main {
        font-size: 34px;
        line-height: 1.18;
        margin-top: 15px;
        margin-bottom: 16px;
    }
    .hero-desc-main {
        font-size: 16px;
        margin: 0 auto 26px auto;
    }
    .hero-actions-wrap {
        justify-content: center;
        margin-bottom: 26px;
    }
    .hero-trust-badges {
        justify-content: center;
    }
    .hero-mockup-col {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-mockup-col {
        display: none;
    }
    .hero-title-main {
        font-size: 29px;
        line-height: 1.22;
        letter-spacing: -0.5px;
    }
    .hero-desc-main {
        font-size: 15px;
        line-height: 1.6;
    }
    .hero-wp-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 15px;
    }
    .hero-terminal-frame {
        padding: 14px;
        border-radius: 20px;
        max-width: 340px;
    }
    /* Disable negative coordinate blowout on mobile and arrange pills neatly */
    .hero-float-pills-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 340px;
        margin-top: 14px;
    }
    .hero-float-pill {
        position: static !important;
        transform: none !important;
        animation: none !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
        padding: 9px 12px !important;
        border-radius: 12px !important;
        gap: 8px !important;
    }
    .pill-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }
    .pill-label {
        font-size: 9px !important;
    }
    .pill-value {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .hero-main-grid {
        padding: 85px 0 25px 0;
        gap: 28px;
    }
    .hero-title-main {
        font-size: 25px;
        letter-spacing: -0.3px;
    }
    .hero-trust-badges {
        gap: 8px 14px;
        font-size: 12px;
    }
    .hero-float-pills-wrap {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ====================================================
   QUICK STATS BAR MOBILE 2x2 GRID
   ==================================================== */
@media (max-width: 768px) {
    .hero-stats-bar {
        margin-top: -20px !important;
        margin-bottom: 30px !important;
    }
    .stats-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
        padding: 16px 14px !important;
        border-radius: 18px !important;
    }
    .stat-item {
        border-right: none !important;
        gap: 10px !important;
        padding: 0 !important;
    }
    .stat-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    .stat-number {
        font-size: 19px !important;
    }
    .stat-label {
        font-size: 11px !important;
        line-height: 1.25 !important;
    }
}

/* ====================================================
   HOW IT WORKS / FLOW SECTION
   ==================================================== */
.how-it-works-section {
    padding: 80px 0 80px 0;
    background: #ffffff;
}
.flow-header {
    max-width: 680px;
    margin: 0 auto 60px auto;
}
.section-badge-pill {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--brand-blue);
    text-transform: uppercase;
    margin-bottom: 14px;
    background: var(--brand-blue-light);
    padding: 7px 18px;
    border-radius: 30px;
    border: 1px solid rgba(22, 163, 74, 0.18);
}
.section-title-dark {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--brand-navy);
    letter-spacing: -0.6px;
    margin-bottom: 14px;
}
.section-desc-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 auto;
}

.how-flow-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .how-it-works-section {
        padding: 55px 0 50px 0;
    }
    .flow-header {
        margin-bottom: 40px;
    }
    .section-title-dark {
        font-size: 30px;
    }
    .how-flow-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 18px;
    }
    .flow-arrow-connector {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .section-title-dark {
        font-size: 25px;
    }
    .how-flow-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 380px;
    }
    .flow-step-item {
        background: #f8fafc;
        border-radius: 18px;
        border: 1px solid rgba(22, 163, 74, 0.12);
        padding: 20px 16px;
    }
    .flow-icon-circle {
        width: 58px !important;
        height: 58px !important;
        font-size: 22px !important;
        margin-bottom: 14px !important;
    }
}

/* ====================================================
   FINANZAMT & RECHTSSICHERHEIT BAR
   ==================================================== */
.compliance-bar-section {
    padding: 45px 0;
    background: var(--brand-blue-light);
    border-top: 1px solid rgba(22, 163, 74, 0.12);
    border-bottom: 1px solid rgba(22, 163, 74, 0.12);
}
.compliance-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;
    align-items: center;
}
.compliance-item {
    display: flex;
    gap: 18px;
    align-items: center;
}
.compliance-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand-blue);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.15);
}
.compliance-title {
    font-size: 17px;
    color: var(--brand-navy);
    margin-bottom: 3px;
    font-weight: 800;
}
.compliance-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.compliance-action {
    text-align: right;
}
.compliance-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--brand-blue);
    padding: 12px 22px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.2s ease;
}
.compliance-btn:hover {
    color: var(--brand-navy);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.15);
}

@media (max-width: 900px) {
    .compliance-bar-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .compliance-action {
        text-align: center;
        width: 100%;
    }
    .compliance-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ====================================================
   DASHBOARD SHOWCASE SECTION
   ==================================================== */
.dashboard-showcase-section {
    padding: 0 0 75px 0;
    background: #f8fafc;
}
.dash-header {
    max-width: 720px;
    margin: 0 auto 45px auto;
    padding-top: 75px;
}
.dash-mockup-card {
    background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
    border-radius: 24px;
    padding: 28px 28px 0 28px;
    box-shadow: 0 28px 65px rgba(15, 45, 30, 0.22);
    overflow: hidden;
    position: relative;
}
.dash-mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.dash-topbar-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}
.dash-topbar-tag {
    margin-left: 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
}
.dash-topbar-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #86efac;
    background: rgba(34, 197, 94, 0.18);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.dash-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-bottom: 28px;
}
.dash-feature-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.dash-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #86efac;
    margin-bottom: 10px;
}
.dash-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.dash-feature-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .dash-header {
        padding-top: 45px;
        margin-bottom: 30px;
    }
    .dash-mockup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .dash-mockup-card {
        padding: 16px 12px 0 12px;
        border-radius: 18px;
    }
    .dash-mockup-topbar {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
    }
    .dash-topbar-tag {
        margin-left: 0;
        font-size: 10.5px;
        padding: 3px 10px;
    }
    .dash-topbar-badge {
        font-size: 10px;
        padding: 3px 9px;
    }
    .dash-mockup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding-bottom: 18px;
    }
    .dash-feature-item {
        padding: 12px 10px;
        border-radius: 12px;
    }
    .dash-feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 7px;
    }
    .dash-feature-title {
        font-size: 12px;
    }
    .dash-feature-desc {
        font-size: 11px;
        line-height: 1.35;
    }
}

@media (max-width: 420px) {
    .dash-mockup-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   CONSULTING / SUPERMARKET BANNER
   ==================================================== */
.consult-banner-section {
    padding: 0 0 85px 0;
}
.consult-banner-box {
    background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 42px;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 16px 40px rgba(15, 45, 30, 0.18);
}
.consult-banner-text {
    max-width: 650px;
}
.consult-banner-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-blue-accent);
    display: block;
    margin-bottom: 10px;
}
.consult-banner-title {
    font-size: 28px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 10px;
}
.consult-banner-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}
.consult-banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.consult-btn-wp {
    background: #25d366 !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
    font-size: 14px !important;
    border: none !important;
    padding: 13px 26px !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    text-decoration: none !important;
}
.consult-btn-phone {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 13px 26px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-xs);
    font-size: 14px !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.consult-btn-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff !important;
}

@media (max-width: 768px) {
    .consult-banner-section {
        padding: 0 0 50px 0;
    }
    .consult-banner-box {
        padding: 28px 18px;
        border-radius: 20px;
        text-align: center;
        gap: 20px;
        flex-direction: column;
    }
    .consult-banner-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    .consult-banner-desc {
        font-size: 14px;
        line-height: 1.55;
    }
    .consult-banner-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .consult-btn-wp, .consult-btn-phone {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
}

/* ====================================================
   TABLE RESPONSIVENESS GUARD FOR CONTENT
   ==================================================== */
.page-body-text table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Page Hero padding to accommodate floating pill navbar */
.page-hero {
    padding-top: 110px !important;
}

/* ====================================================
   SOLUTIONS CIRCULAR HUB & SPOKE (Dribbble Layout)
   ==================================================== */
.solutions-hub-grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hub-side-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Feature Card */
.hub-feature-card {
    background: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.16);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}
.hub-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
}

.hub-card-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.35;
    margin-bottom: 10px;
}

.hub-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.hub-card-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}
.hub-feature-card:hover .hub-card-link {
    color: var(--brand-blue-accent);
    gap: 10px;
}

/* Circular Node Icons positioned relative to cards */
.hub-node-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-navy-light) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.32);
    transition: transform 0.3s ease;
    z-index: 3;
}
.hub-feature-card:hover .hub-node-icon {
    transform: scale(1.1);
}

/* Desktop Node Positions matching Dribbble Hub */
.hub-node-tr {
    top: -14px;
    right: -14px;
}
.hub-node-br {
    bottom: -14px;
    right: -14px;
}
.hub-node-tl {
    top: -14px;
    left: -14px;
}
.hub-node-bl {
    bottom: -14px;
    left: -14px;
}

/* Center Column Hub & Orbit */
.hub-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hub-circle-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer Orbit Ring */
.hub-orbit-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1.5px dashed rgba(34, 197, 94, 0.3);
    pointer-events: none;
    animation: rotateOrbit 60s linear infinite;
}
@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Connecting SVG Lines */
.hub-connector-lines {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    pointer-events: none;
    z-index: 1;
}

/* Central Circular Image */
.hub-circle-img-wrap {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 45, 30, 0.22);
    border: 6px solid #ffffff;
    position: relative;
    z-index: 2;
    background: #f8fafc;
}
.hub-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Rules for Hub */
@media (max-width: 1100px) {
    .solutions-hub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hub-center-col {
        order: -1;
    }
    .hub-circle-wrapper {
        width: 320px;
        height: 320px;
    }
    .hub-circle-img-wrap {
        width: 320px;
        height: 320px;
    }
    .hub-orbit-ring, .hub-connector-lines {
        display: none;
    }
    .hub-side-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .hub-node-icon {
        top: 20px !important;
        right: 20px !important;
        left: auto !important;
        bottom: auto !important;
    }
}

@media (max-width: 640px) {
    .solutions-hub-section {
        padding: 50px 0 45px 0 !important;
    }
    .solutions-hub-grid {
        gap: 28px !important;
    }
    .hub-side-col {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .hub-feature-card {
        padding: 22px 18px !important;
        border-radius: 18px !important;
    }
    .hub-card-title {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }
    .hub-card-desc {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 12px !important;
    }
    .hub-node-icon {
        display: none !important;
    }
    .hub-circle-wrapper {
        width: 230px !important;
        height: 230px !important;
        max-width: min(230px, 75vw) !important;
    }
    .hub-circle-img-wrap {
        width: 230px !important;
        height: 230px !important;
        max-width: min(230px, 75vw) !important;
        border-width: 4px !important;
    }
}
