@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

    :root {
            --green: #1f8f5f;
            --green-dark: #146a46;
            --green-light: #e8f6f0;
            --gray: #555;
            --gray-light: #f0f0f0;
            --header-height: 70px;
            --bg-page: #f7fbf9;
            --bg-surface: #ffffff;
            --bg-surface-soft: #f2f8f5;
            --text-primary: #222;
            --text-muted: #5d6a64;
            --border-soft: #d8e5de;
            --header-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            --overlay-bg: rgba(13, 25, 20, 0.45);
            --watermark-color: rgba(31, 143, 95, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Pretendard', sans-serif;
        }

        html {
            overflow-x: clip;
            width: 100%;
        }

        body {
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            max-width: 100%;
            display: flex;
            flex-direction: column;
        }

        img,
        video,
        canvas,
        svg {
            max-width: 100%;
            height: auto;
        }

        iframe {
            max-width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        a:hover {
            color: var(--green-dark);
        }

        /* GLOBAL BACKGROUND WATERMARK */
        body::after {
            content: "TDI환경산업";
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8rem;
            font-weight: 700;
            color: var(--watermark-color);
            z-index: -1;
            white-space: nowrap;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            body::after {
                font-size: 4rem;
            }
        }

        /* HEADER */
        header.top {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 30px;
            box-shadow: var(--header-shadow);
            height: var(--header-height);
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--green);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            line-height: 1.2;
        }

        nav {
            display: flex;
            gap: 18px;
            align-items: center;
            margin-left: 20px;
        }

        nav a {
            font-weight: 600;
            position: relative;
            font-size: 0.92rem;
            white-space: nowrap;
        }

        nav a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green);
            transition: 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-nav-backdrop {
            display: none;
        }

        body.nav-open {
            overflow: hidden;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .phone {
            font-weight: 700;
            color: var(--green);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-menu-btn {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            border: 1px solid var(--border-soft);
            background: var(--bg-surface-soft);
            font-size: 1.2rem;
            color: var(--green);
            cursor: pointer;
            z-index: 1102;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu-icon {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1;
            transition: opacity 0.15s ease, transform 0.2s ease;
        }

        .mobile-menu-icon-close {
            opacity: 0;
            transform: scale(0.75);
        }

        .mobile-menu-btn.is-active .mobile-menu-icon-open {
            opacity: 0;
            transform: scale(0.75);
        }

        .mobile-menu-btn.is-active .mobile-menu-icon-close {
            opacity: 1;
            transform: scale(1);
        }

        .mobile-menu-btn.is-active {
            background: var(--green);
            color: #fff;
            border-color: var(--green);
        }

        .mobile-menu-btn:focus-visible {
            outline: 2px solid rgba(31, 143, 95, 0.35);
            outline-offset: 2px;
        }

        /* Mobile Truck Section */
        .mobile-truck-section {
            display: none;
            width: 100%;
            background: linear-gradient(135deg, #f0f9f5 0%, #e1f3ec 100%);
            padding: 20px 20px;
            margin-top: var(--header-height);
        }

        .mobile-truck-container {
            width: 100%;
            max-width: 500px;
            height: auto;
            aspect-ratio: 4 / 3;
            position: relative;
            margin: 0 auto;
            animation: float 6s ease-in-out infinite;
            min-height: 180px;
        }

        .mobile-truck-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
        }

        .mobile-scroll-cue {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 6px;
            color: #1b6141;
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: -0.1px;
        }

        .mobile-scroll-arrow {
            display: inline-flex;
            width: 22px;
            height: 22px;
            border-radius: 999px;
            align-items: center;
            justify-content: center;
            background: rgba(31, 143, 95, 0.14);
            animation: slideCue 1.1s ease-in-out infinite;
        }

        @keyframes slideCue {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(3px); }
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            padding: calc(var(--header-height) + 40px) 40px 60px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f9f5 0%, #e1f3ec 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            flex: 1 1 65%;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 25px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .hero-badge {
            background: var(--green);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(31, 143, 95, 0.2);
        }

        /* Desktop Truck */
        .desktop-truck {
            flex: 0 1 35%;
            position: relative;
            height: 400px;
            animation: float 6s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .truck-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
        }

        /* Website Sections */
        .website-sections {
            padding: 40px;
            background: white;
            border-radius: 15px;
            margin: 40px auto;
            max-width: 1100px;
            width: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            max-width: 1100px;
            margin: 0 auto;
            gap: 25px;
        }

        .section-card {
            background: var(--green-light);
            padding: 25px;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .section-card i {
            font-size: 2rem;
            color: var(--green);
            margin-bottom: 15px;
        }

        .section-card h3 {
            font-size: 1.3rem;
            color: var(--green-dark);
            margin-bottom: 10px;
        }

        .section-card p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .section-link {
            color: var(--green);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        /* Image Gallery Section */
        .gallery-section {
            padding: 80px 40px;
            background: #f9fdfb;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.4rem;
            color: var(--green);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .work-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .work-gallery.work-gallery-slider {
            display: block;
            max-width: 1240px;
        }

        .work-gallery-slider .slick-list {
            margin: 0;
            padding: 8px 0 16px;
            overflow: hidden;
        }

        .work-gallery-slider .slick-slide {
            padding: 0 8px;
            height: auto;
        }

        .work-gallery-slider .slick-track {
            display: flex !important;
            align-items: stretch;
        }

        .work-gallery-slider .slick-slide > div {
            height: 100%;
        }

        .work-gallery-slider .work-item {
            height: 100%;
            min-height: 300px;
            max-height: 300px;
        }

        .work-gallery-slider .slick-dots li button:before {
            color: var(--green);
            opacity: .35;
        }

        .work-gallery-slider .slick-dots li.slick-active button:before {
            color: var(--green-dark);
            opacity: 1;
        }

        .work-gallery-slider .slick-prev:before,
        .work-gallery-slider .slick-next:before {
            color: var(--green-dark);
            font-size: 26px;
        }

        .work-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e5efe8;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
            background: #e9efea;
        }

        .work-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
        }

        .work-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: transform 0.5s;
            display: block;
            cursor: zoom-in;
        }

        .work-item:hover img {
            transform: scale(1.1);
        }

        .work-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .work-item:hover .work-overlay {
            transform: translateY(0);
        }

        .work-overlay h4 {
            margin-bottom: 4px;
            font-size: 1rem;
        }

        .work-overlay p {
            font-size: 0.85rem;
            opacity: 0.92;
            line-height: 1.4;
        }

        @media (max-width: 900px) {
            .work-item {
                height: 260px;
            }

            .work-gallery-slider .work-item {
                min-height: 260px;
                max-height: 260px;
            }
        }

        @media (max-width: 560px) {
            .work-item {
                height: 220px;
            }

            .work-gallery-slider .work-item {
                min-height: 220px;
                max-height: 220px;
            }
        }

        /* Blog Section */
        .blog-section {
            padding: 80px 40px;
            background: white;
        }

        .blog-subsection {
            margin-bottom: 80px;
        }

        .blog-subsection:last-child {
            margin-bottom: 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .blog-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #f5f5f5;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-content h3 {
            font-size: 1.2rem;
            color: var(--green-dark);
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .blog-excerpt {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-link {
            color: var(--green);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            margin-top: auto;
        }

        .view-more {
            text-align: center;
            margin-top: 40px;
        }

        .btn-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--green);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-more:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 8px 20px rgba(31, 143, 95, 0.3);
        }

        .page-home-link-wrap {
            max-width: 1120px;
            margin: 32px auto 26px;
            padding: 0 24px;
        }

        .page-home-link-wrap.page-home-link-wrap-wide {
            max-width: 1120px;
            padding: 0 24px;
        }

        .page-home-link-wrap .btn-more {
            padding: 10px 18px;
            font-size: 0.92rem;
            border-radius: 12px;
            box-shadow: 0 8px 18px rgba(12, 52, 36, 0.16);
        }

        /* Daangn Marketplace Section */
        .daangn-marketplace-section {
            padding: 84px 40px;
            background: linear-gradient(180deg, #f2faf6 0%, #e9f4ef 100%);
        }

        .daangn-heading {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .daangn-logo-mark {
            display: inline-flex;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: #fff;
            border: 1px solid rgba(240, 106, 0, 0.28);
            box-shadow: 0 8px 18px rgba(240, 106, 0, 0.18);
            vertical-align: middle;
            overflow: hidden;
            flex-shrink: 0;
        }

        .daangn-logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .daangn-marketplace-wrap {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 24px;
        }

        .daangn-card {
            display: grid;
            grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
            background: #fff;
            border-radius: 18px;
            border: 1px solid #dcebe4;
            overflow: hidden;
            box-shadow: 0 14px 30px rgba(12, 58, 38, 0.12);
        }

        .daangn-card-image {
            min-height: 300px;
            background: #e7f5ed;
        }

        .daangn-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            cursor: zoom-in;
        }

        .daangn-card-placeholder {
            width: 100%;
            height: 100%;
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            font-size: 3.4rem;
        }

        .daangn-card-body {
            padding: 28px 30px;
            display: grid;
            gap: 12px;
        }

        .daangn-card-body h3 {
            color: var(--green-dark);
            font-size: 1.6rem;
            line-height: 1.35;
        }

        .daangn-card-body p {
            color: var(--gray);
            line-height: 1.75;
            font-size: 0.97rem;
        }

        .daangn-rating-wrap {
            min-height: 32px;
        }

        .daangn-rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 13px;
            border-radius: 999px;
            border: 1px solid #cde2d7;
            background: #edf8f2;
            color: #1a5e3f;
            font-size: 0.88rem;
            font-weight: 700;
        }

        .daangn-rating-badge i {
            color: #f2b01e;
        }

        .daangn-meta-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 10px 14px;
        }

        .daangn-meta-list li {
            display: inline-flex;
            align-items: flex-start;
            gap: 8px;
            color: #3f5d4f;
            font-size: 0.93rem;
            line-height: 1.5;
        }

        .daangn-meta-list i {
            margin-top: 2px;
            color: var(--green);
        }

        .daangn-chip-list,
        .daangn-service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .daangn-chip,
        .daangn-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 11px;
            border-radius: 999px;
            font-size: 0.82rem;
            line-height: 1;
            font-weight: 600;
        }

        .daangn-chip {
            border: 1px solid #cde2d7;
            background: #eff8f3;
            color: #1c6142;
        }

        .daangn-tag {
            border: 1px solid #dcebe3;
            background: #fff;
            color: #2b5d48;
        }

        .daangn-actions {
            margin-top: 6px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .daangn-btn-secondary {
            background: #f2f6f4;
            color: var(--green-dark);
            border: 1px solid #c9ddd1;
        }

        .daangn-btn-secondary:hover {
            background: #e4efe9;
            color: var(--green-dark);
            box-shadow: 0 8px 20px rgba(39, 86, 63, 0.18);
        }

        .daangn-subsection {
            background: #fff;
            border: 1px solid #dcebe4;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 20px rgba(12, 58, 38, 0.08);
        }

        .daangn-subtitle {
            font-size: 1.22rem;
            color: var(--green-dark);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .daangn-pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .daangn-pricing-card {
            background: #f7fcf9;
            border: 1px solid #dcebe4;
            border-radius: 14px;
            padding: 16px;
            min-height: 158px;
        }

        .daangn-pricing-card h4 {
            color: #18553a;
            font-size: 1rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .daangn-pricing-price {
            color: var(--green);
            font-weight: 700;
            margin-bottom: 6px;
            font-size: 1rem;
        }

        .daangn-pricing-desc {
            color: #4a6458;
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .daangn-photo-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .daangn-photo-card {
            margin: 0;
            border-radius: 12px;
            overflow: hidden;
            background: #eff7f2;
            border: 1px solid #dcebe4;
            aspect-ratio: 1 / 1;
        }

        .daangn-photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.26s ease;
            cursor: zoom-in;
        }

        .daangn-photo-card:hover img {
            transform: scale(1.04);
        }

        .daangn-review-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .daangn-review-card {
            background: #f9fcfa;
            border: 1px solid #dcebe4;
            border-radius: 12px;
            padding: 14px;
            display: grid;
            gap: 8px;
        }

        .daangn-review-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .daangn-review-head strong {
            color: #1c5f40;
            font-size: 0.95rem;
        }

        .daangn-review-head span {
            color: #6e8078;
            font-size: 0.78rem;
        }

        .daangn-review-stars {
            display: inline-flex;
            gap: 2px;
            color: #f2b01e;
            font-size: 0.85rem;
        }

        .daangn-review-card p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.62;
            color: #395a4c;
        }

        .daangn-review-images {
            display: flex;
            gap: 8px;
        }

        .daangn-review-images img {
            width: 66px;
            height: 66px;
            object-fit: cover;
            border-radius: 9px;
            border: 1px solid #d7e7df;
            background: #eef7f2;
            cursor: zoom-in;
        }

        .daangn-credit-note {
            background: #f4f8f6;
            border: 1px dashed #c9ddd1;
            border-radius: 12px;
            padding: 14px 16px;
            color: #3f6051;
            font-size: 0.85rem;
            line-height: 1.7;
        }

        .daangn-credit-note a {
            color: var(--green-dark);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .daangn-view-more {
            margin-top: 4px;
        }

        /* Statistics Section */
        .stats-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 40px;
            background: #f9fdfb;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--green-dark);
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            background: var(--green-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            font-size: 1.2rem;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--green-dark);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--green);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Pretendard', sans-serif;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--green);
            outline: none;
        }

        .hp-field {
            position: absolute !important;
            left: -10000px !important;
            top: auto !important;
            width: 1px !important;
            height: 1px !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .submit-btn {
            width: 100%;
            background: var(--green);
            color: white;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: var(--green-dark);
        }

        /* Logged-in Admin Badge */
        .site-admin-badge {
            position: fixed;
            top: calc(var(--header-height) + 18px);
            right: 20px;
            z-index: 1000;
        }

        .site-admin-badge summary {
            list-style: none;
        }

        .site-admin-badge summary::-webkit-details-marker {
            display: none;
        }

        .site-admin-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(145deg, #1f8f5f 0%, #177149 100%);
            color: #fff;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 0 8px 22px rgba(8, 56, 36, 0.24);
            padding: 5px 10px 5px 5px;
            cursor: pointer;
        }

        .site-admin-toggle:focus-visible {
            outline: 2px solid rgba(31, 143, 95, 0.45);
            outline-offset: 2px;
        }

        .site-admin-toggle-label {
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1;
        }

        .site-admin-panel {
            min-width: 220px;
            background: linear-gradient(145deg, #1f8f5f 0%, #177149 100%);
            color: #fff;
            border-radius: 14px;
            padding: 14px;
            box-shadow: 0 10px 26px rgba(8, 56, 36, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 8px;
            display: none;
        }

        .site-admin-badge[open] .site-admin-panel {
            display: block;
        }

        .site-admin-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .site-admin-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }

        .site-admin-meta {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .site-admin-meta strong {
            font-size: 0.9rem;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 145px;
        }

        .site-admin-meta span {
            font-size: 0.8rem;
            opacity: 0.92;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 145px;
        }

        .site-admin-link {
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-weight: 700;
            line-height: 1.2;
            padding: 4px 0;
        }

        .site-admin-link-panel {
            margin-bottom: 8px;
            padding-bottom: 9px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .site-admin-link:hover {
            opacity: 0.9;
            color: #fff;
        }

        /* Floating Sidebar */
        .floating-sidebar {
            position: fixed;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 9px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .floating-sidebar.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .sidebar-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1f8f5f 0%, #146a46 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 18px rgba(15, 73, 47, 0.26);
            transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, opacity 0.2s ease;
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        .sidebar-btn img {
            width: 23px;
            height: 23px;
            object-fit: contain;
            display: block;
        }

        .sidebar-symbol {
            color: white;
            font-size: 1.18rem;
            font-weight: 800;
        }

        .sidebar-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 10px 26px rgba(12, 58, 38, 0.3);
        }

        .sidebar-btn-scroll:hover {
            background: linear-gradient(135deg, #146a46 0%, #0f4a33 100%);
        }

        .sidebar-btn-brand {
            border-color: rgba(17, 77, 50, 0.2);
            background: #fff;
        }

        .sidebar-btn-daangn {
            background: #fff;
            border-color: #ffaf79;
            box-shadow: 0 6px 18px rgba(240, 106, 0, 0.22);
        }

        .sidebar-btn-daangn img {
            width: 25px;
            height: 25px;
            border-radius: 0;
        }

        .sidebar-btn-kakao {
            background: #fee500;
            border-color: rgba(0, 0, 0, 0.2);
        }

        .sidebar-btn-kakao img {
            width: 24px;
            height: 24px;
        }

        .sidebar-btn-naver {
            background: #03c75a;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .sidebar-btn-naver img {
            width: 16px;
            height: 16px;
            filter: brightness(0) invert(1);
        }

        .sidebar-btn-brand:hover {
            transform: translateY(-3px) scale(1.04);
        }

        .sidebar-btn-daangn:hover {
            background: #fff4ec;
            border-color: #ff9a52;
            box-shadow: 0 10px 24px rgba(240, 106, 0, 0.3);
        }

        #scrollTopBtn {
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
        }

        #scrollTopBtn.is-visible {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        .sidebar-tooltip {
            position: absolute;
            right: 56px;
            background: #1f332a;
            color: #fff;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 0.78rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.2s;
            pointer-events: none;
        }

        .sidebar-btn:hover .sidebar-tooltip {
            opacity: 1;
        }

        /* Map Section */
        .map-section {
            padding: 80px 40px;
            background: white;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-container iframe,
        .map-container .map-canvas {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: 0;
            display: block;
        }

        .map-container .map-canvas {
            background: #edf4ef;
        }

        .map-mobile-fallback {
            display: none;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
            min-height: 170px;
            padding: 18px;
            background: linear-gradient(145deg, #eef8f3 0%, #e6f3ed 100%);
            color: #1c4d39;
        }

        .map-mobile-fallback strong {
            font-size: 1rem;
            color: #14583b;
        }

        .map-mobile-fallback p {
            margin: 0;
            color: #4b665b;
            line-height: 1.55;
            font-size: 0.9rem;
        }

        .map-actions {
            max-width: 1200px;
            margin: 14px auto 0;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .map-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 40px;
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid #cfe2d7;
            background: #f2faf6;
            color: #146a46;
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .map-action-btn:hover {
            background: #e5f3ec;
            border-color: #b7d8c7;
            color: #124d35;
            transform: translateY(-1px);
        }

        .map-action-btn.map-action-btn-secondary {
            background: #e9f4ff;
            border-color: #b8d0ea;
            color: #1f4c82;
        }

        .map-action-btn.map-action-btn-secondary:hover {
            background: #dcecff;
            border-color: #a9c4e2;
            color: #1a3f6a;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0f2c22 0%, #143a2a 100%);
            color: #ddd;
            padding: 60px 40px 40px;
            margin-top: 0;
            border-top: 3px solid var(--green);
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo img {
            height: 55px;
            width: 55px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .footer-info p {
            margin-bottom: 12px;
            font-size: 0.95rem;
            line-height: 1.8;
            color: #bbb;
        }
        
        .footer-info p strong {
            color: var(--green);
        }

        .footer-links h4,
        .footer-social h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #999;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--green);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #2b8f63;
            border: 1px solid rgba(255, 255, 255, 0.34);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 6px 16px rgba(8, 35, 24, 0.28);
        }

        .social-icon img {
            width: 21px;
            height: 21px;
            object-fit: contain;
            display: block;
        }

        .social-icon-daangn {
            background: #fff;
            border-color: #ffaf79;
        }

        .social-icon-daangn img {
            width: 23px;
            height: 23px;
            border-radius: 0;
        }

        .social-icon-kakao {
            background: #fee500;
            border-color: rgba(0, 0, 0, 0.18);
        }

        .social-icon-kakao img {
            width: 22px;
            height: 22px;
        }

        .social-icon-naver {
            background: #03c75a;
            border-color: rgba(255, 255, 255, 0.33);
        }

        .social-icon-naver img {
            width: 15px;
            height: 15px;
            filter: brightness(0) invert(1);
        }

        .social-icon-phone {
            background: #1f8f5f;
        }

        .social-icon-mail {
            background: #146a46;
        }

        .social-icon:hover {
            transform: translateY(-4px);
            box-shadow: 0 9px 22px rgba(8, 35, 24, 0.34);
        }

        .social-icon-daangn:hover {
            background: #fff4ec;
        }

        .social-icon-kakao:hover {
            background: #f6dc00;
        }

        .social-icon-naver:hover {
            background: #02b04f;
        }

        .social-icon-phone:hover {
            background: #18744e;
        }

        .social-icon-mail:hover {
            background: #0f573a;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            font-size: 0.9rem;
            color: #666;
        }

        /* Modal for full-size images */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .image-modal.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .modal-image {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            animation: zoomIn 0.3s ease;
        }

        .modal-caption {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            padding: 8px 16px;
            max-width: 90%;
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.4;
            backdrop-filter: blur(3px);
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.24);
            background: rgba(15, 20, 16, 0.72);
            color: white;
            font-size: 2rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
            z-index: 2001;
        }

        .modal-close:hover {
            color: #fff;
            background: rgba(31, 143, 95, 0.85);
            transform: scale(1.05);
        }

        /* Loading Spinner */
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            .desktop-truck {
                height: 350px;
            }
            
            .truck-image {
                max-width: 450px;
            }
        }

        @media (max-width: 1140px) {
            nav {
                gap: 12px;
                margin-left: 12px;
            }

            nav a {
                font-size: 0.86rem;
            }

            .phone {
                font-size: 0.92rem;
            }
        }

        @media (max-width: 1060px) {
            .phone {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                padding: 22px 20px 42px;
                padding-right: 20px;
                min-height: auto;
            }
            
            .desktop-truck {
                display: none;
            }
            
            .mobile-truck-section {
                display: block;
                padding: 12px 14px 10px;
            }

            .mobile-truck-container {
                max-width: min(84vw, 360px);
                height: clamp(170px, 44vw, 250px);
                min-height: 0;
                aspect-ratio: auto;
            }

            .mobile-scroll-cue {
                display: inline-flex;
                width: 100%;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
                margin-top: 12px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .daangn-card {
                grid-template-columns: 1fr;
            }

            .daangn-card-image,
            .daangn-card-placeholder {
                min-height: 240px;
            }

            .daangn-pricing-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .daangn-photo-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .daangn-review-grid {
                grid-template-columns: 1fr;
            }

            .daangn-subsection {
                padding: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .social-icons {
                gap: 10px;
            }

            .social-icon {
                width: 42px;
                height: 42px;
            }
            
            .mobile-menu-btn {
                display: inline-flex;
            }

            .mobile-nav-backdrop {
                display: block;
                position: fixed;
                inset: var(--header-height) 0 0 0;
                border: 0;
                margin: 0;
                padding: 0;
                background: var(--overlay-bg);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.2s ease, visibility 0.2s ease;
                z-index: 1098;
            }

            .mobile-nav-backdrop.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            nav {
                position: fixed;
                top: calc(var(--header-height) + 10px);
                right: 12px;
                left: auto;
                width: min(82vw, 300px);
                max-height: calc(100vh - var(--header-height) - 24px);
                height: auto;
                overflow-y: auto;
                background: var(--bg-surface);
                flex-direction: column;
                padding: 10px;
                border-radius: 14px;
                border: 1px solid var(--border-soft);
                box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
                transform: translateY(-12px) scale(0.98);
                opacity: 0;
                pointer-events: none;
                transition: transform 0.2s ease, opacity 0.2s ease;
                z-index: 1100;
                justify-content: flex-start;
                gap: 4px;
                margin-left: 0;
            }

            nav.active {
                transform: translateY(0) scale(1);
                opacity: 1;
                pointer-events: auto;
            }

            nav a {
                font-size: 1rem;
                padding: 10px 12px;
                width: 100%;
                text-align: left;
                border-radius: 10px;
            }

            nav a::after {
                display: none;
            }

            nav a:hover {
                background: var(--green-light);
            }
            
            .site-admin-badge {
                top: calc(var(--header-height) + 8px);
                right: auto;
                left: 10px;
            }

            .site-admin-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 38px;
                height: 38px;
                border-radius: 50%;
                border: 1px solid rgba(255, 255, 255, 0.45);
                background: linear-gradient(145deg, #1f8f5f 0%, #177149 100%);
                box-shadow: 0 8px 22px rgba(8, 56, 36, 0.24);
                cursor: pointer;
            }

            .site-admin-toggle .site-admin-avatar {
                width: 30px;
                height: 30px;
                border-width: 1px;
                font-size: 0.82rem;
            }

            .site-admin-toggle-label {
                display: none;
            }

            .site-admin-panel {
                display: none;
                min-width: 196px;
                margin-top: 8px;
                padding: 12px;
            }

            .site-admin-badge[open] .site-admin-panel {
                display: block;
            }

            .site-admin-profile {
                margin-bottom: 8px;
                padding-bottom: 8px;
            }

            .floating-sidebar {
                right: 12px;
                bottom: 12px;
                top: auto;
                transform: none;
                gap: 7px;
            }

            .sidebar-btn {
                width: 42px;
                height: 42px;
            }

            .sidebar-tooltip {
                display: none;
            }

            .sidebar-btn:hover {
                transform: translateY(-2px) scale(1.03);
            }
        }

        @media (max-width: 768px) {
            header.top {
                padding: 10px 20px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-grid {
                grid-template-columns: 1fr;
            }
            
            .work-gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .website-sections,
            .gallery-section,
            .blog-section,
            .daangn-marketplace-section,
            .stats-section,
            .contact-section,
            .map-section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .map-section {
                padding-top: 58px;
                padding-bottom: 58px;
            }

            .map-container {
                height: 320px;
                min-height: 320px;
            }

            .map-container iframe,
            .map-container .map-canvas {
                display: block;
                min-height: 320px;
            }

            .map-mobile-fallback {
                display: none;
            }

            .map-actions {
                gap: 8px;
            }

            .map-action-btn {
                flex: 1 1 46%;
                min-width: 0;
                padding: 10px 8px;
                font-size: 0.84rem;
            }

            .page-home-link-wrap,
            .page-home-link-wrap.page-home-link-wrap-wide {
                padding: 0 20px;
            }

            .daangn-card-body {
                padding: 22px 20px;
            }

            .daangn-card-body h3 {
                font-size: 1.32rem;
            }

            .daangn-meta-list {
                grid-template-columns: 1fr;
            }

            .daangn-card-body {
                padding: 20px;
            }

            .daangn-subtitle {
                font-size: 1.1rem;
            }

            .daangn-heading {
                gap: 8px;
            }

            .daangn-logo-mark {
                width: 38px;
                height: 38px;
                border-radius: 12px;
            }

            .daangn-pricing-grid,
            .daangn-photo-grid {
                grid-template-columns: 1fr;
            }

            .daangn-review-images img {
                width: 58px;
                height: 58px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .mobile-truck-container {
                max-width: min(86vw, 320px);
                height: 195px;
            }
            
            .site-admin-badge {
                left: 8px;
            }

            .site-admin-toggle {
                width: 36px;
                height: 36px;
            }

            .site-admin-toggle .site-admin-avatar {
                width: 28px;
                height: 28px;
            }

            .site-admin-panel {
                min-width: 176px;
                max-width: calc(100vw - 16px);
                border-radius: 12px;
            }

            .floating-sidebar {
                right: 8px;
                bottom: calc(8px + env(safe-area-inset-bottom, 0px));
            }

            .sidebar-btn {
                width: 38px;
                height: 38px;
            }

            .sidebar-btn img {
                width: 18px;
                height: 18px;
            }

            .sidebar-btn-daangn img {
                width: 21px;
                height: 21px;
                border-radius: 0;
            }

            .sidebar-btn-naver img {
                width: 12px;
                height: 12px;
            }

            .sidebar-symbol {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-btn {
                width: 38px;
                height: 38px;
                border-radius: 8px;
                font-size: 1rem;
            }

            nav {
                right: 10px;
                top: calc(var(--header-height) + 8px);
                width: min(76vw, 260px);
                padding: 8px;
                border-radius: 12px;
                gap: 2px;
            }

            nav a {
                font-size: 0.94rem;
                padding: 8px 10px;
            }

            .logo-wrap {
                font-size: 1rem;
            }
            
            .logo-img {
                height: 35px;
            }
            
            .hero {
                padding: 18px 16px 34px;
            }
            
            .hero-badges {
                flex-direction: column;
                align-items: center;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .mobile-truck-container {
                max-width: min(84vw, 300px);
                height: 185px;
            }

            .modal-close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 1.7rem;
            }
            
            .footer-logo span {
                font-size: 1.2rem;
            }

            .social-icon {
                width: 40px;
                height: 40px;
            }

            .social-icon img {
                width: 18px;
                height: 18px;
            }

            .social-icon-daangn img {
                width: 21px;
                height: 21px;
            }

            .social-icon-naver img {
                width: 12px;
                height: 12px;
            }

            .daangn-actions .btn-more {
                width: 100%;
                justify-content: center;
            }

            .daangn-subsection {
                padding: 16px;
            }

            .daangn-card-image,
            .daangn-card-placeholder {
                min-height: 200px;
            }

            .map-action-btn {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .hero-badge {
                font-size: 0.9rem;
                padding: 8px 15px;
            }
            
            .mobile-truck-container {
                max-width: min(84vw, 260px);
                height: 160px;
            }
        }

        /* Legal Pages */
        .legal-page {
            padding: calc(var(--header-height) + 40px) 20px 70px;
            background: #f4faf7;
        }

        .legal-container {
            max-width: 920px;
            margin: 0 auto;
            background: var(--bg-surface);
            border: 1px solid #dcebe3;
            border-radius: 16px;
            box-shadow: 0 14px 28px rgba(11, 56, 37, 0.08);
            padding: 28px;
            display: grid;
            gap: 18px;
        }

        .legal-container h1 {
            color: var(--green-dark);
            font-size: 2rem;
        }

        .legal-updated {
            font-size: 0.86rem;
            color: #6f8379;
        }

        .legal-container article {
            border-top: 1px solid #e6f0eb;
            padding-top: 14px;
        }

        .legal-container h2 {
            color: #1a5a3c;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .legal-container p {
            color: #48645a;
            line-height: 1.75;
            font-size: 0.95rem;
        }

        /* Homepage Reconstruction */
        .home-services-section {
            padding: 70px 40px 30px;
            background: #f4faf7;
        }

        .home-services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 22px;
        }

        .service-overview-card {
            background: #fff;
            border: 1px solid #d8e9df;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 12px 26px rgba(9, 53, 35, 0.09);
            display: grid;
            gap: 14px;
        }

        .service-eyebrow {
            display: inline-flex;
            width: fit-content;
            padding: 6px 12px;
            border-radius: 999px;
            background: #ecf7f1;
            border: 1px solid #cde6d9;
            color: #1c5f41;
            font-weight: 700;
            font-size: 0.8rem;
        }

        .service-overview-card h2 {
            font-size: 2rem;
            color: var(--green-dark);
            line-height: 1.32;
        }

        .service-overview-card p {
            color: #486356;
            line-height: 1.8;
            font-size: 0.96rem;
        }

        .service-overview-list {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 2px;
        }

        .service-overview-list li {
            color: #214b37;
            font-size: 0.92rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.6;
        }

        .service-overview-list i {
            color: var(--green);
            margin-top: 2px;
        }

        .service-overview-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 4px;
        }

        .service-price-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .service-price-card {
            background: #ffffff;
            border: 1px solid #d9e9e0;
            border-radius: 14px;
            padding: 18px;
            min-height: 168px;
            box-shadow: 0 10px 20px rgba(9, 53, 35, 0.06);
            display: grid;
            align-content: start;
            gap: 8px;
        }

        .service-price-card h3 {
            font-size: 1rem;
            color: #175238;
            line-height: 1.4;
        }

        .service-price {
            font-size: 1rem;
            color: var(--green);
            font-weight: 700;
        }

        .service-desc {
            font-size: 0.88rem;
            color: #496458;
            line-height: 1.6;
        }

        .home-gallery-section {
            padding-top: 56px;
        }

        .gallery-feature-points {
            max-width: 1200px;
            margin: 0 auto 26px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .gallery-point-card {
            background: #fff;
            border: 1px solid #dcebe3;
            border-radius: 14px;
            padding: 18px;
            display: grid;
            gap: 8px;
            box-shadow: 0 8px 18px rgba(12, 58, 38, 0.06);
        }

        .gallery-point-card i {
            color: var(--green);
            font-size: 1.22rem;
        }

        .gallery-point-card h3 {
            color: #1b5b3d;
            font-size: 1rem;
        }

        .gallery-point-card p {
            color: #50695e;
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .work-badge {
            display: inline-flex;
            width: fit-content;
            padding: 4px 9px;
            border-radius: 999px;
            background: rgba(26, 138, 92, 0.9);
            color: #fff;
            font-size: 0.74rem;
            margin-bottom: 7px;
            font-weight: 700;
        }

        .home-blog-section {
            padding-top: 62px;
            padding-bottom: 62px;
            background: #ffffff;
        }

        .blog-source-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .blog-source-column {
            background: #f8fcfa;
            border: 1px solid #dcebe3;
            border-radius: 16px;
            padding: 20px 18px;
        }

        .blog-source-head {
            margin-bottom: 12px;
        }

        .blog-source-head h3 {
            color: var(--green-dark);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .blog-source-head p {
            color: #537065;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .compact-blog-grid {
            gap: 16px;
            margin-bottom: 10px;
            padding: 0;
        }

        .compact-blog-grid .blog-card {
            border: 1px solid #dcebe3;
            box-shadow: 0 8px 18px rgba(12, 58, 38, 0.06);
        }

        .compact-blog-grid .blog-image {
            height: 190px;
        }

        .blog-tag-inline {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            font-size: 0.75rem;
            border-radius: 999px;
            border: 1px solid #cde6d8;
            background: #edf8f2;
            color: #1a6544;
            padding: 4px 10px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .blog-tag-inline.blog-tag-naver {
            background: #eaf7ef;
            border-color: #b8dfc4;
            color: #166b41;
        }

        .compact-contact-section {
            padding-top: 68px;
            background: #f4faf7;
        }

        .inquiry-priority-section {
            padding-top: 56px;
            padding-bottom: 52px;
        }

        .home-page .inquiry-priority-section .contact-grid {
            align-items: start;
        }

        .form-consent label {
            display: grid;
            grid-template-columns: 18px minmax(0, 1fr);
            align-items: start;
            column-gap: 10px;
            width: 100%;
            font-size: 0.84rem;
            line-height: 1.5;
            color: #3f6152;
        }

        .form-consent input[type="checkbox"] {
            margin-top: 2px;
            accent-color: var(--green);
        }

        .form-consent span {
            min-width: 0;
            word-break: normal;
            overflow-wrap: anywhere;
            line-height: 1.55;
        }

        .form-consent a {
            color: var(--green-dark);
            text-decoration: underline;
            text-underline-offset: 2px;
            font-weight: 700;
        }

        .contact-info-card {
            background: #fff;
            border: 1px solid #dcebe3;
            border-radius: 16px;
            padding: 22px;
            box-shadow: 0 10px 20px rgba(12, 58, 38, 0.08);
            display: grid;
            gap: 14px;
            align-content: start;
        }

        .contact-quick-grid {
            display: grid;
            gap: 10px;
        }

        .contact-quick-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #dcebe3;
            background: #f8fcfa;
            color: #1f4f3a;
        }

        .contact-quick-item i {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #eaf6ef;
            color: var(--green);
        }

        .contact-quick-item strong {
            display: block;
            font-size: 0.84rem;
            margin-bottom: 2px;
            color: #2a4d3f;
        }

        .contact-quick-item span {
            font-size: 0.96rem;
            font-weight: 700;
            color: #135235;
        }

        .contact-check-list {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .contact-check-list li {
            font-size: 0.9rem;
            color: #34594a;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.55;
        }

        .contact-check-list i {
            color: var(--green);
            margin-top: 2px;
        }

        .contact-address-inline {
            margin: 2px 0 0;
            font-size: 0.9rem;
            color: #305645;
            line-height: 1.6;
        }

        .contact-address-inline i {
            color: var(--green);
            margin-right: 6px;
        }

        .inquiry-dock {
            position: fixed;
            left: 50%;
            bottom: calc(12px + env(safe-area-inset-bottom, 0px));
            width: min(1120px, calc(100% - 24px));
            transform: translate(-50%, calc(100% + 34px));
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 1100;
            transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s ease;
        }

        .home-page.has-inquiry-dock {
            padding-bottom: 126px;
        }

        .inquiry-dock.is-visible {
            transform: translate(-50%, 0);
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .inquiry-dock-toggle {
            display: none;
            width: 100%;
            border: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, #1f8f5f 0%, #146a46 100%);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 11px 14px;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 8px 18px rgba(18, 84, 56, 0.25);
            cursor: pointer;
        }

        .dock-toggle-glyph {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            font-size: 0.98rem;
            line-height: 1;
        }

        .inquiry-dock-panel {
            border: 1px solid rgba(176, 209, 192, 0.92);
            background: rgba(255, 255, 255, 0.97);
            border-radius: 14px;
            box-shadow: 0 14px 30px rgba(12, 58, 38, 0.18);
            backdrop-filter: blur(8px);
            padding: 10px 12px;
        }

        .inquiry-dock-form {
            display: grid;
            gap: 8px;
        }

        .inquiry-dock-row {
            display: grid;
            grid-template-columns: minmax(120px, 0.92fr) minmax(150px, 1.08fr) minmax(120px, 0.95fr);
            gap: 8px;
            align-items: center;
        }

        .inquiry-dock-row.secondary {
            grid-template-columns: minmax(220px, 1fr) auto auto;
        }

        .inquiry-dock input,
        .inquiry-dock select {
            width: 100%;
            border: 1px solid #d0e3d9;
            border-radius: 10px;
            background: #fff;
            padding: 10px 12px;
            font-size: 0.9rem;
            color: #23483a;
            line-height: 1.3;
        }

        .inquiry-dock input:focus,
        .inquiry-dock select:focus {
            outline: none;
            border-color: #1f8f5f;
            box-shadow: 0 0 0 3px rgba(31, 143, 95, 0.14);
        }

        .inquiry-dock-submit {
            height: 42px;
            min-height: 42px;
            border: 0;
            border-radius: 10px;
            background: var(--green);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 10px 16px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .inquiry-dock-submit:hover {
            background: var(--green-dark);
        }

        .inquiry-dock-consent {
            display: grid;
            grid-template-columns: 18px minmax(0, 1fr);
            align-items: start;
            column-gap: 8px;
            font-size: 0.8rem;
            color: #335949;
            min-height: 42px;
            width: 100%;
            padding-top: 1px;
        }

        .inquiry-dock-consent input[type="checkbox"] {
            margin: 2px 0 0;
            accent-color: var(--green);
        }

        .inquiry-dock-consent span {
            display: block;
            min-width: 0;
            line-height: 1.5;
            word-break: normal;
            overflow-wrap: anywhere;
        }

        .inquiry-dock-consent a {
            color: var(--green-dark);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .faq-section {
            padding: 72px 40px;
            background: #ffffff;
        }

        .faq-grid {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            gap: 10px;
        }

        .faq-item {
            border: 1px solid #dcebe3;
            border-radius: 12px;
            background: #f8fcfa;
            padding: 2px 14px;
        }

        .faq-item summary {
            cursor: pointer;
            list-style: none;
            font-size: 0.98rem;
            color: #19543a;
            font-weight: 700;
            padding: 14px 0;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item p {
            color: #48645a;
            font-size: 0.9rem;
            line-height: 1.7;
            padding: 0 0 14px;
        }

        @media (max-width: 1280px) {
            .inquiry-dock {
                width: calc(100% - 18px);
            }
        }

        @media (max-width: 1180px) and (min-width: 993px) {
            .inquiry-dock-row {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .inquiry-dock-row.secondary {
                grid-template-columns: minmax(200px, 1fr) minmax(190px, 0.75fr) 110px;
            }
        }

        @media (max-width: 1100px) {
            .home-services-grid {
                grid-template-columns: 1fr;
            }

            .service-price-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gallery-feature-points {
                grid-template-columns: 1fr;
            }

            .blog-source-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .home-services-section,
            .faq-section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .inquiry-priority-section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .service-overview-card {
                padding: 20px;
            }

            .service-overview-card h2 {
                font-size: 1.5rem;
            }

            .service-price-grid {
                grid-template-columns: 1fr;
            }

            .blog-source-column {
                padding: 16px 14px;
            }

            .compact-blog-grid .blog-image {
                height: 170px;
            }

            .contact-info-card {
                padding: 16px;
            }
        }

        @media (max-width: 992px) {
            .home-page.has-inquiry-dock {
                padding-bottom: 74px;
            }

            .home-page.inquiry-dock-open {
                padding-bottom: min(66vh, 430px);
            }

            .inquiry-dock {
                bottom: calc(8px + env(safe-area-inset-bottom, 0px));
                width: calc(100% - 12px);
            }

            .inquiry-dock-toggle {
                display: inline-flex;
            }

            .inquiry-dock-panel {
                margin-top: 6px;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                padding: 0 10px;
                border-width: 0;
                box-shadow: none;
                transition: max-height 0.26s ease, opacity 0.2s ease, padding 0.2s ease, border-width 0.2s ease;
            }

            .inquiry-dock.is-open .inquiry-dock-panel {
                max-height: min(66vh, 430px);
                overflow-y: auto;
                opacity: 1;
                border-width: 1px;
                padding: 10px;
                box-shadow: 0 12px 26px rgba(12, 58, 38, 0.2);
            }

            .inquiry-dock-row,
            .inquiry-dock-row.secondary {
                grid-template-columns: 1fr;
            }

            .inquiry-dock-submit {
                width: 100%;
            }

            .inquiry-dock-consent {
                min-height: 0;
            }

            .home-page.has-inquiry-dock .floating-sidebar {
                bottom: calc(86px + env(safe-area-inset-bottom, 0px));
            }

            .home-page.inquiry-dock-open .floating-sidebar {
                bottom: calc(320px + env(safe-area-inset-bottom, 0px));
            }
        }

        @media (max-width: 560px) {
            .home-page.inquiry-dock-open .floating-sidebar {
                bottom: calc(274px + env(safe-area-inset-bottom, 0px));
            }
        }

        @media (min-width: 993px) {
            .inquiry-dock-toggle {
                display: none;
            }
        }
.work-item img,
        .blog-image img,
        .daangn-card-image img,
        .daangn-photo-card img,
        .daangn-review-images img,
        .social-icon img,
        .logo-img,
        .footer-logo img {
            image-rendering: auto;
        }

        .map-container iframe,
        .map-container .map-canvas {
            width: 100%;
            max-width: 100%;
        }

        @media (max-width: 768px) {
            .page-home-link-wrap,
            .page-home-link-wrap.page-home-link-wrap-wide {
                margin: 22px auto 20px;
                padding: 0 12px;
            }
        }

        /* Responsive Layout Stability (frontend) */
        :where(
            [class*="grid"],
            [class*="flex"],
            .contact-grid,
            .home-services-grid,
            .blog-source-grid,
            .gallery-feature-points,
            .daangn-card,
            .inquiry-dock-row,
            .inquiry-dock-row.secondary
        ) > * {
            min-width: 0;
        }

        :where(
            .work-item,
            .blog-card,
            .gallery-point-card,
            .service-price-card,
            .blog-source-column,
            .contact-info-card,
            .post-related-card,
            .daangn-subsection,
            .daangn-review-card
        ) {
            min-width: 0;
        }

        :where(
            .service-price-grid,
            .gallery-feature-points,
            .blog-source-grid,
            .stats-grid,
            .daangn-pricing-grid,
            .daangn-photo-grid,
            .daangn-review-grid
        ) > * {
            height: 100%;
        }

        :where(
            .service-overview-actions,
            .daangn-actions,
            .daangn-chip-list,
            .daangn-service-tags,
            .quick-links,
            .table-actions,
            .form-actions
        ) {
            row-gap: 8px;
        }

        :where(
            .contact-item,
            .contact-quick-item,
            .daangn-review-head
        ) {
            min-width: 0;
        }

        .contact-item > *,
        .contact-quick-item > *,
        .daangn-review-head > * {
            min-width: 0;
        }

        .contact-item p,
        .contact-item span,
        .contact-quick-item span,
        .contact-quick-item strong,
        .daangn-review-head strong,
        .daangn-review-head span {
            overflow-wrap: anywhere;
        }

        .inquiry-dock,
        .inquiry-dock-panel,
        .inquiry-dock-form,
        .inquiry-dock-row,
        .inquiry-dock-row.secondary {
            min-width: 0;
            max-width: 100%;
        }

        .inquiry-dock input,
        .inquiry-dock select,
        .inquiry-dock button {
            min-width: 0;
            max-width: 100%;
        }

        .inquiry-dock-row.secondary > * {
            min-width: 0;
        }

        .map-container,
        .map-container iframe,
        .map-container .map-canvas {
            min-width: 0;
        }

        @media (max-width: 1100px) {
            .daangn-card {
                grid-template-columns: 1fr;
            }

            .daangn-card-image {
                min-height: 220px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .daangn-pricing-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .daangn-photo-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .daangn-review-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .contact-form {
                padding: 24px;
            }

            .contact-item,
            .contact-quick-item {
                align-items: flex-start;
            }

            .daangn-card-body {
                padding: 20px;
            }
        }

        @media (max-width: 640px) {
            .daangn-pricing-grid {
                grid-template-columns: 1fr;
            }

            .daangn-photo-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .stats-grid {
                gap: 16px;
            }

            .stat-item {
                padding: 20px 14px;
            }

            .contact-form {
                padding: 18px;
                border-radius: 12px;
            }

            .inquiry-dock-panel {
                padding: 8px 8px;
            }
        }

        @media (max-width: 420px) {
            .daangn-photo-grid,
            .gallery-feature-points {
                grid-template-columns: 1fr;
            }

            .inquiry-dock-row {
                gap: 6px;
            }

            .inquiry-dock-submit {
                min-height: 40px;
                height: 40px;
                padding-inline: 12px;
            }
        }













