        /* HERO SECTION */
        .hero {
            padding-top: 160px;
            padding-bottom: 90px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .hero-content h1 span {
            background: linear-gradient(135deg, var(--primary) 0%, #34d399 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 580px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-main);
        }

        .hero-feature-item svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 14px 28px;
            background-color: var(--primary);
            color: var(--bg-dark);
            border-radius: 10px;
            font-size: 1rem;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .btn-secondary {
            padding: 14px 28px;
            background-color: transparent;
            color: var(--text-main);
            border: 1.5px solid var(--border-color);
            border-radius: 10px;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: var(--text-muted);
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: calc(100% + 30px);
            height: calc(100% + 30px);
            border: 2px dashed rgba(16, 185, 129, 0.2);
            border-radius: 28px;
            pointer-events: none;
            z-index: 1;
        }

        .hero-img {
            border-radius: 20px;
            width: 100%;
            height: 480px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
