/* ===== ROOT VARIABLES ===== */
        :root {
            --bg-primary:   #07091a;
            --bg-secondary: #0c1028;
            --bg-card:      rgba(255,255,255,0.025);
            --bg-card-hover: rgba(27,79,174,0.06);
            --text-primary: #e8ecf5;
            --text-secondary: #8892a8;
            --text-muted:   #505878;
            --accent:       #1b4fae;
            --accent-light: #4b7af5;
            --accent-dark:  #0f2d6e;
            --accent-glow:  rgba(27,79,174,0.15);
            --accent-glow-strong: rgba(27,79,174,0.35);
            --accent-gold:  #b8c5d6;
            --accent-gold-light: #cdd8e8;
            --accent-gold-glow: rgba(184,197,214,0.2);
            --border:       rgba(27,79,174,0.2);
            --border-gold:  rgba(184,197,214,0.22);
            --border-active: rgba(27,79,174,0.55);
            --nav-h: 90px;
            --t: 0.3s ease;
            --t-slow: 0.6s ease;
            --font:      'DM Sans', 'Inter', system-ui, sans-serif;
            --font-head: 'Barlow Condensed', 'Space Grotesk', system-ui, sans-serif;
            --shadow-glow: 0 0 30px rgba(27,79,174,0.2), 0 0 80px rgba(27,79,174,0.05);
        }

        /* ===== RESET ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font);
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
        ::selection { background: rgba(27,79,174,0.3); color: #fff; }
        img { max-width: 100%; display: block; }
        a { color: inherit; }

        /* ===== LAYOUT ===== */
        .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
        section { padding: 110px 0; position: relative; z-index: 2; }

        /* ===== UTILITIES ===== */
        .section-tag {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
            text-transform: uppercase; color: var(--accent-gold); margin-bottom: 14px;
        }
        .section-tag::before {
            content: ''; display: block; width: 22px; height: 2px; background: var(--accent-gold);
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800;
            line-height: 1.1; color: var(--text-primary); margin-bottom: 18px;
            letter-spacing: -0.02em; font-family: var(--font-head);
        }
        .section-title span { color: var(--accent-gold); }
        .section-desc {
            font-size: 1.02rem; color: var(--text-secondary);
            max-width: 580px; line-height: 1.85;
        }
        .sep { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
        .text-center { text-align: center; }

        /* ===== CIRCUIT CANVAS ===== */
        #circuit-canvas {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 0; opacity: 0.6;
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            height: var(--nav-h); display: flex; align-items: center;
            padding: 0 28px;
            background: rgba(7,9,26,0.7);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(27,79,174,0.15);
            transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }
        .nav.scrolled {
            background: rgba(7,9,26,0.97);
            border-bottom-color: var(--accent-gold);
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .nav-outer { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1180px; margin: 0 auto; gap: 20px; }
        .nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
        .nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
        .nav-logo-img { height: 110px; width: auto; filter: brightness(1.05); transition: transform 0.3s ease, filter 0.3s ease; }
        .nav-logo:hover .nav-logo-img { transform: scale(1.04); filter: brightness(1.15) drop-shadow(0 0 8px rgba(184,197,214,0.4)); }
        .footer-logo-img { height: 180px; width: auto; filter: brightness(1.05); transition: filter 0.35s ease; }
        .footer-logo-img:hover { filter: brightness(1.2) drop-shadow(0 0 10px rgba(184,197,214,0.4)); }
        .nav-pill {
            display: flex; align-items: center; gap: 0; list-style: none;
            padding: 0;
        }
        .nav.scrolled .nav-pill { background: none; border: none; box-shadow: none; }
        .nav-pill a { text-decoration: none; color: rgba(200,210,235,0.65); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em; padding: 8px 16px; white-space: nowrap; position: relative; transition: color 0.2s ease; }
        .nav-pill a::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 1.5px; background: var(--accent-gold); transition: left 0.25s ease, right 0.25s ease; }
        .nav-pill a:hover { color: var(--text-primary); }
        .nav-pill a:hover::after, .nav-pill a.active::after { left: 16px; right: 16px; }
        .nav-pill a.active { color: var(--accent-gold); }
        .nav-cta {
            display: inline-flex !important; align-items: center !important; gap: 7px !important;
            background: var(--accent-gold) !important; color: #07091a !important;
            padding: 9px 20px !important; border-radius: 6px !important;
            font-weight: 700 !important; font-size: 0.82rem !important;
            letter-spacing: 0.04em !important; border: none !important;
            flex-shrink: 0 !important; text-decoration: none !important;
            transition: all var(--t) !important;
        }
        .nav-cta:hover { background: var(--accent-gold-light) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(184,197,214,0.35) !important; color: #07091a !important; }
        .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 6px; background: rgba(27,79,174,0.1); border: 1px solid var(--border); transition: background var(--t); }
        .nav-hamburger:hover { background: rgba(27,79,174,0.2); border-color: var(--accent); }
        .nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; border-radius: 2px; transform-origin: center; }
        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .nav-mobile {
            display: none; position: fixed;
            top: calc(var(--nav-h) - 8px); left: 16px; right: 16px;
            background: rgba(7,9,26,0.98);
            backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
            border: 1px solid rgba(184,197,214,0.15); border-radius: 10px;
            padding: 10px; z-index: 999; flex-direction: column; gap: 3px;
            box-shadow: 0 24px 60px rgba(0,0,0,0.75);
        }
        .nav-mobile.open { display: flex; }
        .nav-mobile a { color: rgba(200,210,235,0.72); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 11px 16px; border-radius: 8px; transition: all var(--t); display: flex; align-items: center; justify-content: space-between; }
        .nav-mobile a::after { content: '->'; font-size: 0.78rem; opacity: 0; transition: all var(--t); transform: translateX(-5px); }
        .nav-mobile a:hover, .nav-mobile a.active { color: var(--accent-gold); background: rgba(184,197,214,0.06); }
        .nav-mobile a:hover::after, .nav-mobile a.active::after { opacity: 0.5; transform: translateX(0); }
        .nav-mobile-sep { height: 1px; background: rgba(255,255,255,0.05); margin: 4px 0; }
        .nav-mobile-cta { background: var(--accent-gold) !important; color: #07091a !important; font-weight: 700 !important; justify-content: center !important; margin-top: 4px !important; border-radius: 8px !important; }
        .nav-mobile-cta::after { display: none !important; }
        .nav-mobile-cta:hover { background: var(--accent-gold-light) !important; color: #07091a !important; }

        /* ===== BUTTONS ===== */
        .btn-primary {
            display: inline-flex; align-items: center; gap: 9px;
            background: var(--accent-gold);
            color: #07091a; font-weight: 700; font-size: 0.88rem;
            padding: 13px 28px; border-radius: 6px; text-decoration: none;
            transition: all var(--t); border: none; cursor: pointer; letter-spacing: 0.04em;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(184,197,214,0.35); background: var(--accent-gold-light); }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 9px;
            background: transparent; color: var(--text-primary); font-weight: 600;
            font-size: 0.88rem; padding: 13px 28px; border-radius: 6px;
            text-decoration: none; border: 1px solid rgba(255,255,255,0.12);
            transition: all var(--t); cursor: pointer; letter-spacing: 0.02em;
        }
        .btn-secondary:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(184,197,214,0.05); }

        /* ===== HERO ===== */
        .hero {
            position: relative; min-height: 100vh; display: flex;
            align-items: center; overflow: hidden; padding: 0;
        }
        .hero-bg { position: absolute; inset: 0; z-index: 1; }
        .hero-image {
            width: 100%; height: 100%; object-fit: cover;
            object-position: left center; opacity: 0.42;
            filter: saturate(0.7) brightness(0.5);
        }
        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(108deg,
                rgba(7,9,26,0.08) 0%,
                rgba(7,9,26,0.52) 38%,
                rgba(7,9,26,0.94) 65%,
                rgba(7,9,26,1) 100%
            );
        }
        .hero-content {
            position: relative; z-index: 2; width: 100%;
            max-width: 1180px; margin: 0 auto; padding: 120px 28px 80px;
            display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 9px;
            background: rgba(184,197,214,0.07); border: 1px solid var(--border-gold);
            padding: 7px 16px; border-radius: 4px; font-size: 0.72rem;
            font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--accent-gold); margin-bottom: 26px;
        }
        .hero-badge::before {
            content: ''; width: 8px; height: 8px; background: var(--accent-gold);
            border-radius: 50%; animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(184,197,214,0.4); }
            50% { opacity:0.7; transform:scale(1.15); box-shadow:0 0 0 7px rgba(184,197,214,0); }
        }
        .hero-title {
            font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 900;
            line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 10px;
            font-family: var(--font-head);
        }
        .hero-title-top { display: block; color: var(--text-primary); }
        .hero-title-brand {
            display: block; color: var(--accent-gold);
            text-shadow: 0 0 50px rgba(184,197,214,0.3);
        }
        .hero-sub {
            font-size: 1.12rem; font-weight: 500; color: var(--text-secondary);
            margin-bottom: 14px; letter-spacing: 0.01em;
        }
        .hero-divider {
            width: 56px; height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
            margin-bottom: 22px;
        }
        .hero-desc {
            font-size: 1rem; color: var(--text-secondary);
            line-height: 1.85; margin-bottom: 38px; max-width: 510px;
        }
        .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
        .hero-stats { display: flex; gap: 32px; align-items: center; }
        .hero-stat { display: flex; flex-direction: column; }
        .hero-stat-num { font-size: 1.85rem; font-weight: 900; color: var(--accent-gold); line-height: 1; font-family: var(--font-head); }
        .hero-stat-label { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.04em; }
        .hero-stat-sep { width: 1px; background: var(--border); align-self: stretch; }
        .scroll-indicator {
            position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
            z-index: 3; display: flex; flex-direction: column; align-items: center;
            gap: 8px; cursor: pointer; opacity: 0.6; transition: opacity var(--t);
        }
        .scroll-indicator:hover { opacity: 1; }
        .scroll-indicator span { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
        .scroll-mouse { width: 22px; height: 34px; border: 1.5px solid var(--border); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
        .scroll-wheel { width: 3px; height: 8px; background: var(--accent); border-radius: 2px; animation: scroll-anim 2s ease infinite; }
        @keyframes scroll-anim { 0% { transform:translateY(0); opacity:1; } 100% { transform:translateY(13px); opacity:0; } }

        /* ===== TICKER / MARQUEE ===== */
        .ticker {
            position: relative; z-index: 2; overflow: hidden;
            background: rgba(27,79,174,0.04);
            border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            padding: 15px 0;
        }
        .ticker-track { display: flex; gap: 0; animation: marquee 25s linear infinite; white-space: nowrap; }
        .ticker-item {
            display: inline-flex; align-items: center; gap: 12px; padding: 0 28px;
            font-size: 0.77rem; font-weight: 600; color: var(--text-muted);
            letter-spacing: 0.1em; text-transform: uppercase;
        }
        .ticker-item::after { content: '?'; color: var(--accent-gold); font-size: 0.45rem; }
        @keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

        /* ===== ABOUT ===== */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-img-wrap { position: relative; }
        .about-img-frame { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
        .about-img-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.75); transition: filter 0.7s ease; }
        .about-img-frame:hover img { filter: saturate(1) brightness(0.9); }
        .about-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,79,174,0.06), transparent 60%); pointer-events: none; }
        .about-img-border {
            position: absolute; inset: -1px; border-radius: 16px; padding: 1px;
            background: linear-gradient(135deg, var(--accent-gold), transparent 50%, var(--accent));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
        }
        .about-badge {
            position: absolute; bottom: 18px; right: 18px;
            background: rgba(7,9,26,0.85); border: 1px solid rgba(184,197,214,0.3);
            border-radius: 50%; padding: 10px; backdrop-filter: blur(12px);
            box-shadow: 0 0 30px rgba(184,197,214,0.2), inset 0 0 20px rgba(0,0,0,0.4);
            transition: box-shadow 0.4s ease;
        }
        .about-badge:hover {
            box-shadow: 0 0 50px rgba(184,197,214,0.4), inset 0 0 20px rgba(0,0,0,0.4);
        }
        .about-deco-tl { position: absolute; top: -18px; left: -18px; width: 72px; height: 72px; border-left: 2px solid var(--accent-gold); border-top: 2px solid var(--accent-gold); border-radius: 2px 0 0 0; opacity: 0.55; }
        .about-deco-br { position: absolute; bottom: -18px; right: -18px; width: 72px; height: 72px; border-right: 2px solid var(--accent-gold); border-bottom: 2px solid var(--accent-gold); border-radius: 0 0 2px 0; opacity: 0.55; }
        .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
        .about-feature {
            display: flex; align-items: flex-start; gap: 12px; padding: 15px;
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 10px; transition: all var(--t);
        }
        .about-feature:hover { background: var(--bg-card-hover); border-color: var(--border-active); transform: translateY(-2px); }
        .about-feature-icon { width: 34px; height: 34px; background: rgba(184,197,214,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
        .about-feature h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
        .about-feature p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

        /* ===== SERVICES ===== */
        .services { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%); }
        .services-head { text-align: center; margin-bottom: 60px; }
        .services-head .section-desc { margin: 0 auto; }
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
        .svc-card {
            position: relative; background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px; padding: 34px; overflow: hidden;
            transition: all 0.4s ease; cursor: default;
        }
        .svc-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
            opacity: 0; transition: opacity 0.4s ease;
        }
        .svc-card::after {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(184,197,214,0.04) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
        }
        .svc-card:hover { background: rgba(27,79,174,0.035); border-color: var(--border-active); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(27,79,174,0.15); }
        .svc-card:hover::before { opacity: 1; }
        .svc-card:hover::after { opacity: 1; }
        .svc-num { position: absolute; top: 24px; right: 24px; font-size: 3.2rem; font-weight: 900; color: rgba(184,197,214,0.05); line-height: 1; transition: color 0.4s; font-family: var(--font-head); }
        .svc-card:hover .svc-num { color: rgba(184,197,214,0.13); }
        .svc-icon {
            width: 54px; height: 54px; background: rgba(27,79,174,0.1);
            border: 1px solid var(--border); border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 22px; transition: all 0.4s ease;
        }
        .svc-card:hover .svc-icon { background: rgba(184,197,214,0.1); border-color: var(--accent-gold); box-shadow: 0 0 18px rgba(184,197,214,0.2); }
        .svc-icon svg { width: 22px; height: 22px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .svc-card:hover .svc-icon svg { stroke: var(--accent-gold); }
        .svc-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--text-primary); margin-bottom: 11px; line-height: 1.3; font-family: var(--font-head); }
        .svc-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.72; }
        .svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
        .svc-tag { font-size: 0.68rem; font-weight: 600; padding: 4px 10px; background: rgba(27,79,174,0.07); border: 1px solid rgba(27,79,174,0.15); border-radius: 4px; color: var(--accent-light); letter-spacing: 0.04em; }

        /* ===== STATS ===== */
        .stats-bar {
            position: relative; z-index: 2;
            background: rgba(45,96,173,0.04);
            border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
        }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
        .stat-item { padding: 50px 32px; text-align: center; border-right: 1px solid var(--border); transition: background var(--t); }
        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: rgba(45,96,173,0.04); }
        .stat-num { display: block; font-size: 3rem; font-weight: 900; color: var(--accent-gold); line-height: 1; margin-bottom: 9px; letter-spacing: -0.03em; font-family: var(--font-head); }
        .stat-label { font-size: 0.76rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.09em; text-transform: uppercase; }

        /* ===== PROCESS ===== */
        .process-head { text-align: center; margin-bottom: 70px; }
        .process-head .section-desc { margin: 0 auto; }
        .process-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
        .process-track::before {
            content: ''; position: absolute; top: 44px; left: 10%; right: 10%;
            height: 1px; background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent), transparent); z-index: 0;
        }
        .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
        .process-num {
            width: 88px; height: 88px; border-radius: 50%;
            background: var(--bg-secondary); border: 2px solid var(--border-gold);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; font-weight: 900; color: var(--accent-gold);
            margin-bottom: 26px; transition: all 0.4s ease; position: relative;
            font-family: var(--font-head);
        }
        .process-num::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--border); }
        .process-step:hover .process-num { background: rgba(184,197,214,0.07); border-color: var(--accent-gold); box-shadow: 0 0 35px rgba(184,197,214,0.2); }
        .process-step h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 9px; }
        .process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

        /* ===== CONTACT ===== */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
        .contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 38px; }
        .contact-item { display: flex; align-items: flex-start; gap: 16px; }
        .contact-icon { width: 48px; height: 48px; background: rgba(27,79,174,0.07); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
        .contact-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 4px; }
        .contact-val { font-size: 0.94rem; color: var(--text-primary); font-weight: 500; }
        .contact-val a { text-decoration: none; transition: color var(--t); }
        .contact-val a:hover { color: var(--accent); }
        .socials { display: flex; gap: 10px; margin-top: 10px; }
        .social-btn {
            padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px; text-decoration: none; font-size: 0.77rem; font-weight: 700;
            color: var(--text-muted); transition: all var(--t); letter-spacing: 0.03em;
        }
        .social-btn:hover { background: rgba(184,197,214,0.06); border-color: var(--accent-gold); color: var(--accent-gold); box-shadow: 0 0 14px rgba(184,197,214,0.15); }
        .cform {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px; padding: 40px;
        }
        .cform-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
        .cform-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
            border-radius: 8px; padding: 12px 15px; color: var(--text-primary);
            font-family: var(--font); font-size: 0.875rem; outline: none; transition: all var(--t);
            -webkit-appearance: none; appearance: none;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus { border-color: var(--accent); background: rgba(27,79,174,0.04); box-shadow: 0 0 0 3px rgba(27,79,174,0.12); }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: var(--text-muted); }
        .form-group textarea { height: 115px; resize: vertical; }
        .form-group select option { background: #0c1028; }

        /* ===== FOOTER ===== */
        .footer { position: relative; z-index: 2; background: #06080f; border-top: 1px solid var(--border); padding: 72px 0 32px; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
        .footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.85; margin-top: 16px; }
        .footer-heading { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
        .footer-links a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color var(--t); }
        .footer-links a:hover { color: var(--accent); }
        .footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; }
        .footer-copy { font-size: 0.8rem; color: var(--text-muted); }
        .footer-copy span { color: var(--accent); }
        .footer-legal { display: flex; gap: 22px; }
        .footer-legal a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color var(--t); }
        .footer-legal a:hover { color: var(--accent); }

        /* ===== SCROLL REVEAL ===== */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
        .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
        .d5 { transition-delay: 0.5s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .process-track { grid-template-columns: repeat(2, 1fr); gap: 44px; }
            .process-track::before { display: none; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
            .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
        }
        @media (max-width: 768px) {
            .nav-pill { display: none; }
            .nav-cta { display: none !important; }
            .nav-hamburger { display: flex; }
            .hero-content { grid-template-columns: 1fr; }
            .hero-left { display: none; }
            .hero-image { opacity: 0.18; }
            .hero-overlay { background: rgba(7,9,26,0.82); }
            .hero-actions { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-divider { margin: 0 auto 22px; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-features { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; gap: 44px; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
        }

/* === PAGE HERO (Unterseiten) === */
.page-hero {
    position: relative; z-index: 2;
    padding: calc(var(--nav-h) + 70px) 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(27,79,174,0.08) 0%, transparent 70%), radial-gradient(ellipse 30% 50% at 70% 0%, rgba(184,197,214,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover, .breadcrumb span:last-child { color: var(--accent); }
.breadcrumb span:not(:last-child):not(:first-child) { opacity: 0.4; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
.page-hero h1 span { color: var(--accent-gold); }
.page-hero .subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; line-height: 1.8; }

/* === ACTIVE NAV === */
.nav-pill a.active { color: var(--accent-gold) !important; background: transparent !important; }
.nav-mobile a.active { color: var(--accent-gold); }
.nav-cta.active { background: var(--accent-gold) !important; color: #07091a !important; }

/* === CTA STRIP === */
.cta-strip { position: relative; z-index: 2; background: linear-gradient(135deg, rgba(184,197,214,0.05), rgba(27,79,174,0.04)); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border); padding: 72px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; }
.cta-strip p { font-size: 1rem; color: var(--text-secondary); margin-top: 8px; }
@media (max-width: 768px) { .cta-strip-inner { flex-direction: column; text-align: center; } }

/* === PROCESS DETAIL === */
.process-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.process-detail-num { font-size: 6rem; font-weight: 900; color: rgba(184,197,214,0.1); line-height: 1; font-family: var(--font-head); }
.process-detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.process-detail-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); }
.process-detail-list li::before { content: '\2713'; color: var(--accent-gold); font-weight: 800; flex-shrink: 0; }
.process-img-box { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.process-img-box img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.7); }
@media (max-width: 1024px) { .process-detail { grid-template-columns: 1fr; gap: 40px; } }

/* === FORM SUCCESS === */
.form-success { display: none; padding: 18px 22px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); border-radius: 10px; color: #4ade80; font-size: 0.9rem; margin-bottom: 18px; }

/* === ABOUT SECTION (Homepage) === */
#ueber {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative; z-index: 3;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* === BLOG GRID & CARDS === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden; display: flex; flex-direction: column;
    transition: all 0.35s ease;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-active); box-shadow: 0 18px 48px rgba(0,0,0,0.35); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-secondary); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.85) saturate(0.8); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); filter: brightness(0.95) saturate(0.9); }
.blog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; background: linear-gradient(135deg, var(--bg-secondary), rgba(45,96,173,0.06)); }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-meta { display: flex; align-items: center; gap: 10px; }
.blog-meta-date { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.blog-card-body h3, .blog-card-body h2 { font-size: 1.02rem; font-weight: 700; line-height: 1.4; color: var(--text-primary); }
.blog-card-body h3 a, .blog-card-body h2 a { text-decoration: none; transition: color var(--t); }
.blog-card-body h3 a:hover, .blog-card-body h2 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.blog-card-link { font-size: 0.8rem; font-weight: 700; color: var(--accent-gold); text-decoration: none; letter-spacing: 0.03em; display: inline-flex; align-items: center; gap: 5px; margin-top: auto; transition: gap var(--t), color var(--t); }
.blog-card-link:hover { color: var(--accent-gold-light); gap: 10px; }
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.blog-empty p { color: var(--text-muted); }

/* === BLOG POST DETAIL === */
.post-header {
    padding: calc(var(--nav-h) + 60px) 0 56px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border); text-align: center;
}
.post-header h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; max-width: 820px; margin: 0 auto; }
.post-featured-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 16px; margin: 52px 0; filter: brightness(0.88) saturate(0.8); }
.post-content { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 1.9; color: var(--text-secondary); }
.rich-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin: 40px 0 16px; letter-spacing: -0.02em; }
.rich-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin: 28px 0 12px; }
.rich-content p { margin-bottom: 18px; }
.rich-content ul, .rich-content ol { padding-left: 24px; margin-bottom: 18px; }
.rich-content li { margin-bottom: 6px; }
.rich-content a { color: var(--accent-light); text-decoration: underline; text-decoration-color: rgba(27,79,174,0.35); text-underline-offset: 3px; }
.rich-content a:hover { color: var(--accent-light); }
.rich-content strong { color: var(--text-primary); font-weight: 700; }
.rich-content code { background: rgba(27,79,174,0.1); border: 1px solid rgba(27,79,174,0.2); border-radius: 4px; padding: 2px 7px; font-size: 0.88em; font-family: 'SF Mono', 'Fira Code', monospace; color: var(--accent-light); }
.rich-content pre { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; padding: 22px; overflow-x: auto; margin-bottom: 22px; }
.rich-content pre code { background: none; border: none; padding: 0; font-size: 0.9rem; }
.rich-content blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 22px; margin: 28px 0; color: var(--text-secondary); font-style: italic; }

/* === PAGINATION === */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 60px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all var(--t); }
.pagination a { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); }
.pagination a:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(184,197,214,0.06); }
.pagination span.current { background: var(--accent-gold); border: 1px solid var(--accent-gold); color: #07091a; }

/* === RESPONSIVE BLOG === */
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* === PROCESS SECTION (Homepage) === */
#prozess {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* === CONTACT SECTION (Homepage) === */
.contact-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(27,79,174,0.04) 50%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border);
}
.contact-trust { display: flex; flex-direction: column; gap: 14px; }
.contact-trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.875rem; color: var(--text-secondary);
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color var(--t);
}
.contact-trust-item:hover { border-color: var(--border-active); }
.contact-trust-icon { font-size: 1rem; flex-shrink: 0; }

/* === FORM NOTICE === */
.form-notice {
    padding: 14px 18px; border-radius: 10px; font-size: 0.875rem;
    margin-bottom: 18px; line-height: 1.6;
}
.form-notice.success {
    background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: #4ade80;
}
.form-notice.error {
    background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #f87171;
}

/* === ANCHOR SCROLL OFFSET === */
#ueber, #leistungen, #prozess, #kontakt, #blog {
    scroll-margin-top: var(--nav-h);
}

/* === RESPONSIVE SECTIONS === */
@media (max-width: 768px) {
    section { padding: 80px 0; }
    .contact-section .contact-grid { gap: 52px; }
}
