body, h1, h2, h3, h4, p, a, span, div, button, input, textarea {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── 앱 다운로드 드롭다운 ── */
.nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}
.nav.solid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav.solid.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
    height: 86px;
}
.nav-menu li.active::after {
    display: none;
}
.nav.solid .nav-menu li.active::after {
    display: block;
    bottom: -32px;
}
.nav-app-download {
    position: relative;
}
.nav-app-btn {
    user-select: none;
    font-weight: 700;
    font-size: 15px;
}
.app-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 160px;
    overflow: hidden;
    z-index: 200;
}
.app-dropdown a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--n900, #1a1a1a);
    text-decoration: none;
    text-align: center;
    transition: background 0.15s;
}
.app-dropdown a:hover {
    background: var(--n10, #f5f5f7);
}
.app-dropdown a + a {
    border-top: 1px solid rgba(0,0,0,0.06);
}
.nav-app-download.open .app-dropdown {
    display: block;
}

.btn-signup,
.btn-login {
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
}
.btn-signup {
    background: transparent;
    color: var(--b600);
    border-color: var(--b600);
}
.btn-signup:hover {
    background: var(--b600);
    color: white;
    border-color: var(--b600);
}

/* ── 페이즈 인디케이터 ── */

/* ── 2-column 레이아웃 (메시지 왼쪽 / 콘텐츠 오른쪽) ── */
.intro-layout {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 86px 80px 0;
    box-sizing: border-box;
    z-index: 2;
}

/* ── Demo Caption (컨텍스트 메시지) ── */
.demo-caption-wrap {
    flex: 0 0 380px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 120px;
    z-index: 5;
}

.demo-caption {
    display: inline-flex;
    align-items: flex-start;
    background: none;
    border-radius: 0;
    padding: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--n900);
    max-width: 380px;
    text-align: left;
    white-space: pre-line;
    line-height: 1.5;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.demo-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

.demo-caption.typing {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.demo-caption.sent {
    background: #208DF9;
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.demo-caption.typing .demo-caption-text::after {
    content: '|';
    margin-left: 1px;
    font-weight: 300;
    color: #666;
    animation: caption-cursor 0.7s step-end infinite;
}

@keyframes caption-cursor {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── 스크롤 트랙 & Fixed 데모 ── */
.intro-scroll-track {
    position: relative;
    height: calc(100vh + 6300px); /* desktop: 300 + 6×1000 */
}

.intro-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: clip;
    background: #f5f5f7;
    z-index: 10;
}

/* ── Demo Stage ── */
.demo-stage {
    position: relative;
    flex: 0 0 560px;
    width: 560px;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

#phoneDemoWrap { z-index: 15; }

/* ── 그리드 팬 카드 (4×4, 16장) ── */
#demoFan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.35);
    width: 550px;
    height: 610px;
    pointer-events: none;
    z-index: 10;
}

#demoFan.fan-hidden {
    opacity: 0;
    transition: opacity 0.65s ease;
}

.fan-card {
    position: absolute;
    width: 130px;
    height: 145px;
    background: rgba(0,0,0,0.04);
    border-radius: 16px;
    box-shadow: none;
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    overflow: hidden;
    text-align: center;
}

/* 4×4 그리드 위치 + 초기 위치는 그리드 중심(275, 305)에서 시작 */
.fc1  { left: 0;     top: 0;     z-index: 16; transform: translateX(210px)  translateY(232.5px) scale(0); }
.fc2  { left: 140px; top: 0;     z-index: 15; transform: translateX(70px)   translateY(232.5px) scale(0); }
.fc3  { left: 280px; top: 0;     z-index: 14; transform: translateX(-70px)  translateY(232.5px) scale(0); }
.fc4  { left: 420px; top: 0;     z-index: 13; transform: translateX(-210px) translateY(232.5px) scale(0); }
.fc5  { left: 0;     top: 155px; z-index: 12; transform: translateX(210px)  translateY(77.5px)  scale(0); }
.fc6  { left: 140px; top: 155px; z-index: 11; transform: translateX(70px)   translateY(77.5px)  scale(0); }
.fc7  { left: 280px; top: 155px; z-index: 10; transform: translateX(-70px)  translateY(77.5px)  scale(0); }
.fc8  { left: 420px; top: 155px; z-index: 9;  transform: translateX(-210px) translateY(77.5px)  scale(0); }
.fc9  { left: 0;     top: 310px; z-index: 8;  transform: translateX(210px)  translateY(-77.5px) scale(0); }
.fc10 { left: 140px; top: 310px; z-index: 7;  transform: translateX(70px)   translateY(-77.5px) scale(0); }
.fc11 { left: 280px; top: 310px; z-index: 6;  transform: translateX(-70px)  translateY(-77.5px) scale(0); }
.fc12 { left: 420px; top: 310px; z-index: 5;  transform: translateX(-210px) translateY(-77.5px) scale(0); }
.fc13 { left: 0;     top: 465px; z-index: 4;  transform: translateX(210px)  translateY(-232.5px) scale(0); }
.fc14 { left: 140px; top: 465px; z-index: 3;  transform: translateX(70px)   translateY(-232.5px) scale(0); }
.fc15 { left: 280px; top: 465px; z-index: 2;  transform: translateX(-70px)  translateY(-232.5px) scale(0); }
.fc16 { left: 420px; top: 465px; z-index: 1;  transform: translateX(-210px) translateY(-232.5px) scale(0); }

/* 등장: 그리드 위치로 이동 */
.fan-card.grid-in {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* 중앙 합침 — 각 카드의 중심을 그리드 중심(275, 305)으로 수렴 */
.fc1.merge  { transform: translateX(210px)  translateY(232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc2.merge  { transform: translateX(70px)   translateY(232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc3.merge  { transform: translateX(-70px)  translateY(232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc4.merge  { transform: translateX(-210px) translateY(232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc5.merge  { transform: translateX(210px)  translateY(77.5px)  scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc6.merge  { transform: translateX(70px)   translateY(77.5px)  scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc7.merge  { transform: translateX(-70px)  translateY(77.5px)  scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc8.merge  { transform: translateX(-210px) translateY(77.5px)  scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc9.merge  { transform: translateX(210px)  translateY(-77.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc10.merge { transform: translateX(70px)   translateY(-77.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc11.merge { transform: translateX(-70px)  translateY(-77.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc12.merge { transform: translateX(-210px) translateY(-77.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc13.merge { transform: translateX(210px)  translateY(-232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc14.merge { transform: translateX(70px)   translateY(-232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc15.merge { transform: translateX(-70px)  translateY(-232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }
.fc16.merge { transform: translateX(-210px) translateY(-232.5px) scale(0.1) !important; opacity: 0 !important; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important; }

/* 카드 내용 */
.fc-emoji  { font-size: 28px; line-height: 1; margin-bottom: 8px; }
.fc-title  { font-size: 10px; font-weight: 700; color: #111; letter-spacing: -0.2px; text-align: center; line-height: 1.4; word-break: keep-all; }

/* ── 팡파레 ── */
#demoFanfare {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 22;
}

.ff-ring {
    position: absolute;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid #208DF9;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

@keyframes ff-ring-expand {
    0%   { transform: translate(-50%, -50%) scale(0.1); opacity: 0.75; }
    60%  { opacity: 0.45; }
    100% { transform: translate(-50%, -50%) scale(6.5); opacity: 0; }
}

.ff-p {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

/* ── 채팅 연출 컨테이너 ── */
#demoChatWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease,
                transform 0.5s cubic-bezier(0.4, 0, 0.8, 1);
    z-index: 20;
}

#demoChatWrap.chat-visible { opacity: 1; }

#demoChatWrap.chat-shrink {
    transform: translate(-50%, -50%) scale(0.08) !important;
    opacity: 0 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

/* 사용자 메시지 버블 */
#demoBubbleTyper {
    align-self: flex-start;
    padding: 18px 28px;
    border-radius: 28px;
    border-bottom-right-radius: 6px;
    font-size: 28px;
    font-weight: 700;
    color: var(--n900);
    line-height: 1.45;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#demoBubbleTyper.bt-bubble {
    background: #208DF9;
    color: #fff;
    box-shadow: 0 4px 16px rgba(32, 141, 249, 0.3);
    border-radius: 28px;
    border-top-right-radius: 4px;
}

.bubble-cursor {
    display: inline-block;
    color: #208DF9;
    font-weight: 400;
    margin-left: 1px;
    animation: bt-cursor-blink 0.65s step-end infinite;
}

#demoBubbleTyper.bt-bubble .bubble-cursor { display: none; }

@keyframes bt-cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* AI 대기 dots */
#demoAiDots {
    align-self: flex-start;
    display: flex;
    gap: 5px;
    padding: 10px 14px;
    background: #f2f3f5;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

#demoAiDots.dots-visible { opacity: 1; }

.ai-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #aaa;
    animation: ai-dot-bounce 1.1s ease-in-out infinite;
}

.ai-dot:nth-child(2) { animation-delay: 0.18s; }
.ai-dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes ai-dot-bounce {
    0%, 70%, 100% { transform: translateY(0); opacity: 0.45; }
    35%            { transform: translateY(-5px); opacity: 1; }
}

/* ── 폰 페이즈아웃 ── */
#phoneDemoWrap.phase-out {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.93) !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    pointer-events: none !important;
}

.style-card-wrap {
    position: relative;
    width: 288px;
    height: 310px;
}

.style-card {
    position: absolute;
    inset: 0;
    background: #f2f3f5;
    border-radius: 20px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.style-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.style-card.exit {
    opacity: 0;
    transform: translateY(-16px);
}

.style-card-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.style-card-name { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 8px; letter-spacing: -0.3px; }
.style-card-desc { font-size: 11.5px; color: #666; line-height: 1.55; margin-bottom: 16px; }

.style-card-rows { width: 100%; border-top: 1px solid rgba(0,0,0,0.07); }
.style-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 12px;
}
.row-left { display: flex; align-items: center; gap: 5px; }
.row-icon { font-size: 13px; }
.row-label { color: #888; }
.row-val { color: var(--n900); font-weight: 500; text-align: right; }

/* ── Phone Demo (키노쌤 섹션) ── */
/* 프레임 기준: 1screen 402x874 → 260x565 표시 */
.phone-demo {
    display: inline-block;
}

/* 폰 데모: 인트로 전 숨김 상태 */
#phoneDemoWrap {
    display: block;
    position: absolute;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.97);
    top: 50%;
    left: 50%;
    transform-origin: center center;
    pointer-events: none;
}

#phoneDemoWrap.phase-in {
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    pointer-events: auto;
}
@media (max-height: 1049px) and (min-width: 769px) {
    #phoneDemoWrap.phase-in { transform: translate(-50%, -50%) scale(0.90) !important; }
    #demoFan { transform: translate(-50%, -50%) scale(1.05) !important; }
}
@media (max-height: 759px) and (min-width: 769px) {
    #phoneDemoWrap.phase-in { transform: translate(-50%, -50%) scale(0.78) !important; }
    #demoFan { transform: translate(-50%, -50%) scale(0.92) !important; }
}

@media (max-width: 768px) {
    .phone-demo {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 652px;
    border-radius: 46px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0 10px #1a1a1a;
}

/* 공통 씬 */
.demo-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.demo-scene.active {
    opacity: 1;
}

/* Scene 1 */
.demo-scene-1 img {
    width: 300px;
    height: 652px;
    object-fit: cover;
    display: block;
}

.demo-scene-1.fade-out {
    animation: demo-fade-out 0.6s ease forwards;
}

/* Scene 3: 긴 결과 화면 */
.demo-scene-3 {
    background: #fff;
}

.demo-scene-3.fade-in-scene {
    animation: demo-fade-in 0.6s ease forwards;
}

/* 스크롤 영역 */
.s3-scroll-area {
    position: absolute;
    top: 72px;
    bottom: 72px;
    left: 0; right: 0;
    overflow: hidden;
}

#demoScrollImg {
    width: 300px;
    display: block;
    transform: translateY(0);
    transition: none !important;
    will-change: transform;
}

/* 탭 임팩트 */
/* ── 로딩 → 결과 전환 오버레이 ── */
#demoLoadingScreen {
    position: absolute;
    top: 0; left: 0;
    z-index: 4;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
#demoLoadingScreen.hidden {
    opacity: 0;
}
.demo-spinner {
    position: absolute;
    top: 142px;
    left: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.12);
    border-top-color: #208DF9;
    animation: demo-spin 0.8s linear infinite;
}
#demoLoadingScreen.hidden .demo-spinner {
    animation: none;
}
@keyframes demo-spin {
    to { transform: rotate(360deg); }
}

.demo-tap {
    position: absolute;
    top: 495px;
    left: 72%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.demo-tap.active {
    opacity: 1;
}

.demo-tap-ring {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(32, 141, 249, 0.6);
    opacity: 0;
}

/* active 상태일 때만 애니메이션 시작 */
.demo-tap.active .demo-tap-ring.r1 { animation: tap-ring-out 0.7s 0s ease-out forwards; }
.demo-tap.active .demo-tap-ring.r2 { animation: tap-ring-out 0.7s 0.18s ease-out forwards; }
.demo-tap.active .demo-tap-ring.r3 { animation: tap-ring-out 0.7s 0.36s ease-out forwards; }

.demo-tap-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(32, 141, 249, 0.85);
    box-shadow: 0 0 0 0 rgba(32, 141, 249, 0.5);
}

.demo-tap.active .demo-tap-dot {
    animation: tap-dot-press 0.5s ease-out forwards;
}

/* Scene 4: 아래서 위로 슬라이드 */
.demo-scene-4 img {
    width: 300px;
    height: 652px;
    object-fit: cover;
    display: block;
}

.demo-scene-4.slide-up {
    opacity: 1;
    animation: demo-slide-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.demo-scene-4.fade-out {
    animation: demo-fade-out 0.6s ease forwards;
}

/* 키프레임 */
@keyframes demo-fade-out {
    to { opacity: 0; }
}

@keyframes demo-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.demo-scene-1.fade-in {
    animation: demo-fade-in 0.5s ease forwards;
}

@keyframes demo-slide-up {
    from { transform: translateY(100%); opacity: 1; }
    to   { transform: translateY(0);    opacity: 1; }
}

@keyframes tap-ring-out {
    0%   { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes tap-dot-press {
    0%   { transform: scale(1);    opacity: 1;   box-shadow: 0 0 0 0 rgba(32,141,249,0.5); }
    30%  { transform: scale(0.78); opacity: 1;   box-shadow: 0 0 0 8px rgba(32,141,249,0.2); }
    70%  { transform: scale(1.1);  opacity: 0.9; box-shadow: 0 0 0 14px rgba(32,141,249,0); }
    100% { transform: scale(1);    opacity: 0.7; box-shadow: 0 0 0 14px rgba(32,141,249,0); }
}

.feature-badge.available {
    background: rgba(0, 0, 0, 0.04);
    color: var(--b600);
}

.feature-badge.soon {
    background: rgba(0, 0, 0, 0.04);
    color: #37B983;
}

.feature-card p,
.benefit-card p {
    font-size: 15px;
}

/* ── Apple-like 타이포 & 섹션 전반 ── */
.section {
    background: #ffffff;
}

.section-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--b600, #208DF9);
    margin-bottom: 20px;
}

.section-title,
.cta-section h2 {
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.28;
    color: var(--n900);
    margin-bottom: 24px;
}
.section-title { font-size: 52px; }
.cta-section h2 { font-size: 44px; }

.section-desc,
.hero-sub,
.story-split .ss-text p {
    font-size: 19px;
    line-height: 1.85;
    color: var(--n200);
}

.section-desc.mx-auto {
    max-width: 560px;
}

.cta-section {
    padding: 100px 0;
}
.cta-section::before {
    display: none;
}

/* ── Trust Section ── */
.trust-section {
    background: #2080F5;
    padding: 120px 0;
    text-align: center;
}
.trust-header { margin-bottom: 56px; }
.trust-label { color: rgba(255,255,255,0.7) !important; background: none !important; margin-bottom: 16px; letter-spacing: 3px; }
.trust-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.28;
    margin-bottom: 14px;
    word-break: keep-all;
}
.trust-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin: 0 auto;
    max-width: 480px;
    word-break: keep-all;
}
.trust-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1060px;
    margin: 0 auto 56px;
    text-align: left;
    align-items: stretch;
}
.trust-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}
.trust-card-img-wrap {
    background: transparent;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.trust-card-grid .trust-card:nth-child(1) .trust-card-img-wrap { background: #FFF4E6; }
.trust-card-grid .trust-card:nth-child(2) .trust-card-img-wrap { background: #F0EEFF; }
.trust-card-grid .trust-card:nth-child(3) .trust-card-img-wrap { background: #E8FBF1; }
.trust-card-grid .trust-card:nth-child(4) .trust-card-img-wrap { background: #EAF4FF; }
.trust-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.trust-card-body {
    padding: 20px 20px 32px;
    background: white;
    flex: 1;
}
.trust-card-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--b600);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.trust-card p {
    font-size: 15px;
    color: var(--n700);
    line-height: 1.65;
    margin: 0;
    word-break: keep-all;
}
.trust-badge-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.trust-badge-img {
    flex-shrink: 0;
    width: 32px;
    height: auto;
}
.trust-badge p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin: 0;
    white-space: nowrap;
}
.trust-badge strong { color: white; }

/* 패럴럭스 다음 섹션 진입 여백 */
#pain {
    padding-top: 180px;
}

#pain .section-desc {
    max-width: none;
    white-space: nowrap;
}

.cta-section p {
    font-size: 17px;
    color: white;
    margin-bottom: 0;
}

.steps-4col {
    grid-template-columns: repeat(4, 1fr);
}

.pain-cards,
.steps,
.feature-grid,
.benefit-grid,
.testimonial-grid,
.promise-grid {
    gap: 20px;
}

.hero h1 {
    font-size: 48px;
}

.hero {
    background: white;
}
.hero::before,
.hero::after {
    display: none;
}

.hero-glow {
    display: none;
}

.container,
.story-split {
    max-width: 1100px;
}

/* story-split Apple-like 타이포 */
.story-split .ss-text h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.28;
    color: var(--n900);
    margin-bottom: 24px;
}

.story-split .ss-text .ss-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--b600, #208DF9);
    margin-bottom: 20px;
}

.story-split {
    gap: 80px;
}

.pain-card {
    padding: 40px 32px;
    background: #f5f5f7;
    box-shadow: none;
    border: none;
    border-radius: 20px;
}

.pain-card:hover {
    transform: none;
    box-shadow: none;
}

.pain-icon {
    margin-left: 0;
    margin-right: 0;
    background: white !important;
}

.pain-card h3 {
    text-align: left;
    font-size: 19px;
    font-weight: 700;
    color: var(--n900);
}

.pain-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--n200);
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.step-card p {
    text-align: left;
}

.step-card h3,
.feature-card h3,
.director-item h3,
.benefit-card h3,
.promise-card h3,
.faq-question,
.pain-card h3 {
    font-size: 17px;
}

.feature-card {
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09) !important;
    border: none !important;
    border-radius: 20px !important;
    background: white !important;
}

.feature-card:hover {
    transform: none !important;
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09) !important;
}

.benefit-card {
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09);
    border: none;
    border-radius: 20px;
}

.benefit-card:hover {
    transform: none;
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09);
}

/* ── Quote 리스트형 (Testimonials 재설계) ── */
.quote-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quote-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 20px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.quote-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-size: 56px;
    line-height: 1;
    color: var(--b600);
    font-family: Inter, sans-serif;
    font-weight: 700;
    padding-top: 2px;
}

.quote-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--n700);
    margin-bottom: 20px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--n700);
}

.quote-role {
    font-size: 13px;
    color: var(--n200);
    margin-top: 2px;
}

/* ── Promise 번호형 재설계 ── */
.promise-num-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 2px solid #333C47;
}

.promise-num-item {
    padding: 32px 32px 32px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 32px;
}

.promise-num-item:first-child {
    padding-left: 0;
}

.promise-num-item:last-child {
    border-right: none;
}

.promise-num-badge {
    font-size: 28px;
    font-weight: 800;
    color: var(--b600);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.promise-num-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--n700);
    margin-bottom: 10px;
    line-height: 1.4;
}

.promise-num-item p {
    font-size: 15px;
    color: var(--n200);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .quote-item {
        grid-template-columns: 32px 1fr;
        gap: 0 14px;
        padding: 28px 0;
    }
    .quote-mark { font-size: 40px; }
    .quote-text { font-size: 15px; }

    .promise-num-list {
        grid-template-columns: 1fr;
        border-top: 2px solid #333C47;
    }
    .promise-num-item {
        padding: 24px 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .promise-num-item:first-child { padding-left: 0; }
    .promise-num-item:last-child { border-bottom: none; }
}

.step-card {
    border: none;
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09);
}

.step-card:hover {
    transform: none;
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09);
}

.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3) { background: white; }

.step-card.step-highlight {
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(160deg, #93C5FD 0%, #C4B5FD 50%, #A78BFA 100%) border-box;
}



.compare-table tbody tr:hover td { background: rgba(255,255,255,0.05) !important; }
.compare-table tbody tr:hover td:nth-child(2) { background: rgba(32,141,249,0.25) !important; }

.compare-table {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.compare-table thead {
    background: rgba(0,0,0,0.3);
}

.compare-table th {
    text-align: center;
    width: 33.33%;
    color: white;
}

.compare-table th.kinossam {
    background: var(--b600);
    color: white;
}

.compare-table td {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.compare-table td:first-child {
    background: rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.compare-table td:nth-child(2) {
    background: rgba(32, 141, 249, 0.2);
    color: white;
    font-weight: 600;
}

.compare-table td:nth-child(3) {
    color: rgba(255,255,255,0.8);
}

.compare-section .section-label {
    color: var(--b600);
}
.compare-section .section-title,
.compare-section .section-desc {
    color: white;
}
.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
    text-align: center;
}

.director-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 48px;
}

.director-item {
    background: white;
    width: auto;
    height: auto;
    min-height: unset;
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 2px 20px 0 rgba(32, 141, 249, 0.09);
    border: none;
    gap: 16px;
}

.director-item .director-icon {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.director-icon img {
    filter: brightness(0) saturate(0) brightness(0.11);
}

.mobile-br { display: none; }
.desktop-br { display: block; }

@media (max-width: 768px) {
    .nav-inner { gap: 0; padding: 0 20px; }
    .mobile-toggle { font-size: 30px; margin-left: 12px !important; color: var(--n700); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
    .mobile-toggle.is-open { font-size: 24px; }
    .nav-actions { gap: 4px; margin-left: auto; }

    .nav-inner { height: 60px; }
    .nav.solid { background: #ffffff; }

    /* ── 모바일 드로어 메뉴 (Toss 스타일) ── */
    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: auto !important;
        background: white !important;
        padding: 8px 0 16px !important;
        gap: 0 !important;
        z-index: 999 !important;
        transform: translateY(-6px) !important;
        opacity: 0 !important;
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.2s ease !important;
        visibility: hidden !important;
        box-shadow: 0 12px 20px -4px rgba(0,0,0,0.08) !important;
        border-top: none !important;
    }
    .nav-menu.open {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .nav-menu li a {
        display: block;
        font-size: 17px;
        font-weight: 600;
        color: var(--n900);
        padding: 14px 24px;
        text-decoration: none;
    }
    .nav-menu li a:active { background: var(--n10); }
    .nav-app-btn {
        display: flex;
        align-items: center;
        height: 30px;
        padding: 0 11px;
        background: var(--b600, #208DF9);
        color: white !important;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 400;
        cursor: pointer;
        white-space: nowrap;
        -webkit-tap-highlight-color: transparent;
        outline: none;
        touch-action: manipulation;
        user-select: none;
    }
    .nav-app-btn:active,
    .nav-app-btn:focus,
    .nav-app-btn:visited {
        background: var(--b600, #208DF9) !important;
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
    }
    .nav.drawer-open,
    .nav.drawer-open.solid {
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 998;
    }
    .nav-backdrop.open { display: block; }
    .nav-actions { display: flex; }
    .btn-signup, .btn-login { display: none; }
    .nav-app-btn { font-size: 12px; }
    .app-dropdown { display: none !important; }
    .intro-layout { padding-top: 60px; }
    span[style*="nowrap"], p[style*="nowrap"] { white-space: normal !important; }
    .section-desc, .hero-sub, .story-split .ss-text p { font-size: 16px; }
    .hero h1 { font-size: 36px; }
    .hero-glow { display: block; }
    .mobile-br { display: block; }
    .desktop-br { display: none; }
    .text-center {
        text-align: left;
    }
    .section-desc.mx-auto,
    .hero-sub.mx-auto {
        margin-left: 0;
        margin-right: 0;
    }
    .steps-4col {
        grid-template-columns: 1fr;
    }
    .story-split--stats .ss-text {
        order: -1;
    }
    .section-title,
    .cta-section h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .story-split .ss-text h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .section {
        padding: 48px 0 !important;
    }
    .story-split {
        gap: 32px;
    }
    #pain {
        padding-top: 80px !important;
    }
    .cta-section {
        padding: 72px 0 !important;
    }
    #pain .section-desc {
        white-space: normal;
    }
    .pain-cards,
    .steps,
    .feature-grid,
    .benefit-grid,
    .testimonial-grid,
    .promise-grid {
        gap: 16px;
    }
    .director-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .director-item {
        width: 100%;
        padding: 24px 20px;
    }

    #intro img[src*="phone_img"],
    .story-split .ss-visual img[src*="kn_report_write"] {
        height: auto !important;
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto;
        display: block;
    }

    /* ── 패럴럭스 모바일 대응 ── */

    /* 인트로 섹션: 네비 높이만큼 위로 당겨 sticky가 즉시 활성화 */
    #intro { margin-top: -60px; }
    .intro-sticky { top: 60px; }
    .intro-scroll-track { height: calc(100vh + 4400px); } /* mobile: 200 + 6×700 */

    /* 모바일: 절대 위치로 복귀 (캡션 상단 고정 / 스테이지 전체 채움) */
    .intro-layout {
        position: absolute;
        inset: 0;
        display: block;
        padding: 0;
    }
    .demo-caption-wrap {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        flex: none;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 110px;
        padding: 12px 24px 12px;
        background: linear-gradient(to bottom, #f5f5f7 80%, transparent);
        z-index: 8;
    }
    .demo-caption {
        font-size: 24px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .demo-stage {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        flex: none;
        width: 100%;
        height: 100%;
    }

    /* 팬카드 모바일 축소 + 위로 올림 */
    #demoFan {
        transform: translate(-50%, calc(-50% - 20px)) scale(0.92);
    }

    /* 폰 데모 모바일 — !important 없음: JS가 직접 transform 제어 */
    #phoneDemoWrap {
        transform: translate(-50%, -50%) scale(var(--phone-scale, 0.62));
    }
    #phoneDemoWrap.phase-in {
        transform: translate(-50%, -50%) scale(calc(var(--phone-scale, 0.62) + 0.06)) !important;
    }
    #phoneDemoWrap.phase-out {
        transform: translate(-50%, -50%) scale(calc(var(--phone-scale, 0.62) - 0.06)) !important;
    }

    /* 채팅 래퍼 모바일 축소 */
    #demoChatWrap {
        transform: translate(-50%, -50%) scale(0.88);
    }
    #demoChatWrap.chat-shrink {
        transform: translate(-50%, -50%) scale(0.06) !important;
    }

    /* 스타일 카드 모바일 축소 */
    .demo-card-intro {
        transform: translate(-50%, calc(-50% + 30px)) scale(0.85);
    }
    .demo-card-intro.slide-enter {
        transform: translate(-50%, -50%) scale(0.85);
    }
    .demo-card-intro.shrink-out {
        transform: translate(-50%, -50%) scale(0.2) !important;
    }

    /* 인트로 텍스트: 모바일 축소 */
    #demoIntroText {
        padding: 155px 16px 20px !important;
        box-sizing: border-box;
        justify-content: flex-start !important;
    }
    .dit-title {
        font-size: min(72px, 16vw) !important;
        letter-spacing: -1px !important;
        line-height: 1.05 !important;
        margin-bottom: 8px;
    }
    .dit-label {
        font-size: 16px !important;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    .section-label, .story-split .ss-text .ss-label {
        font-size: 16px;
    }
    .dit-desc {
        font-size: 16px !important;
        line-height: 1.6;
        max-width: 100%;
        word-break: keep-all;
    }
    /* 채팅 버블: 줄바꿈 허용, 크기 축소 */
    #demoBubbleTyper {
        font-size: 22px;
        padding: 14px 20px;
        white-space: normal;
        max-width: calc(100vw - 60px);
    }

    /* 채팅 래퍼 위치 보정 */
    #demoChatWrap {
        width: calc(100vw - 64px);
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
}

/* ── Footer 리빌드 (Kidsnote 공식 사이트 스타일) ── */
.footer {
    background: #f9fafb;
    color: var(--n700);
    padding: 0;
}

/* 상단 내비게이션 5컬럼 */
.footer-nav {
    padding: 40px 0 36px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.footer-nav-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--n700);
    margin-bottom: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-nav-col a {
    display: block;
    font-size: 13px;
    color: var(--n200);
    margin-bottom: 10px;
    transition: color 0.15s;
    text-decoration: none;
}

.footer-nav-col a:hover {
    color: var(--n700);
}

/* 하단 정보 영역 */
.footer-info {
    padding: 32px 0 28px;
}

.footer-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-logo {
    height: 22px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    opacity: 1;
}

.footer-info-left p {
    font-size: 12px;
    color: var(--n200);
    line-height: 1.8;
    margin: 0;
}

.footer-family-select {
    position: relative;
    display: inline-block;
}

.footer-family-btn {
    font-size: 12px;
    color: var(--n200);
    background: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 7px 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.15s;
}

.footer-family-btn:hover {
    border-color: #9CA3AF;
}

.footer-family-control {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}



.footer-legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--n200);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal-links a:hover {
    color: var(--n700);
}

.footer-legal-bold {
    font-weight: 700 !important;
    color: var(--n700) !important;
}

.footer-sep {
    font-size: 11px;
    color: #D1D5DB;
    margin: 0 8px;
}

.footer-social-isms {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #D1D5DB;
    color: var(--n200);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.footer-social-btn:hover {
    border-color: var(--n200);
    color: var(--n700);
}

.footer-isms-badge {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: #333C47;
    border-radius: 6px;
    padding: 5px 8px;
    text-align: center;
    letter-spacing: 0.5px;
}

.footer-isms-badge span {
    font-weight: 400;
    font-size: 8px;
}

.footer-copyright {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 16px;
}

/* ── 인풋 포커스 오버레이 (씬1→씬2 사이) ── */

@media (max-width: 768px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .footer-info-top {
        flex-direction: column;
        gap: 16px;
    }

    .footer-legal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-social-isms {
        flex-wrap: wrap;
    }
}

/* ── Demo Phase 0: 인트로 텍스트 ── */
#demoIntroText {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
    opacity: 1;
    z-index: 20;
    pointer-events: none;
}
@keyframes dit-fade-up {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dit-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--b600, #208DF9);
    margin-bottom: 32px;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    animation: dit-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.dit-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -6px;
    color: var(--n900, #1a1a1a);
    line-height: 0.9;
    margin-bottom: 40px;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    animation: dit-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.dit-desc {
    font-size: 21px;
    line-height: 1.75;
    color: var(--n200, #bbb);
    max-width: 560px;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    animation: dit-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}
.mobile-line-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-line-break { display: inline; }
    .nav.solid .nav-menu li.active::after { display: none; }
    .trust-section { padding: 64px 0; }
    .trust-header { text-align: left !important; margin-bottom: 36px; }
    .trust-title { font-size: 32px; letter-spacing: -1px; text-align: left; }
    .trust-desc { font-size: 16px; text-align: left; }
    .trust-label { text-align: left; }
    .trust-card-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; margin-bottom: 36px; }
    .trust-card-img-wrap { height: 150px; }
    .trust-card-img { position: static; width: 100%; height: 100%; object-fit: contain; }
    .trust-card-body { padding: 16px 16px 24px; }
    .trust-card p { font-size: 15px; }
    .trust-badge { flex-direction: row; align-items: center; gap: 10px; }
    .trust-badge p { white-space: normal; word-break: keep-all; }
}
