﻿body {
    background: #ffffff;
}

html,
body {
    overflow-x: clip;
}

main.pc-page-contained,
main.smart-guide-page--contained {
    width: min(1200px, 100%);
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.pc-page-contained .appointment-hero,
.pc-page-contained .ticketing-hero,
.pc-page-contained .company-hero,
.pc-page-contained .content-hero,
.pc-page-contained .creative-hero,
.pc-page-contained .member-hero,
.pc-page-contained .news-hero,
.smart-guide-page--contained .smart-guide-hero {
    height: auto;
    overflow: visible;
}

.pc-page-contained .appointment-hero__image,
.pc-page-contained .ticketing-hero__image,
.pc-page-contained .company-hero__image,
.pc-page-contained .content-hero__image,
.pc-page-contained .creative-hero__image,
.pc-page-contained .member-hero__image,
.pc-page-contained .news-hero__image,
.smart-guide-page--contained .smart-guide-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pc-page-contained .appointment-hero__button {
    top: 52.9%;
    left: 7.8%;
    width: clamp(126px, 13%, 156px);
}

.pc-page-contained .ticketing-hero__button {
    top: 66.7%;
    left: 11.25%;
    min-width: 0;
    width: clamp(128px, 13%, 156px);
    padding-left: 0;
    padding-right: 0;
}

.pc-page-contained .company-hero__button {
    left: 10.2%;
    width: clamp(126px, 13%, 156px);
}

.pc-page-contained .creative-growth__visual {
    width: 100%;
    margin-left: 0;
}

.pc-page-contained .company-consult > *,
.pc-page-contained .creative-private-cta > *,
.pc-page-contained .member-private-cta > *,
.pc-page-contained .news-cta__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
    height: 83px;
    margin-top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(31, 31, 31, 0.03);
}

.site-header__inner {
    width: min(1200px, calc(100% - 96px));
    height: 83px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0;
    min-width: 0;
}

.site-header__logo {
    flex-shrink: 0;
}

.site-header__logo img {
    height: 40px;
    width: auto;
}

.pc-side-service {
    --pc-side-service-expanded-width: 195px;
    position: fixed;
    top: 50%;
    z-index: 1000;
    width: 60px;
    transform: translateY(-50%);
    display: grid;
    gap: 3px;
    transition: width 0.22s ease;
}

.pc-side-service--left {
    left: 0;
}

.pc-side-service--right {
    right: 0;
}

.pc-side-service:hover,
.pc-side-service:focus-within {
    width: var(--pc-side-service-expanded-width);
}

.pc-side-service__item {
    width: 60px;
    min-height: 60px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: #ff8422;
    color: #ffffff;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 132, 34, 0.16);
    transition: width 0.22s ease, min-height 0.22s ease, background-color 0.22s ease;
}

.pc-side-service:hover .pc-side-service__item,
.pc-side-service:focus-within .pc-side-service__item {
    width: var(--pc-side-service-expanded-width);
}

.pc-side-service__item:hover,
.pc-side-service__item:focus-visible {
    background: #ff7b19;
}

.pc-side-service__row {
    width: var(--pc-side-service-expanded-width);
    min-height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
}

.pc-side-service__icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-side-service__icon {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pc-side-service__icon--top {
    width: 40px;
    height: 40px;
}

.pc-side-service__text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.pc-side-service:hover .pc-side-service__text,
.pc-side-service:focus-within .pc-side-service__text {
    opacity: 1;
    transform: translateX(0);
}

.pc-side-service__item--qr {
    min-height: 60px;
}

.pc-side-service:hover .pc-side-service__item--qr,
.pc-side-service:focus-within .pc-side-service__item--qr {
    min-height: 234px;
}

.pc-side-service__qr-box {
    width: 150px;
    height: 0;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: height 0.22s ease, margin 0.22s ease, opacity 0.18s ease, transform 0.18s ease;
}

.pc-side-service:hover .pc-side-service__qr-box,
.pc-side-service:focus-within .pc-side-service__qr-box {
    height: 150px;
    margin: 0 auto 24px;
    opacity: 1;
    transform: translateY(0);
}

.pc-side-service__qr-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767px), (hover: none) and (pointer: coarse) {
    .pc-side-service {
        display: none;
    }
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(28px, 2.2vw, 72px);
    min-width: 0;
}

.site-nav__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    line-height: 1;
    white-space: nowrap;
}

.site-nav__item.font-1 {
    font-weight: 500;
}

.site-nav__item img {
    width: 18px;
    height: 18px;
    opacity: 0.55;
}

.site-nav__dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-nav__item--dropdown img {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__dropdown:hover .site-nav__item--dropdown img,
.site-nav__dropdown:focus-within .site-nav__item--dropdown img {
    opacity: 0.8;
    transform: rotate(180deg);
}

.site-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 20;
    min-width: 148px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(31, 47, 84, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-nav__dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 18px;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-nav__dropdown-link {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #505968;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible,
.site-nav__dropdown-link--active {
    background: #f1f6ff;
    color: #1d428e;
}

.site-nav__dropdown-link:focus-visible {
    outline: 2px solid #7da7ff;
    outline-offset: 2px;
}

html.scroll-reveal-ready [data-scroll-reveal] {
    --scroll-reveal-x: 0px;
    --scroll-reveal-y: 42px;
    --scroll-reveal-scale: 1;
    --scroll-reveal-blur: 0px;
    opacity: 0;
    filter: blur(var(--scroll-reveal-blur));
    translate: var(--scroll-reveal-x) var(--scroll-reveal-y);
    scale: var(--scroll-reveal-scale);
    transition:
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
        translate 760ms cubic-bezier(0.22, 1, 0.36, 1),
        scale 760ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--scroll-reveal-delay, 0ms);
    will-change: opacity, translate, scale;
}

html.scroll-reveal-ready [data-scroll-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
    scale: 1;
}

html.scroll-reveal-ready [data-scroll-reveal="left"] {
    --scroll-reveal-x: -72px;
    --scroll-reveal-y: 0px;
}

html.scroll-reveal-ready [data-scroll-reveal="right"] {
    --scroll-reveal-x: 72px;
    --scroll-reveal-y: 0px;
}

html.scroll-reveal-ready [data-scroll-reveal="up"] {
    --scroll-reveal-y: 54px;
}

html.scroll-reveal-ready [data-scroll-reveal="down"] {
    --scroll-reveal-y: -42px;
}

html.scroll-reveal-ready [data-scroll-reveal="zoom"] {
    --scroll-reveal-y: 24px;
    --scroll-reveal-scale: 0.96;
    --scroll-reveal-blur: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html.scroll-reveal-ready [data-scroll-reveal] {
        opacity: 1;
        filter: none;
        translate: 0 0;
        scale: 1;
        transition: none;
    }
}

.hero-banner {
    width: 100%;
    height: clamp(430px, 44.86vw, 646px);
    overflow: hidden;
    background: #eefaff;
}

.hero-banner__swiper,
.hero-banner .swiper-wrapper,
.hero-banner__slide {
    width: 100%;
    height: 100%;
}

.hero-banner__swiper {
    overflow: hidden;
}

.hero-banner .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.hero-banner__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner__content-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: min(100%, 1440px);
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: clamp(20px, 2vw, 32px) clamp(24px, 3.5vw, 56px);
    cursor: pointer;
}

.hero-banner__content-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.hero-subnav {
    width: 100%;
    padding: 0 48px 120px;
}

.hero-subnav__inner {
    width: min(1200px, calc(100% - 96px));
    margin: 0 auto;
    padding: 81px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.hero-subnav__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3vw, 74px);
    height: 46px;
    min-height: 46px;
    padding: 0 48px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 16px 0 rgba(156, 170, 172, 0.3);
}

.hero-subnav__item {
    position: relative;
    color: #8a8a8a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.hero-subnav__item:hover,
.hero-subnav__item:focus-visible {
    color: #1f1f1f;
}

.hero-subnav__item--active {
    color: #1f1f1f;
    font-weight: 600;
}

.hero-subnav__title {
    margin-top: 85px;
    color: #1f1f1f;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.hero-product-showcase {
    width: min(1200px, 100%);
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    justify-items: center;
    gap: clamp(28px, 3.8vw, 72px);
}

.hero-product-showcase__item {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-product-showcase__visual {
    height: 292px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-product-showcase__image {
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    object-fit: contain;
}

.hero-product-showcase__label {
    position: relative;
    display: block;
    width: 180px;
    height: 42px;
    margin-top: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1f1f1f;
    font-size: 26px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.hero-product-showcase__label:focus-visible {
    border-radius: 999px;
    outline: 2px solid #6e45ff;
    outline-offset: 4px;
}

.hero-product-showcase__label-text,
.hero-product-showcase__label-image {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.hero-product-showcase__label-text {
    width: max-content;
    max-width: 180px;
    font-size: 32px;
}

.hero-product-showcase__label-image {
    width: 120px;
    height: 38px;
    opacity: 0;
}

.hero-product-showcase__label:hover .hero-product-showcase__label-text,
.hero-product-showcase__label:focus-visible .hero-product-showcase__label-text {
    opacity: 0;
}

.hero-product-showcase__label:hover .hero-product-showcase__label-image,
.hero-product-showcase__label:focus-visible .hero-product-showcase__label-image {
    opacity: 1;
}

.hero-product-feature-list {
    width: min(1200px, 100%);
    margin-top: 88px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 96px;
}

.hero-product-feature-list__item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-product-feature-list__item--ai {
    gap: 48px;
}

.hero-product-feature-list__name {
    margin: 0;
    color: #1f1f1f;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
}

.hero-product-feature-list__image {
    display: block;
    width: auto;
    max-width: min(100%, 920px);
    max-height: 520px;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.hero-product-overview-title {
    margin-top: 118px;
    color: #1f1f1f;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.hero-ai-feature {
    width: min(1200px, 100%);
    margin-top: 88px;
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    align-items: stretch;
    background: transparent;
}

.hero-ai-feature__badge {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
}

.hero-ai-feature__badge-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-ai-feature__content {
    display: grid;
    grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
    align-items: stretch;
    gap: 24px;
    padding: 0;
}

.hero-ai-feature__info {
    width: 100%;
    min-height: 360px;
    padding: 28px 54px 26px 32px;
    border-radius: 0 18px 18px 0;
    background: #f8faff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-ai-feature__item {
    padding: 0 0 22px;
}

.hero-ai-feature__item + .hero-ai-feature__item {
    border-top: 1px solid #e7ebf4;
    padding-top: 22px;
}

.hero-ai-feature__item:last-child {
    padding-bottom: 0;
}

.hero-ai-feature__item-title {
    color: #1f1f1f;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-ai-feature__item:first-child .hero-ai-feature__item-title {
    color: #2f72ff;
}

.hero-ai-feature__item-text {
    margin-top: 16px;
    color: #9ba0aa;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-ai-feature__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.hero-ai-feature__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000000;
}

.hero-ai-feature__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-ai-feature__play.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-ai-feature__play:hover,
.hero-ai-feature__play:focus-visible {
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-ai-feature__play:focus-visible {
    outline: 2px solid #6e45ff;
    outline-offset: 4px;
}

.hero-ai-feature__play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-ai-feature__play-icon {
    position: absolute;
    top: 50%;
    left: 54%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #aeb4bf;
    transform: translate(-50%, -50%);
}

.hero-ai-feature__cta {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 204px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #b9bcc3;
    background: #ffffff;
    color: #9fa3ab;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.hero-ai-feature__cta-icon {
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    object-fit: contain;
    transform: translateY(1px);
}

.hero-partners-title {
    margin-top: 120px;
    color: #1f1f1f;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.hero-museum-carousel {
    position: relative;
    width: min(1200px, 100%);
    max-width: 100%;
    margin-top: 88px;
    margin-left: auto;
    margin-right: auto;
}

.hero-museum-carousel__viewport {
    overflow: visible;
    width: 100%;
}

.hero-museum-carousel__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 88px 10px;
    width: 100%;
}

.hero-museum-carousel__card {
    flex: 0 1 calc((100% - 30px) / 4);
    min-width: 0;
    min-height: clamp(580px, 38vw, 680px);
    padding: clamp(34px, 2.9vw, 50px) clamp(16px, 1.4vw, 20px) 14px;
    border-radius: 28px;
    background: #f7f8fb;
    display: flex;
    flex-direction: column;
}

.hero-museum-carousel__logo {
    display: block;
    width: clamp(56px, 4.3vw, 76px);
    height: clamp(56px, 4.3vw, 76px);
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
}

.hero-museum-carousel__logo--empty {
    border-radius: 50%;
    background: linear-gradient(135deg, #eef2f8 0%, #f8f9fb 100%);
}

.hero-museum-carousel__title {
    display: block;
    margin-top: clamp(34px, 2.8vw, 46px);
    color: #1f1f1f;
    font-size: clamp(28px, 1.7vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    min-height: 1.25em;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-museum-carousel__title span {
    font-size: 20px;
    font-weight: 600;
}

.hero-museum-carousel__desc {
    margin-top: clamp(28px, 2.2vw, 36px);
    color: #7f848d;
    font-size: clamp(15px, 0.9vw, 18px);
    font-weight: 400;
    line-height: 1.55;
    flex-shrink: 0;
}

.hero-museum-carousel__photo {
    width: 100%;
    height: clamp(214px, 15.8vw, 258px);
    margin-top: auto;
    border-radius: 16px;
    object-fit: cover;
}

.hero-why-us {
    width: 1200px;
    max-width: 100%;
    margin-top: 120px;
    height: 241px;
    min-height: 241px;
    padding: 34px 21px 34px 39px;
    border-radius: 28px;
    background: #f7f8fb;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 632px);
    align-items: center;
    gap: 36px;
    overflow: hidden;
}

.hero-why-us__content {
    min-width: 0;
}

.hero-why-us__eyebrow {
    color: #9a9ea6;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-why-us__title {
    margin-top: 18px;
    color: #1f1f1f;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
}

.hero-why-us__button {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 184px;
    height: 38px;
    padding: 0 16px;
    border-radius: 7px;
    border: 1px solid #babec7;
    background: #ffffff;
    color: #8c919a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.hero-why-us__button img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.hero-why-us__button-icon {
    display: block;
    flex-shrink: 0;
    transform: translateY(1px);
}

.hero-why-us__media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-why-us__video-card {
    position: relative;
    width: 466px;
    max-width: 100%;
    height: 173px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.24), transparent 34%),
        linear-gradient(135deg, #c8ddff 0%, #8fb8f4 50%, #7fa5e7 100%);
}

.hero-why-us__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-logo-wall {
    position: relative;
    width: min(1200px, 100%);
    margin-top: 120px;
    overflow: visible;
    padding: 0;
}

.hero-logo-wall__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 18px;
}

.hero-logo-wall__img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 0;
}

.hero-logo-wall__cta-wrap {
    margin-top: 165px;
    display: flex;
    justify-content: center;
}

.hero-logo-wall__cta {
    margin-top: 0;
}

.hero-logo-wall__service-text {
    margin-top: 120px;
    color: #1f1f1f;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.hero-service-support {
    width: min(1200px, 100%);
    margin-top: 82px;
}

.hero-service-support__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.hero-service-support__card {
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #f4ffff;
}

.hero-service-support__card--tall {
    grid-row: span 2;
}

.hero-service-support__card--wide {
    background: transparent;
}

.hero-service-support__card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.hero-service-support__card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.hero-service-support__card:nth-child(3),
.hero-service-support__card:nth-child(4) {
    grid-row: 1;
}

.hero-service-support__card:nth-child(5),
.hero-service-support__card:nth-child(6) {
    grid-row: 2;
}

.hero-service-support__card:nth-child(3),
.hero-service-support__card:nth-child(5) {
    grid-column: 3;
}

.hero-service-support__card:nth-child(4),
.hero-service-support__card:nth-child(6) {
    grid-column: 4;
}

.hero-service-support__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-footer {
    width: 100%;
    padding: 0;
    background: #f3f5f8;
}

.site-footer__frame {
    width: 100%;
    min-height: 860px;
    margin: 0 auto;
    padding: 72px 0 120px;
    background: url("../assets-web/mobile/bottom-bg.png") center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__title {
    color: #1f1f1f;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
}

.site-footer__panel {
    width: min(1200px, calc(100% - 96px));
    min-height: 560px;
    margin-top: 95px;
    padding: 60px 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    display: grid;
    grid-template-columns: 140px 160px minmax(320px, 360px) 280px;
    justify-content: center;
    align-items: start;
    gap: 60px;
}

.site-footer__column {
    min-width: 0;
}

.site-footer__heading {
    color: #1f1f1f;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.site-footer__list {
    margin-top: 24px;
}

.site-footer__list li + li {
    margin-top: 19px;
}

.site-footer__list a,
.site-footer__details a {
    color: #8f939b;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.site-footer__contacts {
    margin-top: 22px;
    display: grid;
    gap: 15px;
}

.site-footer__contact {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 9px;
    background: #edf4ff;
    color: #8b929d;
    font-size: 17px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.site-footer__contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.site-footer__details {
    margin-top: 40px;
    display: grid;
    gap: 14px;
}

.site-footer__column--qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__qr-list {
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 42px;
}

.site-footer__qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.site-footer__qr-image {
    width: 82px;
    height: 82px;
    display: block;
}

.site-footer__qr-caption {
    color: #9a9da4;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
}

.site-footer__beian {
    margin-top: 28px;
    color: #8f939b;
    font-size: 15px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.site-footer__beian a {
    color: inherit;
    transition: color 0.2s ease;
}

.site-footer__beian a:hover {
    color: #2b73d6;
}

@media (max-width: 1420px) {
    .hero-museum-carousel {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-museum-carousel__viewport {
        overflow: visible;
    }

    .hero-museum-carousel__track {
        gap: 56px 10px;
        width: 100%;
    }

    .hero-museum-carousel__card {
        flex-basis: calc((100% - 30px) / 4);
        min-height: 620px;
    }

    .hero-why-us {
        width: 100%;
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .hero-why-us__media {
        justify-content: stretch;
    }

    .hero-why-us__video-card {
        width: 100%;
        height: auto;
        aspect-ratio: 632 / 302;
    }

    .hero-logo-wall__grid {
        gap: 16px;
    }

    .hero-logo-wall__cta-wrap {
        margin-top: 96px;
    }

    .hero-logo-wall__service-text {
        margin-top: 88px;
        font-size: 30px;
    }

    .hero-service-support {
        width: 100%;
        margin-top: 64px;
    }

    .hero-service-support__grid {
        gap: 20px;
    }

    .site-footer {
        padding: 0;
    }

    .site-footer__frame {
        min-height: 0;
        padding: 64px 0 88px;
    }

    .site-footer__title {
        font-size: 36px;
    }

    .site-footer__panel {
        width: min(1200px, calc(100% - 80px));
        min-height: 0;
        margin-top: 72px;
        padding: 56px 64px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 56px;
    }
}

@media (max-width: 1200px) {
    .site-header__inner {
        width: calc(100% - 64px);
        gap: clamp(20px, 3vw, 32px);
    }

    .site-nav {
        justify-content: flex-end;
        gap: clamp(18px, 2vw, 32px);
    }

    .hero-banner {
        height: clamp(420px, 46vw, 540px);
    }

    .hero-subnav {
        padding: 0 32px 96px;
    }

    .hero-subnav__inner {
        width: calc(100% - 64px);
        padding: 64px 0 40px;
    }

    .hero-subnav__nav {
        gap: 20px 32px;
        min-height: auto;
        padding: 20px 28px;
        flex-wrap: wrap;
        border-radius: 32px;
    }

    .hero-subnav__title {
        margin-top: 64px;
        font-size: 30px;
        white-space: normal;
    }

    .hero-product-showcase {
        width: 100%;
        margin-top: 56px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 32px;
    }

    .hero-product-showcase__visual {
        height: 250px;
    }

    .hero-product-feature-list {
        width: 100%;
        margin-top: 64px;
        gap: 80px;
    }

    .hero-product-feature-list__image {
        max-width: min(100%, 820px);
        max-height: 480px;
    }

    .hero-product-feature-list__name {
        font-size: 34px;
    }

    .hero-product-overview-title {
        margin-top: 64px;
        font-size: 30px;
        white-space: normal;
    }

    .hero-ai-feature {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-ai-feature__badge {
        min-height: 240px;
        border-radius: 18px;
    }

    .hero-ai-feature__badge-image {
        width: 100%;
        height: 100%;
    }

    .hero-ai-feature__content {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 24px;
    }

    .hero-ai-feature__info {
        max-width: none;
        min-height: auto;
        padding: 36px 32px;
        border-radius: 18px;
    }

    .hero-ai-feature__visual {
        min-height: 0;
        aspect-ratio: 810 / 360;
    }

    .hero-ai-feature__cta {
        width: 190px;
        height: 48px;
    }

    .hero-partners-title {
        margin-top: 88px;
        font-size: 40px;
        white-space: normal;
    }

    .hero-museum-carousel {
        width: 100%;
        margin-top: 72px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-museum-carousel__track {
        gap: 40px 10px;
    }

    .hero-museum-carousel__card {
        flex-basis: clamp(280px, calc((100% - 10px) / 2), 360px);
        min-height: 560px;
    }

    .hero-service-support {
        width: 100%;
        margin-top: 56px;
    }

    .hero-service-support__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 20px;
    }

    .hero-service-support__card--tall {
        grid-row: auto;
    }

    .hero-service-support__card:nth-child(1),
    .hero-service-support__card:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-service-support__card:nth-child(3),
    .hero-service-support__card:nth-child(4),
    .hero-service-support__card:nth-child(5),
    .hero-service-support__card:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-service-support__image {
        height: auto;
        object-fit: contain;
    }

    .site-footer {
        padding: 0;
    }

    .site-footer__frame {
        padding: 48px 0 64px;
    }

    .site-footer__title {
        font-size: 30px;
        white-space: normal;
    }

    .site-footer__panel {
        width: calc(100% - 48px);
        margin-top: 48px;
        padding: 40px 32px;
        border-radius: 24px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__column--qr {
        align-items: flex-start;
    }

    .site-footer__qr-list {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        width: calc(100% - 32px);
        padding: 16px 20px;
        gap: 20px;
    }

    .site-nav {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-header__logo img {
        height: 40px;
        width: auto;
    }

    .hero-banner {
        height: 360px;
    }

    .hero-banner__content-link {
        padding: 18px;
    }

    .hero-subnav {
        padding: 0 16px 72px;
    }

    .hero-subnav__inner {
        width: calc(100% - 32px);
        padding: 40px 0 32px;
    }

    .hero-subnav__nav {
        width: 100%;
        gap: 18px 20px;
        padding: 18px 22px;
        border-radius: 24px;
    }

    .hero-subnav__item {
        font-size: 16px;
    }

    .hero-subnav__title {
        margin-top: 40px;
        font-size: 24px;
    }

    .hero-product-showcase {
        margin-top: 36px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .hero-product-showcase__item {
        min-height: 0;
        padding: 0;
    }

    .hero-product-showcase__visual {
        height: 210px;
    }

    .hero-product-showcase__label {
        width: 150px;
        height: 38px;
        margin-top: 18px;
        font-size: 18px;
        line-height: 38px;
        white-space: normal;
    }

    .hero-product-showcase__label-image {
        width: 110px;
        height: auto;
    }

    .hero-product-feature-list {
        margin-top: 48px;
        gap: 64px;
    }

    .hero-product-feature-list__item {
        gap: 18px;
    }

    .hero-product-feature-list__item--ai {
        gap: 36px;
    }

    .hero-product-feature-list__name {
        font-size: 28px;
    }

    .hero-product-feature-list__image {
        max-width: min(100%, 680px);
        max-height: 400px;
    }

    .hero-product-overview-title {
        margin-top: 40px;
        font-size: 24px;
    }

    .hero-ai-feature {
        margin-top: 56px;
        gap: 16px;
    }

    .hero-ai-feature__badge {
        min-height: 170px;
        border-radius: 14px;
    }

    .hero-ai-feature__badge-image {
        width: 100%;
        height: 100%;
    }

    .hero-ai-feature__content {
        gap: 16px;
    }

    .hero-ai-feature__item {
        padding: 0 0 16px;
    }

    .hero-ai-feature__item + .hero-ai-feature__item {
        padding-top: 16px;
    }

    .hero-ai-feature__info {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .hero-ai-feature__item-title {
        font-size: 22px;
    }

    .hero-ai-feature__item-text {
        margin-top: 10px;
        font-size: 16px;
    }

    .hero-ai-feature__visual {
        border-radius: 10px;
        aspect-ratio: 16 / 9;
    }

    .hero-ai-feature__play {
        width: 48px;
        height: 48px;
    }

    .hero-ai-feature__play-icon {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 15px;
    }

    .hero-ai-feature__cta {
        margin-top: 40px;
        width: 176px;
        height: 44px;
        font-size: 16px;
        border-radius: 9px;
    }

    .hero-ai-feature__cta-icon {
        width: 14px;
        height: 14px;
    }

    .hero-partners-title {
        margin-top: 64px;
        font-size: 28px;
    }

    .hero-museum-carousel {
        margin-top: 48px;
    }

    .hero-museum-carousel__track {
        gap: 18px 10px;
    }

    .hero-museum-carousel__card {
        flex-basis: 100%;
        min-height: auto;
        padding: 24px 14px 14px;
        border-radius: 20px;
        box-shadow: none;
    }

    .hero-museum-carousel__logo {
        width: 76px;
        height: 76px;
    }

    .hero-museum-carousel__title {
        margin-top: 18px;
        font-size: 24px;
    }

    .hero-museum-carousel__title span {
        font-size: 18px;
    }

    .hero-museum-carousel__desc {
        margin-top: 20px;
        font-size: 15px;
    }

    .hero-museum-carousel__photo {
        height: 200px;
        margin-top: 24px;
        border-radius: 16px;
    }

    .hero-why-us {
        margin-top: 72px;
        padding: 24px 18px;
        border-radius: 22px;
        gap: 24px;
    }

    .hero-why-us__eyebrow {
        font-size: 14px;
    }

    .hero-why-us__title {
        margin-top: 18px;
        font-size: 38px;
    }

    .hero-why-us__button {
        margin-top: 32px;
        min-width: 206px;
        height: 50px;
        padding: 0 18px;
        border-radius: 12px;
        font-size: 15px;
    }

    .hero-why-us__video-card {
        border-radius: 18px;
    }

    .hero-logo-wall {
        margin-top: 72px;
        padding-bottom: 0;
    }

    .hero-logo-wall__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-logo-wall__img {
        min-width: 0;
    }

    .hero-service-support {
        margin-top: 40px;
    }

    .hero-service-support__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-service-support__card {
        border-radius: 16px;
    }

    .site-footer {
        margin-top: 72px;
        padding: 0;
    }

    .site-footer__frame {
        padding: 40px 0 48px;
    }

    .site-footer__title {
        width: min(100%, 320px);
        font-size: 26px;
    }

    .site-footer__panel {
        width: calc(100% - 24px);
        margin-top: 34px;
        padding: 30px 22px;
        border-radius: 20px;
    }

    .site-footer__heading {
        font-size: 20px;
    }

    .site-footer__list a,
    .site-footer__details a,
    .site-footer__contact {
        font-size: 15px;
    }

    .site-footer__contact {
        white-space: normal;
    }

    .site-footer__qr-list {
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
    }

    .site-footer__qr-image {
        width: 78px;
        height: 78px;
    }
}
