@charset "UTF-8";

/* 디자인 시스템 정의 */
:root {
    --mw-main-point-navy: #194eb8;
    --mw-main-blue: #4180ff;
    --mw-main-blue-dark: #1956d6;
    --mw-main-point-blue: #38bdf8;
    --mw-main-dark-bg: #101a2e;
    --mw-main-dark-card: #172643;
    --mw-main-light-bg: #f5f7fa;
    --mw-main-border: rgba(56, 189, 248, 0.25);
    --mw-main-text-black: #ffffff;
    --mw-main-text-main: #ffffff;
    --mw-main-text-sub: rgba(255, 255, 255, 0.88);
    --mw-main-font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    --mw-main-transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 인트로 로딩 오버레이 */
#mw-main-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

.intro-canvas-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.intro-svg-viewport {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 50% 46%;
    animation: seamlessZoomPortal 2.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    text-rendering: geometricPrecision;
    shape-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

.mask-text-main {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 110px;
    font-weight: 900;
    letter-spacing: -2px;
    text-rendering: geometricPrecision;
    shape-rendering: geometricPrecision;
}

.mask-text-sub {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-rendering: geometricPrecision;
    shape-rendering: geometricPrecision;
}

.svg-blue-text-group {
    animation: blueTextFadeOut 0.5s ease 0.65s forwards;
    will-change: opacity;
}

.svg-bg-white {
    animation: whiteBgFadeOut 0.5s ease 0.65s forwards;
    will-change: opacity;
}

.svg-black-mask-rect {
    opacity: 0;
    animation: blackMaskFadeIn 0.5s ease 0.65s forwards;
    will-change: opacity;
}

@keyframes blueTextFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes whiteBgFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes blackMaskFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes seamlessZoomPortal {
    0% {
        transform: scale(1) translateZ(0);
        opacity: 1;
    }
    30% {
        transform: scale(1) translateZ(0);
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: scale(25) translateZ(0);
        opacity: 0;
    }
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--mw-main-dark-bg);
    font-family: var(--mw-main-font-main);
    color: var(--mw-main-text-main);
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

/* 풀페이지 뷰포트 & 슬라이더 */
#fp-viewport {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#fp-slider {
    width: 100%;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.fp-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.fp-section-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    z-index: 3;
    position: relative;
}

.section-title {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.section-title .light {
    font-weight: 500;
    color: #ddd;
}

.section-title .bold {
    font-weight: 800;
    color: #ffffff;
}

.section-title .blue {
    font-weight: 800;
    color: var(--mw-main-blue);
}

.fp-anim-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.fp-section.active .fp-anim-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 네비게이션 도트 */
#fp-dots {
    position: fixed;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.fp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.fp-dot:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

.fp-dot.active {
    height: 26px;
    border-radius: 13px;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.fp-dot-tooltip {
    display: none !important;
}

/* 스크롤 다운 인디케이터 */
.mw-main-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none !important;
}

.mw-main-scroll-indicator p {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.mw-main-scroll-indicator:hover p {
    color: var(--mw-main-blue);
}

.mw-main-scroll-bar-wrap {
    width: 2px;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.mw-main-scroll-bar {
    width: 100%;
    height: 50%;
    background: var(--mw-main-blue);
    position: absolute;
    top: -50%;
    animation: mwMainScrollAnim 2.2s infinite ease-in-out;
}

@keyframes mwMainScrollAnim {
    0% { top: -50%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* 섹션 2: 솔루션 카드리스트 */
#sec-1-sol {
    background: linear-gradient(180deg, #101a2e 0%, #152442 100%);
    background-size: cover;
    background-position: center;
}

.sol-vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 25px;
}

.sol-vertical-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px 30px;
    min-height: 190px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-decoration: none !important;
}

.sol-vertical-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(59, 78, 122, 0.22);
    transform: translateY(-4px);
}

.sol-v-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sol-v-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: #8a9fc9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sol-v-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0, 0.12);
    border: 1px solid rgba(68,68,68, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mw-main-blue);
    font-size: 22px;
}

.sol-v-body {
    margin-top: 10px;
}

.sol-v-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.sol-v-desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.45;
}

/* 섹션 1: 히어로 비주얼 */
#sec-0 {
    background: #000000;
}

.hero-video-sect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-sect video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-black-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 26, 46, 0.35) 0%, rgba(16, 26, 46, 0.72) 100%);
    z-index: 1;
}

.hero-text-wrap {
    max-width: 980px;
    color: #ffffff;
}

.hero-main-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-main-title .sec-text {
    color: var(--mw-main-blue);
}

.hero-sub-title {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 42px;
    max-width: 800px;
    font-weight: 400;
}

.hero-action-group {
    display: flex;
    gap: 18px;
}

.btn-mw-main-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, #113290 0%, #2870ff 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none !important;
    transition: var(--mw-main-transition);
    box-shadow: 0 8px 30px rgba(40, 112, 255, 0.4);
}

.btn-mw-main-primary:hover {
    background: linear-gradient(135deg, #0e2978 0%, #1956d6 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 112, 255, 0.6);
}

.btn-mw-main-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none !important;
    backdrop-filter: blur(10px);
    transition: var(--mw-main-transition);
}

.btn-mw-main-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* 모자이크 그리드 스타일 */
#sec-1 {
    background: linear-gradient(180deg, #101a2e 0%, #152442 100%);
    background-size: cover;
    background-position: center;
}

.asym-mosaic-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
    margin-top: 0;
}

.sol-v-more-card {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12) 0%, rgba(16, 26, 46, 0.4) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-radius: 14px;
    padding: 24px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.35s ease !important;
}

.sol-v-more-card:hover {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.22) 0%, rgba(16, 26, 46, 0.55) 100%) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-4px) !important;
}

.sol-v-more-card:hover .sol-v-icon-box {
    background: #4180ff !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: translateX(4px);
}

.sol-v-more-card .sol-v-simple-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sol-v-more-card:hover .sol-v-simple-arrow {
    transform: translateX(6px);
    color: #ffffff;
}

.asym-card {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    padding: 28px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: none !important;
}

.asym-card:hover {
    transform: translateY(-4px) !important;
}

.asym-card-tall {
    grid-row: span 2;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(91, 111, 120, 0.18);
}

.asym-card-tall .asym-title {
    font-size: 1.9rem;
    color: #ffffff;
}

.asym-card-tall .asym-desc {
    color: rgba(255, 255, 255, 0.82);
}

.asym-card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #163da8 0%, #2870ff 100%);
    box-shadow: 0 12px 36px rgba(40, 112, 255, 0.3);
}

.asym-card-wide:hover {
    background: linear-gradient(160deg, #163da8 0%, #2870ff 100%);
}

.asym-card-wide .asym-title {
    color: #ffffff;
    font-size: 1.8rem;
}

.asym-card-wide .asym-desc {
    color: rgba(255, 255, 255, 0.92);
}

.asym-card-slate {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(91, 111, 120, 0.18);
}

.asym-card-charcoal {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.asym-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--mw-main-transition);
}

.asym-title-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.asym-card-blue .asym-title-arrow {
    color: #ffffff;
}

.asym-card:hover .asym-title-arrow {
    transform: translateX(6px);
    color: #ffffff;
}

.asym-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.5;
}

/* 섹션 3: 그래픽 링 비주얼 */
#sec-2 {
    background: linear-gradient(180deg, #152442 0%, #10192d 100%);
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

#sec-2 .fp-section-content {
    padding-top: 60px;
}

.biz-layout-wrapper,
.geo-layout-wrapper {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 45px;
    align-items: center;
}

.geo-ring-container {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-orbit-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 140, 214, 0.5);
    animation: geoOrbitRotate 16s linear infinite;
}

.geo-orbit-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #008cd6;
    box-shadow: 0 0 16px #008cd6, 0 0 26px #008cd6;
}

.geo-orbit-ring::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 16px #60a5fa, 0 0 26px #60a5fa;
}

.geo-center-visual-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    z-index: 2;
}

.geo-center-visual {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 140, 214, 0.4);
}

.geo-center-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geo-img-border-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 348px;
    height: 348px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: geoImageOrbit 10s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.geo-img-border-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 14px #ffffff, 0 0 24px #ffffff;
}

@keyframes geoOrbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes geoImageOrbit {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.geo-values-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.geo-value-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 14px;
    padding: 26px 34px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: var(--mw-main-transition);
    backdrop-filter: blur(10px);
}

.geo-value-card:hover {
    border-color: #38bdf8;
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 16px 36px rgba(16, 37, 72, 0.5);
}

.geo-value-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    border: 1.5px solid rgba(56, 189, 248, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 28px;
    flex-shrink: 0;
}

.geo-value-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.geo-value-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.geo-value-sub {
    font-size: 1.1rem;
    font-weight: 700;
    color: #38bdf8;
}

.geo-value-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

/* 섹션 4: 푸터 */
#sec-3 {
    background: #0e1626;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.fp-footer-inner {
    width: 100%;
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.fp-footer-inner .mw-footer-cards {
    padding-top: 45px !important;
    padding-bottom: 20px !important;
    margin: 0 !important;
    background: transparent !important;
}

.fp-footer-inner .mw-footer-cards .mw-fc-card {
    opacity: 1 !important;
    transform: none !important;
}

.fp-footer-inner #mw-ft.mw-ft-light {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    margin: 0 !important;
    background: #f8fafc !important;
}

.fp-footer-inner #mw-ft.mw-ft-dark,
.fp-footer-inner #mw-ft {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    margin: 0 !important;
    background: #0e1626 !important;
}

.fp-footer-inner #mw-ft-wr {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 반응형 레이아웃 */
.fp-section-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .hero-main-title { font-size: 3.2rem; }
    .section-title { font-size: 2.8rem; }
    .sol-vertical-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; gap: 18px; }
    .sol-vertical-card { padding: 26px 28px; min-height: 180px; }
    .biz-layout-wrapper, .geo-layout-wrapper { grid-template-columns: 1fr; gap: 35px; }
    .geo-ring-container { margin: 0 auto 20px auto; width: 360px; height: 360px; }
    .geo-orbit-ring { width: 330px; height: 330px; }
    .geo-center-visual-wrap { width: 250px; height: 250px; }
    .geo-img-border-ring { width: 258px; height: 258px; }
    .asym-mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; gap: 18px; }
    .asym-card { padding: 26px 28px; }
    .asym-card-tall { grid-row: auto; }
}

@media (max-width: 1024px) {
    html, body { overflow-y: auto !important; overflow-x: hidden !important; height: auto !important; }
    #fp-viewport { height: auto !important; overflow: visible !important; }
    #fp-slider { transform: none !important; }
    .fp-section { height: auto !important; min-height: auto !important; padding: 80px 0 60px 0; }
    #sec-0 { height: 100vh !important; min-height: 100vh !important; padding: 100px 0 60px 0; display: flex; align-items: center; justify-content: center; box-sizing: border-box; }
    #sec-2 { height: auto !important; min-height: auto !important; padding: 80px 0 60px 0; }
    #sec-2 .fp-section-content { padding-top: 0; }
    #sec-3 { min-height: auto !important; padding: 0; }
    .section-title { font-size: 2.5rem; }
    .fp-anim-up { opacity: 1 !important; transform: none !important; }
    #fp-dots { display: none !important; }
    .mw-main-scroll-indicator { display: none !important; }
    .fp-section-content { max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 30px; box-sizing: border-box; }
}

@media (max-width: 768px) {
    .fp-section { padding: 45px 0 35px 0; }
    #sec-0 { height: 100dvh !important; min-height: calc(100vh - 60px) !important; max-height: 100dvh !important; padding: 75px 0 30px 0; display: flex; align-items: center; justify-content: center; box-sizing: border-box; overflow: hidden; }
    #sec-2 { padding: 45px 0 35px 0; }
    .fp-section-content { max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
    
    .hero-main-title { font-size: 2.1rem; line-height: 1.35; margin-bottom: 14px; }
    .hero-sub-title { font-size: 1.0rem; line-height: 1.55; margin-bottom: 22px; }
    .hero-action-group { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; width: 100%; gap: 10px; }
    .hero-action-group a { flex: 1; min-width: 0; padding: 12px 10px; font-size: 0.98rem; font-weight: 700; justify-content: center; text-align: center; box-sizing: border-box; white-space: nowrap; }
    .hero-action-group a svg { width: 16px; height: 16px; flex-shrink: 0; }

    .section-title { font-size: 1.9rem; margin-bottom: 18px; line-height: 1.35; }

    .sol-vertical-grid { grid-template-columns: 1fr; gap: 12px; }
    .sol-vertical-card { padding: 18px 20px 25px 20px; min-height: auto; border-radius: 12px; }
    .sol-v-num { font-size: 0.88rem; letter-spacing: 1px; }
    .sol-v-icon-box { width: 38px; height: 38px; font-size: 1.2rem; }
    .sol-v-body { margin-top: 8px; }
    .sol-v-title { font-size: 1.4rem; margin: 0 0 6px 0; }
    .sol-v-desc { font-size: 1.0rem; line-height: 1.5; }

    .biz-layout-wrapper, .geo-layout-wrapper { grid-template-columns: 1fr; gap: 18px; }
    .geo-ring-container { margin: 0 auto 10px auto; width: min(260px, 70vw); height: min(260px, 70vw); }
    .geo-orbit-ring { width: min(235px, 63vw); height: min(235px, 63vw); }
    .geo-center-visual-wrap { width: min(175px, 47vw); height: min(175px, 47vw); }
    .geo-img-border-ring { width: min(183px, calc(47vw + 8px)); height: min(183px, calc(47vw + 8px)); }
    .geo-value-card { padding: 18px 20px; gap: 16px; border-radius: 14px; }
    .geo-value-icon-box { width: 42px; height: 42px; font-size: 1.25rem; }
    .geo-value-name { font-size: 1.4rem; }
    .geo-value-sub { font-size: 1.0rem; }
    .geo-value-text { font-size: 1.0rem; line-height: 1.5; }
    .asym-mosaic-grid { grid-template-columns: 1fr; gap: 12px; }
    .asym-card-tall, .asym-card-wide { grid-column: auto !important; grid-row: auto !important; }
    .asym-card { padding: 18px 20px; min-height: auto; border-radius: 14px; }
    .asym-card-tall .asym-title, .asym-card-wide .asym-title, .asym-title { font-size: 1.4rem; margin: 0 0 20px 0; }
    .asym-desc { font-size: 1.0rem; line-height: 1.5; }
}

@media (max-width: 480px) {
    #sec-0 { padding: 60px 0 20px 0; }
    .hero-main-title { font-size: 1.85rem; margin-bottom: 12px; }
    .hero-sub-title { font-size: 0.95rem; margin-bottom: 18px; }
    .hero-action-group a { padding: 11px 8px; font-size: 0.92rem; gap: 6px; }
    .section-title { font-size: 1.7rem; margin-bottom: 16px; }
    .sol-v-title { font-size: 1.3rem; }
    .sol-v-desc { font-size: 0.95rem; }
    .asym-card-tall .asym-title, .asym-card-wide .asym-title, .asym-title { font-size: 1.3rem; }
    .asym-desc { font-size: 0.95rem; }
    .geo-ring-container { width: 230px; height: 230px; }
    .geo-orbit-ring { width: 205px; height: 205px; }
    .geo-center-visual-wrap { width: 150px; height: 150px; }
    .geo-img-border-ring { width: 158px; height: 158px; }
}
