        :root {
            --primary: #A0C878;
            --accent: #FE7743;
            --dark: #0118D8;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        .anta { font-family: 'Anta', sans-serif; }

        /* --- Animations --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .slide-in-right { transform: translateX(50px); opacity: 0; transition: all 1s ease; }
        .slide-in-right.active { transform: translateX(0); opacity: 1; }

        .diagonal-slide { transform: translate(-50px, 50px); opacity: 0; transition: all 0.8s ease; }
        .diagonal-slide.active { transform: translate(0, 0); opacity: 1; }

        .bounce-in { transform: scale(0.3); opacity: 0; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .bounce-in.active { transform: scale(1); opacity: 1; }

        /* --- Header Logic --- */
        header { transition: all 0.4s ease; }
        header.scrolled {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary);
        }
        header.scrolled nav a { color: var(--primary); }

        /* --- Hero Shapes --- */
        .shape { position: absolute; pointer-events: none; z-index: 0; filter: blur(40px); opacity: 0.6; }
        .hero-img-mask {
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
        }

        /* --- Card Styles --- */
        .rotated-card { transform: rotate(-3deg); transition: transform 0.5s ease; }
        .rotated-card:hover { transform: rotate(0deg) translateY(-10px); }
        
        .diagonal-card { transition: all 0.4s ease; cursor: pointer; }
        .diagonal-card:hover { transform: translate(10px, -10px); box-shadow: -15px 15px 0 var(--dark); }

        /* --- Form Underline --- */
        .form-input { border: none; border-bottom: 2px solid #eee; transition: all 0.3s; width: 100%; padding: 10px 0; outline: none; }
        .form-input:focus { border-bottom-color: var(--accent); }

        .modal {
            position: fixed; inset: 0; background: rgba(1, 24, 216, 0.9); z-index: 1000;
            display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px);
        }

        /* --- Masonry Grid --- */
        .masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-auto-rows: 200px; gap: 20px; }
        .masonry-item { position: relative; overflow: hidden; border-radius: 8px; }
        .masonry-item img { width: 100%; height: 100%; object-cover: cover; transition: transform 0.5s; }
        .masonry-item:hover img { transform: scale(1.1); }
        .masonry-item:nth-child(2n) { grid-row: span 2; }
        .masonry-item:nth-child(3n) { grid-column: span 2; }

        .btn-hover:hover { filter: brightness(1.1); transform: scale(1.05); transition: 0.3s; }
