/* =============================================
   법률사무소 검단 - 메인 스타일시트
   그린 톤 감성형 법률 랜딩페이지
   ============================================= */

/* ──────────────────────────────────────────── 
   CSS 변수 / 컬러 팔레트
─────────────────────────────────────────────── */
:root {
    /* Green Palette */
    --green-50:  #f0f7f3;
    --green-100: #d8ede2;
    --green-200: #b2d9c4;
    --green-300: #7fbfa0;
    --green-400: #52a47d;
    --green-500: #3d7a5a;
    --green-600: #2f6348;
    --green-700: #254f3a;
    --green-800: #1c3c2c;
    --green-900: #122618;

    /* Neutral */
    --white:     #ffffff;
    --gray-50:   #f8f9fa;
    --gray-100:  #f1f3f0;
    --gray-200:  #e5e8e4;
    --gray-300:  #ced2cc;
    --gray-500:  #7a8278;
    --gray-700:  #3f4441;
    --gray-900:  #1a1e1b;

    /* Gold Accent */
    --gold:      #c9a84c;
    --gold-light: #f0dfa0;

    /* Kakao */
    --kakao-bg:  #fee500;
    --kakao-text: #191919;

    /* Semantic */
    --primary:   var(--green-500);
    --primary-dark: var(--green-600);
    --primary-light: var(--green-100);
    --text-main: var(--gray-900);
    --text-sub:  var(--gray-500);
    --border:    var(--gray-200);
    --bg-section: var(--gray-50);

    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transition */
    --trans: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ──────────────────────────────────────────── 
   리셋 / 기본
─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans);
}

img {
    max-width: 100%;
    display: block;
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ──────────────────────────────────────────── 
   섹션 공통
─────────────────────────────────────────────── */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 0.97rem;
    color: var(--text-sub);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ──────────────────────────────────────────── 
   HEADER
─────────────────────────────────────────────── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255,255,255,0.0);
    transition: background 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 70px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-700);
    white-space: nowrap;
}

#header.scrolled .logo-main { color: var(--green-700); }

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--green-400);
    font-weight: 500;
}

.gnb {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.gnb a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--trans);
    white-space: nowrap;
}

#header.scrolled .gnb a {
    color: var(--gray-700);
}

.gnb a:hover {
    color: var(--primary) !important;
    background: var(--green-50);
}

.btn-kakao-header {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--kakao-bg);
    color: var(--kakao-text);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--trans);
}

.btn-kakao-header:hover {
    background: #f5d800;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254,229,0,0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--trans);
}

#header.scrolled .hamburger span { background: var(--gray-700); }

/* ──────────────────────────────────────────── 
   MOBILE NAV
─────────────────────────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}

.nav-overlay.active { display: block; }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 285px;
    height: 100%;
    background: white;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    padding: 70px 0 30px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.open { right: 0; }

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1.3rem;
    color: var(--gray-500);
    padding: 6px;
}

.mobile-nav a {
    display: block;
    padding: 15px 30px;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover { color: var(--primary); background: var(--green-50); }

.mobile-contact-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 24px 0;
    margin-top: auto;
}

.btn-tel-mobile, .btn-kakao-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.92rem;
}

.btn-tel-mobile {
    background: var(--primary);
    color: white;
}

.btn-kakao-mobile {
    background: var(--kakao-bg);
    color: var(--kakao-text);
}

/* ──────────────────────────────────────────── 
   HERO
─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background:
        radial-gradient(ellipse 80% 60% at 20% 60%, rgba(37, 79, 58, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(61, 122, 90, 0.35) 0%, transparent 65%),
        linear-gradient(145deg, #0f2218 0%, #1c3c2c 30%, #254f3a 60%, #1a2e22 100%);
}

/* 배경 질감 레이어 */
.hero-bg-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.012) 80px,
            rgba(255,255,255,0.012) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.012) 80px,
            rgba(255,255,255,0.012) 81px
        );
}

/* 우하단 원형 장식 */
.hero-bg-gradient::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(178, 217, 196, 0.08);
    box-shadow:
        0 0 0 60px rgba(178, 217, 196, 0.04),
        0 0 0 120px rgba(178, 217, 196, 0.025);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--green-300);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-title em {
    font-style: normal;
    color: var(--green-300);
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(61,122,90,0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(61,122,90,0.5);
    color: white;
}

.btn-kakao {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--kakao-bg);
    color: var(--kakao-text);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(254,229,0,0.35);
}

.btn-kakao:hover {
    background: #f5d800;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254,229,0,0.5);
    color: var(--kakao-text);
}

.hero-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}

.hero-info-bar span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-info-bar i { color: var(--green-300); }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    z-index: 1;
}

.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ──────────────────────────────────────────── 
   TRUST BAR
─────────────────────────────────────────────── */
.trust-bar {
    padding: 0;
    background: var(--green-700);
}

.trust-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 28px 40px;
}

.trust-num {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green-200);
    line-height: 1;
}

.trust-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
    margin: 14px 0;
}

/* ──────────────────────────────────────────── 
   ABOUT
─────────────────────────────────────────────── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 60px;
    align-items: start;
}

.about-img-wrap {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-name-card {
    background: var(--green-50);
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 24px;
}

.about-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--green-800);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 6px;
}

.about-title-text {
    font-size: 0.82rem;
    color: var(--text-sub);
    letter-spacing: 0.06em;
}

.about-quote {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.02rem;
    font-style: italic;
    color: var(--green-700);
    background: var(--green-50);
    border-left: 3px solid var(--green-300);
    padding: 18px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-desc {
    font-size: 0.94rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-career {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.career-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.career-icon {
    width: 36px;
    height: 36px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.career-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 2px;
}

.career-item span {
    font-size: 0.82rem;
    color: var(--text-sub);
}

/* 유튜브 영상 미리보기 */
.about-video-wrap {
    margin-top: 10px;
}

.about-video-link {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--trans);
}

.about-video-link:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
    transform: translateY(-2px);
}

.about-video-thumb {
    position: relative;
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.about-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.video-play-btn i {
    color: white;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.about-video-info {
    padding: 14px 14px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.video-label {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.video-title {
    font-size: 0.85rem;
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.4;
}

.video-views {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.video-views i { color: #ff0000; }

/* ──────────────────────────────────────────── 
   OFFICE STRIP
─────────────────────────────────────────────── */
.office-strip {
    padding: 0 0 60px;
    background: white;
}

.office-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.office-photo-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.office-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.office-photo-item:hover img {
    transform: scale(1.07);
}

.office-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.62), transparent);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 20px 12px 9px;
    letter-spacing: 0.03em;
}

/* ──────────────────────────────────────────── 
   YOUTUBE BANNER
─────────────────────────────────────────────── */
.yt-banner {
    background: linear-gradient(135deg, #0f2218 0%, #1a3328 100%);
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.yt-banner-inner {
    display: grid;
    grid-template-columns: 1fr 280px auto;
    gap: 32px;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 36px;
}

.yt-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.yt-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,0,0,0.12);
    border: 1px solid rgba(255,0,0,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-banner-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff5c5c;
    margin-bottom: 6px;
}

.yt-banner-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
    margin-bottom: 6px;
}

.yt-banner-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.yt-banner-sub strong {
    color: rgba(255,255,255,0.7);
}

.yt-banner-thumb-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    transition: var(--trans);
}

.yt-banner-thumb-wrap:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.yt-banner-thumb {
    width: 280px;
    height: 158px;
    object-fit: cover;
    display: block;
}

.yt-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.yt-banner-thumb-wrap:hover .yt-play-overlay {
    background: rgba(0,0,0,0.18);
}

.yt-play-circle {
    width: 52px;
    height: 52px;
    background: rgba(255,0,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,0,0,0.4);
}

.yt-duration {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.yt-banner-channel-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--trans);
    box-shadow: 0 4px 16px rgba(255,0,0,0.35);
}

.yt-banner-channel-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,0,0,0.45);
    color: white;
}

/* ──────────────────────────────────────────── 
   CTA ICON
─────────────────────────────────────────────── */
.cta-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-think-icon {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 4px 16px rgba(178,217,196,0.2));
    animation: floatIcon 3.5s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ──────────────────────────────────────────── 
   SERVICES
─────────────────────────────────────────────── */
.services {
    background: var(--bg-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--trans);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: var(--trans);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.87rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-list li {
    font-size: 0.83rem;
    color: var(--gray-700);
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--green-300);
    border-radius: 50%;
}

/* ──────────────────────────────────────────── 
   CASES
─────────────────────────────────────────────── */
.cases {
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.case-item {
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--trans);
}

.case-item:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.case-icon {
    width: 42px;
    height: 42px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.case-item p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.case-item strong {
    color: var(--green-700);
}

.cases-cta {
    text-align: center;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cases-cta p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.cases-cta strong { color: var(--green-700); }

/* ──────────────────────────────────────────── 
   WHY
─────────────────────────────────────────────── */
.why {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
    padding: 90px 0;
}

.why .section-header .section-title {
    color: white;
}

.why .section-tag {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--green-200);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 30px 26px;
    background: rgba(255,255,255,0.04);
    transition: var(--trans);
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
}

.why-num {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-400);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.why-content h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.4;
}

.why-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ──────────────────────────────────────────── 
   PROCESS
─────────────────────────────────────────────── */
.process {
    background: var(--bg-section);
    padding: 90px 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 30px 24px;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(61,122,90,0.2);
}

.process-step h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.83rem;
    color: var(--text-sub);
    line-height: 1.65;
}

.process-arrow {
    color: var(--green-300);
    font-size: 1.1rem;
    flex-shrink: 0;
    padding-bottom: 28px;
}

/* ──────────────────────────────────────────── 
   REVIEWS
─────────────────────────────────────────────── */
.reviews {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--trans);
}

.review-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.review-type {
    font-size: 0.78rem;
    color: var(--text-sub);
}

/* ──────────────────────────────────────────── 
   CTA BANNER
─────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 36px;
    align-items: center;
    padding-top: 55px;
    padding-bottom: 55px;
}

.cta-logo-row img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cta-text h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: white;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.btn-cta-tel, .btn-cta-kakao {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: var(--trans);
    min-width: 220px;
}

.btn-cta-tel {
    background: white;
    color: var(--green-800);
}

.btn-cta-tel:hover {
    background: var(--green-50);
    transform: translateX(4px);
    color: var(--green-800);
}

.btn-cta-kakao {
    background: var(--kakao-bg);
    color: var(--kakao-text);
}

.btn-cta-kakao:hover {
    background: #f5d800;
    transform: translateX(4px);
    color: var(--kakao-text);
}

.btn-cta-tel span, .btn-cta-kakao span {
    display: flex;
    flex-direction: column;
}

.btn-cta-tel span small, .btn-cta-kakao span small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────── 
   CONTACT
─────────────────────────────────────────────── */
.contact {
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* 연락처 섹션 변호사 프로필 */
.contact-profile-wrap {
    position: relative;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-profile-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.contact-profile-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(18,38,24,0.88) 60%, transparent);
    padding: 28px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-profile-badge strong {
    color: white;
    font-family: 'Noto Serif KR', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact-profile-badge span {
    color: var(--green-200);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ci-icon {
    width: 38px;
    height: 38px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ci-label {
    font-size: 0.75rem;
    color: var(--text-sub);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ci-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    margin-bottom: 2px;
}

.ci-value.kakao-link {
    color: var(--primary);
}

.ci-value.kakao-link:hover { color: var(--primary-dark); }

.ci-value.yt-link {
    color: #cc0000;
}

.ci-sub {
    font-size: 0.82rem;
    color: var(--text-sub);
}

/* Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.required { color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--trans);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61,122,90,0.12);
}

.form-group textarea { resize: vertical; }

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-sub);
    line-height: 1.5;
}

.privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--trans);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,122,90,0.35);
}

.form-success {
    text-align: center;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--primary);
}

.form-success h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    font-weight: 700;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* Map */


.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--green-700);
    color: white;
    font-size: 0.87rem;
}

/* ──────────────────────────────────────────── 
   MAP SECTION
─────────────────────────────────────────────── */
.map-section-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-n-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: #03c75a;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 4px;
}

.map-g-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: #ea4335;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 4px;
}

.map-k-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: #f9e000;
    color: #3c1e1e;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 4px;
}

/* 하단 링크 버튼 */
.map-direct-link {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
    background: white;
}

.map-direct-link a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: var(--trans);
    border-right: 1px solid var(--border);
    text-align: center;
}

.map-direct-link a:last-child {
    border-right: none;
}

/* 네이버(1번) = 초록, 구글(2번) = 파랑, 카카오(3번) = 노랑 */
.map-direct-link a:nth-child(1) { color: #03c75a; border-color: var(--border); }
.map-direct-link a:nth-child(1):hover { background: #eafaf2; color: #029a47; }
.map-direct-link a:nth-child(2) { color: #4285f4; }
.map-direct-link a:nth-child(2):hover { background: #eaf1ff; color: #1a73e8; }
.map-direct-link a:nth-child(3) { color: #3a1d1d; background: #fef08a; }
.map-direct-link a:nth-child(3):hover { background: #fde047; }

.map-direct-link a:hover {
    opacity: 0.92;
}

.map-header i { color: var(--green-200); }

.map-address-note {
    padding: 10px 16px;
    font-size: 0.78rem;
    color: var(--gray-500);
    background: var(--gray-50);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
.map-address-note i {
    color: var(--primary);
    flex-shrink: 0;
}

/* ──────────────────────────────────────────── 
   FOOTER
─────────────────────────────────────────────── */
.footer {
    background: var(--gray-900);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .logo-main {
    font-size: 1.15rem;
    color: var(--green-200);
}

.footer .logo-sub {
    color: var(--green-400);
}

.footer-slogan {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    font-family: 'Noto Serif KR', serif;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--trans);
}

.footer-links a:hover { color: var(--green-300); }

.footer-bottom {
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.7;
}

/* ──────────────────────────────────────────── 
   FLOATING BUTTONS
─────────────────────────────────────────────── */
.floating-btns {
    position: fixed;
    right: 24px;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 800;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--trans);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    padding: 0 18px 0 16px;
    cursor: pointer;
}

.float-btn span { display: block; }

.float-kakao {
    background: var(--kakao-bg);
    color: var(--kakao-text);
}

.float-kakao:hover {
    transform: translateX(-4px) scale(1.04);
    box-shadow: var(--shadow-lg);
    color: var(--kakao-text);
}

.float-tel {
    background: var(--primary);
    color: white;
}

.float-tel:hover {
    background: var(--primary-dark);
    transform: translateX(-4px) scale(1.04);
    box-shadow: var(--shadow-lg);
    color: white;
}

.float-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-700);
    color: white;
    align-self: flex-end;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.float-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.float-top:hover {
    background: var(--gray-900);
    transform: translateY(-3px);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.mbb-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.mbb-btn.tel {
    background: var(--primary);
    color: white;
}

.mbb-btn.consult {
    background: var(--green-50);
    color: var(--primary);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.mbb-btn.kakao {
    background: var(--kakao-bg);
    color: var(--kakao-text);
}

.mbb-btn i, .mbb-btn svg {
    font-size: 1.2rem;
}

/* ──────────────────────────────────────────── 
   SCROLL ANIMATION
─────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ──────────────────────────────────────────── 
   RESPONSIVE - 태블릿 (≤1024px)
─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .yt-banner-inner {
        grid-template-columns: 1fr 220px auto;
        gap: 20px;
    }

    .yt-banner-thumb {
        width: 220px;
        height: 124px;
    }

    .about-grid {
        grid-template-columns: 340px 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        grid-template-columns: 100px 1fr auto;
        gap: 24px;
    }

    .cta-logo-row {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .footer-info {
        grid-column: 1 / -1;
        text-align: left;
    }
}

/* ──────────────────────────────────────────── 
   RESPONSIVE - 모바일 (≤768px)
─────────────────────────────────────────────── */
@media (max-width: 768px) {
    section { padding: 65px 0; }

    /* 유튜브 배너 모바일 */
    .yt-banner-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .yt-banner-thumb-wrap,
    .yt-banner-thumb {
        width: 100%;
        height: 190px;
    }

    .yt-banner-channel-btn {
        width: 100%;
        justify-content: center;
    }

    /* CTA 아이콘 */
    .cta-icon-wrap {
        display: none;
    }

    .gnb, .btn-kakao-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .hero-info-bar {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-kakao {
        width: 100%;
        justify-content: center;
    }

    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-divider:nth-child(4) {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-main-img {
        aspect-ratio: 4/3;
    }

    .office-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 8px;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding-bottom: 0;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-btns {
        align-items: center;
    }

    .btn-cta-tel, .btn-cta-kakao {
        min-width: 240px;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }

    .floating-btns {
        display: none;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    body {
        padding-bottom: 64px;
    }
}

/* ──────────────────────────────────────────── 
   RESPONSIVE - 소형 모바일 (≤480px)
─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 20px 16px;
    }

    .trust-num {
        font-size: 1.4rem;
    }

    .about-video-link {
        flex-direction: column;
    }

    .about-video-thumb {
        width: 100%;
        height: 160px;
    }
}
