
        
.loading {
            --primary: #014b5b;
            --primary-dark: #013440;
            --primary-light: #026d82;
            --dark: #0a0a0f;
            --darker: #050508;
            --accent: #00d4e0;
            --accent-bright: #00f5ff;
            --accent-warm: #ff6b35;
            --light: #f8f9fa;
            --gray: #6b7280;
            --gray-light: #9ca3af;
            --white: #ffffff;
            
            /*
            --font-display: 'Clash Display', 'Syne', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --font-mono: 'Space Mono', monospace;*/
            
            
            --font-display: 'Lato', sans-serif;
            --font-body: 'Lato', sans-serif;
            --font-mono: 'Lato', sans-serif;
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .loading {
            font-family: var(--font-body);
            color: var(--dark);
            overflow-x: hidden;
            background: var(--darker);
        }
        
        .loading.loading-container {
            overflow: hidden;
        }
        
        ::selection {
            background: var(--primary);
            color: var(--white);
        }
        
        /* PRELOADER */
        .preloader {
            position: fixed;
            inset: 0;
            background: var(--primary);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .preloader-content {
            text-align: center;
        }
        
        .preloader-logo {
            font-family: var(--font-display);
            font-size: clamp(48px, 10vw, 100px);
            font-weight: 700;
            color: var(--white);
            letter-spacing: -3px;
        }
        
        .preloader-container{
            display: flex; 
            align-items:center;
            justify-content: center;
        }
        
        .preloader-counter {
            font-family: var(--font-mono);
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-top: 30px;
            letter-spacing: 3px;
        }
        
        .preloader-line {
            width: 200px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            border-radius: 2px;
        }
        
        .preloader-line-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background: var(--white);
            border-radius: 2px;
        }
        
        /* NOISE OVERLAY */
        .noise-overlay {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.02;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
        
        /* CUSTOM CURSOR */
        .cursor-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
        }
        
        .cursor {
            width: 12px;
            height: 12px;
            background: var(--white);
            border-radius: 50%;
            position: absolute;
            transform: translate(-50%, -50%);
        }
        
        .cursor-follower {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            position: absolute;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        }
        
        .cursor-follower.hovering {
            width: 80px;
            height: 80px;
            border-color: var(--accent-bright);
        }
        
        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--darker);
        }
        
        .hero-background {
            position: absolute;
            inset: 0;
        }
        
        /* Gradient Mesh */
        .gradient-mesh {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        
        .mesh-gradient {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.6;
        }
        
        .mesh-1 {
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            top: -30vw;
            right: -20vw;
            animation: meshFloat1 20s ease-in-out infinite;
        }
        
        .mesh-2 {
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            bottom: -20vw;
            left: -10vw;
            animation: meshFloat2 25s ease-in-out infinite;
            opacity: 0.4;
        }
        
        .mesh-3 {
            width: 30vw;
            height: 30vw;
            background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: meshFloat3 30s ease-in-out infinite;
            opacity: 0.3;
        }
        
        @keyframes meshFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-50px, 50px) scale(1.1); }
            66% { transform: translate(30px, -30px) scale(0.95); }
        }
        
        @keyframes meshFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(40px, -40px) scale(1.15); }
        }
        
        @keyframes meshFloat3 {
            0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
            50% { transform: translate(-50%, -50%) scale(1.2) rotate(180deg); }
        }
        
        /* Grid */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 0 60px;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .hero-eyebrow {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .hero-eyebrow::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--accent);
        }
        
        .hero-title-wrapper {
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-family: var(--font-display);
            font-size: 86px;
            font-weight: 700;
            line-height: 0.9;
            color: var(--white);
        }
        
        .hero-title .line {
            display: block;
            overflow: hidden;
        }
        
        .hero-title .line-inner {
            display: block;
            transform: translateY(110%);
        }
        
        .hero-title .word {
            display: inline-block;
        }
        
        .hero-title .char {
            display: inline-block;
            transform: translateY(100%) rotateX(-90deg);
            transform-origin: 50% 50%;
        }
        
        .hero-title .highlight {
            color: transparent;
            -webkit-text-stroke: 2px var(--accent);
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 700px;
            line-height: 1.7;
            font-weight: 300;
            margin: 50px 0;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .hero-cta-group {
            display: flex;
            gap: 25px;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
        }
        
        /* Magnetic Button */
        .magnetic-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .button-landing {
            padding: 20px 45px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-header {
            background: var(--accent);
            color: var(--dark);
            border-radius: 50px;
        }
        
        .btn-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--white);
            transform: translateY(100%);
            transition: transform 0.4s var(--ease-out-expo);
            border-radius: 50px;
        }
        
        .btn-header:hover::before {
            transform: translateY(0);
        }
        
        .btn-header span {
            position: relative;
            z-index: 1;
        }
        
        .btn-header .btn-arrow {
            width: 20px;
            height: 20px;
            position: relative;
            z-index: 1;
            transition: transform 0.4s var(--ease-out-expo);
        }
        
        .btn-header:hover .btn-arrow {
            transform: translateX(5px) rotate(-45deg);
        }
        
        .btn-header-secondary {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
        }
        
        .btn-header-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        
        /* Hero visual */
        .hero-visual {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            width: 45vw;
            max-width: 700px;
            aspect-ratio: 1;
            opacity: 0;
        }
        
        .hero-visual-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .hero-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hero-circle-1 {
            inset: 0;
            animation: rotateCircle 30s linear infinite;
        }
        
        .hero-circle-2 {
            inset: 10%;
            animation: rotateCircle 25s linear infinite reverse;
        }
        
        .hero-circle-3 {
            inset: 20%;
            animation: rotateCircle 20s linear infinite;
        }
        
        .hero-circle::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        @keyframes rotateCircle {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .hero-image-container {
            position: absolute;
            inset: 25%;
            border-radius: 50%;
            overflow: hidden;
            /*background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);*/
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            mix-blend-mode: overlay;
        }
        
        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 50px;
            left: 60px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: rgba(255, 255, 255, 0.5);
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
        }
        
        .scroll-line {
            width: 60px;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .scroll-line::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 30%;
            height: 100%;
            background: var(--accent);
            animation: scrollLine 2s ease-in-out infinite;
        }
        
        @keyframes scrollLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(400%); }
        }
        
        /* MARQUEE SECTION */
        .marquee-section {
            padding: 25px 0;
            background: var(--primary);
            overflow: hidden;
        }
        
        .marquee-wrapper {
            display: flex;
            animation: marquee 25s linear infinite;
        }
        
        .marquee-content {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 0 25px;
            flex-shrink: 0;
        }
        
        .marquee-item {
            font-family: var(--font-display);
            font-size: clamp(20px, 3vw, 36px);
            font-weight: 700;
            color: var(--white);
            white-space: nowrap;
            text-transform: uppercase;
        }
        
        .marquee-divider {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* INTRO SECTION */
        .intro {
            padding: 150px 50px;
            background: var(--white);
            position: relative;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        .section-number {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--primary);
            margin-bottom: 25px;
            display: block;
        }
        
        .intro-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 60px);
            line-height: 1.1;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 30px;
        }
        
        .intro-title .highlight {
            color: var(--primary);
        }
        
        .intro-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--gray);
        }
        
        .intro-text strong {
            color: var(--dark);
            font-weight: 600;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .stat-item {
            padding: 40px 30px;
            background: var(--light);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }
        
        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(40px, 4vw, 56px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* TWO WORLDS SECTION */
        .two-worlds {
            padding: 150px 50px;
            background: var(--dark);
            position: relative;
        }
        
        .two-worlds-header {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .two-worlds-title {
            font-family: var(--font-display);
            font-size: clamp(40px, 7vw, 100px);
            font-weight: 700;
            color: var(--white);
            line-height: 1;
        }
        
        .worlds-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .world-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 50px;
            transition: all 0.5s ease;
        }
        
        .world-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }
        
        .world-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 30px;
            transition: transform 0.4s ease;
        }
        
        .world-card:hover .world-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .world-card h3 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 25px;
        }
        
        .world-card ul {
            list-style: none;
        }
        
        .world-card li {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
            transition: all 0.3s ease;
        }
        
        .world-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-bright);
            font-weight: bold;
        }
        
        .world-card li:hover {
            color: var(--white);
            transform: translateX(5px);
        }
        
        /* Friction box */
        .friction-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .friction-box::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent 30%);
            animation: frictionRotate 15s linear infinite;
        }
        
        @keyframes frictionRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .friction-box p {
            font-family: var(--font-display);
            font-size: clamp(20px, 2.5vw, 32px);
            color: var(--white);
            font-weight: 600;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }
        
        /* SERVICES SECTION */
        .services {
            padding: 150px 50px;
            background: var(--white);
        }
        
        .services-header {
            margin-bottom: 80px;
        }
        
        .services-title {
            font-family: var(--font-display);
            font-size: clamp(48px, 8vw, 110px);
            font-weight: 700;
            color: var(--dark);
            line-height: 0.95;
        }
        
        .services-title .outline {
            color: transparent;
            -webkit-text-stroke: 2px var(--primary);
        }
        
        .services-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 550px;
            margin-top: 30px;
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: var(--light);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            background: var(--white);
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }
        
        .service-number {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--primary);
            margin-bottom: 25px;
            display: block;
        }
        
        .service-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 26px;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-title {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .service-description {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* APPROACH SECTION */
        .approach {
            padding: 150px 50px;
            background: var(--darker);
        }
        
        .approach-header {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .approach-title {
            font-family: var(--font-display);
            font-size: clamp(40px, 6vw, 80px);
            font-weight: 700;
            color: var(--white);
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .approach-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.4s ease;
        }
        
        .approach-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--primary);
        }
        
        .approach-icon {
            font-size: 50px;
            margin-bottom: 30px;
            display: block;
        }
        
        .approach-card h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 18px;
        }
        
        .approach-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }
        
        /* CTA SECTION */
        .cta-section {
            padding: 150px 50px;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .cta-bg-text {
            position: absolute;
            font-family: var(--font-display);
            font-size: clamp(150px, 25vw, 350px);
            font-weight: 700;
            color: rgba(255, 255, 255, 0.05);
            white-space: nowrap;
            bottom: -50px;
            left: -30px;
            pointer-events: none;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 70px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 30px;
        }
        
        .cta-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-btn {
            padding: 22px 50px;
            background: var(--white);
            color: var(--primary);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 16px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        
        .cta-btn:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }
        
        /* CONTACT SECTION */
        .contact-section {
            padding: 150px 50px;
            background: var(--white);
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(40px, 6vw, 80px);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .contact-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .form-container {
            max-width: 850px;
            margin: 0 auto;
            background: var(--light);
            border-radius: 32px;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent-bright), var(--primary));
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 25px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            display: block;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 16px 20px;
            font-family: var(--font-body);
            font-size: 15px;
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            background: var(--white);
            transition: all 0.3s ease;
            color: var(--dark);
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(1, 75, 91, 0.1);
        }
        
        .form-textarea {
            min-height: 130px;
            resize: vertical;
        }
        
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 12px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            padding: 14px 16px;
            background: var(--white);
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .checkbox-item:hover {
            border-color: var(--primary);
        }
        
        .checkbox-item input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            cursor: pointer;
            accent-color: var(--primary);
        }
        
        .checkbox-item span {
            font-size: 14px;
            color: var(--dark);
            font-weight: 500;
        }
        
        .privacy-box {
            background: rgba(1, 75, 91, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
        }
        
        .privacy-box h4 {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .privacy-box ol {
            padding-left: 18px;
            margin: 0;
        }
        
        .privacy-box li {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .privacy-box a {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px solid var(--primary);
        }
        
        .privacy-checkbox {
            display: flex;
            align-items: start;
            margin: 25px 0;
        }
        
        .privacy-checkbox input {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            cursor: pointer;
            accent-color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .privacy-checkbox label {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.5;
        }
        
        .submit-btn {
            width: 100%;
            padding: 20px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        
        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(1, 75, 91, 0.35);
        }
        
        /* FOOTER */
        .footer {
            background: var(--darker);
            padding: 80px 50px 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            max-width: 300px;
        }
        
        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-bright);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }
        
        .footer-socials {
            display: flex;
            gap: 15px;
        }
        
        .footer-socials a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-socials a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 1024px) {
            body {
                cursor: default;
            }
            
            .cursor-wrapper {
                display: none;
            }
            
            .nav-links {
                display: none;
            }
            
            .intro-grid,
            .worlds-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .approach-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .form-grid,
            .checkbox-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-section{
                padding: 150px 10px;
            }
            
            .hero-content{
                padding: 0;
            }
            
            .hero-title{
                font-size: 42px;
            }
            
        }
        
        @media (max-width: 768px) {
            .hero,
            .intro,
            .two-worlds,
            .services,
            .approach,
            .cta-section,
            .contact {
                padding: 100px 25px;
            }
            
            .nav {
                padding: 20px 25px;
            }
            
            .form-container {
                padding: 40px 25px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer {
                padding: 60px 25px 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }