@charset "UTF-8";
@import "font.css";

:root {
    /* Base */
    --color-white: #fff;
    --color-black: #000;
    --color-black3: #333;
    --color-black5: #555;
    --color-body-text: #111827;
    --color-heading: #080f1f;
    --color-title-dark: #0d1729;
    --color-banner-title: #0e1a2e;

    /* Navy / Dark */
    --color-navy-950: #03072d;
    --color-navy-900: #050735;
    --color-navy-850: #07102a;
    --color-navy-800: #081022;
    --color-navy-700: #101e34;
    --color-navy-650: #172640;
    --color-navy-600: #172846;
    --color-navy-550: #1e345d;
    --color-navy-500: #1f2e4b;
    --color-navy-button: #213758;

    /* Blue */
    --color-blue-300: #4fb7ff;
    --color-blue-400: #47bfff;
    --color-blue-500: #2ca8ff;
    --color-blue-550: #2da8ff;
    --color-blue-600: #2ba3ff;
    --color-blue-650: #29a8ff;

    /* Gray */
    --color-gray-text: #5d6a7f;
    --color-gray-number: #c9d7e5;

    /* Border / Card */
    --color-card-border: #CDDFE7;
    --color-card-blue-bg: #eaf7ff;
    --color-banner-blue-bg: #eaf8ff;

    /* Visual */
    --color-wave-blue: #9bc8d8;
    --color-circle-blue: #93c5d6;
    --color-circle-blue-dark: #8fc6d9;

    /* Accent / Surface */
    --color-surface-dark: #202A44;
    --color-surface-dark-2: #213465;
    --color-footer-bg: #111D35;
    --color-line-blue: #495F96;

    /* Point / Effect */
    --color-primary-blue: #3694FF;
    --color-accent-blue: #36C0FF;
    --color-hover-blue: #2797FF;
    --color-glow-blue: #6FE6FF;
    --color-muted-blue: #B2D0DE;

    /* Neutral */
    --color-gray-100: #F5F5F5;
    --color-gray-300: #D9D9D9;
    --color-gray-500: #aaa;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    margin: 0;
    font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--color-body-text);
    background: var(--color-white);
    word-break: keep-all;
    letter-spacing: 0;
}

body.is-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    vertical-align: top;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    padding: 0;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

ul,
ol,
dl,
dd,
p,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.blind {
    position: absolute;
    overflow: hidden;
    width: 0.1rem;
    height: 0.1rem;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.only-mobile {
    display: none;
}

.wrap {
    min-width: 32rem;
    overflow: hidden;
}

.section-inner {
    width: min(100%, 120rem);
    margin: 0 auto;
}

.section-heading {
    text-align: center;
}

.section-heading__title {
    font-size: 7.2rem;
    font-weight: 800;
    line-height: 1.19;
    color: var(--color-black);
}

.section-heading--dark .section-heading__title {
    color: var(--color-white);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 8rem;
    background: var(--color-surface-dark);
    /*backdrop-filter: blur(1.2rem);*/
    transition: background 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
    /*height: 5.8rem;*/
    background: rgba(9, 20, 39, 0.96);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.site-header__logo {
    flex-shrink: 0;
    width: 18rem;
    height: 3.9rem;
    transition: all .25s ease;
}

.site-header__logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.site-header__logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.site-header__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.25s ease;
}

.site-header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.2rem;
    border-radius: 99.9rem;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__link:hover::after,
.site-header__link:focus-visible::after {
    transform: scaleX(1);
}

.site-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18rem;
    height: 5.3rem;
    border: 1px solid var(--color-white);
    border-radius: 99.9rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.1rem;
    color: var(--color-white);
    transition: background 0.2s ease, color 0.22s ease;
}

.site-header__button:hover {
    background: var(--color-white);
    color: var(--color-surface-dark);
}

.site-header__button.mo {
    display: none;
}

.site-header__menu-button {
    display: none;
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/ico_menu.svg) no-repeat 50% 50% / cover;
}

.site-header__menu-line {
    display: block;
    width: 2.2rem;
    height: 0.2rem;
    margin: 0.5rem auto;
    background: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 24rem;
    background:url(../img/bg_kv.png) no-repeat 50% 0 / cover;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: min(100%, 155.9rem);
    margin: 0 auto;
    text-align: center;
    
}
.hero__wave {
    position: absolute;
    bottom: 20rem;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    width: 100%;
}

.hero__title {
    font-size: 8.8rem;
    font-weight: 800;
    line-height: 1.193;
    letter-spacing: 0;
    color: var(--color-white);
}
.hero__title.motion-item {
    transition: opacity 0.7s ease, transform 0.7s ease, font-size .25s ease;
}
.hero__title .mo-br {
    display: none;
}

.hero__title .stress {
    position: relative;
    z-index: 0;
    display: inline-block;
    padding: 0 0.8rem;
}

/* 기본 상태: 배경이 왼쪽에 접혀 있음 */
.hero__title .stress::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
    height: 8.8rem;
    border-radius: 0.8rem;
    background: rgba(54, 148, 255, 0.34);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
}

/* hero__content 등장 모션 끝난 뒤 배경이 주욱 늘어남 */
.hero__content .hero__title.is-show .stress:nth-of-type(1)::before {
    animation: stressBgExpand 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

.hero__content .hero__title.is-show .stress:nth-of-type(2)::before {
    animation: stressBgExpand 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}
@keyframes stressBgExpand {
    0% {
        transform: translateY(-50%) scaleX(0);
    }

    100% {
        transform: translateY(-50%) scaleX(1);
    }
}

.hero__description {
    margin: 2.4rem auto 3.6rem;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.208;
    color: var(--color-white);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20rem;
    height: 6.1rem;
    border-radius: 99.9rem;
    background: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-black);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.hero__cta:hover {
    /*transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2.4rem rgba(56, 149, 255, 0.28);*/
    background-color: var(--color-hover-blue);
    color: var(--color-white);
} 

.hero__visual {
    position: relative;
    width: min(100%, 155.9rem);
    margin: 10.9rem auto 0;
}

.hero__brand {
    position: relative;
}

/* 끝 점 */
.hero__brand .unit::before {
    content: "";
    position: absolute;
    left: -8.3rem;
    bottom: -6.4rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--color-blue-600);
    box-shadow: 0 0 0 0.4rem rgba(54, 148, 255, 0.18);
}

.hero__device {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 3rem 5rem rgba(0, 0, 0, 0.36));
}

.hero__spec {
    position: absolute;
    z-index: 3;
}

.hero__spec img {
    display: block;
    width: 100%;
    height: auto;
}

/* 상단 라인 */
.hero__spec--top {
    top: -4%;
    left: 50%;
    width: 29.5%;
    transform: translateX(calc(-38.1%));
}

.hero__spec--top img {
    display: block;
}

/* 좌측 하단 포인트 점 */
.hero__spec-dot {
    position: absolute;
    left: -0.7rem;
    bottom: -0.7rem;
    z-index: 10;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background-color: var(--color-primary-blue);
    box-shadow:
        0 0 0 0.3rem rgba(54, 148, 255, 0.28),
        0 0 1.4rem rgba(54, 148, 255, 0.85),
        0 0 2.8rem rgba(54, 148, 255, 0.55);
    animation: heroSpecDotBeat 1.8s ease-in-out infinite;
}

/* 첫 번째 확산 링 */
.hero__spec-dot::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.4rem;
    height: 1.4rem;
    border: 0.2rem solid var(--color-primary-blue);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    animation: heroSpecDotPulse 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s infinite;
}

/* 두 번째 확산 링 */
.hero__spec-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.4rem;
    height: 1.4rem;
    border: 0.1rem solid var(--color-primary-blue);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    animation: heroSpecDotPulse 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.42s infinite;
}

/* 본체가 먼저 한 번 쿵 */
@keyframes heroSpecDotBeat {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 0.3rem rgba(54, 148, 255, 0.28),
            0 0 1.4rem rgba(54, 148, 255, 0.85),
            0 0 2.8rem rgba(54, 148, 255, 0.55);
    }

    8% {
        transform: scale(1.28);
        box-shadow:
            0 0 0 0.45rem rgba(54, 148, 255, 0.38),
            0 0 1.8rem rgba(54, 148, 255, 1),
            0 0 3.4rem rgba(54, 148, 255, 0.72);
    }

    16% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* 링이 뒤따라 두 번 퍼짐 */
@keyframes heroSpecDotPulse {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    58% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.8);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.8);
    }
}


/* 좌측 라인 */
.hero__spec--left {
    left: 2.5%;
    top: 24%;
    width: 17.84%;
}

.hero__spec--left .hero__spec-dot {
    left: auto;
    right: -0.7rem;
}

/* 우측 라인 */
.hero__spec--right {
    right: -1.7%;
    top: 5%;
    width: 21.04%;
}



/* Animated frequency rings */
.hero__bg-circle {
    position: absolute;
    pointer-events: none;
}

.hero__bg-circle--right, .hero__bg-circle--left {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero__bg-circle--right .ring, .hero__bg-circle--left .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-gray-300);
    opacity: 0;
    animation: ringPulse 5s ease-out infinite;
}
.hero__bg-circle--left .ring {
    animation: ringPulseLeft 5s ease-out infinite;
    transform-origin: center center;
}
.hero__bg-circle--right .ring:nth-child(1) { 
    width: 30rem; 
    height: 30rem; 
    top: 5%; 
    right: 8%; 
    animation-delay: 0s; 
}
.hero__bg-circle--right .ring:nth-child(2) { 
    width: 50rem; 
    height: 50rem; 
    top: 0; 
    right: 3%; 
    animation-delay: 0.8s; 
}
.hero__bg-circle--right .ring:nth-child(3) { 
    width: 70rem; 
    height: 70rem; 
    top: -7%; 
    right: -2%; 
    animation-delay: 1.6s; 
}
.hero__bg-circle--right .ring:nth-child(4) { 
    width: 90rem; 
    height: 90rem; 
    top: -15%; 
    right: -8%; 
    animation-delay: 2.4s; 
}

@keyframes ringPulse {
    0% { opacity: 0; transform: scale(0.85); }
    30% { opacity: 0.22; }
    100% { opacity: 0; transform: scale(1.05); }
}

.hero__bg-circle--left .ring:nth-child(1) {
    width: 27.4rem;
    height: 27.4rem;
    top: 40%;
    left: 2%;
    animation-delay: 0s;
}

.hero__bg-circle--left .ring:nth-child(2) {
    width: 42.4rem;
    height: 42.4rem;
    top: 36%;
    left: -3.5%;
    animation-delay: 0.45s;
}

.hero__bg-circle--left .ring:nth-child(3) {
    width: 51.4rem;
    height: 51.4rem;
    top: 31%;
    left: -5%;
    animation-delay: 0.9s;
}

@keyframes ringPulseLeft {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }

    8% {
        opacity: 0.22;
    }

    24% {
        opacity: 0.18;
        transform: scale(0.95);
    }

    42% {
        opacity: 0.08;
        transform: scale(1.03);
    }

    58% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.reason {
    position: relative;
    z-index: 4;
    margin-top: -20rem;
    padding: 2.5rem 0 20rem;
    background: var(--color-white);
}

.reason__grid,
.service__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    width: min(100%, 120rem);
    margin: 8rem auto 0;
}

.reason__grid .reason-card .reason-card__icon,

.service__grid .service-card .service-card__icon {
    display: block;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.reason__grid .reason-card:nth-child(1) .reason-card__icon {
    background-image: url(../img/ico_circle_01.png);
}
.reason__grid .reason-card:nth-child(2) .reason-card__icon {
    background-image: url(../img/ico_circle_02.png);
}
.reason__grid .reason-card:nth-child(3) .reason-card__icon {
    background-image: url(../img/ico_circle_03.png);
}
.reason__grid .reason-card:nth-child(4) .reason-card__icon {
    background-image: url(../img/ico_circle_04.png);
}

.service__grid  .service-card:nth-child(1) .service-card__icon {
    background-image: url(../img/ico_circle_05.png);
}
.service__grid  .service-card:nth-child(2) .service-card__icon {
    background-image: url(../img/ico_circle_06.png);
}
.service__grid  .service-card:nth-child(3) .service-card__icon {
    background-image: url(../img/ico_circle_07.png);
}
.service__grid  .service-card:nth-child(4) .service-card__icon {
    background-image: url(../img/ico_circle_08.png);
}



.reason-card,
.service-card {
    position: relative;
    min-height: 33rem;
    padding: 3.9rem 2.4rem 5.1rem 4rem;
    border: 1px solid var(--color-card-border);
    border-radius: 1.8rem;
    background: var(--color-white);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.reason-card:hover,
.service-card:hover {
    transform: translateY(-0.6rem);
    box-shadow: 1rem 1rem 2rem 0.6rem rgba(0, 0, 0, 0.07);
    border-color: var(--color-hover-blue);
}

.reason-card__icon,
.service-card__icon {
    width: 6.8rem;
    height: 6.8rem;
}

.reason-card__number,
.service-card__number {
    position: absolute;
    top: 4rem;
    right: 5.2rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-muted-blue);
}

.reason-card__title,
.service-card__title {
    margin: 4rem 0 1.6rem;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.17;
    color: var(--color-black);
}

.reason-card__text,
.service-card__text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-black3);
}

.reason-card__tag {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    margin-top: 2.4rem;
    padding: 0.6rem 1.8rem 0.7rem;
    border-radius: 99.9rem;
    background-color: var(--color-gray-100);
    font-weight: 500;
    line-height: 1.18;
    color: var(--color-black5);
}

.gallery-stats {
    background: var(--color-navy-650);
}

/*.gallery-stats__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-stats__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 원본*/



.gallery-stats__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

/* gallery 이미지 묶음은 기존 motion-item의 통째 모션 제거 */
.gallery-stats__images.motion-item {
    opacity: 1;
    transform: none;
}

/* 이미지 개별 등장 기본 상태 */
.gallery-stats__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(6rem) scale(1.08);
    filter: brightness(0.82) saturate(0.9);
    transition:
        opacity 0.75s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s ease;
}

/* is-show 붙으면 이미지가 하나씩 등장 */
.gallery-stats__images.is-show .gallery-stats__image {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1) saturate(1);
}

/* 순차 딜레이 - 이전보다 간격 넓힘 */
.gallery-stats__images.is-show .gallery-stats__image:nth-child(1) {
    transition-delay: 0.05s;
}

.gallery-stats__images.is-show .gallery-stats__image:nth-child(2) {
    transition-delay: 0.22s;
}

.gallery-stats__images.is-show .gallery-stats__image:nth-child(3) {
    transition-delay: 0.39s;
}

.gallery-stats__images.is-show .gallery-stats__image:nth-child(4) {
    transition-delay: 0.56s;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-stats__image {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.gallery-stats__content {
    width: min(100%, 103.4rem);
    margin: 0 auto;
    padding: 7.6rem 0;
}

.gallery-stats__list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
}

.gallery-stats__value {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.187;
    color: var(--color-white);
}

.gallery-stats__value .unit {
    font-size: 4rem;
    font-weight: inherit;
    color: var(--color-accent-blue);
}

.gallery-stats__label {
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.16;
    color: var(--color-white);
}
.gallery-stats__item:nth-child(2) .gallery-stats__label {
    margin-top: 2.1rem;
}

.expert {
    padding: 20rem 0 19.5rem;
    background: var(--color-navy-700);
}

.expert__body {
    display: grid;
    grid-template-columns: 60rem 1fr;
    align-items: flex-start;
    gap: 6rem;
    width: min(100%, 120rem);
    margin: 9rem auto 0;
}

.expert__circle {
    position: relative;
    width: 60rem;
    margin: 0 auto;
    animation: expertImageFloat 4.8s ease-in-out infinite;
}

.expert__image {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.12));
}

@keyframes expertImageFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.12));
    }

    50% {
        transform: translateY(-1.2rem) rotate(-0.4deg);
        filter: drop-shadow(0 2.8rem 4rem rgba(0, 0, 0, 0.18));
    }
}

@media (prefers-reduced-motion: reduce) {
    .expert__circle {
        animation: none;
    }
}


.expert__text-list {
    display: grid;
    gap: 2.4rem;
    padding-top: 3.1rem;
}
.expert-point {
    padding-bottom: 2.4rem;
    border-bottom: 1px solid var(--color-line-blue);
}

.expert-point__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.178;
    color: var(--color-accent-blue);
}

.expert-point__text {
    margin-top: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
}

.service {
    padding: 20rem 0;
    background: var(--color-white);
}

.service__banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 120rem);
    margin: 4rem auto 0;
    padding: 6rem 5.2rem;
    border-radius: 1.6rem;
    background: var(--color-banner-blue-bg);
}

.service__banner-text {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.17;
    color: var(--color-black);
}
.service__banner-text .unit {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-hover-blue);
}

.service__banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 6.1rem;
    border-radius: 99.9rem;
    background: var(--color-hover-blue);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    transition: background 0.2s ease, color 0.22s ease;
}
.service__banner-button:hover {
    background: var(--color-white);
    color: var(--color-hover-blue);
}

.price {
    padding: 20rem 0;
    background: var(--color-navy-700);
}

.price__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    width: min(100%, 120rem);
    margin: 8rem auto 0;
}


.price-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 34.4rem;
    padding: 0;
    border: 1px solid var(--color-line-blue);
    border-radius: 1.6rem;
    background: var(--color-surface-dark);
    color: var(--color-white);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.price-card:hover {
    box-shadow: 1rem 1rem 2rem 0.6rem rgb(54, 192, 255, 0.07);
} 

.price-card:hover::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent-blue);
    border-radius: 1.6rem;
}


.price-card--active {
    border-color: var(--color-accent-blue);
    background: var(--color-surface-dark);
    box-shadow: 0 0 0 0.1rem rgba(45, 168, 255, 0.5);
    animation: activeCardBorderGlow 3.4s ease-in-out infinite;
}
.price-card.price-card--active:hover {
    border: 1px solid var(--color-line-blue);
}
.price-card.price-card--active:hover::before {
    display: none;
}

.price-card__body,
.price-card__badge {
    position: relative;
    z-index: 1;
}

.price-card:hover {
    transform: translateY(-0.8rem);
}

@keyframes activeCardBorderGlow {
    0%,
    100% {
        border-color: var(--color-blue-550);
        box-shadow:
            0 0 0 0.1rem rgba(45, 168, 255, 0.55),
            0 0 1.2rem rgba(45, 168, 255, 0.18);
    }

    50% {
        border-color: var(--color-glow-blue);
        box-shadow:
            0 0 0 0.1rem rgba(111, 230, 255, 0.95),
            0 0 1.2rem rgba(54, 192, 255, 0.45),
            0 0 3.2rem rgba(54, 192, 255, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .price-card--active {
        animation: none;
    }
}


.price-card__body {
    flex: 1;
    padding: 4rem;
}

.price-card__head {
    position: relative;
    padding-bottom: 3rem;
}

.price-card__label {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.21;
    color: var(--color-gray-500);
}

.price-card__title {
    margin-top: 0.8rem;
    letter-spacing: 0;
}

.price-card__plan {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-accent-blue);
}

.price-card__price {
    display: flex;
    align-items: flex-end;
    margin-top: 1.2rem;
   
}
.price-card__num {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 6.7rem;
    color: var(--color-white);
}

.price-card__unit {
    display: inline-block;
    margin-bottom: 1.4rem;
    margin-left: 0.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.1rem;
}

.price-card__desc {
    font-size: 1.4rem;
    line-height: 1.21;
    color: var(--color-white);
}

.price-card__info {
    display: grid;
    gap: 1.2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-line-blue);
}

.price-card__info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.price-card__info-row dt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.21;
    color: var(--color-gray-500);
}

.price-card__info-row dd {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-white);
    text-align: right;
}

.price-card__info-row .price-card__point {
    color: var(--color-accent-blue);
}

.price-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 1.6rem 2rem;
    background: var(--color-surface-dark-2);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.21;
    color: var(--color-white);
    text-align: center;
}

.price-card__recommend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 6rem;
    height: 3.2rem;
    border-radius: 99.9rem;
    background: var(--color-accent-blue);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-black);
}

.price__notice {
    display: flex;
    align-items: center;
    width: min(100%, 120rem);
    margin: 6rem auto 0;
    font-size: 1.4rem;
    line-height: 1.21;
    color: var(--color-gray-500);
}
.price__notice::before {
    content: "";
    display: block;
    flex: 0 0  2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1.6rem;
    background: url(../img/ico_warning.png) no-repeat 50% 50% / cover;
}

.faq {
    padding: 20rem 0;
    background: var(--color-surface-dark);
}

.faq__list {
    width: min(100%, 120rem);
    margin: 4.8rem auto 0;
}

.faq__item {
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.14);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3.2rem 0;
    text-align: left;
    font-size: 2.4rem;
    font-weight: 600;
    line-height:1.2;
    color: var(--color-white);
}
.faq__txt {
    word-break: break-all;
}

.faq__icon {
    position: relative;
    flex-shrink: 0;
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 2rem;
}

/* down / up 아이콘 공통 */
.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% auto;
    transform-origin: center;
    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 닫힘 상태 down */
.faq__icon::before {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    background-image: url("../img/ico_chevron_down.png");
}

/* 열림 아이콘은 처음엔 살짝 아래/작게 대기 */
.faq__icon::after {
    opacity: 0;
    transform: rotate(-90deg) scale(0.72);
    background-image: url("../img/ico_chevron_up.png");
}

/* active 되면 down은 살짝 빠지고 */
.faq__item.is-active .faq__icon::before {
    opacity: 0;
    transform: rotate(90deg) scale(0.72);
}

/* up은 회전하면서 들어옴 */
.faq__item.is-active .faq__icon::after {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq__answer {
    display: none;
    padding: 0 0 2.4rem;
}

.faq__answer p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-accent-blue);
    opacity: 0;
    transform: translateY(0.8rem);
    transition:
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item.is-active .faq__answer p {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    background: var(--color-footer-bg);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 5.2rem 5.2rem 5.2rem 4rem;
}

.site-footer__logo {
   flex-shrink: 0;
    width: 18rem;
    height: 3.9rem;
}
.site-footer__logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.site-footer__info {
    font-style: normal;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: var(--color-gray-500);
}
.site-footer__info .email {
    display: block;
    margin-bottom: 0.3rem;
}
.site-footer__info .copyright {
    display: block;
}
.site-footer__links {
    display: flex;
    gap: 1.6rem;
}
.site-footer__links > li {
    position: relative;
    padding-left: 1.6rem;
}
.site-footer__links > li:first-child {
    padding-left: 0;
}
.site-footer__links > li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 1.6rem;
    background: var(--color-line-blue);
    transform: translateY(-50%);
}
.site-footer__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-white);
    transition: color 0.25s ease;
}

.site-footer__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.2rem;
    border-radius: 99.9rem;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__link:hover::after,
.site-footer__link:focus-visible::after {
    transform: scaleX(1);
}

.site-footer__link + .site-footer__link {
    margin-left: 1.6rem;
}

.motion-item {
    opacity: 0;
    transform: translateY(5rem);
    transition:opacity 0.7s ease, transform 0.7s ease;
}

.motion-item.is-show {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================
   도입 상담 신청 팝업
============================== */

body.is-popup-open {
    overflow: hidden;
}

.consult-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.consult-popup.is-active {
    display: block;
}

.consult-popup__dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.consult-popup__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60rem;
    max-width: calc(100% - 4rem);
    max-height: calc(100vh - 6rem);
    border: 1px solid #2F5D88;
    background: var(--color-footer-bg);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.consult-popup__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.4rem;
    padding: 0 2.4rem;
    background: var(--color-surface-dark);
}

.consult-popup__title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

.consult-popup__close {
    position: relative;
    width: 3.2rem;
    height: 3.2rem;
    flex-shrink: 0;
}

.consult-popup__close::before,
.consult-popup__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.6rem;
    height: 0.2rem;
    border-radius: 99.9rem;
    background: var(--color-white);
}

.consult-popup__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.consult-popup__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.consult-popup__form {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 12.4rem);
}

.consult-popup__body {
    overflow-y: auto;
    padding: 5.6rem 2.4rem;
}

.consult-popup__field + .consult-popup__field {
    margin-top: 2.4rem;
}

.consult-popup__label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--color-white);
}

.consult-popup__input,
.consult-popup__textarea {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0.4rem;
    background: var(--color-white);
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    color: var(--color-black);
    outline: none;
}

.consult-popup__input {
    height: 4rem;
    padding: 0 1.2rem;
}

.consult-popup__textarea {
    height: 16rem;
    padding: 1.2rem;
    resize: none;
}

.consult-popup__input:focus,
.consult-popup__textarea:focus {
    box-shadow: 0 0 0 0.2rem var(--color-primary-blue);
}

.consult-popup__foot {
    display: flex;
    justify-content: center;
    padding: 0 0 5.6rem;
    background: var(--color-navy-700);
}

.consult-popup__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20rem;
    height: 6.1rem;
    border-radius: 99.9rem;
    background: var(--color-blue-550);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    transition: background 0.2s ease, transform 0.2s ease;
}

.consult-popup__submit:hover,
.consult-popup__submit:focus-visible {
    background: var(--color-hover-blue);
    transform: translateY(-0.2rem);
}

/* Event */
.partner-page {
    min-width: 32rem;
    background: #F9F9F9;
    color: #111;
    word-break: keep-all;
}

.partner-hero {
    position: relative;
    overflow: hidden;
    min-height: 56rem;
    padding: 10rem 2rem 7.6rem;
    background:
        url("../img/img_ev.png") no-repeat 50% 50% / cover;
    text-align: center;
}

.partner-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 120rem);
    margin: 0 auto;
}

.partner-hero__title {
    font-size: 6.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0;
    text-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.25);
}

.partner-hero__title span {
    display: block;
}

.partner-hero__title .txt2 {
    font-weight: 600;
}

.partner-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24rem;
    height: 6rem;
    margin-top: 2.4rem;
    padding: 0 3rem;
    border-radius: 99.9rem;
    background: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-black);
    transition: background 0.25s ease;
}
.partner-hero__button:hover {
    background: var(--color-hover-blue);
    color: var(--color-white);
}
.partner-content {
    position: relative;
    margin-top: -8.8rem;
    padding: 0 2rem 9.6rem;
}

.partner-content__inner {
    width: min(100%, 98rem);
    margin: 0 auto;
}

.partner-card {
    padding: 6rem;
    border: 1px solid #CDDFE7;
    border-radius: 1.6rem;
    background: #fff;
}

.partner-card + .partner-card {
    margin-top: 1.6rem;
}

.partner-card__title,
.partner-notice__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: 0;
}

.partner-block {
    margin-top: 3.2rem;
}

.partner-block__title {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.partner-target {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 0.4rem;
}

.partner-target li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 12rem;
    border: 1px solid #D0F0FF;
    border-radius: 50%;
    background: #F2FBFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.28;
    color: var(--color-black);
    text-align: center;
}

.partner-check-list {
    display: grid;
    gap: 0.8rem;
}

.partner-check-list li {
    position: relative;
    padding-left: 2.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

.partner-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/ico_check.png) no-repeat 50% 50% / cover;
}

.partner-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    margin-top: 3.2rem;
}

.partner-process li {
    position: relative;
    flex: 0 0 8.8rem;
}

.partner-process li + li::before {
    content: "";
    position: absolute;
    left: -2.58rem;
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/ico_chevron_right.png) no-repeat 50% 50% / contain;
    transform: translateY(-50%);
}

.partner-process span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 12rem;
    border: 1px solid #D0F0FF;
    border-radius: 50%;
    background: #F2FBFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
    text-align: center;
}

.partner-notice {
    margin-top: 6rem;
    padding: 0 6rem;
}

.partner-notice__title {
    font-size: 2.4rem;
}
.partner-notice .partner-check-list {
    margin-top: 1.2rem;
}

.partner-floating-button {
    position: fixed;
    right: 6.4rem;
    bottom: 5.2rem;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24rem;
    height: 6rem;
    border-radius: 99.9rem;
    background: var(--color-hover-blue);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.6rem);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease;
}
.partner-floating-button:hover {
    background: var(--color-white);
    color: var(--color-black);
}
.partner-floating-button.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.partner-floating-button.is-footer-ready {
        bottom: 19rem;
}


/* 모바일: 레이어팝업 → 풀팝업 페이지 */
@media (max-width: 767px) {
    .consult-popup__dim {
        display: none;
    }

    .consult-popup__panel {
        left: 0;
        top: 0;
        width: 100%;
        max-width: none;
        height: 100dvh;
        max-height: none;
        border: 0;
        transform: none;
    }

    .consult-popup__head {
        height: 6.4rem;
        padding: 0 2.4rem;
    }

    .consult-popup__form {
        height: calc(100dvh - 6.4rem);
        max-height: none;
    }

    .consult-popup__submit {
        min-width: 20rem;
        height: 6.1rem;
    }
}

@media (max-width: 1024px) {
    .section-inner,
    .hero__inner {
        padding: 0 3.2rem;
    }

    .site-header__menu {
        gap: 2rem;
    }

    .hero__visual {
        width: min(100%, 68rem);
    }

    .hero__spec {
        font-size: 3.2rem;
    }

    .hero__spec--left {
        left: 0;
    }

    .hero__spec--right {
        right: 0;
    }

    .hero__bg-circle--left {
        display:none;
    }

    .expert__body {
        grid-template-columns: 36rem 1fr;
        gap: 5rem;
    }

    .gallery-stats__content {
        padding-right:3.6rem;
        padding-left:3.6rem;
    }

    .expert__circle {
        width: 31rem;
        height: 31rem;
    }

    .price__grid {
        width: min(100%, 76rem);
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-card {
        min-height: auto;
    }

    .price-card__body {
        padding: 3rem;
    }

    /* Event */
    .partner-hero {
        padding-top: 10rem;
    }

    .partner-hero__title {
        font-size: 4.8rem;
    }
    .partner-card {
        padding: 4rem 2rem;
    }

    .partner-target {
        max-width: 85.8rem;
        margin: 0 auto;
    }

    .partner-process {
        gap: 1.6rem;
    }

    .partner-process li {
        flex-basis: 8rem;
    }

    
}


@media (max-width: 767px) {
    .only-mobile {
        display: block;
    }
    .site-header__logo {
        width: 13.9rem;
        height: 3rem;
    }
    .section-inner,
    .hero__inner {
        padding: 0 1.6rem;
    }

    .hero__inner {
        padding: 0;
    }

    .hero__bg-circle--right .ring:nth-child(1) { 
        width: 21rem; 
        height: 21rem; 
        top: 3%; 
        right: -32%; 
        animation-delay: 0s; 
    }
    .hero__bg-circle--right .ring:nth-child(2) { 
        width: 32.7rem; 
        height: 32.7rem; 
        top: 0; 
        right: -41%; 
        animation-delay: 0.8s; 
    }
    .hero__bg-circle--right .ring:nth-child(3) { 
        width: 39.7rem; 
        height: 39.7rem; 
        top: -2.4%; 
        right: -48%; 
        animation-delay: 1.6s;
    }

    .hero__bg-circle--right .ring:nth-child(4) {
        display:none;
    }

    .section-heading__title {
        font-size: 4rem;
    }

    .site-header {
        height: 6.4rem;
    }

    .site-header__inner {
        padding: 0 2rem;
    }

    .site-header__nav {
        position: fixed;
        left: 0;
        top: 6.4rem;
        width: 100%;
        height: calc(100vh - 6.4rem);
        padding: 5.6rem 1.6rem 0;
        background: rgba(9, 20, 39, 0.98);
        opacity: 0;
        visibility: hidden;
    }

    .site-header.is-menu-open .site-header__nav {
        opacity: 1;
        visibility: visible;
    }

    .site-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .site-header__item {
        width: 100%;
        border-bottom: 1px solid var(--color-line-blue);
    }

    .site-header__link {
        display: block;
        padding: 3.2rem;
        font-size: 3.2rem;
        text-align: center;
        line-height:1.18;
    } 

    .site-header__button {
        display: none;
    }

    .site-header__menu-button {
        display: block;
    }

    .site-header__button.mo {
        display: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 66.6rem;
        width: 20rem;
        background-color: var(--color-white);
        color: var(--color-black);
    }

    .site-header.is-menu-open .site-header__button.mo {
        display: flex;
    }

    .site-header.is-menu-open .site-header__menu-line:nth-child(1) {
        transform: translateY(0.7rem) rotate(45deg);
    }

    .site-header.is-menu-open .site-header__menu-line:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .site-header__menu-line:nth-child(3) {
        transform: translateY(-0.7rem) rotate(-45deg);
    }

    .hero {
        /*min-height: 76rem;*/
        padding-top: 14.4rem;
    }

    .hero__title {
        font-size: 5.6rem;
    }

    .hero__title .mo-br {
        display: block;
    }

    .hero__title .stress::before {
        height: 5.6rem;
    }

    .hero__description {
        margin-bottom: 4.6rem;
        padding: 0 2rem;
        font-size: 1.8rem;
    }

    .hero__visual {
        margin-top: 5rem;
    }

    .hero__visual .hero__device {
        transform: scale(1.24);
    }

    .hero__visual .hero__spec {
        display: none;
    }

    .hero__brand {
        font-size: 2.4rem;
    }

    .hero__spec {
        font-size: 2.4rem;
    }

    .hero__wave {
       bottom: 7rem;
    }
    .reason {
        margin-top: -7rem;
    }
    .reason,
    .service,
    .expert,
    .price,
    .faq {
        padding: 12rem 0 8rem;
    }

    .reason__grid,
    .service__grid,
    .price__grid {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 6rem;
        gap: 2.4rem;
    }

    .reason-card, .service-card {
        padding: 4rem 2.4rem;
    }
    .reason-card__number, .service-card__number {
        right: 2.4rem;
    }

    .reason-card__title, .service-card__title {
        font-size: 2.4rem;
        line-height: 1.20;
    }

    .reason-card__text, .service-card__text {
        font-size: 1.6rem;
    }

    .reason-card__tag {
        margin-top: 3.2rem;
        font-size: 1.4rem;
    }


    .gallery-stats__images {
        grid-template-columns: repeat(1, 1fr);
        height: auto;
    }

    .gallery-stats__images  .gallery-stats__image:nth-child(2),
    .gallery-stats__images  .gallery-stats__image:nth-child(3) {
        display: none;
    }


    .gallery-stats__list {
        flex-direction: column;
        gap: 6rem;
        align-items: center;
        justify-content: center;
    }

    .gallery-stats__content {
        padding: 12rem 0;
    }

    .expert__body {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-top: 6rem;
    }

    .expert__circle {
       width: 100%;
    }

    .expert-point__title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .service__banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4rem;
        width: 100%;
    }
    .service__banner .service__banner-button {
        margin: 0 auto;
        background-color: var(--color-hover-blue);
        color: var(--color-white);
    }

    .expert-point__text {
        font-size: 1.6rem;
    }

    .expert__text-list {
        padding-top: 6rem;
    }

    .price {
        padding: 8rem 0;
    }

    .price__grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 2.4rem;
        margin-top: 4.6rem;
    }

    .price-card {
        border-radius: 1.4rem;
    }

    .price-card:hover {
        transform: none;
    }

    .price-card__body {
        padding: 2.8rem 2.4rem 2.4rem;
    }

    .price-card__head {
        padding-bottom: 2.2rem;
    }

    .price-card__price {
        margin-top: 1rem;
        font-size: 5rem;
    }

    .price__notice {
        margin-top: 4rem;
    }


    .faq__question {
        font-size: 2rem;
    }

    .site-footer__inner {
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
    }
    
    .site-footer__logo {
        margin-top: 3rem;
    }

    /* Event */
    .partner-page {
        background: var(--color-white);
    }

    .partner-hero {
        background-position: 74% 50%;
    }


    .partner-hero__button {
        margin-top: 1.5rem;
    }

    .partner-content {
        margin-top: -15rem;
        padding: 0 1.6rem 8rem;
    }

    .partner-content__inner {
        width: 100%;
    }

    .partner-card + .partner-card {
        margin-top: 1.6rem;
    }

    .partner-block__title {
        margin-bottom: 1.2rem;
    }

    .partner-target {
        display: grid;
        grid-template-columns: repeat(2, 12rem);
        justify-content: center;
        gap: 0.8rem 3rem;
    }


    .partner-target li:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .partner-process {
        display: grid;
        grid-template-columns: 12rem 12rem;
        column-gap: 3.2rem;
        row-gap: 3.2rem;
        justify-content: end;
        max-width: 30.1rem;
        margin: 3.2rem auto 0;
        padding-right: 2.9rem;
    }

    .partner-process li {
        position: relative;
        width: 12rem;
        height: 12rem;
    }


    .partner-process li + li::before {
        display: none;
    }

    .partner-process li::after {
        content: "";
        position: absolute;
        right: -2.8rem;
        top: 50%;
        width: 2.4rem;
        height: 2.4rem;
        background: url(../img/ico_chevron_right.png) no-repeat 50% 50% / contain;
        transform: translateY(-50%);
    }

    .partner-process li:last-child::after {
        display: none;
    }

    .partner-notice {
        margin-top: 5.6rem;
        padding: 0 1rem;
    }

    .partner-floating-button {
        left: 50%;
        right: auto;
        bottom: 2.4rem;
        transform: translate(-50%, 1.6rem);
    }

    .partner-floating-button.is-show {
        transform: translate(-50%, 0);
    }
}

@media screen and (width: 375px) and (max-height: 667px) {
    .site-header__nav {
      padding-top:3rem;
    }
    .site-header__link {
        padding: 2.4rem 2rem;
    }
    .site-header__button.mo {
        top: 60rem;
    }
    .consult-popup__foot {
        padding: 2.4rem 0;
    }
  }

@media (max-width: 360px) {
    html {
        font-size: 8.5px;
    }

    .hero__title {
        font-size: 3.6rem;
    }

    .section-heading__title {
        font-size: 2.9rem;
    }

    .reason-card,
    .service-card {
        padding: 2.4rem;
    }

    .price__grid {
        padding: 0 1.6rem;
    }

    .price-card__body {
        padding: 2.4rem 2rem 2.2rem;
    }

    .price-card__price {
        font-size: 4.4rem;
    }

    .price-card__plan {
        font-size: 1.8rem;
    }

    .price-card__info-row {
        gap: 1.2rem;
    }
}