:root {
    --maincolor: #ff4135;
    --subcolor: #cc362b;
    --bgcolor: #f7f6f5;
    --bgcolor2: #fff8f7;

    --text-color1: #262626;
    --text-color2: #4d4d4d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    position: relative;
}

.hide-pc {
    display: none;
}

.hide-mobile {
    display: block;
}

/* 스크롤 애니메이션 */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    visibility: hidden;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* 딜레이 클래스 */
.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-800 {
    transition-delay: 0.8s;
}

.title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-color2);
}

/* ================================== */

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.on {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .header-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.header .header-logo a {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color1);
}

.header .header-logo img {
    height: 35px;
    width: auto;
}

.header .header-logo .logo-white {
    display: block;
}

.header .header-logo .logo-dark {
    display: none;
}

.header.on .header-logo .logo-white {
    display: none;
}

.header.on .header-logo .logo-dark {
    display: block;
}

.header .nav-menu {
    position: relative;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.header .nav-menu .close-btn {
    display: none;
}

.header .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header .nav-list a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.header.on .nav-list a {
    color: var(--text-color1);
}

.header .nav-list a:hover {
    color: var(--subcolor);
}

.header.on .nav-list a:hover {
    color: var(--maincolor);
}

.header .mobile-buttons {
    display: none;
}

.header .mobile-left-btn,
.header .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color1);
}

/* ================ 메인 ================ */
main {
    margin: 0 auto;
}

/* 새로운 main-top 스타일 */
.main-top {
    background: url(../img/main-bg.png) no-repeat center center;
    padding-top: 70px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
}

.main-top .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.main-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    padding-top: 50px;
}

.main-top .main-top-txt {
    flex: 1;
}

.main-top .main-top-txt .main-title {
    font-family: "Paperlogy", sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-top .main-top-txt .highlight {
    font-weight: 800;
    color: #ff5c4f;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.main-top .main-top-txt .main-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color1);
    line-height: 1.2;
    margin-bottom: 0;
}

.main-top .main-top-img {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-top .main-top-img img {
    width: 350px;
    height: auto;
    object-fit: contain;
}

/* 통계 카드 */
.main-top-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-top-stats .stat-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.main-top-stats .stat-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #e0e0e0;
}

.main-top-stats .stat-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color1);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.main-top-stats .stat-number:hover {
    color: var(--maincolor);
}

.main-top-stats .stat-unit {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color2);
}

.main-top-stats .stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-color2);
    font-weight: 500;
}

.main-top-stats .stat-note {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}


/* 메인 links 섹션 */
.main-links {
    padding: 15px 0;
    background-color: var(--bgcolor);
}

.main-links .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
}

.partners-logo-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 25px;
}

/* 메인 introduce 섹션 */
.main-introduce {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.main-introduce .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.main-introduce-title {
    flex: 1;
    padding-top: 40px;
}

.main-introduce-title .title {
    text-align: left;
    color: var(--text-color1);
}

.main-introduce-title h2 .highlight {
    color: var(--maincolor);
}

.main-introduce-title .subtitle {
    text-align: left;
    font-weight: 500;
    margin-bottom: 10px;
}

.main-introduce-title p.small {
    font-size: 14px;
    margin-top: 10px;
    color: #808080;
}

.main-introduce-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* 실시간 테이블 (introduce 내부) */
.main-introduce-live {
    flex: 1;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.live-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 20px;
    border-top: solid 2px var(--maincolor);
    border-bottom: 1px solid #eee;
}

.live-update,
.live-time {
    font-size: 14px;
    font-weight: 500;
    color: #808080;
}

.live-update i {
    margin-right: 5px;
    color: var(--maincolor);
}

.live-table-header {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.live-table-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color2);
    text-align: center;
}

.live-table-header .col-name {
    flex: 1.2;
}

.live-table-header .col-product {
    flex: 2;
}

.live-table-header .col-amount {
    flex: 1.5;
}

.live-table-header .col-status {
    flex: 1;
}

.live-scroll-container {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.live-scroll-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.live-row {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.live-row:hover {
    background-color: #fafafa;
}

.live-row .col-name {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-row .col-name .name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color1);
}

.live-row .col-product {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.live-row .col-product i {
    font-size: 18px;
    color: var(--text-color2);
    width: 24px;
    text-align: center;
}

.live-row .col-product .product-name {
    font-size: 14px;
    color: var(--text-color1);
}

.live-row .col-amount {
    flex: 1.5;
    font-size: 16px;
    font-weight: 700;
    color: var(--maincolor);
    text-align: center;
}

.live-row .col-status {
    flex: 1;
    text-align: center;
}

.live-row .status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--maincolor), var(--subcolor));
    color: #fff;
}


/* 메인 product 섹션 */
.main-product {
    padding: 100px 0;
    background-color: var(--bgcolor);
    position: relative;
    z-index: 1;
}

.main-product .container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 카드 그리드 - PC 4개 */
.main-product .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 통일된 카드 스타일 */
.main-product .card {
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    min-height: 280px;
}

/* 카드별 색상 */
.main-product .card-1 {
    background: linear-gradient(135deg, var(--maincolor) 0%, var(--subcolor) 100%);
}

.main-product .card-2 {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.main-product .card-3 {
    background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
}

.main-product .card-4 {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
}

.main-product .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-product .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-product .card-img {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.4s ease;
    transform-origin: center bottom;
}

.main-product .card:hover .card-img {
    opacity: 1;
    animation: wiggle 0.6s ease-in-out;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(6deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    80% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.main-product .card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-product .card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #fff;
}

.main-product .card-content .card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.main-product .card-content .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    background-color: rgba(255, 255, 255, 0.95);
}

.main-product .card-1 .card-btn {
    color: var(--maincolor);
}

.main-product .card-2 .card-btn {
    color: #6c5ce7;
}

.main-product .card-3 .card-btn {
    color: #00b894;
}

.main-product .card-4 .card-btn {
    color: #f39c12;
}

.main-product .card:hover .card-content .card-btn {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.main-product .card-content .card-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-product .card:hover .card-content .card-btn i {
    transform: translateX(3px);
}

/* 메인 review 섹션 */
.main-review {
    padding: 80px 0;
    background-color: var(--maincolor);
}

.main-review .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-review .title {
    color: #fff;
}

.main-review .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Swiper 슬라이더 스타일 */
.review-swiper {
    position: relative;
    padding: 20px 0;
    overflow: visible !important;
}

.review-swiper .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.review-swiper .swiper-slide-active,
.review-swiper .swiper-slide-active~.swiper-slide,
.review-swiper .swiper-slide-active~.swiper-slide~.swiper-slide,
.review-swiper .swiper-slide-active~.swiper-slide~.swiper-slide~.swiper-slide {
    opacity: 1;
}

.review-swiper .swiper-slide-active~.swiper-slide~.swiper-slide~.swiper-slide~.swiper-slide {
    opacity: 0.5;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 320px;
    display: flex;
    flex-direction: column;
}

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

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bgcolor);
}

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

.profile-info .name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color1);
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating i {
    color: var(--maincolor);
    font-size: 12px;
}

.rating span {
    color: var(--text-color2);
    font-size: 12px;
    margin-left: 5px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color1);
    margin-bottom: 15px;
    display: -webkit-box;
    flex: 1;
}

.review-date {
    font-size: 13px;
    color: var(--text-color2);
    margin-top: auto;
}

/* 네비게이션 버튼 스타일 */
.swiper-button-next,
.swiper-button-prev {
    color: var(--maincolor) !important;
    background: #fff;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    color: var(--maincolor);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 700;
}

.swiper-button-next {
    right: -15px !important;
}

.swiper-button-prev {
    left: -15px !important;
}

/* 메인 lic 섹션 */
.main-lic {
    padding: 100px 0;
    background-color: var(--bgcolor);
    position: relative;
    z-index: 1;
}

.main-lic .container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.main-lic .lic-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.main-lic .lic-card {
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    min-height: 280px;
}

.main-lic .lic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-lic .lic-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-lic .lic-card-img {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.4s ease;
    transform-origin: center bottom;
}

.main-lic .lic-card:hover .lic-card-img {
    opacity: 1;
    animation: wiggle 0.6s ease-in-out;
}

.main-lic .lic-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-lic .lic-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #333;
}

.main-lic .lic-card-content .lic-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}


/* ================ 서브 페이지 공통 ================ */

.top-banner {
    padding: 155px 20px;
    text-align: center;
    height: 200px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.top-banner p {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.top-banner {
    background-image: url(../img/page-top-1.png);
}

/* ================ about ================ */

/* About intro 섹션 */
.about-intro {
    padding: 100px 0;
    background-color: var(--bgcolor);
}

.about-intro .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.about-card-inner {
    padding: 40px;
    text-align: center;
}

.about-img {
    text-align: center;
    margin-bottom: 30px;
}

.about-img img {
    max-height: 200px;
    width: auto;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color1);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content .highlight {
    color: var(--maincolor);
    position: relative;
    display: inline-block;
    padding: 0 4px;
    animation: highlightShine 3s ease-in-out infinite;
    padding: 0 2px;
}

.about-content .highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 65, 53, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.about-card:hover .highlight::before {
    transform: scaleX(1);
}

@keyframes highlightShine {

    0%,
    100% {
        color: var(--maincolor);
    }

    50% {
        color: var(--subcolor);
    }
}

.about-content p {
    font-size: 16px;
    color: var(--text-color2);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* About Links 섹션 */
.about-links {
    padding: 80px 0;
    background-color: var(--maincolor);
}

.about-links .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-links-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-links-text {
    text-align: left;
}

.about-links-content h3 {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.about-links-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
}

.about-links-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: var(--subcolor);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-links-button:hover {
    transform: translateX(2px);
    box-shadow: 0 5px 15px var(--subcolor);
}

.about-links-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-links-button:hover i {
    transform: translateX(5px);
}

/* ================ product ================ */
.product-intro {
    padding: 80px 0;
    background-color: var(--bgcolor);
}

.product-intro .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-table {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.product-item {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.product-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color1);
    order: 2;
}

.product-header img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    order: 1;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.product-content li:last-child {
    border-bottom: none;
}

.product-content li.description {
    display: block;
    padding: 20px 0 0 0;
    border-bottom: none;
}

.product-content li.description p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color1);
    word-break: keep-all;
    text-align: center;
}

.product-content .label {
    color: var(--text-color2);
    font-size: 15px;
    font-weight: 500;
}

.product-content .value {
    color: var(--text-color1);
    font-size: 15px;
    font-weight: 600;
}

/* Product Step 섹션 */
.product-step {
    padding: 80px 0;
    padding-top: 0;
    background-color: var(--bgcolor);
}

.product-step .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.step-card {
    flex: 1;
    max-width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--maincolor);
}

.step-card-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--maincolor) 0%, var(--subcolor) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 65, 53, 0.3);
}

.step-card-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.step-card:hover .step-card-icon img {
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color1);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-color2);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-badge {
    display: inline-block;
    background: var(--bgcolor);
    color: var(--text-color2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.step-badge.complete {
    background: linear-gradient(135deg, var(--maincolor) 0%, var(--subcolor) 100%);
    color: #fff;
}

.step-arrow {
    color: var(--maincolor);
    font-size: 24px;
    opacity: 0.5;
}

.tip-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-label {
    background-color: #f1f1f1;
    color: var(--text-color1);
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.tip-content {
    font-size: 15px;
    color: var(--text-color1);
    line-height: 1.5;
    flex: 1;
}

.tip-content .highlight {
    color: var(--maincolor);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.tip-content .highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 65, 53, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.tip-item:hover .highlight::before {
    transform: scaleX(1);
}


/* ================ request ================ */

.top-banner .subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

/* Request Howto 섹션 */
.request-howto {
    padding: 80px 0;
    background-color: var(--bgcolor);
}

.request-howto .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.request-howto-steps {
    display: flex;
    gap: 20px;
}

.request-step-card {
    flex: 1;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

.request-step-number {
    background-color: var(--maincolor);
    color: #fff;
    font-weight: 700;
    padding: 12px 0;
    font-size: 18px;
}

.request-step-card:nth-child(1) .request-step-number {
    background-color: #ff6258;
}

.request-step-card:nth-child(2) .request-step-number {
    background-color: var(--maincolor);
}

.request-step-card:nth-child(3) .request-step-number {
    background-color: var(--subcolor);
}

.request-step-image {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    background-color: #fff;
    overflow: hidden;
}

.request-step-image img {
    width: 95%;
}

.request-step-content {
    padding: 10px 20px 20px 20px;
}

.request-step-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color1);
    line-height: 1.5;
}

.request-step-desc {
    font-size: 14px;
    color: var(--text-color2);
    line-height: 1.6;
    font-weight: 400;
}

/* Request Button 섹션 */
.request-button {
    padding: 80px 0;
    background-color: #fff;
}

.request-button .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.request-button-title {
    text-align: center;
    margin-bottom: 40px;
}


.request-button-title .subtitle {
    color: var(--text-color2);
}

.request-button-title.bottom {
    margin-top: 20px;
    margin-bottom: 0;
}

.request-button-title.bottom p {
    line-height: 1.5;
    font-size: 16px;
    color: var(--text-color2);
}

.request-button-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.request-button-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.request-button-link.phone {
    background-color: var(--maincolor);
    color: #fff;
}

.request-button-link.kakao {
    background-color: #ffeb3b;
    color: #000;
}

.request-button-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.request-button-link i {
    font-size: 20px;
}


/* Request Notice 섹션 */
.request-notice {
    padding: 50px 0;
    background-color: #ffeb34;
}

.request-notice .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.request-notice-content {
    text-align: center;
}

.request-notice-icon {
    margin-bottom: 20px;
}

.request-notice-icon img {
    width: 120px;
    height: auto;
}

.request-notice-content h2 {
    color: var(--text-color1);
}

.request-notice-content .subtitle{
    font-weight: 500;
}

/* Request Kakao 섹션 - 주석처리
.request-kakao {
    padding: 80px 0;
    background-color: #fff;
}

.request-kakao .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.request-kakao-title {
    text-align: center;
    margin-bottom: 30px;
}

.request-kakao-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color1);
    margin-bottom: 10px;
}

.request-kakao-title p {
    font-size: 18px;
    color: var(--text-color2);
}

.request-kakao-button {
    text-align: center;
    margin-bottom: 30px;
}

.request-kakao-button.id {
    margin-top: 50px;
}

.request-kakao-button span {
    display: inline-block;
    background-color: #3f1d1d;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
}

.request-kakao-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.request-kakao-banner {
    background: linear-gradient(135deg, #ffe94a 0%, #ffd700 100%);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.2);
}

.request-kakao-banner p {
    font-size: 18px;
    color: #3f1d1d;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.request-kakao-box {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.request-kakao-image {
    margin-bottom: 10px;
}

.request-kakao-image img {
    width: 100%;
    height: auto;
    display: block;
}

.request-kakao-box p {
    font-size: 16px;
    color: var(--text-color1);
    font-weight: 700;
    background-color: #ffe94a;
    padding: 15px;
    border-radius: 15px;
}
*/

/* ================ faq ================ */

/* FAQ 섹션 */
.faq-container {
    padding: 80px 0;
}

.faq-container .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-content {
    max-width: 1280px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.5s;
}

.faq-question:hover {
    background-color: var(--bgcolor2)
}

.question-mark {
    color: var(--maincolor);
    font-size: 20px;
    font-weight: 700;
    margin-right: 15px;
}

.question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color1);
}

.toggle-icon {
    margin-left: 15px;
    color: var(--text-color2);
    transition: transform 0.5s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.faq-answer p {
    padding: 25px 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color2);
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer .highlight {
    position: relative;
    display: inline-block;
    color: var(--maincolor);
    animation: highlightShine 0.5s ease-in-out infinite;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;
    padding: 0 2px;
    text-decoration: none;
}

.faq-answer .highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 65, 53, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.faq-answer .highlight:hover::before {
    transform: scaleX(1);
}

/* 푸터 */
.footer {
    background-color: var(--text-color1);
    color: #fff;
    padding: 40px 0;
    padding-bottom: calc(40px + 47px);
    /* 기본 패딩 + 플로팅 메뉴 높이 */
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    margin-bottom: 30px;
}

.company-logo {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-logo img {
    width: 200px;
    height: auto;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-notice {
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* 플로팅 */
.floating {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
}

.floating a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.floating-call {
    background-color: var(--maincolor);
}

.floating-kakao {
    background-color: #ffeb3b;
    color: #000 !important;
}

.floating i {
    font-size: 18px;
}


@keyframes highlightShine {

    0%,
    100% {
        color: var(--maincolor);
    }

    50% {
        color: var(--subcolor);
    }
}

/* .main_popup {
    position: fixed;
    z-index: 1005;
    top: 100px;
    left: 300px;
    display: none;
    margin: 20px;
    border: 2px solid #333;
}

.main_popup.on {
    display: block;
    background-color: #fff;
}

.main_popup .img_wrap {
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_popup .btn_close {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0;
    border: 0;
    background: white;
    color: black;
}

.main_popup .btn_close::before {
    content: "";
    width: 2px;
    height: 25px;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 12px;
    transform: rotate(45deg);
}

.main_popup .btn_close::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 12px;
    left: 0;
    transform: rotate(45deg);
}

.main_popup .btn_today_close {
    width: 100%;
    height: 45px;
    background-color: #333;
    text-align: center;
    color: #fff;
    font-size: 14px;
    display: block;
}

.main_popup .btn_today_close span {
    display: block;
    line-height: 40px;
    vertical-align: bottom;
    opacity: 0.8;
} */

img {
    max-width: 100%;
}

@media all and (max-width:767px) {
    /* .main_popup {
        position: fixed;
        z-index: 1005;
        top: 35px;
        left: 0px;
        display: none;
        margin: 20px;
    }

    .main_popup .img_wrap {
        max-width: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    } */
}