/*.bg1 {
    background: linear-gradient(to right,
    #00C3FF 8%,
    #2C90E6 30%,
    #3676EB 43%,
    #4454F1 57%,
    #4F44DB 76%,
    #3D2B9F 100%);
}*/
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-bottom: 8px;
    margin-left: 5px;
    opacity: 0;
}

.radio-label .bg1-img {
    right: 10rem;
}

.bg2-img {
    right: 10rem;
    top: 12%;
}

.custom-position {
    right: 4.5rem;
}

.right-0 {
    right: 0;
}

.bg2 {
    background: no-repeat center/cover url(/images/main/Rectangle\ 205.png);
}

.bg3 {
    background: no-repeat bottom/contain url(/images/main/sea.png);
}

.hero {
    /* position: relative; */
    width: 100%;
    /* 헤더 높이(5rem)와 스크롤 유도 패딩 포함 */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*padding: 4% 8% 0;*/

}

/* 배지 스타일 */
.badge {
    display: flex;
    justify-content: center;
    /* 가로 중앙 정렬 */
    align-items: center;
    /* 세로 중앙 정렬 */
    height: 2.5rem;
    width: 15rem;
    font-size: 1.25rem;
    /* position: absolute;
      top: 280px;
      left: 10%; */
    /* background-color: #2739E5; */
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

.h-linear1 {
    background: linear-gradient(90deg,
    #4D50FF 0%,
    #5432FF 55%,
    #5112DA 98%);
}

.h-linear2 {
    background: linear-gradient(90deg,
    #4D50FF 0%,
    #1234DC 53%,
    #0029F4 98%);
}

.title {
    font-size: 3.85rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0 0 2.1rem 0;
    color: #2b2b2b;
}

.description {
    font-size: 1.3rem;
    line-height: 2;
    color: #2b2b2b;
    font-weight: 600;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 80%;
    padding: 1% 9%;
    overflow: hidden;
}

.slider-container .bg {
    height: 100%;
    background: no-repeat center/cover url("/images/main/main-banner.png");
    border-radius: 40px;
    box-shadow: 5px 5px 10px rgb(220, 237, 254);
    padding: 4% 4.24% 4% 6.6%;
    margin-top: 1.4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.hero-bg-group-wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-bg-group-wrap img {
    /*position: absolute;*/
    right: 10%;
    top: 15%;
    animation: pulse 4s ease-in-out infinite;
    height: 100%;
    max-width: 100%;
    max-height: 100%;

}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(1.05);
    }
}

/* 전체 버튼 컨테이너 스타일 */
.button-container {
    margin-top: 4rem;
    margin-bottom: 0.6rem;
    display: flex;

}

/* 기본 버튼 스타일 */
/*.custom-button {
    !* 크기 및 패딩 *!
    padding: 16px 32px;
    min-width: 160px;
    height: 56px;

    !* 텍스트 스타일 *!
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;

    !* 배경 및 테두리 *!
    background-color: #570FD4;
    border: none;
    border-radius: 12px;

    !* 그림자 효과 *!
    box-shadow: 0 5px 4px rgba(87, 15, 212, 0.3);

    !* 커서 및 전환 효과 *!
    cursor: pointer;
    transition: all 0.3s ease;

    !* 기타 스타일 *!
    outline: none;
    position: relative;
    overflow: hidden;
}*/

/*.custom-button2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 25, 229, 0.2), transparent);
    transition: left 0.5s;
}
.custom-button2:hover::before {
    left: 100%;
}*/
.progress-container {
    width: 15vw;
    height: 0.7rem;
    background-color: rgba(255, 255, 255, 0.2);
    /* 투명도를 색상에 직접 적용 */
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: white;

    /* transition: width 0.1s linear; */
    border-radius: 20px;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    /* 중요: 버튼이 슬라이더 위에 오도록 z-index 설정 */
}

.nav-btn,
.pause-btn {
    color: white;
    border: none;
    border-radius: 50%;
    /* margin: 0 10px; */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    /* 버튼 개별적으로도 z-index 설정 */
}

.nav-btn {
    width: 1rem;
    height: 25px;
    filter: brightness(0) invert(1);
}

.pause-btn {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-color: #365EEE;
}

.pause-btn img {
    width: 50%;
    height: 50%;
    filter: brightness(0) invert(1);
}

.nav-btn:hover,
.pause-btn:hover {
    /* background-color: #3a70b5; */
    /* opacity: 28%; */
    /* 너무 연한거같기도 */
    opacity: 65%;
}

#prevBtn {
    background: no-repeat center/cover url(/images/main/previous-button.png);
}

#nextBtn {
    background: no-repeat center/cover url(/images/main/next-button.png);
}

.scroll-down-section {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    height: 10%;
    /* padding: 0.6rem; */
}

.scroll-down-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 35px;
}

.arrow-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    opacity: 0;
    animation: sdb07 2s infinite;
}

.img1 {
    top: 0;
    animation-delay: 0s;
}

.img2 {
    top: 13px;
    animation-delay: 0.3s;
}

.scroll-down-wrap span {
    color: #9B9B9B;
    /*margin-top: 0.5rem;*/
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

@keyframes sdb07 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.mouse-icon:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}*/

@keyframes scrollDown {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

.sum-section {
    background: no-repeat url(/images/main/wave.png);
    background-position: 0% 500px;
}

/* 서비스 그리드 스타일 */
.service-grid {
    padding: 9%;
    display: grid;
    grid-template-columns: 3fr 7fr;
    /* 3:7 비율로 설정 */
    gap: 2rem;
    background-size: cover;
}

.service-intro {
    margin-top: -2rem;

    /* flex: 3; */
}

.service-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.service-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.service-grid-cards {
    /* flex: 7; */
    display: grid;
    grid-template-columns: repeat(3, minmax(313px, 1fr));
    grid-template-rows: auto auto;
    gap: 1.2rem;
    grid-template-areas:
		". standalone central"
		"security network education";
}


.grid-card:nth-child(1) {
    grid-area: standalone;
    /* 단독복구형 */
}

.grid-card:nth-child(2) {
    grid-area: central;
    /* 중앙관리형 */
}

.grid-card:nth-child(3) {
    grid-area: security;
    /* 자료저장방지 */
}

.grid-card:nth-child(4) {
    grid-area: network;
    /* 네트워크카피 */
}

.grid-card:nth-child(5) {
    grid-area: education;
    /* 화상교육 */
}

.grid-card {
    background-color: #FCFCFC;
    border-radius: 12px;
    padding: 2.4rem 1.86rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 14rem;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
}

.grid-card-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.grid-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 0.5;
}

.grid-card-icon {
    display: flex;
    justify-content: flex-end;
    /* margin-top: 1.5rem; */
}

.grid-card-icon img {
    width: 4rem;
    height: 4rem;
}

.banner-service-section {
    background: no-repeat url("/images/main/wave.png");
    background-position: 0% -1380%;
}

.banner-service {
    height: auto;
    background: no-repeat center/cover url("/images/main/banner-middle.png");
    position: relative;
    border-radius: 40px;
    text-align: center;
    /* 텍스트 중앙 정렬 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* 상단 여백 조정 */
    margin: 0 9%;
    padding-top: 6.5rem;
}

.txt-gradation {
    font-size: 1rem !important;
    margin-bottom: 1rem;
    background: linear-gradient(90deg,
    #2AC7B5 29%,
    #32B1E2 41%,
    #4777E5 50%,
    #4D65E5 59%,
    #515AE6 68%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    /* 또는 */
    width: fit-content;
}

.txt-gradation-reverse {
    font-size: 1rem !important;
    margin-bottom: 1.6rem;
    background: linear-gradient(90deg,
    #4431A4 29%,
    #515AE6 41%,
    #4D65E5 50%,
    #4777E5 59%,
    #32B1E2 68%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    /* 또는 */
    width: fit-content;
}

/* h1 스타일 */
.banner-service h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

/* h3 스타일 */
.banner-service h3 {
    color: #ebebeb;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    /* 줄간격 조정 */
    font-weight: 600;
    line-height: 1.8;
    /* 줄간격 추가 */
}

.icon-container {
    text-align: center;
    /* 이미지들을 가운데 정렬 */
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    margin-top: 14.5%;
    margin-bottom: 7%;
    display: flex;
    justify-content: space-evenly;
}

.icon-container img {
    display: inline-block;
    width: 112px;
    /* 아이콘 크기 */
    /* height: 80px; */
    height: auto;
    position: relative;
    /* translateY 적용을 위해 필요 */
    /*margin: 0 4.5rem;*/
    /* 아이콘 간 간격 */
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.7rem;
    opacity: 0;
}


/* 각 위치별 키프레임 정의 */
@keyframes moveToPosition1st {
    0% {
        opacity: 0;
        transform: translateY(-12rem);
    }

    100% {
        opacity: 1;
        transform: translateY(-8rem);
        /* 양쪽 끝 아이콘 최종 위치 */
    }
}

@keyframes moveToPosition2nd {
    0% {
        opacity: 0;
        transform: translateY(-8rem);
    }

    100% {
        opacity: 1;
        transform: translateY(-4rem);
        /* 중간 위치 아이콘 최종 위치 */
    }
}

@keyframes moveToPosition0nd {
    0% {
        opacity: 0;
        transform: translateY(-4rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* 중앙 아이콘 최종 위치 */
    }
}

/* .icon-container img:nth-child(1) {
  transform: translateY(-4rem);

}

.icon-container img:nth-child(2) {
  transform: translateY(-8rem);

}

.icon-container img:nth-child(3) {
  transform: translateY(0);

}

.icon-container img:nth-child(4) {
  transform: translateY(-8rem);

}

.icon-container img:nth-child(5) {
  transform: translateY(-4rem);

} */


.contact-email {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 0.5rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-wrap {
    height: auto;
    padding: 5% 6% 7%;
    background: no-repeat center/cover url(/images/main/artdesigndataabstract.png);
    color: #fff;
    position: relative;
    background-color: #001440;
    margin: 8% 9% 0.5%;
    border-radius: 3rem;
    /* 이미지의 어두운 파란색 배경 */
}

.txt-gradation-reverse {
    color: #6e7fff;
    /* 이미지의 HISTORY 색상 */
    font-weight: 800;
    margin-bottom: 1rem;
}

/* .content-wrap {
  margin-bottom: 3rem;
} */

.content-wrap h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-wrap p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.3rem;
}

.svg-wrap {
    display: flex;
    justify-content: center;
    /* margin-top: 4rem; */
    position: relative;
}

.svg-chart {
    width: auto;
    height: auto;
    padding-left: 18%;
    margin-top: -40px;
}

/* .chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2.6s forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}
 */

.start-year {
    opacity: 0;
}

.year-circle {
    fill-opacity: 0.6;
    stroke: none;
}

.year-circle-bg {
    fill-opacity: 0.2;
    stroke: none;
}

.point-marker {
    opacity: 0;
}

/* .point-marker {
  fill: #2739E5;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn2 1s ease forwards;
  animation-delay: 0s;
}

@keyframes fadeIn2 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
} */

.end-year {
    opacity: 0;
}

.tab-section {
    background: linear-gradient(to top,
    #C8DBFF 0%,
    #FFFFFF 98%);
    padding: 0 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.tab-secton-img-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    /*position: relative;*/
    justify-content: right;
    flex: 5;
}

.tab-subtxt {
    font-size: 1.3rem;
}


.asterisk1 {
    position: absolute;
    top: 13%;
    right: 16%;
    /* transform: scale(1); */
    /* 애니메이션 적용 */
    animation: scale-bounce 1s infinite alternate;
}

.asterisk2 {
    position: absolute;
    top: 20%;
    right: 3%;
    animation: scale-bounce 1s infinite alternate;
}

@keyframes scale-bounce {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }
}

.tab-secton-img-wrap .glass {
    /*width: 28rem;
    height: 32rem;*/
    max-width: 76%;
    height: auto;
    margin-top: 16rem;
    margin-bottom: 6%;
    margin-right: 8%;
}

.tab-menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 6;
    padding-bottom: 4%;
}

.tab-container {
    display: flex;
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
}

.tab-button {
    padding: 15px 24px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 10px 10px 0 0;
    font-size: 17px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    /* transition: all 0.3s ease; */
    margin-right: 5px;
    outline: none;
}

.tab-button.active {
    background-color: #fff;
    color: #2739E5;
    font-weight: 600;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
    background-color: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    top: -1px;
    opacity: 0;

    /*width: 50rem;
    height: 35rem;*/
}

.tab-content.active {
    display: block;
    /* flex: 1;*/
    opacity: 1;
    min-height: 500px;
}

.question-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.question-item {
    display: none;
}

.question-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #2b2b2b;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.question-title::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.question-title span {
    font-size: 0.95rem;
    margin-left: 5px;
    font-weight: 500;
    color: #555555;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.radio-group,
.checkbox-group {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px 20px 10px;
    min-height: 210px;
}

.radio-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
    cursor: pointer;
}

.radio-label input[type=radio] {
    width: 16px;
    height: 16px;
    border: 1px solid #C5C5C5;
    appearance: none;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    /* 이 줄이 핵심! */
    margin: 0;
    /* 브라우저 기본 여백 제거 */
}


.radio-label:last-child {
    /* margin-bottom: 0; */
}

.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
}

.radio-label input:checked ~ .radio-custom {
    border-color: #2739E5;
}

.radio-custom:after {
    content: "";
    display: none;
    width: 10px;
    height: 10px;
    background: #2739e5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input:checked ~ .radio-custom:after {
    display: block;
}

.radio-text {
    /*
    font-size: 1rem;
    line-height: 20px;*/
}

input[type="radio"] {
    vertical-align: middle;
    accent-color: #5A32FF;
    /* 필요 시 색상도 명시 */
}

/* 체크박스 */
/* 체크박스 커스텀 스타일 */
.checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    /* 라디오와 다르게 둥글지 않음 */
    transition: all 0.2s ease;
}

input[type="checkbox"] {
    vertical-align: middle;
}

/* 체크된 상태 */
.checkbox-group .checkbox-label input:checked ~ .checkbox-custom {
    border-color: #2739E5;
    background-color: #2739E5;
}

/* 체크 마크 */
.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-group .checkbox-label input:checked ~ .checkbox-custom:after {
    display: block;
}

/* 체크박스 라벨 스타일 */
.checkbox-label:not(.privacy-section .checkbox-label) {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-group .checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-text {
    font-size: 1rem;
    line-height: 20px;
    color: #2b2b2b;
    font-weight: 500;
}


.result-box {
    background-color: #F1F5FF;
    border-radius: 10px;
    padding: 20px;
}

.result-list,
.result-list2 {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
}

.result-item {
    position: relative;
    padding-left: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
    color: #2b2b2b;
}

/*.result-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}*/


.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn {
    height: 40px;
}

.btn-hidden {
    visibility: hidden;
}

.btn-prev {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #2739E5;
}

.btn-next {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #2739E5;
}

.btn-submit {
    background-color: #2739E5;
    border: none;
    color: #fff;
    display: none;
}

.btn:hover {
    opacity: 0.9;
}

/* 또는 CSS 애니메이션으로 구현 */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-pop {
    animation: popIn 0.5s ease forwards;
}

.animated-text h1 {
    font-weight: 800;
    /* extrabold */
    font-size: 2.5rem;
    opacity: 0;
    line-height: 1.6;
}

.animated-text p {
    /* font-weight: 800;
    font-size: 1.2rem; */
    padding-top: 1rem;
    opacity: 0;

    color: #555;
}

.faq-answer p {
    opacity: 1 !important;
}


.bg-circle {
    position: absolute;
    top: 28%;
    left: 8%;
    z-index: -999;
    opacity: 0;
}

.section-card {
    position: relative;
    /* height: 100vh; */
    padding: 4% 9% 8%;
}

.section-card-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-card-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.sub_text {
    color: #555;
    margin-bottom: 3.5rem;
    font-size: 1.2rem;
    /*transition: all 1s;*/
}

.section-card-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    /*transition: transform 0.3s, box-shadow 0.3s;*/
    min-height: 25rem;
    opacity: 0;
    position: relative;
    /* 위치 기준점 추가 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section-card-item p {
    font-size: 1rem;
}

.section-card-item:hover {
    outline: 3px solid blue;
}

.section-card-item:hover .section-card-btn {
    background: #2739E5;
    color: #FFFFFF;
}


.section-card-item-img-container {
    width: 100%;
    height: 150px;
    /* 모든 이미지 컨테이너의 높이 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 이미지와 버튼 사이 간격 */
    margin-bottom: 28px;
}

/*
.section-card-item img {
    /*width: 80%;
    max-height: 100%;
    object-fit: none;
    width: 100%;
}
*/

/* .section-card-item:hover {
  transform: translateY(-40px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.section-card-item.animate-in {
  animation: slideDown 1.5s ease forwards;
} */
.section-card-item-title {
    font-size: 1.82rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    text-align: center;
    color: #2b2b2b;
}

.section-card-item-desc {
    font-size: 1rem;
    color: #686868;
    /*margin-bottom: 40px;*/
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5;
}

.section-card-btn {
    /*position: absolute;*/
    bottom: 28px;
    /* 하단 패딩과 동일하게 */
    padding: 14px 37px;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #2b2b2b;
    text-decoration: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/*.section-card-btn:hover {
    background: #2739E5;
    color: #FFFFFF;
}*/

.arrow {
    margin-left: 6px;
    font-size: 1.1em;
}

.easy-anywhere {
    background: #fff;
    margin: 1.5rem 0 0 0;
}

.easy-anywhere-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9%;
}

.easy-anywhere-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.easy-anywhere-text p {
    font-size: 1.3rem;
    color: #555;
}

.easy-anywhere-icon {
    width: 20rem;
    height: 20rem;
    /*background: url(/images/main/Group\ 379.png) no-repeat center center;*/
    /*background-size: cover;*/
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.easy-anywhere-icon img {
    height: 85%;
    opacity: 0;
}

.easy-anywhere-card-list {
    display: flex;
    gap: 24px;
    list-style: none;
    overflow-x: hidden;
    margin-left: 9%;

}

.easy-anywhere-card {
    width: 32rem;
    height: 20rem;
    background: #f5f5f5;
    border-radius: 18px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    /*  align-items: flex-end;
    justify-content: flex-end; */
    align-items: center;
    justify-content: center;
    padding: 18px;
    position: relative;
}

.easy-anywhere-card span {
    position: absolute;
    left: 1.5rem;
    bottom: 1.3rem;
    display: inline-block;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    z-index: 3;
    text-align: center;
    padding: 1rem;
}


.easy-anywhere-card:hover {
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.10);
}

.easy-anywhere-card img {
    opacity: 0;
}

.card-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
}

.horizontal-progress-bar {
    /*width: 88%;*/
    height: 15px;
    background: #e9e9e9;
    margin-top: 2rem;
    margin-bottom: 8px;
    position: relative;
    border-radius: 1rem;
    margin-left: 9%;
}

.horizontal-progress {
    height: 100%;
    width: 0%;
    background: #2739E5;
    /* box-shadow: 0 0 20px #39FF14, 0 0 60px #39FF14; */
    transition: width 0.15s;
    border-radius: 1rem;
}

/* FAQ */
.faq-container {
    /* max-width: 700px; */
    padding: 4.5rem 9% 4rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.flex-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2.4rem;
}

.faq-container > .flex-box {

    margin-bottom: 3rem;
}

.faq-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    opacity: 0;
}

.far-more-wrap {
    border-radius: 2rem;
    border: 1px solid black;
}

.faq-more {
    float: right;
    padding: 0.5rem 2rem;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
    margin-top: -95px;
    line-height: 2;
    display: inline-block;

}

.faq-more:hover {
    border: 1px solid #999999;
}

.faq-more span {
    margin-left: 5px;
    font-size: 1.2rem;
}

.faq-list {
    clear: both;
    border-top: 3px solid #2b2b2b;
}

.faq-item {
    opacity: 0;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: 3px solid #2b2b2b;
}

.faq-question {
    /*width: 100%;*/
    flex: 1;
    text-align: left;
    background: none;
    border: none;
    /*padding: 2.2rem 0;*/
    padding: 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: background-color 0.2s;
    color: #2b2b2b;
}

.faq-item .faq-question::after {
    content: '';
    background: url("/images/main/arrow-down.svg") no-repeat center center;
    filter: grayscale(100%) brightness(0);
    width: 2.5rem;
    /* 반드시 지정! */
    height: 2.5rem;
    /* 반드시 지정! */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
    color: #888;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(-180deg);
}

.faq-Qmark {
    display: flex;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.faq-Qmark > span {
    font-size: 2rem !important;
    background: linear-gradient(90deg, #570FD4 0%, #2D086E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    width: fit-content;
}

.faq-question-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.faq-question-wrapper:hover {
    background: #F8FAFF;
}


.faq-answer {
    max-height: 0;
    /* 초기에는 숨김 */
    overflow: hidden;
    background: #fdfdfd;
    color: #2b2b2b;
    font-size: 1rem;
    padding: 0 0;
    transition: max-height 0.2s ease;
    display: none;
    flex-direction: column;
    line-height: 1.5;
    border-top: 1px solid #e8e8e8;
    /*align-items: center;*/
}

.faq-item.active .faq-answer {
    padding: 2rem;
    display: flex;
    /* max-height는 JS에서 동적으로 지정 */
}

/* 탭 메뉴 스타일 추가 */
.faq-tabs {
    display: flex;
    width: 100%;
    background-color: #F9F9F9;
    border-radius: 40px;
    margin-bottom: 4rem;
    overflow: hidden;
    clear: both;
    border: 1px solid #EDEDED;
    opacity: 0;
    height: 60px;
}

.tab-btn {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #2b2b2b;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.tab-btn:hover {
    /*background-color: #f0f0f0;*/
    font-weight: 600;
}

.tab-btn.active {
    /* background-color: #fff; */
    /* border-bottom: 2px solid #007bff; */
    font-weight: 600;
    color: #2739E5;
}

.notice-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4.5rem 9% 3.1rem;
    background: #fff;
    /*gap: 5rem;*/
    position: relative;
}

.notice-left {
    text-align: left;
    flex: 0 0 auto;
    /* position: relative; */
}

.notice-left-wrapper {
    padding-top: 0.2rem;
}

.notice-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 2.6rem;
    opacity: 0;
    /* word-break: keep-all; */
}

.notice-btn {
    padding: 0.5rem 2rem;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
    line-height: 2;
    display: inline-block;

}

.history-btn {
    padding: 0.8rem 2rem;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
    line-height: 1.4;
    margin-top: 2.6rem;
    display: none;
}

.history-btn span {
    font-size: 1.15em;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s;
    display: none;
    line-height: 1.8;
}

.notice-btn span {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s;
}

.notice-btn:hover {
    border: 1px solid #999999;
}

.notice-btn:hover span {
    transform: translateX(3px);
}

.notice-image-wrap {
    /*background: no-repeat center/cover url(/images/main/Ellipse.png);*/
    width: 36rem;
    height: auto;
    margin-top: 12.5rem;
    display: flex;
    align-items: center;
    /*justify-content: center;*/


}

.notice-image-wrap img {
    opacity: 0;
    width: 55%;
    height: 55%;
}

.notice-right {
    flex: 1 1 0;
}

.notice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
    height: 88vh;
}

.notice-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    width: 100%;
    /* grid item이 셀을 꽉 채우도록 */
    height: 100%;
    /* grid-auto-rows의 높이만큼 꽉 채움 */
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    /*border: 2px solid blue;*/
    outline: 3px solid blue;
    cursor: pointer;
}

.notice-badge {
    display: inline-block;
    background: #222;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    margin-bottom: 0.2rem;
    align-self: flex-start;
}

.notice-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.5;
    word-break: keep-all;
}

.notice-card:hover .notice-title {
    color: blue;
}

.notice-card:hover .notice-badge {
    color: white;
    background-color: blue;
}

.notice-date {
    font-size: 1.1rem;
    color: #999;
    margin-top: auto;
}

.product-inquiry-section {
    padding: 0 9% 8.5%;
    background: linear-gradient(to top, rgb(231 240 249) 0%, rgb(255, 255, 255) 60%);
}

.product-inquiry-wrapper {
    display: flex;
    justify-content: space-between;
    background: no-repeat center/cover url('/images/main/product-inquiry-bg.png');
    padding: 6.5rem 5.5%;
    align-items: center;
    border-radius: 2rem;
    box-shadow: 12px 12px 10px rgb(220, 237, 254);
}

.product-inquiry-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 44px;
    letter-spacing: -0.02em;
    color: black;
}

.product-inquiry-box {
    /* background: #f5f5f5;
    border-radius: 16px; */
    /*  padding: 48px 56px; */
    color: #eee;
    align-items: center;
}

.product-inquiry-section-img-wrap img {
    width: 80%;
    float: right;
    margin-right: 8%;
}

.product-inquiry-content h3 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.product-inquiry-content p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.8;
}

/* 팝업 오버레이 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

/* 팝업 컨테이너 */
.popup-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 팝업 헤더 */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.popup-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

/* 폼 스타일 */
.consultation-form {
    padding: 24px;
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}

/* 입력 필드 그룹 */
.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-select {
    cursor: pointer;
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");*/
    background-image: url("/images/main/arrow-down.svg");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

/* 버튼 그룹 */
.button-group {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.popup-btn-cancel,
.popup-btn-submit {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.popup-btn-cancel {
    background: #f3f4f6;
    color: #374151;
}

.btn-cancel:hover {
    background: #e5e7eb;
}

.popup-btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #7ca9cb 100%);
    color: white;
}

.popup-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
/*개인정보동의 체크박스 스타일*/
.privacy-section {
	margin-bottom: 8px;
	height: 90px;
}

.privacy-section .checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 8px;
}

.checkbox-input {
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.privacy-section .checkbox-text {
	color: #333;
	font-weight: bold;
	font-size: 14px;
}

.privacy-notice {
	font-size: 13px;
	color: #666;
}
/* ========== 개인정보 동의서 모달 스타일 ========== */

.privacy-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow-y: auto;
}

.privacy-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-content {
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 30px auto;
    padding: 24px 28px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.privacy-modal-content h1 {
    font-size: 22px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.privacy-modal-content h2 {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.privacy-modal-content p.desc {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.privacy-modal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    margin-bottom: 12px;
}

.privacy-modal-content th,
.privacy-modal-content td {
    border: 1px solid #ccc;
    padding: 8px 10px;
    font-size: 13px;
    text-align: left;
}

.privacy-modal-content th {
    background-color: #f0f0f0;
    text-align: center;
    font-weight: 600;
}

.privacy-modal-content .consent-block {
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    background-color: #fafafa;
}

.privacy-modal-content .consent-block p {
    margin: 0 0 10px 0;
}

.privacy-modal-content .consent-options {
    margin-top: 8px;
}

.privacy-modal-content .consent-options label {
    margin-right: 20px;
    cursor: pointer;
    font-size: 14px;
}

.privacy-modal-content .consent-options input[type="radio"] {
    margin-right: 4px;
    cursor: pointer;
}

.privacy-modal-content .submit-area {
    margin-top: 24px;
    text-align: center;
}

.privacy-modal-content .submit-area button {
    padding: 10px 32px;
    font-size: 14px;
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.privacy-modal-content .submit-area button:hover {
    background-color: #555;
}

.privacy-modal-content .error-message {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.privacy-modal-content .footer-note {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* 링크 스타일 추가 */
.privacy-link {
    color: #278FE5;
    text-decoration: underline;
    cursor: pointer;
}

.privacy-link:hover {
    color: #1a6fb8;
}

/* ========== 태블릿 가로, 노트북 (769px ~ 1279px) ========== */
@media (max-width: 1920px) {
    .section-card-list {
        gap: 1.2rem;
    }

    /*	.section-card-item{
            padding:56px 24px 56px 24px;
        }*/

}

@media (max-width: 1600px) {


    .title {
        font-size: 2.7rem;
        padding: 1rem 0 0;
        margin: 0 0 2rem 0;
        line-height: 1.45;
    }

    .description {
        font-size: 1.18rem;
    }

    .logo-wrap {
        margin-right: 0;
    }

    .nav-item > .nav-item > a {
        font-size: 1.2rem;
    }

    .hero-bg-group-wrap img {
        max-width: 86%;
        max-height: 100%;
        margin: 5%;

    }

    .service-grid {
        padding: 6% 7% 8%;
    }

    .service-grid-cards {
        grid-template-columns: auto;
        gap: 1.5rem;
    }

    .menu-thumb {
        width: 260px;
        height: 168px;
        margin-top: -20px;
    }

    .nav-menu {
        font-size: 1.27rem;
        gap: 0;
    }

    .mega-menu-area {
        margin: 0 5%;
    }

    .menu-col {
        padding: 0 34px 0 60px;
    }

    .user-menu a {
        font-size: 0.9rem;
    }

    .inquiry-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .user-menu .login::after {
        margin-left: 10px;
    }

    .section-card-title {
        font-size: 2rem;
    }

    .section-card-item-img-container {
        margin-bottom: 20px;;
    }

    .section-card-item {
        padding: 38px 24px 30px 24px;
        min-height: 24.5rem;
    }

    .section-card-item p {
        font-size: 0.9rem;
    }

    .section-card-item-title {
        font-size: 1.5rem;
    }

    .animated-text p {
        padding-top: 0.3rem;
    }

    .section-card-btn {
        padding: 12px 28px;
    }

    .custom-button,
    .custom-button2 {
        min-width: 168px;
        padding: 16px 20px;
        font-size: 1rem;
        /*line-height: 1rem;*/
        margin-right: 1.2rem;
        height: 52px;
    }

    .section-card {
        padding: 4% 3% 5%;
    }

    .section-card-list {
        gap: 1rem;

    }

    .easy-anywhere {
        margin-top: 0;
    }

    .easy-anywhere-icon img {
        height: 70%;
    }

    .grid-card-content p {
        line-height: 1;
    }

    .grid-card {
        padding: 2rem;
        min-height: 24vh;
    }

    .hero-bg-group-wrap {
        justify-content: right;
    }

    .slider-container {
        padding: 1% 7%;
    }

    .slider-container .bg {
        padding: 1.85% 5% 1.85% 7%;
    }

    .button-container {
        margin-bottom: 2rem;
    }

    .hero-content {
        /*flex:1.2;*/
    }

    .hero-bg-group-wrap {
        flex: 1;
        justify-content: flex-end;
    }

    .sub_text {
        font-size: 1.1rem;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .service-intro p {
        font-size: 1rem;
        padding-top: 0.6rem;
    }

    .service-grid-cards {
        margin-top: -45px;
        justify-content: flex-end;
    }

    .grid-card-content h3 {
        font-size: 1.5rem;
    }

    .animated-text h1 {
        font-size: 2rem;
    }

    .banner-service h3 {
        font-size: 1.2rem;
    }

    .icon-container img {
        width: 100px;
    }

    .easy-anywhere-text h2 {
        font-size: 2rem;
    }

    .easy-anywhere-text p {
        font-size: 1.1rem;
    }

    .svg-chart {
        padding-left: 8%;
    }

    .button-group {
        margin-top: 20px;
        padding-top: 12px;
    }

    .tab-secton-img-wrap .glass {
        max-width: 82%;
        margin-top: 15rem;
    }

    .tab-button {
        font-size: 14px;
    }

    .btn {
        padding: 10px 16px;
        height: 28px;
        line-height: 0;
        font-size: 0.8rem;
    }

    .radio-group,
    .checkbox-group {
        min-height: 210px;
    }

    .tab-content.active {
        min-height: 400px;
        padding: 1rem;
    }

    .radio-text {
        font-size: 0.9rem;
    }

    .result-box {
        padding: 10px;

    }

    .result-item {
    }

    .animate-wrap p {
        font-size: 1.1rem;
    }

    .tab-subtxt {
        font-size: 1.1rem;
    }

    .banner-service {
        margin: 0 7%;
        padding-top: 6rem;
    }

    .tab-section {
        padding: 0 7%;
    }

    .faq-container h2 {
        font-size: 2rem;
    }

    .faq-more {
        font-size: 1rem;
        padding: 0.4rem 1.3rem;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .notice-title {
        font-size: 1.45rem;
    }

    .notice-left h2 {
        font-size: 2rem;
    }

    .notice-btn {
        font-size: 1rem;
        padding: 0.4rem 1.3rem;
        line-height: 2.5rem;
    }

    .notice-image-wrap img {
        width: 70%;
    }

    .product-inquiry-title {
        font-size: 2rem;
    }

    .product-inquiry-wrapper {
        padding: 5.4% 5.5%;
        min-height: 23rem;
    }

    .notice-list {
        gap: 1rem;
        height: 83vh;
    }

    .easy-anywhere-card-list {
        margin-left: 7%;
    }

    .easy-anywhere-card span {
        font-size: 2.14rem;
        left: 2rem;
        bottom: 1.2rem;
    }

    .horizontal-progress-bar {
        margin-left: 7%;
    }

    .animate-wrap {
        margin: 8% 7% 0.5%;
    }

    .faq-container {
        padding: 4.5rem 7% 4rem;
    }

    .notice-section {
        padding: 4.5rem 7% 3.1rem;
    }

    .product-inquiry-section {
        padding: 0 7% 8.5%;
    }

    .notice-image-wrap {
        margin-top: 10rem;
    }

    .easy-anywhere-row {
        padding: 0 7%
    }

    .service-grid {
        grid-template-columns: auto;
    }

    .notice-image-wrap {
        width: auto;
    }

    .grid-card-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .product-inquiry-content h3 {
        font-size: 2rem
    }
}

@media (max-width: 1360px) {
    .hero-bg-group-wrap img {
        max-width: 86%;
    }

    .slider-container .bg {
        padding: 5% 6% 5% 7%;
    }

}


@media (max-width: 1279px) {

    /* 히어로 섹션 최적화 */
    .hero {
        /* height: calc(100dvh - 4.5rem); */
        justify-content: flex-start;
    }

    .title {
        text-align: center;
        font-size: 2.85rem;
        margin: 0 0 1.2rem 0;
    }

    .description {
        font-size: 0.95rem;
        text-align: center;
    }

    .badge {
        width: 12rem;
        height: 2rem;
        font-size: 1.1rem;
    }

    /* 슬라이더 조정 */
    .slider-container {
        padding: 1% 7%;
    }

    .bg {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .button-container {
        margin: 2rem;
        text-align: center;

    }

    .hero-bg-group-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden;
    }

    .hero-bg-group-wrap img {
        right: 8%;
        top: 10%;
        position: unset;
        width: 35%;
        height: auto;
        object-fit: contain;
    }

    /* 버튼 조정 */
    .custom-button,
    .custom-button2 {
        padding: 14px 24px;
        height: 52px;
        font-size: 15px;
        line-height: 22px;
        margin-right: 20px;
    }

    /* 서비스 그리드 조정 */
    .service-grid {
        padding: 8% 8% 12%;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-intro {
        text-align: center;
        margin-bottom: 1rem;
    }

    .service-intro h2 {
        font-size: 2.2rem;
        white-space: normal;
    }

    .service-grid-cards {
        margin-top: 0;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
			"standalone central"
			"security network"
			"education education";
    }

    .grid-card {
        min-height: 10rem;
        padding: 2rem;
    }

    /* 배너 서비스 조정 */
    .banner-service {
        padding-top: 3.5rem;
        margin: 0 5%;
        height: 100%;
    }

    .banner-service h1 {
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }

    .banner-service h3 {
        font-size: 1.4rem;
    }

    .icon-container {
        margin-top: 13%;
    }

    .icon-container img {
        width: 77px;
        margin: 2rem;
    }

    /* 애니메이션 섹션 조정 */
    .animate-wrap {
        padding: 4% 5%;
        margin: 8% 5% 0;
        height: auto;
    }

    .content-wrap h1 {
        font-size: 1.8rem;
    }

    /* 탭 섹션 조정 */
    .tab-section {
        padding: 2rem 7%;
        /*flex-direction: column;*/
        /*height: auto;*/
        gap: 2rem;
        height: 100%;
        align-items: stretch;
    }

    /*.tab-secton-img-wrap .glass {
        width: 20rem;
        height: 24rem;
    }*/
    .tab-content {
        width: 100%;
        height: auto;
        min-height: 25rem;
    }

    .tab-button {
        padding: 12px 54px;
        white-space: nowrap;
    }

    .tab-secton-img-wrap .glass {
        max-width: 90%;
    }

    .question-title {
        font-size: 0.95rem;
    }

    .result-box {
        padding: 5px;
    }

    .result-item {
        font-size: 0.95rem;
    }

    .result-item img {
        width: 10px;
    }


    .tab-secton-img-wrap {
        height: unset;
    }

    .asterisk1 {
        top: 20%;
    }

    .asterisk2 {
        top: 25%;
    }

    /* 카드 섹션 조정 */
    .section-card {
        padding: 4% 8% 7%;
        height: auto;
    }

    .section-card-title {
        margin-bottom: 0;
    }

    .section-card-item-desc {
        margin-bottom: 1rem;
    }

    .section-card-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .section-card-item {
        min-height: 20rem;
    }

    /* Easy Anywhere 조정 */
    .easy-anywhere-row {
        flex-direction: row;
        /*flex-direction: column;*/
        text-align: left;
    }

    .easy-anywhere-card-list {
        margin-left: 7%;
        /*justify-content: center;*/
    }

    .easy-anywhere-card {
        width: 28rem;
        height: 18rem;
    }

    .easy-anywhere-card span {
        font-size: 1.8rem;
    }

    /* 공지사항 조정 */
    .notice-section {
        padding: 0 8%;
        flex-direction: column;

    }

    .notice-right {
        width: 100%;
    }

    .notice-left {
        display: flex;
        width: 100%;
        justify-content: space-between;
        max-height: 38vh;
        margin-bottom: 1rem;
    }

    .notice-image-wrap {
        left: 0;
        height: auto;
        margin-top: 0;
        justify-content: flex-end;
    }

    .notice-image-wrap img {
        width: auto;
        height: 74%;
    }

    .notice-list {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ 조정 */
    .faq-container {
        padding: 3rem 8%;
    }

    /* 제품 문의 조정 */
    .product-inquiry-section {
        padding: 5% 8% 10%;
    }

    .product-inquiry-wrapper {
        /*flex-direction: column;*/
        gap: 2rem;
        text-align: center;
    }

    .product-inquiry-box {
        flex: 2;
    }

    .product-inquiry-section-img-wrap {
        flex: 1;
    }

    .product-inquiry-box {
        text-align: left;
    }

    .animate-wrap p {
        font-size: 1rem;
    }

    .animated-text p {
        padding-top: 1rem;
        margin-bottom: 1.2rem;
    }

    .tab-subtxt {
        font-size: 1rem;
    }

    .section-card-item-title {
        font-size: 1.55rem;
    }

    .section-card-btn {
        padding: 14px 38px;
    }

    .notice-left h2 {
        margin-bottom: 1.5rem;
    }

    .product-inquiry-content h3 {
        font-size: 1.85rem;
        margin-bottom: 0;
    }

    .product-inquiry-content p {
        font-size: 1.06rem;
        margin-bottom: 2rem;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .banner-service h1 {
        font-size: 2rem;
    }

    .banner-service h3 {
        font-size: 1.15rem;
    }

    .banner-service h3:last-child {
        margin-bottom: 2rem;
    }

    .content-wrap h1 {
        font-size: 2rem;
    }

    .product-inquiry-title {
        margin-bottom: 40px;
    }

    .privacy-section {
        height: 112px;
    }
}

@media (max-width: 960px) {
    .header {
        padding: 0 7%;
    }

    .nav-item > a {
        padding: 0.65rem;

    }

    .nav-menu {
        gap: 0;

        padding: 0 0.1rem;
    }


    .user-menu a {
        font-size: 0.8rem;
    }

    .inquiry-btn {
        padding: 8px 14px;
        margin-right: 6px;

    }

    .hero-bg-group-wrap img {
        max-width: 88%;
        max-height: 100%;
        margin: 5%;

    }

    .slider-container .custom-button, .custom-button2 {
        margin-right: 20px;
    }

    .mobile-user-menu > a {
        margin-right: 0;

    }


    .section-card-list {
        grid-template-columns: repeat(2, 1fr);

    }

    .easy-anywhere-text h2 {
        font-size: 1.88rem;
    }

    .easy-anywhere-text p {
        font-size: 1rem;
    }

    .easy-anywhere-card span {
        font-size: 1.85rem;
    }

    .product-inquiry-content h3 {
        font-size: 1.85rem;
    }

    .product-inquiry-wrapper {
        padding: 9% 5%;
        min-height: 21rem;
    }

    .tab-secton-img-wrap {
        display: none;
    }

    .tab-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .tab-container {
        margin-top: 1rem;
    }

    .radio-text {
        font-size: 0.95rem;
    }

    .question-title {
        font-size: 0.98rem;
    }

    .btn {
        height: 30px;
        padding: 5px 20px;
        font-size: 0.85rem;
    }

    .question-title {
        margin-bottom: 10px;
    }

    .result-item {
        font-size: 1rem;
    }

    .result-list,
    .result-list2 {
        min-height: 36px;
    }

    .notice-title {
        font-size: 1.3rem;
    }

    .notice-image-wrap img {
    }

    .service-intro h2 {
        margin-bottom: 0.5rem;
    }

    .faq-more {
        padding: 0.4rem 1.5rem;
    }

    .notice-btn {
        padding: 0.4rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 810px) {
    /* 추가 */
    .logo {
        height: 1.8rem;
    }

    .nav-menu {
        display: none;
    }

    .user-menu a {
        font-size: 0.9rem;
    }
}

/* ========== 스마트폰 가로, 태블릿 (481px ~ 768px) ========== */
@media (max-width: 768px) {

    /* 히어로 섹션 모바일 */
    .header {
        padding: 0 3%;
    }

    .hero {
        /*height: calc(100vh - 4rem);*/
        padding-top: 0;
    }

    .title {
        font-size: 2.4rem;
        margin: 1rem 0 1.2rem;
        line-height: 1.4;
    }

    .description {
        font-size: 1rem;
    }

    .inquiry-btn > a {
        display: block;
    }

    .badge {
        width: 10rem;
        height: 1.8rem;
        font-size: 0.9rem;
    }

    /* 슬라이더 모바일 */
    .slider-container {
        padding: 3% 3%;
    }

    .slider-container .bg {
        border-radius: 20px;
        padding: 4% 4% 6%;

    }

    .hero-bg-group-wrap {
        height: fit-content;
    }

    .hero-bg-group-wrap img {
        right: 4%;
        top: 27%;
        width: 60%;
    }

    /*@keyframes pulse {
        0%, 100% {
            transform: translateX(50%) scale(1.0);
        }
        50% {
            transform: translateX(50%) scale(1.05);
        }
    }*/
    .hero-content {
        width: auto;
        justify-content: center;
        /*height: 100%;*/
    }

    /* 버튼 모바일 */
    .button-container {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .hamburger {
        width: 38px;
        height: 38px;
    }

    .hamburger span {
        height: 4px;
    }

    .custom-button,
    .custom-button2 {
        padding: 20px 22px;
        /*height: 44px;*/
        font-size: 15px;
        min-width: 150px;
        line-height: 12px;
        margin-right: 10px;
    }


    /* 스크롤 다운 */
    .scroll-down-wrap {
        padding-top: 20px;
    }

    .scroll-down-wrap span {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    /* 서비스 그리드 모바일 */
    .service-grid {
        padding: 13% 5%;
        grid-template-columns: 1fr;
        background-position: 0% -400%;
        gap: 1rem;
    }

    .service-intro {
        text-align: center;
    }

    .service-intro h2 {
        font-size: 1.65rem;
        white-space: normal;
        line-height: 1.3;
    }

    .service-intro p {
        font-size: 1rem;
    }

    .service-grid-cards {
        grid-template-columns: 1fr;
        grid-template-areas:
			"standalone"
			"central"
			"security"
			"network"
			"education";
        gap: 1rem;
    }

    .grid-card {
        min-height: 8rem;
        padding: 2rem;
    }

    .grid-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .grid-card-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .grid-card-icon img {
        width: 3rem;
        height: 3rem;
    }

    /* 배너 서비스 모바일 */
    .banner-service-section {
        background-position: 20%;
    }

    .banner-service {
        height: 100%;
        margin: 0 3%;
        padding-top: 3rem;
        background-size: cover;
    }

    .banner-service h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .banner-service h3 {
        font-size: 0.8rem;
        line-height: 1.6;
        margin: 0.4rem 0;
    }

    .txt-gradation,
    .txt-gradation-reverse {
        font-size: 0.9rem !important;
        letter-spacing: 1px;
    }

    .icon-container {
        margin-top: 20%;
    }

    .icon-container img {
        width: 64px;
        margin: 2rem -3rem;
        padding: 0;
    }

    /* 애니메이션 섹션 모바일 */
    .animate-wrap {

        padding: 6%;
        margin: 7% 4% 1%;
        border-radius: 2rem;
    }

    .content-wrap h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .content-wrap p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* 탭 섹션 모바일 */
    .tab-section {
        padding: 2rem 3%;
        /*height: auto;*/
        flex-direction: column;
        gap: 1.5rem;
    }

    .tab-secton-img-wrap {
        display: none;
        order: 2;
    }

    .tab-menu-wrapper {
        width: 100%;
        order: 1;
    }

    .tab-secton-img-wrap .glass {
        width: 15rem;
        height: 18rem;
    }

    .asterisk1,
    .asterisk2 {
        display: none;
    }

    .tab-container {
        flex-wrap: wrap;
        /*justify-content: center;*/
    }

    .tab-button {
        padding: 12px 14px;
        font-size: 15px;
        /*margin-bottom: 5px;*/
        margin-right: 3px;
    }

    .tab-content {
        width: 100%;
        height: auto;
        min-height: 20rem;
        padding: 20px;
    }

    .star-icon {
        width: 15px;
    }

    .result-item {
        font-size: 0.83rem;
    }

    .result-item img {
        width: 15px;
    }

    /* 카드 섹션 모바일 */
    .section-card {
        height: auto;
        padding: 2rem 5%;
    }


    .section-card-title {
        font-size: 1.65rem;
        margin-bottom: 0;

    }

    .section-card-item-title {
        font-size: 1.6rem;
    }

    .section-card-item-desc {
        font-size: 1rem;
    }

    .section-card-list {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: none;
        gap: 16px;
    }

    .section-card-item {
        min-height: 15rem;
        padding: 40px;
    }

    .section-card-btn {
        bottom: 5px;
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .section-card-item-desc {
        margin-bottom: 0;
    }

    /*.section-card-item-img-container {
        align-items: flex-start;
    }

    .section-card-item-img-container {
        width: 100%;
    }*/
    /* Easy Anywhere 모바일 */
    .easy-anywhere-row {
        padding: 6% 5%;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .easy-anywhere-icon {
        height: 100%;
        overflow: hidden;
    }

    .easy-anywhere-icon img {
        width: 360px;
    }

    .easy-anywhere-text h2 {
        font-size: 1.65rem;
        margin-top: 0;
    }

    .easy-anywhere-card span {
        font-size: 1.38rem;
        left: 0.1rem;
        bottom: 0.1rem;

    }

    .easy-anywhere-card-list {
        margin-left: 5%;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 0;
    }

    .easy-anywhere-card {
        width: 20rem;
        height: 12rem;
        font-size: 1.1rem;
        padding: 14px;
        flex: 0 0 auto;
    }

    .horizontal-progress-bar {
        margin-top: 8px;
        height: 8px;
        margin-left: 5%;
        display: none;
    }

    .animated-text p {
        padding-top: 0.3rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;

    }

    .sub_text {
        margin-top: 0.8rem;
    }

    .animated-text h1 {
        font-size: 1.5rem;
        margin-top: 0;
    }

    .notice-left-wrapper {
        margin-top: 1rem;
    }

    .svg-chart {
        padding-left: 0.5%;
        margin-top: 0;
    }

    /* FAQ 모바일 */
    .faq-container {
        padding: 5% 2%;
    }

    .faq-more {
        padding: 0.2rem 1rem;
        font-size: 0.9rem;
        margin-top: -88px;
        line-height: 2.5rem;
    }

    .faq-container h2 {
        font-size: 1.65rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 2rem 2rem 2rem 0;
    }

    .faq-item.active .faq-answer {
        font-size: 0.9rem;
    }

    .faq-tabs {
        /*flex-direction: column;*/
        border-radius: 50px;
        margin-bottom: 2.8rem;
    }

    .tab-btn {
        font-size: 0.95rem;
    }

    /* 공지사항 모바일 */
    .notice-left-wrapper {
        white-space: nowrap;
    }


    .notice-card {
        padding: 2rem;
    }

    .notice-section {
        padding: 1% 3% 8%;
        flex-direction: column;
        gap: 2rem;
        align-items: normal;
    }

    .notice-left {
        display: flex;

    }

    .notice-left h2 {
        font-size: 1.5rem;
    }

    .notice-btn {
        font-size: 0.9rem;
        padding: 0.2rem 1rem;
    }

    .notice-image-wrap img {
        max-width: 212px;
        margin-top: 2rem;
    }

    .notice-image-wrap {
        width: 100%;
        height: 100%;
        justify-content: flex-end;
        margin-top: 0;
    }

    .notice-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
    }

    /* 제품 문의 모바일 */
    .product-inquiry-section {
        padding: 0 3% 14%;
    }

    .product-inquiry-wrapper {
        flex-direction: row;
        /*gap: 1.5rem;*/
        /*text-align: center;*/
        padding: 2% 6%;
        border-radius: 1.5rem;
        min-height: 18rem;
    }

    .product-inquiry-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .product-inquiry-section-img-wrap img {
        width: 100%;
        float: none;
    }

    .product-inquiry-content h3 {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .product-inquiry-content p {
        margin-bottom: 26px;
        line-height: 1.8;
        font-size: 1rem;
        margin-top: 1rem;
    }

    /*개인정보 이용동의 */
    .privacy-section {
        padding: 14px 12px 10px;
        height: 132px;
    }

    .privacy-modal-content {
        width: 95%;
        padding: 20px;
    }

    .privacy-modal-content h1 {
        font-size: 20px;
    }

    .privacy-modal-content h2 {
        font-size: 15px;
    }
}

/* ========== 스마트폰 세로 (0px ~ 480px) ========== */
@media (max-width: 480px) {
    .checkbox-text {
        font-size: 14px;
    }

    /* 히어로 섹션 초소형 */
    .hero {
        height: calc(100vh - 3.5rem);
        padding-top: unset;
    }

    .title {
        font-size: 1.8rem;
        margin: 1rem 0;
        line-height: 1.4;
    }

    .description {
        font-size: 0.8rem;
        line-height: 2;
        color: #2A2A2A;
        font-weight: 500;
    }

    .badge {
        width: 8rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }

    .inquiry-btn {
        padding: 8px 10px;
        margin-right: 0;
    }

    .user-menu .login::after {
        content: '|';
        color: #eaeaea;
        width: 5%;
        height: 5%;
        display: inline-block;
        margin-left: 6px;
    }

    /* 슬라이더 초소형 */
    .slider-container {
        padding: 4% 2%;
    }

    .slider-container .bg {
        border-radius: 15px;
        /*padding: 10%*/
        padding: 5% 10%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .hero-content {
        justify-content: flex-start;
    }

    .hero-bg-group-wrap img {
        /*right: 3%;
        top: 30%;
        width: 35%;*/
        top: 100%;
        right: unset;
        /*transform: translate(-50%, -120%);*/
        left: 50%;
        width: 100%;
    }

    @keyframes pulse {
    }

    /* 버튼 초소형 */
    .button-container {
        margin-top: 1.5rem;
        display: flex;
        /*flex-direction: column;*/
        gap: 1rem;
        align-items: center;
        flex-wrap: nowrap;
    }

    .custom-button,
    .custom-button2 {
        padding: 10px 14px;
        height: 46px;
        font-size: 15px;
        min-width: 140px;
        max-width: 200px;
        margin-right: 0;
        line-height: 26px;
    }

    .section-card-btn {
        padding: 14px 34px;
    }

    /* 서비스 그리드 초소형 */
    .service-grid {
        padding: 15% 3%;
        background-position: 0% -300%;
    }

    .service-intro h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .service-intro p {
        font-size: 0.9rem;
    }

    .grid-card {
        min-height: 7rem;
        padding: 0.8rem;
    }

    .grid-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .grid-card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .grid-card-icon img {
        width: 2.5rem;
        height: 2.5rem;
    }

    /* 배너 서비스 초소형 */
    .banner-service {
        margin: 0 2%;
        padding-top: 1.5rem;
        border-radius: 20px;
    }

    .banner-service h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .banner-service h3 {
        font-size: 0.7rem;
        line-height: 1.5;
        margin: 0.3rem 0;
    }

    .txt-gradation,
    .txt-gradation-reverse {
        font-size: 0.8rem !important;
        letter-spacing: 0.5px;
    }

    .icon-container {
        bottom: -5%;
        margin-top: 35%;
    }

    .icon-container img {
        width: 45px;
        margin: 0 10px;
        padding: 0.3rem;
    }

    /* 애니메이션 섹션 초소형 */
    .animate-wrap {
        padding: 5%;
        margin: 6% 2% 0;
        border-radius: 20px;
    }

    .content-wrap h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .content-wrap p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* 탭 섹션 초소형 */
    .tab-section {
        padding: 1.5rem 3%;
        gap: 1rem;
    }

    .tab-secton-img-wrap .glass {
        width: 12rem;
        height: 15rem;
    }

    .tab-button {
        font-size: 14px;
        /*margin-bottom: 3px;*/
        margin-right: 2px;
    }

    .tab-content {
        min-height: 18rem;
        padding: 15px;
    }

    .btn {
        height: 40px;
    }

    .btn-hidden {
        display: none;
    }

    .result-list,
    .result-list2 {
        min-height: 30px;
    }

    .result-item img {
        width: 12px;
    }

    /* 카드 섹션 초소형 */
    .section-card {
        padding: 0% 3%;
    }

    .section-card-title {
        font-size: 1.6rem;
    }

    .section-card-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .section-card-item {
        min-height: 12rem;
        padding: 30px 12px 30px 12px;
    }

    /* Easy Anywhere 초소형 */
    .easy-anywhere-row {
        padding: 1rem 3%;
        gap: 0;
    }

    .easy-anywhere-card-list {
        margin-left: 3%;
        gap: 12px;
        padding-bottom: 8px;
    }

    .easy-anywhere-card {
        width: 15rem;
        height: 9rem;
        font-size: 0.95rem;
        padding: 10px;
    }

    /* FAQ 초소형 */
    .faq-container {
        padding: 2rem 3%;
    }

    .faq-item .faq-question::after {
        width: 2rem;
    }

    /* 공지사항 초소형 */
    .notice-section {
        padding: 2rem 3%;
        gap: 1.5rem;
    }

    .notice-title {
        font-size: 1.3rem;
    }

    .notice-image-wrap {
        width: 15rem;
        height: 15rem;
        margin-top: 0;
    }

    /* 제품 문의 초소형 */
    .product-inquiry-section {
        padding: 2rem 3%;
    }

    .product-inquiry-wrapper {
        padding: 1.5rem;
        border-radius: 1rem;
        gap: 1rem;
    }

    /* 팝업 초소형 최적화 */
    .popup-container {
        width: 98%;
        margin: 10px;
        max-height: 95vh;
    }

    .consultation-form {
        padding: 16px;
    }

    .button-group {
        flex-direction: column;
    }

    .popup-btn-cancel,
    .popup-btn-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .tab-btn {
        flex: 1 1 auto;
        font-size: 0.8rem;
    }

    .easy-anywhere-text p {
        font-size: 0.9rem;
    }

    .faq-container > .flex-box {
        align-items: flex-start;
    }

    .section-card-item img {
        width: auto;
    }

    .faq-tabs {
        margin-bottom: 2rem;
    }

    .question-title {
        margin: 10px 0;
    }

    .radio-group,
    .checkbox-group {
        padding: 15px;
    }

    .radio-grid {
        gap: unset;
    }

    .result-box {
        padding: 0;
    }

    .radio-label {
        margin-bottom: 10px;
    }

    .easy-anywhere-icon {
        width: auto;
        height: auto;
    }

    .easy-anywhere-icon img {
        width: 100%;
        height: 100%;
        display: none;
    }

    .notice-left-wrapper {
        flex: 1 0 auto;
    }

    .hero-content {
        flex: 0;
    }
}

/* ========== 가로 모드 최적화 ========== */
/*@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: calc(100vh - 3.5rem);
        padding-top: 2%;
    }

    .title {
        font-size: 2rem;
        margin: 1rem 0;
    }

    .banner-service {
        height: 100vh;
        padding-top: 1rem;
    }

    .icon-container {
        height: 20vh;
    }

    .animate-wrap {
        height: 80vh;
        padding: 4% 5%;
    }
}*/