 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            overflow-x: hidden;
        }

        .hero-banner {
            position: relative;
            width: 100%;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #c0dab8 0%, #f9fafb 50%, #7e997f 100%);
            overflow: hidden;
            padding: 60px 0;
        }

        /* Enhanced Animated Background Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: linear-gradient(135deg, rgba(30, 61, 2, 0.3), rgba(230, 57, 70, 0.2));
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .particle:nth-child(1) { width: 6px; height: 6px; left: 10%; top: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 4px; height: 4px; left: 30%; top: 60%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 5px; height: 5px; left: 50%; top: 30%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 4px; height: 4px; left: 70%; top: 70%; animation-delay: 6s; }
        .particle:nth-child(5) { width: 6px; height: 6px; left: 90%; top: 40%; animation-delay: 8s; }
        .particle:nth-child(6) { width: 5px; height: 5px; left: 20%; top: 80%; animation-delay: 3s; }
        .particle:nth-child(7) { width: 4px; height: 4px; left: 60%; top: 15%; animation-delay: 5s; }
        .particle:nth-child(8) { width: 5px; height: 5px; left: 80%; top: 85%; animation-delay: 7s; }

        @keyframes float {
            0%, 100% { 
                transform: translate(0, 0) scale(1); 
                opacity: 0.3; 
            }
            25% { 
                transform: translate(20px, -30px) scale(1.2); 
                opacity: 0.6; 
            }
            50% { 
                transform: translate(-20px, -60px) scale(1.5); 
                opacity: 0.8; 
            }
            75% { 
                transform: translate(10px, -40px) scale(1.3); 
                opacity: 0.5; 
            }
        }

        /* Enhanced Gradient Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.2;
            animation: pulse-orb 10s ease-in-out infinite;
        }

        .orb-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, #63ac1e 0%, transparent 70%);
            top: -250px;
            right: -150px;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #e63946 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation-delay: 5s;
        }

        @keyframes pulse-orb {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
                opacity: 0.15; 
            }
            50% { 
                transform: scale(1.3) rotate(180deg); 
                opacity: 0.25; 
            }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 100px;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            /* padding-bottom: 217px; */
        }

        /* Enhanced Title with Mixed Colors */
        .hero-title {
            font-size: 68px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.04em;
            margin: 0;
            position: relative;
        }

        .title-line {
            display: block;
        }

        .title-word {
            display: inline-block;
            color: #0a0a0a;
            animation: slide-up 1s ease-out forwards;
            opacity: 0;
            transform: translateY(100%);
            margin-right: 16px;
        }

        .title-word:nth-child(1) { 
            animation-delay: 0.1s; 
        }

        .title-word:nth-child(2) { 
            animation-delay: 0.3s;
            background: linear-gradient(135deg, #63ac1e 0%, #4d8a17 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .title-word:nth-child(2)::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 20px;
            background: rgba(99, 172, 30, 0.15);
            z-index: -1;
            border-radius: 6px;
        }

        @keyframes slide-up {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-description {
            font-size: 21px;
            color: #4a4a4a;
            line-height: 1.8;
            max-width: 600px;
            font-weight: 400;
            animation: fade-in-up 1s ease-out 0.6s forwards;
            opacity: 0;
        }

        @keyframes fade-in {
            to { opacity: 1; }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced CTA Button */
        .hero-actions {
            display: flex;
            gap: 20px;
            margin-top: 12px;
            animation: fade-in-up 1s ease-out 0.8s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 12px 40px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 14px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #63ac1e 0%, #4d8a17 100%);
            color: #ffffff;
            box-shadow: 0 12px 40px rgba(99, 172, 30, 0.35);
            border: none;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.7s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 14px;
            padding: 2px;
            background: linear-gradient(135deg, #76c930, #63ac1e);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 60px rgba(99, 172, 30, 0.45);
            animation: pulse-button 1.5s ease-in-out infinite;
        }

        @keyframes pulse-button {
            0%, 100% {
                box-shadow: 0 20px 60px rgba(99, 172, 30, 0.45);
            }
            50% {
                box-shadow: 0 25px 70px rgba(99, 172, 30, 0.6);
            }
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-icon {
            font-size: 22px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            animation: bounce-arrow 2s ease-in-out infinite;
        }

        @keyframes bounce-arrow {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(5px);
            }
        }

        .btn:hover .btn-icon {
            transform: translateX(8px);
            animation: none;
        }

        /* Enhanced Hero Image Section - Diagonal Layout */
        .hero-visual {
            position: relative;
            height: 650px;
            animation: fade-in-scale 1.2s ease-out 1s forwards;
            opacity: 0;
            /* padding-bottom: 217px; */
        }

        @keyframes fade-in-scale {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .visual-container {
            position: relative;
            width: 100%;
            height: 100%;
            perspective: 1200px;
        }

        /* Main Card - Top Right */
        .visual-card {
            position: absolute;
            width: 70%;
            height: 65%;
            top: 0;
            right: 0;
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            border: 2px solid #e8e8e8;
            box-shadow: 
                0 30px 90px rgba(0, 0, 0, 0.12),
                0 10px 30px rgba(99, 172, 30, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            z-index: 2;
            animation: slide-in-right 1s ease-out 1.2s forwards;
            opacity: 0;
        }

        @keyframes slide-in-right {
            from {
                opacity: 0;
                transform: translateX(50px) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

        .visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg, 
                rgba(99, 172, 30, 0.08) 0%, 
                transparent 40%,
                rgba(230, 57, 70, 0.05) 100%
            );
            z-index: 1;
            opacity: 0.6;
            transition: opacity 0.4s;
        }

        .visual-card:hover {
            transform: translateY(-8px) rotateY(2deg);
            box-shadow: 
                0 40px 120px rgba(0, 0, 0, 0.18),
                0 15px 50px rgba(99, 172, 30, 0.2);
            border-color: #63ac1e;
        }

        .visual-card:hover::before {
            opacity: 0.8;
        }

        .visual-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .visual-card:hover img {
            transform: scale(1.05);
        }

        /* Secondary Card - Bottom Left */
        .visual-card-secondary {
            position: absolute;
            width: 65%;
            height: 55%;
            bottom: 0;
            left: 0;
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            border: 2px solid #e8e8e8;
            box-shadow: 
                0 20px 70px rgba(0, 0, 0, 0.1),
                0 8px 25px rgba(230, 57, 70, 0.08);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            animation: slide-in-left 1s ease-out 1.4s forwards;
            opacity: 0;
        }

        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-50px) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

        .visual-card-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                225deg, 
                rgba(230, 57, 70, 0.08) 0%, 
                transparent 40%,
                rgba(99, 172, 30, 0.05) 100%
            );
            z-index: 1;
            opacity: 0.6;
            transition: opacity 0.4s;
        }

        .visual-card-secondary:hover {
            transform: translateY(-8px) rotateY(-2deg);
            box-shadow: 
                0 30px 100px rgba(0, 0, 0, 0.15),
                0 12px 40px rgba(230, 57, 70, 0.15);
            border-color: #e63946;
            z-index: 3;
        }

        .visual-card-secondary:hover::before {
            opacity: 0.8;
        }

        .visual-card-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .visual-card-secondary:hover img {
            transform: scale(1.05);
        }

        /* Floating Badge Animation */
        .floating-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #63ac1e, #4d8a17);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 8px 24px rgba(99, 172, 30, 0.4);
            z-index: 2;
            animation: float-badge 3s ease-in-out infinite;
        }

        @keyframes float-badge {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(2deg);
            }
        }

        /* Stats Counter Animation */
        .stats-badge {
            position: absolute;
            bottom: 40px;
            left: 30px;
            background: white;
            padding: 20px 28px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 2;
            animation: slide-in-left 1s ease-out 1.5s forwards;
            opacity: 0;
        }

        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stats-number {
            font-size: 32px;
            font-weight: 800;
            color: #63ac1e;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stats-label {
            font-size: 13px;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Decorative Elements */
        .decorative-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
            z-index: 0;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #63ac1e, #4d8a17);
            top: 50px;
            left: -80px;
            filter: blur(70px);
            animation: float-shape 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #e63946, #d62839);
            bottom: 100px;
            right: -60px;
            filter: blur(60px);
            animation: float-shape 18s ease-in-out infinite reverse;
        }

        @keyframes float-shape {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.2); }
        }

        /* Accent Lines */
        .accent-line {
            position: absolute;
            height: 4px;
            background: linear-gradient(90deg, transparent, #63ac1e, transparent);
            width: 200px;
            border-radius: 2px;
            opacity: 0.3;
        }

        .line-1 {
            top: 20%;
            left: -50px;
            animation: slide-line 8s ease-in-out infinite;
        }

        .line-2 {
            bottom: 30%;
            right: -50px;
            animation: slide-line 8s ease-in-out infinite reverse;
            animation-delay: 4s;
        }

        @keyframes slide-line {
            0%, 100% { transform: translateX(0); opacity: 0.2; }
            50% { transform: translateX(100px); opacity: 0.4; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 70px;
            }

            .hero-title {
                font-size: 56px;
            }

            .hero-visual {
                height: 550px;
            }

            .visual-card {
                width: 75%;
                height: 60%;
            }

            .visual-card-secondary {
                width: 70%;
                height: 50%;
            }
        }

        @media (max-width: 768px) {
            .hero-banner {
                min-height: auto;
                padding: 10px 0;
            }

            .hero-container {
                padding: 0 24px;
            }

            .hero-grid {
                gap: 50px;
            }

            .hero-title {
                font-size: 44px;
            }

            .hero-description {
                font-size: 19px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .hero-visual {
                height: 450px;
            }

            .visual-card {
                width: 80%;
                height: 55%;
            }

            .visual-card-secondary {
                width: 75%;
                height: 50%;
            }

            .decorative-shape {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 36px;
            }

            .title-word {
                margin-right: 8px;
            }

            .hero-description {
                font-size: 17px;
            }

            .btn {
                padding: 18px 36px;
                font-size: 16px;
            }

            .hero-visual {
                height: 380px;
            }

            .accent-line {
                display: none;
            }
        }