@media(min-width: 992px){
	
	header{ z-index: 99; position: sticky; left: 0; top: 0; width: 100%; height: 90px; transition: all 0.3s; background: #fff;}
	header div.inner_wrap{ display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1660px;}
	header div.inner_wrap h1{ width: 160px;}
	header div.inner_wrap h1 a{ display: block; width: 100%;}
	header div.inner_wrap h1 a img{ display: block; width: 100%;}
	header div.inner_wrap nav{ margin: 0 auto;}
	header div.inner_wrap nav > ul{ display: flex; gap: 60px;}
	header div.inner_wrap nav > ul > li{ position: relative;}
	header div.inner_wrap nav > ul > li > a{ display: block; width: 100%; height: 100%; font-weight: 500; font-size: 20px; line-height: 90px; transition: all 0.3s;}
	header div.inner_wrap nav > ul > li > ul{ position: absolute; left: 50%; top: calc(100% + 5px); transform: translateX(-50%); width: 170px; padding: 20px; border-radius: 10px;
	text-align: center; background: #fff; box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); visibility: hidden; opacity: 0;}
	header div.inner_wrap nav > ul > li:hover > a + ul{ visibility: visible; top: calc(100% - 5px); opacity: 1; transition: all 0.3s;}
	header div.inner_wrap nav > ul > li > ul > li > a{ display: block; padding: 7px; font-size: 17px; text-align: center;}
	
	@keyframes nav_fade{
		0%{ opacity: 0;}
		100%{ opacity: 1;}
	}
	
	section.counsel{ padding: 120px 10px;}
	section.counsel p.sub_tit{ font-size: 24px; text-align: center;}
	section.counsel h2{ margin-bottom: 10px; font-weight: 700; font-size: 42px; text-align: center;}
	section.counsel h2 span{ color: #004fa1;}
	section.counsel p.tit_desc{ margin-bottom: 30px; font-size: 24px; text-align: center;}
	section.counsel ul{ display: flex; justify-content: center; gap: 30px;}
	section.counsel ul li a{ position: relative; display: block; width: 100%; height: 100%;}
	section.counsel ul li a img{ display: block; max-width: 100%;}
	section.counsel ul li a div.txt_wrap{ position: absolute; left: 30px; top: 40px;}
	section.counsel ul li a div.txt_wrap p.tit{ margin-bottom: 10px; font-weight: 600; font-size: 32px; color: #fff;}
	section.counsel ul li a div.txt_wrap p.desc{ font-weight: 500; font-size: 20px; color: #fff;}
	section.counsel ul li.kakao a div.txt_wrap p.tit{ color: #371c1d;}
	section.counsel ul li.kakao a div.txt_wrap p.desc{ color: #371c1d;}
	
	footer{ overflow: hidden; width: 98%; padding: 90px; color: #fff; border-radius: 25px; background: #333;}
	footer div.inner_wrap::before{ content: ""; position: absolute; right: 0; bottom: -110px; display: block; width: 210px; height: 348px; background: url("/img/foot_simbol.png") no-repeat 50% 50%;}
	footer div.footer-cont-info{ display: flex; gap: 40px;}
	footer div.ft_logo{ width: 190px;}
	footer div.ft_logo img{ width: 100%; filter: brightness(0) invert(1);}
	footer div.right_wrap{ font-size: 17px; line-height: 1.6;}
	footer div.right_wrap div.footer-copyright{ margin-top: 20px; font-size: 17px;}
}


@media(max-width: 991px){

	header{ z-index: 99; position: sticky; left: 0; top: 0; width: 100%; height: 80px; padding: 0 10px; background: #fff; box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);}
	header div.inner_wrap{ display: flex; align-items: center; justify-content: space-between; height: 100%; padding-right: 40px;}
	header div.inner_wrap h1{ width: 150px;}
	header div.inner_wrap h1 img{ display: block; width: 100%;}
	header div.inner_wrap h1 img.white_logo{ display: none;}
	header div.inner_wrap nav{ z-index: 101; position: fixed; left: 100%; top: 0; width: 80%; height: 100vh; padding: 100px 20px 60px; background: #fff; transition: transform 0.3s;}
	header.on div.inner_wrap nav{ transform: translateX(-100%);}
	header.on::after{ z-index: 100; content: ""; position: fixed; left: 0; top: 0; display: block; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.4);}
	
	header div.inner_wrap nav > ul > li > a{ position: relative; display: block; width: 100%; padding: 10px 0; font-size: 16px; text-align: left;}
	header div.inner_wrap nav > ul > li.drop > ul{ display: none;}
	header div.inner_wrap nav > ul > li.drop > ul > li > a{ display: block; width: 100%; padding: 10px 0; font-size: 16px; text-align: left;}
	header div.inner_wrap div.nav_wrap{ z-index: 102; position: absolute; right: 0; top: 50%; width: 26px; height: 20px; transform: translateY(-50%);}
	header div.inner_wrap div.nav_wrap button.nav_btn{ position: relative; width: 100%; height: 100%;}
	header div.inner_wrap div.nav_wrap button.nav_btn span{ position: absolute; left: 0; display: block; width: 100%; height: 2px; background: #000; transition: all 0.3s;}
	header div.inner_wrap div.nav_wrap button.nav_btn span:nth-child(1){ top: 0;}
	header div.inner_wrap div.nav_wrap button.nav_btn span:nth-child(2){ top: 50%; transform: translateY(-50%);}
	header div.inner_wrap div.nav_wrap button.nav_btn span:nth-child(3){ top: 100%; transform: translateY(-100%);}
	header.on div.inner_wrap div.nav_wrap button.nav_btn span:nth-child(1){ transform: rotate(45deg); transform-origin: 0 50%;}
	header.on div.inner_wrap div.nav_wrap button.nav_btn span:nth-child(2){ display: none;}
	header.on div.inner_wrap div.nav_wrap button.nav_btn span:nth-child(3){ top: 100%; transform: translateY(-100%) rotate(-45deg); transform-origin: 0 50%;}
	
	section.counsel{ padding: 90px 10px;}
	section.counsel p.sub_tit{ font-size: 16px; text-align: center;}
	section.counsel h2{ margin-bottom: 10px; font-weight: 700; font-size: 24px; text-align: center;}
	section.counsel h2 span{ color: #004fa1;}
	section.counsel p.tit_desc{ margin-bottom: 30px; font-size: 16px; text-align: center;}
	section.counsel ul{ display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;}
	section.counsel ul li a{ position: relative; display: block; width: 100%; height: 100%;}
	section.counsel ul li a img{ display: block; max-width: 100%;}
	section.counsel ul li a div.txt_wrap{ position: absolute; left: 30px; top: 40px;}
	section.counsel ul li a div.txt_wrap p.tit{ margin-bottom: 10px; font-weight: 600; font-size: 24px; color: #fff;}
	section.counsel ul li a div.txt_wrap p.desc{ font-weight: 500; font-size: 16px; color: #fff;}
	section.counsel ul li.kakao a div.txt_wrap p.tit{ color: #371c1d;}
	section.counsel ul li.kakao a div.txt_wrap p.desc{ color: #371c1d;}
	
	footer{ overflow: hidden; width: 98%; color: #fff; border-radius: 25px; background: #333;}
	footer div.ft_logo{ width: 160px; margin-bottom: 20px;}
	footer div.ft_logo img{ width: 100%; filter: brightness(0) invert(1);}
	footer div.right_wrap{ font-size: 14px; line-height: 1.6;}
	footer div.right_wrap div.footer-copyright{ margin-top: 20px; font-size: 14px;}

}




:root {
            /* Colors */
            476800: #476800 !important;
            476800-container: #84bd00;
            --color-on-primary-container: #2f4700;
            --color-on-primary: #ffffff;
            476800-fixed: #b8f649;

            --color-secondary: #4f6072;
            --color-secondary-fixed-dim: #b7c8dd;

            --color-surface: #f8f9fa;
            --color-surface-dim: #d9dadb;
            --color-surface-bright: #f8f9fa;
            --color-surface-container-lowest: #ffffff;
            --color-surface-container-low: #f3f4f5;
            --color-surface-container: #edeeef;
            --color-surface-container-high: #e7e8e9;
            --color-surface-container-highest: #e1e3e4;

            --color-on-surface: #191c1d;
            --color-on-surface-variant: #434936;
            --color-inverse-surface: #2e3132;

            --color-outline: #737a64;
            --color-outline-variant: #c3c9b0;

            /* Typography */
            --font-body: 'Noto Sans KR', sans-serif;
            --font-display: 'Plus Jakarta Sans', 'Noto Sans KR', sans-serif;

            /* Spacing */
            --container-max: 1280px;
            --gutter: 24px;
            --margin-mobile: 20px;
            --margin-desktop: 64px;
            --section-gap: 80px;
        }
		
		.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        .inner_wrap {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: var(--margin-mobile);
            padding-right: var(--margin-mobile);
        }

        @media (min-width: 768px) {
            .inner_wrap {
                padding-left: var(--margin-desktop);
                padding-right: var(--margin-desktop);
            }
        }

        /* Header */
        .header{ position: sticky; top: 0; z-index: 50; background-color: rgba(248, 249, 250, 0.9); backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(195, 201, 176, 0.3); width: 100%; transition: all 0.3s;}

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .brand-logo img {
            height: 40px;
            object-fit: contain;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 24px;
        }

        .nav-item {
            color: var(--color-secondary);
            font-size: 16px;
            line-height: 1.6;
            transition: color 0.2s;
        }

        .nav-item:hover,
        .nav-item.active {
            color: #476800 !important;
        }

        .nav-item.active {
            font-weight: 700;
            border-bottom: 2px solid #476800 !important;
            padding-bottom: 4px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .icon-btn-group {
            display: none;
            align-items: center;
            gap: 12px;
        }

        .icon-btn {
            color: var(--color-secondary);
            transition: color 0.2s, transform 0.15s;
        }

        .icon-btn:hover {
            color: #476800 !important;
            transform: scale(0.95);
        }

        .btn-primary-inner_wrap {
            display: none;
            align-items: center;
            justify-content: center;
            background-color: var(476800-inner_wrap);
            color: var(--color-on-primary-inner_wrap);
            padding: 8px 24px;
            border-radius: 9999px;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            transition: background-color 0.2s, color 0.2s;
        }

        .btn-primary-inner_wrap:hover {
            background-color: #476800 !important;
            color: var(--color-on-primary);
        }

        .mobile-menu-btn {
            display: block;
            color: var(--color-secondary);
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }

            .icon-btn-group {
                display: flex;
            }

            .btn-primary-inner_wrap {
                display: inline-flex;
            }

            .mobile-menu-btn {
                display: none;
            }
        }

        /* Hero Section */
        .visual {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }


        .hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
        }

        .txt_wrap {
            position: absolute;
			left: 100px;
			top: 50%;
			transform: translateY(-50%);
            z-index: 20;
            color: white;
        }
		@media (max-width: 768px) {
            .txt_wrap {
				left: 20px;
			}
        }

        .hero-subtitle {
            display: block;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            color: #b8f649;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            max-width: 768px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 48px;
                letter-spacing: -0.02em;
            }
        }

        .btn-white {
            background-color: white;
            color: var(--color-on-surface);
            padding: 12px 32px;
            border-radius: 9999px;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-white:hover {
            background-color: #476800;
            color: var(--color-on-primary-inner_wrap);
        }

        /* Quick Access */
        .quick_ico {
            width: 100%;
            background-color: var(--color-surface-container-lowest);
            padding: 48px 0;
            border-bottom: 1px solid var(--color-surface-container-highest);
            position: relative;
            z-index: 30;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            border-radius: 0;
            box-shadow: 0px 12px 40px rgba(26, 43, 59, 0.08);
        }
		
		.quick_ico ul{ display: flex; flex-wrap: wrap; justify-content: center;}
		.quick_ico ul li{ width: calc(100% / 6)}
		
		@media (max-width: 768px) {
			.quick_ico ul{ gap: 20px 0;}
            .quick_ico ul li{ width: calc(100% / 3)}
        }
        .quick-access-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .quick-access-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: var(--color-surface-container);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .quick-access-icon-wrap .material-symbols-outlined {
            color: var(--color-secondary);
            font-size: 32px;
            transition: color 0.3s;
        }

        .quick-access-item:hover .quick-access-icon-wrap {
            background-color: var(476800-inner_wrap);
        }

        .quick-access-item:hover .quick-access-icon-wrap .material-symbols-outlined {
            color: var(--color-on-primary-inner_wrap);
        }

        .quick-access-label {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: var(--color-on-surface-variant);
        }

        /* Services Section */
        .section {
            padding: var(--section-gap) 0;
            width: 100%;
        }

        .bg-surface {
            background-color: var(--color-surface);
        }

        .bg-surface-bright {
            background-color: var(--color-surface-bright);
        }

        .services-wrap {
            display: flex;
            flex-direction: column;
            gap: var(--gutter);
            position: relative;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .services-wrap {
                flex-direction: row;
            }
        }

        .services-text {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .services-text {
                width: 33.333%;
            }
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--color-on-surface);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 32px;
            }
        }

        .text-primary {
            color: #476800 !important;
        }

        .section-desc {
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-on-surface-variant);
            margin-bottom: 32px;
        }

        .link-more {
            color: #476800 !important;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            width: fit-content;
            transition: color 0.2s;
        }

        .services-grid {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .services-grid {
                width: 66.666%;
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .service-card {
            background-color: var(--color-surface-container-lowest);
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0px 4px 20px rgba(26, 43, 59, 0.08);
            border: 1px solid rgba(195, 201, 176, 0.3);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-4px);
        }

        .service-card.highlight {
            background-color: #476800 !important;
            color: var(--color-on-primary);
        }

        .service-icon {
            font-size: 36px;
            color: #476800;
            margin-bottom: 16px;
        }

        .service-card.highlight .service-icon {
            color: inherit;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .service-card:not(.highlight) .service-title {
            color: var(--color-on-surface);
        }

        .service-text {
            font-size: 16px;
            line-height: 1.6;
        }

        .service-card:not(.highlight) .service-text {
            color: var(--color-on-surface-variant);
        }

        /* Success Stories */
        .stories-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--gutter);
        }

        @media (min-width: 768px) {
            .stories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .story-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .story-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .story-card:hover .story-img {
            transform: scale(1.05);
        }

        .story-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
        }

        .story-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 24px;
            width: 100%;
            color: white;
        }

        .story-badge {
            display: inline-block;
            padding: 4px 8px;
            background-color: var(476800-inner_wrap);
            color: var(--color-on-primary-inner_wrap);
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .story-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: white;
			overflow: hidden;
			text-overflow: ellipsis;
			display: -webkit-box;
			-webkit-line-clamp: 1;
			-webkit-box-orient: vertical;
        }

        /* Inquiry Banner */
        .inquiry-banner {
            padding: 48px 0;
        }

        .inquiry-card {
            background-color: #476800 !important;
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            box-shadow: 0px 12px 40px rgba(26, 43, 59, 0.15);
        }

        @media (min-width: 768px) {
            .inquiry-card {
                flex-direction: row;
                padding: 48px;
            }
        }

        .inquiry-text {
            position: relative;
            z-index: 10;
            width: 100%;
            margin-bottom: 32px;
        }

        @media (min-width: 768px) {
            .inquiry-text {
                width: 66.666%;
                margin-bottom: 0;
            }
        }

        .inquiry-badge {
            display: inline-block;
            background-color: white;
            color: #476800 !important;
            padding: 4px 16px;
            border-radius: 9999px;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .inquiry-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .inquiry-title.light {
            opacity: 0.9;
        }

        .inquiry-action {
            position: relative;
            z-index: 10;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .inquiry-action {
                width: 33.333%;
                justify-content: flex-end;
            }
        }

        .btn-inquiry {
            background-color: white;
            color: #476800 !important;
            padding: 16px 32px;
            border-radius: 9999px;
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .btn-inquiry:hover {
            transform: scale(1.05);
            background-color: var(--color-surface-container-lowest);
        }

        /* Features */
        .features-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .features-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--color-on-surface);
            margin-bottom: 8px;
        }

        @media (min-width: 768px) {
            .features-title {
                font-size: 48px;
            }
        }

        .features-wrap {
            display: flex;
            flex-direction: column;
            gap: var(--gutter);
            align-items: center;
        }

        @media (min-width: 768px) {
            .features-wrap {
                flex-direction: row;
            }
        }

        .features-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .features-list {
                width: 50%;
            }
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background-color: var(--color-surface-container-lowest);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid var(--color-surface-container-highest);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: border-color 0.3s;
        }

        .feature-item:hover {
            border-color: rgba(71, 104, 0, 0.5);
            /* primary/50 */
        }

        .feature-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: rgba(132, 189, 0, 0.2);
            /* primary-inner_wrap/20 */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #476800 !important;
            font-weight: bold;
            font-size: 20px;
        }

        .feature-title {
            flex: 1;
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--color-on-surface);
        }

        .feature-icon {
            font-size: 36px;
            color: rgba(71, 104, 0, 0.4);
        }

        .features-img-wrap {
            width: 100%;
            margin-top: 32px;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: 0px 12px 40px rgba(26, 43, 59, 0.15);
        }

        @media (min-width: 768px) {
            .features-img-wrap {
                width: 50%;
                margin-top: 0;
            }
        }

        .features-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .features-img-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .features-img-card {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 24px;
            border-radius: 12px;
        }

        .features-img-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: var(--color-on-surface);
            margin-bottom: 8px;
        }

        .btn-features {
            background-color: #476800 !important;
            color: white;
            padding: 8px 24px;
            border-radius: 9999px;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        /* Footer */
        .footer {
            background-color: var(--color-inverse-surface);
            width: 100%;
            border-top: 1px solid rgba(115, 122, 100, 0.2);
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .footer:hover {
            opacity: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            padding: var(--section-gap) var(--margin-mobile);
            max-width: var(--inner_wrap-max);
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                padding-left: var(--margin-desktop);
                padding-right: var(--margin-desktop);
            }
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .footer-brand {
                grid-column: span 2;
            }
        }

        .footer-brand-name {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: #b8f649;
        }

        .footer-brand-desc {
            font-size: 16px;
            color: var(--color-surface);
            opacity: 0.8;
        }

        .footer-info {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: rgba(225, 227, 228, 0.8);
            margin-top: 16px;
        }

        .footer-info p {
            margin-bottom: 4px;
        }

        .footer-copyright {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: rgba(225, 227, 228, 0.5);
            margin-top: 24px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-surface);
            margin-bottom: 8px;
        }

        .footer-link {
            font-size: 16px;
            color: rgba(225, 227, 228, 0.8);
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: #b8f649;
        }

        .footer-link-small {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: rgba(225, 227, 228, 0.8);
            transition: color 0.2s;
        }

        .footer-link-small:hover {
            color: #b8f649;
        }

        .footer-link-small.highlight {
            color: #b8f649;
            text-decoration: underline;
        }