/* ========================================
   Reset
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}


@font-face {
    font-family: "Taebaek";
    src: url("../fonts/TAEBAEKfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
}


:root {
    /* Colors */
    --color-bg: #191919;
    --color-point: #f3d143;
    --color-cta: #ffd22e;

    /* Typography */
    --font-title: "Taebaek", sans-serif;
    --fs-section-title: 1.8462rem;
    --fs-section-subtitle: 1.2308rem;
    --fs-summary: 1.6923rem;
}

html {
    font-size: 26px;
    scroll-behavior: smooth;
}

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    background-color: var(--color-bg);
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.mb-only {
    display: none;
}


/**
 * Header
 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 16px 0;
    background-color: #141414;
    transition: transform 0.35s ease;
}
.header.is-hidden {
    transform: translateY(-100%);
}
.header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header-logo {
    margin: 0;
    line-height: 0;
}
.header .header-logo a {
    display: inline-block;
}
.header .header-logo img {
    width: auto;
    height: 30px;
}
.header .header-cta {
    flex-shrink: 0;
    padding: 11px 22px;
    border-radius: 8px;
    background-color: var(--color-cta);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: box-shadow 0.25s ease;
}
.header .header-cta:hover {
    box-shadow: 0 0 14px 0 rgb(255 210 46 / 60%);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .header {
        transition: none;
    }
}



/**
 * Section - Hero
 */
.hero {
    position: relative;
}
.hero .hero-bg {
    width: 100%;
    height: auto;
}
.hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero .hero-inner {
    padding: 300px 0 0;
}
.hero .hero-title {
    font-size: 3.4615rem;
    font-weight: 700;
    line-height: 1.222;
    color: var(--color-point);
}
.hero .hero-desc {
    margin-top: 30px;
    font-size: 1.6154rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}


/**
 * Section - Concerns
 */
.concerns {
    position: relative;
    overflow: hidden;
    padding: 90px 0 200px;
    background: url(../assets/images/concerns-bg.png) no-repeat center bottom / cover;
} 
.concerns .concerns-title {
    font-size: 2.0769rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}
.concerns .concerns-title strong {
    font-weight: 900; 
}
.concerns .concerns-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 135px auto 0;
}
.concerns .concerns-item {
    display: flex;
}
.concerns .concerns-item.is-left {
    justify-content: flex-start;
}
.concerns .concerns-item.is-right {
    justify-content: flex-end;
}
.concerns .concerns-item.is-center {
    justify-content: center;
}
.concerns .concerns-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 700px;
    padding: 16px 28px;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 1.3846rem;
    font-weight: 500;
    line-height: 1;
    color: #eaeaea;
}
.concerns .concerns-bubble-emoji {
    font-size: 1.9231rem;
    line-height: 1;
}
.concerns .concerns-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    margin: 124px 0 100px;
}
.concerns .concerns-dot {
    border-radius: 50%;
    background-color: #fff;
}
.concerns .concerns-dot:nth-child(1) {
    width: 0.2692rem;
    height: 0.2692rem;
}
.concerns .concerns-dot:nth-child(2) {
    width: 0.3462rem;
    height: 0.3462rem;
}
.concerns .concerns-dot:nth-child(3) {
    width: 0.5rem;
    height: 0.5rem;
}
.concerns .concerns-summary {
    color: #fff;
    font-size: var(--fs-summary);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}


/**
 * Section - System
 */
.system {
    padding: 150px 0;
    background-color: var(--color-point);
    text-align: center;
}
.system .system-head {
    color: #191919;
}
.system .system-head .system-title {
    font-family: var(--font-title);
    font-size: var(--fs-section-title);
    font-weight: normal;
    line-height: 1;
}
.system .system-head .system-subtitle {
    margin-top: 20px;
    font-size: var(--fs-section-subtitle);
    font-weight: 500;
    line-height: 1;
}
.system .system-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 64px;
}
.system .system-item {
    position: relative;
    padding: 45px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}
.system .system-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, #000 70%, #262626 100%);
    z-index: 2;
    pointer-events: none;
}
.system .system-item .system-card {
    position: relative;
    display: flex;
    justify-content: center;
}
.system .system-item .system-card-num {
    position: absolute;
    top: -35px;
    left: 50%;
    color: var(--color-point); 
    font-size: 9.3077rem;
    font-weight: 500;
    line-height: 1;
    opacity: 0.7;
    transform: translateX(-50%);
    z-index: 1;
}
.system .system-item .system-card-body {
    position: relative;
    padding-top: 120px;
    z-index: 3;
}
.system .system-item .system-card-body .system-card-title {
    color: var(--color-point); 
    font-size: 1.3846rem;
    font-weight: 700;
    line-height: 1;
}
.system .system-item .system-card-body .system-card-desc {
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.538;
} 


/**
 * Section - Trial
 */
.trial {
    padding: 120px 0 130px;
    background: url(../assets/images/trial-bg.jpg) no-repeat center -200px;
    text-align: center;
    overflow-x: hidden;
}
.trial .trial-head .trial-title {
    color: var(--color-point);
    font-family: var(--font-title);
    font-size: var(--fs-section-title);
    font-weight: normal;
    line-height: 1;
    
}
.trial .trial-head .trial-subtitle {
    margin-top: 20px;
    font-size: var(--fs-section-subtitle);
    font-weight: 500;
    line-height: 1;
}
.trial .trial-head .trial-desc {
    margin-top: 30px;
    font-weight: 300;
    line-height: 1.538;
    opacity: 0.8;
}
.trial .trial-carousel {
    position: relative;
    margin-top: 70px;
}
.trial .trial-swiper {
    overflow: visible;
}
.trial .trial-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trial .trial-swiper .swiper-slide {
    width: 420px;
    max-width: 70%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trial .trial-swiper .swiper-slide-active,
.trial .trial-swiper .swiper-slide-prev,
.trial .trial-swiper .swiper-slide-next {
    opacity: 1;
    pointer-events: auto;
}
.trial .trial-slide {
    position: relative;
}
.trial .trial-slide .trial-slide-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 10px;
    background-color: #111;
    transition: box-shadow 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trial .trial-slide .trial-progress {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 2;
    width: 90%;
    height: 6px;
    overflow: hidden;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.45);
    transform: translateX(-50%);
    pointer-events: none;
}
.trial .trial-slide .trial-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background-color: var(--color-point);
    box-shadow: 0 0 6px rgba(243, 209, 67, 0.6);
    transition: width 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trial .trial-swiper .swiper-slide-active {
    box-shadow: 0 0 46px rgb(0 0 0 / 76%);
}
.trial .trial-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.trial .trial-nav:hover {
    background-color: var(--color-point);
    color: #000;
}
.trial .trial-nav.trial-nav-prev {
    left: 0;
}
.trial .trial-nav.trial-nav-next {
    right: 0;
}
.trial .trial-nav svg {
    width: 30px;
    height: 30px;
}
.trial .trial-summary {
    margin-top: 90px;
    font-size: var(--fs-summary);
    font-weight: 500;
    line-height: 1.5;
}
.trial .trial-summary strong {
    color: var(--color-point);
    font-weight: inherit;
}


/**
 * Logo Band
 */
.logo-band {
    overflow: hidden;
    background-color: var(--color-point);
    padding: 16px 0;
}
.logo-band .logo-band-track {
    display: flex;
    width: max-content;
    animation: logo-band-scroll 30s linear infinite;
}
.logo-band .logo-band-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.logo-band .logo-band-item {
    display: flex;
    align-items: center;
    padding: 0 45px;
}
.logo-band .logo-band-logo {
    width: auto;
    height: 64px;
}
@keyframes logo-band-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-band .logo-band-track {
        animation: none;
    }
}


/**
 * Section - Community
 */
.community {
    padding: 730px 0 80px;
    background: url(../assets/images/community-bg.webp) no-repeat center top / 100%;
}
.community .community-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.community .community-logo {
    width: auto;
    height: 154px;
}
.community .community-title {
    margin-top: 35px;
    font-size: 1.7308rem;
    font-weight: 500;
    line-height: 1.333;
}
.community .community-subtitle {
    margin-top: 12px;
    font-weight: 500;
    line-height: 1;
}    
.community .community-list {
    display: flex;
    gap: 20px;
    margin-top: 80px;
}
.community .community-item {
    position: relative;
    flex: 1;
}   
.community .community-item:nth-child(1),
.community .community-item:nth-child(3) {
    margin-top: 30px;
}
.community .community-item .community-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 25px 20px 40px;
    background-color: #232323;
    border-radius: 20px;
    overflow: hidden;
}
.community .community-item .community-card-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.community .community-item .community-card-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.community .community-item .community-card-title {
    color: var(--color-point);
    margin-top: 20px;
    font-weight: 500;
    line-height: 1;
}

/**
 * Section - Reviews
 */
.reviews {
    padding: 80px 0;
    overflow-x: hidden;
    text-align: center;
}
.reviews .reviews-head {
    margin-bottom: 60px;
}
.reviews .reviews-title {
    color: var(--color-point);
    font-family: var(--font-title);
    font-size: var(--fs-section-title);
    font-weight: normal;
    line-height: 1;
    
}
.reviews .reviews-subtitle {
    margin-top: 18px;
    font-size: 0.7692rem;
    font-weight: 300;
    line-height: 1;
    opacity: 0.8;
}
.reviews .reviews-carousel {
    position: relative;
}
.reviews .reviews-swiper {
    overflow: hidden;
}
.reviews .reviews-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reviews .reviews-slide {
    position: relative;
    height: auto;
}
.reviews .reviews-slide .reviews-slide-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 10px;
    background-color: #111;
}
.reviews .reviews-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(180deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 70%) 55%, rgb(243 209 67 / 24%) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.reviews .reviews-slide.swiper-slide-active::after {
    opacity: 0;
}
.reviews .reviews-slide .reviews-progress {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 2;
    width: 90%;
    height: 6px;
    overflow: hidden;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.45);
    transform: translateX(-50%);
    pointer-events: none;
}
.reviews .reviews-slide .reviews-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background-color: var(--color-point);
    box-shadow: 0 0 6px rgba(243, 209, 67, 0.6);
    transition: width 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/**
 * Section - Branches
 */
.branches {
    padding: 90px 0 150px;
}
.branches .branches-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.branches .branches-title {
    color: var(--color-point);
    font-family: var(--font-title);
    font-size: var(--fs-section-title);
    font-weight: normal;
    line-height: 1;
    
}
.branches .branches-subtitle {
    font-size: var(--fs-section-subtitle);
    font-weight: 500;
    line-height: 1;
}
.branches .branches-desc {
    font-weight: 300;
    line-height: 1.538;
}
.branches .branches-tabs {
    display: none;
}
.branches .branches-list {
    display: flex;
    gap: 20px;
    margin-top: 80px;
}
.branches .branches-list .branches-item {
    position: relative;
    flex: 1;
    background-color: #232323;
    border-radius: 18px;
    text-align: center;
    overflow: hidden;
    transition: all 0.2s ease;
}
.branches .branches-list .branches-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-point);
    border-radius: 18px;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: all 0.2s ease;
}
.branches .branches-list .branches-item .card-map-image {
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}
.branches .branches-list .branches-item .branch-card-info {
    padding: 35px 30px 50px;
}
.branches .branches-list .branches-item .branch-card-info > * {
    color: #c7c7c7;
    transition: all 0.2s ease;
}
.branches .branches-list .branches-item.is-active {
    background-color: #181818;
}
.branches .branches-list .branches-item.is-active::before {
    opacity: 1;
}
.branches .branches-list .branches-item.is-active .card-map-image {
    filter: grayscale(0);
}
.branches .branches-list .branches-item.is-active .branch-card-info .card-info-name {
    color: var(--color-point);
}
.branches .map-view-btn {
    display: none;
    width: 100%;
    justify-content: center;
}


/**
 * Map Modal (바텀시트)
 */
 .branches .branches-list .branches-item .branch-card-info .map-view-btn {
    margin-top: 16px;
    padding: 12px 22px;
    background: var(--color-point);
    border: 2px solid var(--color-point);
    border-radius: 4px;
    font-weight: 500;
    line-height: 1;
    color: #232323;
    cursor: pointer;
    transition: all 0.2s ease;
}
.branches .branches-list .branches-item .branch-card-info .map-view-btn:hover {
    background-color: transparent;
    color: var(--color-point);
}
.map-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 9999;
    align-items: flex-end;
}
.map-modal-overlay.is-open {
    display: flex;
}
.map-modal {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #232323;
    border-top: 1px solid rgb(255 255 255 / 8%);
    border-radius: 20px 20px 0 0;
    padding: 12px 20px 32px;
    box-shadow: 0 -4px 24px rgb(0 0 0 / 45%);
    animation: mapModalSlideUp 0.25s ease;
}
@keyframes mapModalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.map-modal-handle {
    width: 40px;
    height: 4px;
    background: rgb(255 255 255 / 25%);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.map-modal-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}
.map-modal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.map-modal-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #2c2c2c;
    transition: background 0.15s, color 0.15s;
}
.map-modal-item:hover {
    background: rgb(243 209 67 / 12%);
    color: var(--color-point);
}
.map-modal-item svg:last-child {
    margin-left: auto;
    color: #777;
    transition: color 0.15s;
}
.map-modal-item:hover svg:last-child {
    color: var(--color-point);
}
.map-modal-close {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #2c2c2c;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #c7c7c7;
    cursor: pointer;
    transition: background 0.15s;
}
.map-modal-close:hover {
    background: #383838;
}


/**
 * Section - CTA
 */
.cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0 140px;
    background-color: #000;
    background-image:
        radial-gradient(circle 800px at 85% 0%, rgb(255 210 46 / 15%), transparent 70%), 
        radial-gradient(circle 800px at 0% 100%, rgb(255 210 46 / 15%), transparent 70%);
    background-repeat: no-repeat;
}
.cta .cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta .cta-title {
    font-size: 1.7308rem;
    font-weight: 500;
    line-height: 1;
}
.cta .cta-title strong {
    font-weight: 900;
}
.cta .cta-desc {
    margin-top: 30px;
    font-weight: 500;
    line-height: 1;
}
.cta .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 65px;
}
.cta .cta-button + .cta-button {
    margin-top: 24px;
}
.cta .cta-button {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--color-cta);
    box-shadow: 0 0 13px 0 rgb(255 210 46 / 59%);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cta .cta-button:hover {
    box-shadow: 0 0 24px 0 rgb(255 210 46 / 79%);
}
.cta .cta-button-label {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 200px;
    padding: 0.7308rem 0.5rem;
    border-radius: 8px;
    background-color: #000;
    color: var(--color-cta);
    font-family: var(--font-title);
    font-weight: normal;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-align: center;
    
}
.cta .cta-button-text {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 20px;
    font-family: var(--font-title);
    font-weight: normal;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-align: center;
    color: #000;
    
    transition: color 0.38s ease;
}



@media all and (max-width: 1279px ) {
    html {
        font-size: 22px;
    }
    .concerns .concerns-bubble {
        width: 600px;
    }
    .community {
        padding: 360px 0 80px;
    }
    .branches .branches-list .branches-item .branch-card-info .card-info-name {
        margin-bottom: 10px;
    }
    .branches .branches-list .branches-item .branch-card-info .card-info-address,
    .branches .branches-list .branches-item .branch-card-info .card-info-access {
        font-size: 18px;
    }

}


@media all and (max-width: 1023px ) {
    html {
        font-size: 18px;
    }
    .concerns .concerns-bubble {
        width: 480px;
    }
    .trial .trial-swiper .swiper-slide {
        width: 340px;
    }
    .logo-band .logo-band-item {
        padding: 0 25px;
    }
    .community {
        padding: 260px 0 80px;
    }
    .community .community-logo {
        height: 100px;
    }
    .community .community-list {
        gap: 40px;
        flex-direction: column;
        max-width: 70%;
        margin: 80px auto 0;
    }
    .community .community-item {
        transition-delay: 0s !important;
    }
    .community .community-item:nth-child(1), .community .community-item:nth-child(3) {
        margin-top: 0;
    }
    .community .community-item .community-card-title {
        font-size: 30px;
    }
    .branches-wrapper {
        max-width: 670px;
        margin: 60px auto 0;
    }
    .branches .branches-tabs {
        display: flex;
        justify-content: center;
    }
    .branches .branches-tab {
        position: relative;
        flex: 1;
        padding: 16px 8px;
        background: none;
        border: 0;
        color: #c7c7c7;
        font-family: inherit;
        font-size: 22px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    .branches .branches-tab::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: #c7c7c7;
        transition: background-color 0.2s ease;
    }
    .branches .branches-tab.is-active {
        color: var(--color-point);
    }
    .branches .branches-tab.is-active::after {
        background-color: var(--color-point);
    }
    .branches .branches-list {
        display: block;
        margin-top: 40px;
    }
    .branches .branches-list .branches-item {
        display: none;
        transition-delay: 0s !important;
    }
    .branches .branches-list .branches-item.is-active {
        display: block;
    }
    .branches .branches-list .branches-item .branch-card-info {
        background-color: #232323;
    }
    .branches .map-view-btn {
        display: inline-flex;

    }
}



@media all and (max-width: 767px ) {
    html {
        font-size: 12px;
    }
    .mb-only {
        display: block;
    }
    .header {
        padding: 12px 0;
    }
    .header .header-logo img {
        height: 24px;
    }
    .header .header-cta {
        padding: 8px 14px;
        font-size: 13px;
    }
    .hero {
        background: url(../assets/images/hero-bg_mb.jpg) no-repeat -27vw -7vw / 133%;
    }
    .hero .hero-bg {
        display: none;
    }
    .hero .hero-inner {
        padding: 130vw 10px 0;
    }
    .hero .hero-content {
        position: static;
    }
    .hero .hero-title {
        font-size: 42px;
    }
    .hero .hero-desc {
        margin-top: 12px;
        font-size: 18px;
    }
    .concerns {
        padding: 90px 0 80px;
        background-size: 100%;
    }
    .concerns .concerns-title {
        font-size: 22px;
        line-height: 1.363;
    }
    .concerns .concerns-list {
        margin-top: 50px;
        gap: 20px;
    }
    .concerns .concerns-bubble {
        width: 256px;
        padding: 6px 10px;
        font-size: 16px;
        letter-spacing: -0.5px;
        gap: 0px;
    }
    .concerns .concerns-bubble-emoji {
        font-size: 18px;
    }
    .concerns .concerns-dots {
        margin: 35px 0 40px;
        gap: 14px;
    }
    .concerns .concerns-summary {
        font-size: 18px;
        line-height: 1.3333;
    }
    .system {
        padding: 80px 0;
    }
    .system .system-head .system-title {
        font-size: 28px;
    }
    .system .system-head .system-subtitle {
        margin-top: 10px;
        font-size: 20px;
    }
    .system .system-list {
        gap: 16px;
        margin-top: 45px;
    }
    .system .system-item {
        padding: 25px 20px;
    }
    .system .system-item::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, #000 52%, #262626 100%);
    }
    .system .system-item .system-card-num {
        top: -16px;
        font-size: 100px;
    }
    .system .system-item .system-card-body {
        padding-top: 40px;
    }
    .system .system-item .system-card-body .system-card-title {
        font-size: 24px;
    }
    .system .system-item .system-card-body .system-card-desc {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.5;
        word-break: keep-all;
    }
    .trial {
        padding: 80px 0;
        background-position: center -20vw;
        background-size: contain;
    }
    .trial .trial-head .trial-title {
        font-size: 28px;
    }
    .trial .trial-head .trial-subtitle {
        margin-top: 10px;
        font-size: 20px;
    }
    .trial .trial-head .trial-desc {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.5;
    }
    .trial .trial-swiper .swiper-slide {
        width: 190px;
    }
    .trial .trial-slide .trial-progress {
        height: 4px;
    }
    .trial .trial-nav {
        width: 24px;
        height: 24px;
    }
    .trial .trial-nav.trial-nav-prev {
        left: -10px;
    }
    .trial .trial-nav.trial-nav-next {
        right: -10px;
    }
    .trial .trial-nav svg {
        width: 18px;
        height: 18px;
    }
    .trial .trial-summary {
        margin-top: 40px;
        font-size: 18px;
        line-height: 1.444;
    }
    .logo-band {
        padding: 8px 0;
    }
    .logo-band .logo-band-item {
        padding: 0 12px;
    }
    .logo-band .logo-band-logo {
        height: 36px;
    }
    .community {
        padding: 70vw 0 80px;
        background-size: 195%;
    }
    .community .community-logo {
        height: 60px;
    }
    .community .community-title {
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.3333;
    }
    .community .community-subtitle {
        margin-top: 12px;
        font-size: 16px;
    }
    .community .community-list {
        gap: 24px;
        max-width: 84.3%;
        margin: 55px auto 0;
    }
    .community .community-item .community-card {
        padding: 15px 15px 25px;
    }
    .community .community-item .community-card-title {
        font-size: 18px;
    }
    .reviews .reviews-title {
        font-size: 28px;
    }
    .reviews .reviews-subtitle {
        margin-top: 12px;
        font-size: 20px;
    }
    .reviews .reviews-slide .reviews-progress {
        height: 4px;
    }
    .branches {
        padding: 80px 0;
    }
    .branches .branches-head {
        gap: 0;
    }
    .branches .branches-title {
        font-size: 28px;
        line-height: 1.285;
    }
    .branches .branches-subtitle {
        margin-top: 12px;
        font-size: 20px;
    }
    .branches .branches-desc {
        margin-top: 25px;
        font-size: 16px;
        line-height: 1.625;
        word-break: keep-all;
    }
    .branches-wrapper {
        margin: 55px auto 0;
    }
    .branches .branches-tab {
        padding: 11px 8px;
        font-size: 18px;
    }
    .branches .branches-list {
        margin-top: 15px;
    }
    .branches .branches-list .branches-item::before {
        border-width: 1px;
        border-color: #c7c7c7;
    }
    .branches .branches-list .branches-item .branch-card-info {
        padding: 25px 15px 30px;
    }
    .branches .branches-list .branches-item .branch-card-info .card-info-name {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .branches .branches-list .branches-item .branch-card-info .card-info-address, 
    .branches .branches-list .branches-item .branch-card-info .card-info-access {
        font-size: 14px;
    }
    .branches .branches-list .branches-item .branch-card-info .map-view-btn {
        margin-top: 20px;
        padding: 7px 22px;
        font-size: 14px;
    }
    .cta {
        padding: 80px 0;
        background-image: 
            radial-gradient(circle 490px at 100% 0%, rgb(255 210 46 / 15%), transparent 70%), 
            radial-gradient(circle 400px at 0% 100%, rgb(255 210 46 / 15%), transparent 70%);
    }
    .cta .cta-inner {
        text-align: center;
    }
    .cta .cta-title {
        font-size: 26px;
        line-height: 1.307;
    }
    .cta .cta-desc {
        margin-top: 6px;
        font-size: 16px;
        line-height: 1.5;
    }
    .cta .cta-buttons {
        margin-top: 40px;
    }
    .cta .cta-button + .cta-button {
        margin-top: 20px;
    }
    .cta .cta-button {
        font-size: 16px;
        line-height: 1.5;
    }
    .cta .cta-button-label {
        width: 100px;
        padding: 11px 5px;
        font-size: 14px;
    }
    .cta .cta-button-text {
        font-size: 14px;
        padding: 0 10px;
    }
}