        /* .page-header → 히어로 섹션으로 대체됨 (hero-slider.css) */
        /* .container / h2 / .section-subtitle / main / section → common.css */

        /* 서비스 */
        .services {
            background: var(--light-gray);
            width: 100%;
        }

        .service-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-category {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 450px;
            padding-bottom: 4rem;
        }

        .service-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .service-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .service-category h3 {
            margin-bottom: 1rem;
            color: var(--dark-color);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .service-category > p {
            margin-bottom: 2rem;
            color: #666;
            line-height: 1.6;
        }

        .service-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: #333;
            font-weight: 500;
        }

        .service-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 0.8rem;
        }

        .service-button {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .service-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(126, 211, 33, 0.3);
        }

        .card-footer {
          margin-top: auto;
          display: block;
          text-align: right;
          padding: 1rem;
          font-weight: bold;
          text-decoration: none;
          color: var(--secondary-color);
          transition: color 0.3s;
          position: absolute;
          bottom: 0;
          right: 0;
        }

        .card-footer:hover {
          color: var(--accent-color);
        }

        /* 서비스 프로세스 */
        .service-process {
            background: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .process-step {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .process-step:nth-child(1)::before {
            content: '01';
        }
        .process-step:nth-child(2)::before {
            content: '02';
        }
        .process-step:nth-child(3)::before {
            content: '03';
        }
        .process-step:nth-child(4)::before {
            content: '04';
        }
        .process-step:nth-child(5)::before {
            content: '05';
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .process-step h4 {
            margin: 1rem 0 1rem 0;
            color: var(--dark-color);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
        }

        /* 성공 사례 */
        .case-studies {
            background: var(--light-gray);
        }

        .case-studies-swiper {
          overflow: hidden;
          width: 100%;
        }

        .swiper-wrapper {
          display: flex; /* grid 제거 */
        }

        .swiper-slide {
          flex-shrink: 0;
          width: auto; /* 또는 Swiper가 계산하게 두기 */
          box-sizing: border-box;

          /* 카드 스타일 */
          background: white;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
        }


        .case-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;

            /* 아래 줄 추가 */
            display: flex;
            flex-direction: column;
        }

        .case-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .case-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem;
            max-height: 100px;
        }

        .case-header h4 {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .case-header .case-industry {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .case-content {
          margin: 1rem;
          flex: 1;
          max-height: 300px;
        }

        .case-challenge {
            margin-bottom: 2.5rem;
            height: 100px;
        }

        .case-challenge h5 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .case-challenge p {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .case-results {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            height: 160px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .case-results h5 {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .case-results ul {
            margin: 0;             /* 기본 ul 여백 제거 */
            padding: 0;
            list-style: none;      /* 불릿 제거 */
            text-align: center;    /* 가운데 정렬 */

        }

        .case-results img {
            max-width: 100%;       /* 부모 너비에 맞춤 */
            height: auto;          /* 비율 유지 */
            display: block;        /* inline gap 제거 */
            margin: 0 auto;        /* 가운데 정렬 */
        }

        .case-results li {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            padding-left: 1rem;
            position: relative;
        }

        .case-results li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .slide-btn {
            height: 200px;
            display: flex;
            align-items: center;
        }

        .swiper-button-next {
            right: 10rem;
        }

        .swiper-button-prev {
            left: 10rem;
        }

        /* .modal / .modal-content / .close → common.css */

        .modal-title .highlight {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        /* 반응형 디자인 */
        @media (max-width: 1024px) {
            .service-categories {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .tech-categories {
                grid-template-columns: 1fr;
            }

            /* .swiper-wrapper grid override 제거 — Swiper 기본값 사용 */
        }

        @media (max-width: 768px) {
            /* h2 / section / .page-header → common.css */
            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .service-category,
            .process-step {
                padding: 2rem;
            }

            .service-list li {
                padding: 0.1rem 0;
                padding-left: 1.5rem;
            }

            .process-step {
                padding: 3rem 1.5rem 2rem 1.5rem;
            }

            .slide-btn {
                height: 200px;
                display: flex;
                align-items: center;
            }

            .swiper-button-next {
                right: 10px;
            }

            .swiper-button-prev {
                left: 10px;
            }
        }
