        :root {
            --bg-page: #E3E8E5; 
            --box-bg: rgba(255, 255, 255, 0.5); 
            --accent: #114B5F; 
            --accent-gold: #D4AF37;
            --text-main: #1A1A1A;
            --text-muted: #555555;
            --radius: 30px;
            --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        body { background: var(--bg-page); color: var(--text-main); font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }
        h1, h2, h3, h4, .brand { font-family: 'Outfit', sans-serif; }

        /* Heavy VFX: Динамичный многослойный фон */
        .ambient-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; 
            background: linear-gradient(135deg, #C4D7D1 0%, #E3E8E5 50%, #E8DFD8 100%); filter: blur(50px); opacity: 0.8; }
        .node { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; animation: float 25s infinite alternate ease-in-out; }
        .n1 { width: 600px; height: 600px; background: #114B5F; top: -10%; left: -10%; }
        .n2 { width: 500px; height: 500px; background: #D4AF37; bottom: -20%; right: -10%; animation-delay: -5s; }
        .n3 { width: 400px; height: 400px; background: #ffffff; top: 40%; left: 40%; animation-duration: 15s; }
        @keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 150px) scale(1.2); } }

        /* Navigation */
        nav { padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; margin: 20px auto; max-width: 1400px; 
            background: rgba(255,255,255,0.7); backdrop-filter: blur(25px); border-radius: 50px; border: 1px solid rgba(255,255,255,0.9); position: sticky; top: 20px; z-index: 1000; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .brand { font-size: 1.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
        .nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; margin-left: 35px; transition: var(--transition); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
        .nav-links a:hover { color: var(--accent-gold); }

        /* BENTO SECTIONS (Forcing Length) */
        .bento-section { max-width: 1400px; margin: 0 auto 100px; padding: 100px 20px 0; display: grid; gap: 25px; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(300px, auto); }
        .section-title-box { grid-column: span 4; text-align: center; margin-bottom: 20px; }
        .section-title-box h2 { font-size: 4rem; color: var(--accent); letter-spacing: -2px; line-height: 1; }

        /* BENTO TILES */
        .tile { background: var(--box-bg); backdrop-filter: blur(25px); border-radius: var(--radius); padding: 50px; border: 1px solid rgba(255,255,255,0.9); transition: var(--transition); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.03); }
        .tile:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(17, 75, 95, 0.1); background: rgba(255,255,255,0.8); border-color: #fff; }

        /* Spans */
        .s-4 { grid-column: span 4; } .s-3 { grid-column: span 3; } .s-2 { grid-column: span 2; } .s-1 { grid-column: span 1; }
        .rs-2 { grid-row: span 2; }

        /* TILE SPECIFICS */
        .hero-tile { align-items: center; text-align: center; padding: 120px 40px; background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.6)); }
        .hero-tile h1 { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 800; line-height: 0.9; margin-bottom: 30px; color: var(--accent); letter-spacing: -3px; }
        .hero-tile p { font-size: 1.4rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
        
        .btn { padding: 22px 50px; background: var(--accent); color: #fff; text-decoration: none; border-radius: 40px; font-weight: 600; font-size: 1.1rem; transition: var(--transition); letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; }
        .btn:hover { background: var(--accent-gold); color: #000; transform: scale(1.05); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3); }

        .stat-tile { align-items: center; background: var(--accent); color: #fff; }
        .stat-tile h3 { font-size: 5rem; margin-bottom: 10px; color: var(--accent-gold); }
        .stat-tile p { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.9; }

        .dir-tile h2 { font-size: 3rem; margin-bottom: 10px; color: var(--text-main); }
        .dir-tile h3 { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
        .dir-tile p { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }

        /* Abstract Spine Animation (Instead of Photo) */
        .abstract-spine { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; position: relative; }
        .vertebra { width: 60px; height: 15px; background: var(--accent); border-radius: 10px; animation: align 3s infinite alternate ease-in-out; }
        .v1 { width: 40px; animation-delay: 0.2s; } .v2 { width: 80px; animation-delay: 0.4s; background: var(--accent-gold); }
        .v3 { width: 50px; animation-delay: 0.6s; } .v4 { width: 70px; animation-delay: 0.8s; }
        .v5 { width: 40px; animation-delay: 1s; }
        @keyframes align { 0% { transform: translateX(-20px); opacity: 0.5; } 100% { transform: translateX(20px); opacity: 1; } }

        .service-tile h3 { font-size: 2rem; margin-bottom: 20px; color: var(--accent); }
        .service-tile p { font-size: 1.1rem; line-height: 1.7; color: var(--text-muted); }

        /* Form */
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        input, select, textarea { width: 100%; padding: 22px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.1); background: rgba(255,255,255,0.8); font-family: inherit; font-size: 1rem; transition: 0.3s; }
        input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(17, 75, 95, 0.1); }

        /* Footer */
        .footer-tile { flex-direction: row; justify-content: space-between; align-items: center; background: #1A1A1A; color: #fff; border: none; }
        .footer-tile h3 { color: var(--accent-gold); font-size: 2rem; margin-bottom: 20px; }
        .f-info p { margin-bottom: 12px; color: #aaa; font-size: 1.1rem; }
        .f-info strong { color: #fff; }

        @media (max-width: 1024px) { 
            .bento-section { grid-template-columns: repeat(2, 1fr); }
            .s-4, .s-3 { grid-column: span 2; }
            .footer-tile, .form-grid { flex-direction: column; grid-template-columns: 1fr; text-align: center; gap: 30px; }
            .nav-links { display: none; }
        }
        @media (max-width: 600px) { 
            .bento-section { grid-template-columns: 1fr; }
            .s-4, .s-3, .s-2, .s-1 { grid-column: span 1; }
        }
