        #home {
            padding-top: 160px;
            padding-bottom: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            width: 100%;
            max-width: 100%;
            background-image: linear-gradient(rgba(17, 19, 22, 0.55), rgba(17, 19, 22, 0.65)), url('/image/main-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; 
        }

        .hero-logo-wrapper {
            background: none !important; 
            box-shadow: none !important;
            border: none !important;
            padding: 0;
            margin-bottom: 20px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            max-width: 340px; 
            width: 85%;
        }

        .hero-logo {
            width: 100%;
            height: auto;
            display: block;
            mix-blend-mode: darken;
            filter: contrast(1.1) brightness(1.1);
        }

        .hero-concept {
            display: none;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 24px;
            letter-spacing: 0.03em;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8); 
        }

        .hero-title span {
            display: inline-block;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            margin-top: 20px;
            width: 100%;
            max-width: 500px;
            justify-content: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            width: 100%;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #111215;
            box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
            border: 1px solid var(--primary);
        }

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

        .btn-secondary {
            background-color: rgba(17, 18, 21, 0.6);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(4px);
        }

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

        @media (max-width: 768px) {
	    #home {
                padding-top: 110px;
                padding-bottom: 60px;
                background-attachment: scroll;
            }


            .hero-title {
                font-size: 22px;
                margin-bottom: 18px;
            }

            .hero-logo-wrapper {
                max-width: 240px;
                padding: 10px 18px;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 12px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 14px;
            }

	}
