/* Guardian Law — Main Stylesheet v2.0.0 — Converted from preview.html */

/* ══════════════════════════════════════════════════
   GLOBAL RESET + VARIABLES
   ══════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #374151;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--gl-header-h) + 20px);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
    --gl-primary: #1a1a1a;
    --gl-white: #ffffff;
    --gl-bg-light: #f7f8fa;
    --gl-bg-blue-light: #eef3f8;
    --gl-accent: #2563eb;
    --gl-accent-hover: #1d4ed8;
    --gl-kakao: #FEE500;
    --gl-kakao-brown: #3c1e1e;
    --gl-gray-50: #f9fafb;
    --gl-gray-100: #f3f4f6;
    --gl-gray-200: #e5e7eb;
    --gl-gray-300: #d1d5db;
    --gl-gray-400: #9ca3af;
    --gl-gray-500: #6b7280;
    --gl-gray-600: #4b5563;
    --gl-gray-700: #374151;
    --gl-gray-800: #1f2937;
    --gl-gray-900: #111827;
    --gl-container: 1200px;
    --gl-header-h: 72px;
    --gl-transition: 0.3s ease;
}


/* ══════════════════════════════════════════════════
   LAYOUT + SECTION UTILITIES
   ══════════════════════════════════════════════════ */
.gl-container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 24px;
}
.gl-section {
    padding: 100px 0;
    position: relative;
}
.gl-section-navy {
    background: var(--gl-navy);
    color: var(--gl-white);
}
.gl-section-light {
    background: var(--gl-bg-light);
}
.gl-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.gl-section-label {
    font-size: 13px;
    color: var(--gl-accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.gl-section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.39;
    letter-spacing: -0.012em;
    margin-bottom: 16px;
    color: var(--gl-gray-900);
}
.gl-section-navy .gl-section-title {
    color: var(--gl-white);
}
.gl-section-desc {
    font-size: 16px;
    color: var(--gl-gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}
.gl-section-navy .gl-section-desc {
    color: rgba(255,255,255,0.6);
}

/* ── Buttons ── */
.gl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.gl-btn-gold {
    background: var(--gl-accent);
    color: var(--gl-white);
}
.gl-btn-gold:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}
.gl-btn-outline {
    background: transparent;
    color: var(--gl-white);
    border: 1px solid rgba(255,255,255,0.3);
}
.gl-btn-outline:hover {
    border-color: var(--gl-accent);
    color: var(--gl-accent);
}
.gl-btn-navy {
    background: var(--gl-navy);
    color: var(--gl-white);
}
.gl-btn-navy:hover {
    background: var(--gl-gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Fade Animations ── */
.gl-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gl-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gl-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gl-fade-up.is-visible,
.gl-fade-left.is-visible,
.gl-fade-right.is-visible {
    opacity: 1;
    transform: translate(0);
}


/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.gl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--gl-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: var(--gl-white);
    border-bottom: 1px solid var(--gl-gray-200);
    transition: box-shadow var(--gl-transition);
}
.gl-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.gl-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--gl-gray-900);
    letter-spacing: -0.5px;
}
.gl-header__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gl-gray-900);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gl-white);
    font-size: 14px;
    font-weight: 900;
}
.gl-header__logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--gl-gray-400);
    display: block;
    margin-top: -2px;
}
.gl-header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.gl-header__nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--gl-gray-700);
    transition: color var(--gl-transition);
    position: relative;
}
.gl-header__nav-link:hover {
    color: var(--gl-gray-900);
}
.gl-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gl-accent);
    transform: scaleX(0);
    transition: transform var(--gl-transition);
}
.gl-header__nav-link:hover::after {
    transform: scaleX(1);
}
/* Dropdown menu */
.gl-header__dropdown {
    position: relative;
}
.gl-header__dropdown-toggle {
    font-size: 15px;
    font-weight: 600;
    color: var(--gl-gray-700);
    transition: color var(--gl-transition);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.gl-header__dropdown-toggle:hover {
    color: var(--gl-gray-900);
}
.gl-header__dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.2s;
}
.gl-header__dropdown:hover .gl-header__dropdown-toggle::after {
    transform: rotate(-135deg);
}
.gl-header__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    min-width: 180px;
    background: var(--gl-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 1001;
}
.gl-header__dropdown:hover .gl-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gl-header__dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gl-gray-700);
    transition: all 0.15s;
}
.gl-header__dropdown-menu a:hover {
    background: var(--gl-gray-50);
    color: var(--gl-gray-900);
}

.gl-header__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gl-accent);
    color: var(--gl-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    transition: background var(--gl-transition);
}
.gl-header__cta:hover {
    background: var(--gl-accent-hover);
}

/* Mobile menu button */
.gl-header__mobile-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.gl-header__mobile-btn span,
.gl-header__mobile-btn span::before,
.gl-header__mobile-btn span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gl-gray-700);
    transition: all 0.3s;
    position: relative;
}
.gl-header__mobile-btn span::before,
.gl-header__mobile-btn span::after {
    content: '';
    position: absolute;
    left: 0;
}
.gl-header__mobile-btn span::before { top: -7px; }
.gl-header__mobile-btn span::after { top: 7px; }

/* Mobile menu open state */
.gl-header__mobile-btn.is-open span { background: transparent; }
.gl-header__mobile-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.gl-header__mobile-btn.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu panel */
.gl-mobile-menu {
    display: none;
    position: fixed;
    top: var(--gl-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.gl-mobile-menu.is-open {
    display: flex;
}
.gl-mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--gl-gray-800);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    transition: background 0.2s;
}
.gl-mobile-menu a:hover {
    background: var(--gl-gray-100);
}
.gl-mobile-menu__cta {
    margin-top: 12px;
    padding: 14px 40px !important;
    background: var(--gl-accent) !important;
    color: var(--gl-white) !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}


/* ══════════════════════════════════════════════════
   SECTION 1 — HERO (Video Slideshow Style)
   ══════════════════════════════════════════════════ */
.gl-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    margin-top: 0;
    padding-top: var(--gl-header-h);
    overflow: hidden;
}

/* ── Slideshow Background ── */
.gl-hero__slides {
    position: absolute;
    inset: 0;
}
.gl-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity, transform;
}
.gl-hero__slide.is-active {
    opacity: 1;
}
.gl-hero__slide.is-zooming {
    animation: gl-kenburns 8s ease-out forwards;
}
@keyframes gl-kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
/* 프리뷰용 그래디언트 배경 — 배포 시 실제 이미지/영상으로 교체 */
.gl-hero__slide--1 {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(100,130,160,0.4) 0%, transparent 60%),
        linear-gradient(180deg, #4a5a6a 0%, #607080 40%, #8a9aa8 70%, #6a7a88 100%);
}
.gl-hero__slide--2 {
    /* 상담 장면 (따뜻한 톤) */
    background:
        radial-gradient(ellipse at 60% 50%, rgba(210,195,175,0.5) 0%, transparent 60%),
        linear-gradient(180deg, #c8bfb0 0%, #d8d0c4 40%, #e8e0d4 70%, #c0b8a8 100%);
}
.gl-hero__slide--3 {
    /* 전문가 포트레이트 (뉴트럴 밝은 톤) */
    background:
        radial-gradient(ellipse at 55% 45%, rgba(220,218,212,0.6) 0%, transparent 55%),
        linear-gradient(180deg, #bfbdb5 0%, #d0cec6 40%, #e2e0da 70%, #ccc9c2 100%);
}

/* ── Overlay (텍스트 가독성) ── */
.gl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.48) 35%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.12) 75%,
        rgba(0, 0, 0, 0.08) 100%
    );
}
.gl-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 35%);
}

/* ── Hero Content (원본 단일 콘텐츠) ── */

/* ── Container ── */
.gl-hero__container {
    position: relative;
    z-index: 3;
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    height: calc(100% - var(--gl-header-h));
}

/* ── Left: Content ── */
.gl-hero__content {
    max-width: 520px;
    padding: 40px 0;
}
.gl-hero__title {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--gl-white);
    margin: 0 0 24px;
    letter-spacing: -1.5px;
    word-break: keep-all;
}
.gl-hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 44px;
    word-break: keep-all;
}
.gl-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: var(--gl-accent);
    color: var(--gl-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--gl-transition);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}
.gl-hero__cta:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(37, 99, 235, 0.45);
}

/* ── Right: Floating Notification Card ── */
.gl-hero__notification {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-45%);
    z-index: 4;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: gl-float 4s ease-in-out infinite;
}
@keyframes gl-float {
    0%, 100% { transform: translateY(-45%); }
    50% { transform: translateY(-48%); }
}
.gl-hero__notification-header {
    padding: 12px 20px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gl-gray-600);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.gl-hero__notification-header-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}
.gl-hero__notification-body {
    padding: 4px 20px 22px;
}
.gl-hero__notification-label {
    font-size: 13px;
    color: var(--gl-gray-500);
    margin-bottom: 10px;
    font-weight: 500;
}
.gl-hero__notification-text {
    font-size: 14px;
    color: var(--gl-gray-800);
    line-height: 1.75;
    font-weight: 500;
}
.gl-hero__notification-text strong {
    color: var(--gl-gray-900);
    font-weight: 700;
}

/* ── Slide Indicator Dots ── */
.gl-hero__dots {
    position: absolute;
    bottom: 36px;
    left: 48px;
    z-index: 4;
    display: flex;
    gap: 8px;
}
.gl-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}
.gl-hero__dot.is-active {
    background: var(--gl-white);
    width: 28px;
    border-radius: 4px;
}

/* ── Bottom Badges ── */
.gl-hero__badge {
    position: absolute;
    left: 48px;
    bottom: 72px;
    z-index: 4;
    display: flex;
    gap: 12px;
}
.gl-hero__badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
}
.gl-hero__badge-item strong {
    color: var(--gl-white);
    font-weight: 800;
    font-size: 15px;
}
.gl-hero__badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: gl-blink 2s ease-in-out infinite;
}
@keyframes gl-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


/* ══════════════════════════════════════════════════
   SECTION 2 — STATS BAR
   ══════════════════════════════════════════════════ */
.gl-stats {
    position: relative;
    z-index: 10;
    margin-top: -44px;
    padding: 0 48px;
}
.gl-stats__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    background: var(--gl-white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 28px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.gl-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gl-stats__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gl-gray-800);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.gl-stats__number {
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    letter-spacing: -2px;
}
.gl-stats__unit {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: #2563eb;
    margin-left: 4px;
}


/* ══════════════════════════════════════════════════
   SECTION 2.5 — CONSULTATION LIST (온라인 상담)
   ══════════════════════════════════════════════════ */
.gl-consult {
    padding: 80px 0;
    background: var(--gl-bg-light);
}
.gl-consult__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-consult__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}
.gl-consult__title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
}
.gl-consult__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 1.5px solid var(--gl-gray-300);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gl-gray-600);
    transition: all 0.2s;
}
.gl-consult__link:hover {
    border-color: var(--gl-gray-900);
    color: var(--gl-gray-900);
}
.gl-consult__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--gl-gray-800);
}
.gl-consult__table thead th {
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gl-gray-700);
    text-align: center;
    border-bottom: 1px solid var(--gl-gray-200);
    background: var(--gl-white);
}
.gl-consult__table thead th:first-child {
    text-align: left;
    padding-left: 20px;
}
.gl-consult__table tbody tr {
    border-bottom: 1px solid var(--gl-gray-100);
    transition: background 0.15s;
}
.gl-consult__table tbody tr:hover {
    background: var(--gl-white);
}
.gl-consult__table tbody td {
    padding: 20px 12px;
    font-size: 15px;
    color: var(--gl-gray-700);
    text-align: center;
    vertical-align: middle;
}
.gl-consult__table tbody td:first-child {
    text-align: left;
    padding-left: 20px;
}
.gl-consult__cell-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gl-consult__lock {
    color: var(--gl-gray-300);
    flex-shrink: 0;
}
.gl-consult__dash {
    width: 16px;
    height: 2px;
    background: var(--gl-accent);
    flex-shrink: 0;
}
.gl-consult__cell-title span {
    font-weight: 500;
    color: var(--gl-gray-800);
}
.gl-consult__badge {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.gl-consult__badge--done {
    background: var(--gl-gray-800);
    color: var(--gl-white);
}
.gl-consult__badge--waiting {
    background: var(--gl-accent);
    color: var(--gl-white);
}

/* ══════════════════════════════════════════════════
   SECTION 3 — COVERAGE MAP (의정부 지역 활동현황)
   ══════════════════════════════════════════════════ */
.gl-coverage {
    padding: 100px 0;
    background: var(--gl-white);
    overflow: hidden;
}
.gl-coverage__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
/* ── Left: Text ── */
.gl-coverage__label {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.gl-coverage__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--gl-gray-900);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}
.gl-coverage__info {
    border-top: 1px solid var(--gl-gray-200);
}
.gl-coverage__info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--gl-gray-100);
    font-size: 15px;
}
.gl-coverage__info-label {
    color: var(--gl-gray-500);
}
.gl-coverage__info-value {
    font-weight: 700;
    color: var(--gl-gray-900);
}
.gl-coverage__info-value em {
    color: #2563eb;
    font-style: normal;
    font-weight: 800;
}
.gl-coverage__desc {
    font-size: 15px;
    color: var(--gl-gray-500);
    line-height: 1.7;
    margin-top: 24px;
}
.gl-coverage__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.gl-coverage__tag {
    padding: 8px 18px;
    border: 1px solid var(--gl-gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gl-gray-700);
    background: var(--gl-white);
    transition: all 0.2s;
}
.gl-coverage__tag:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* ── Right: Region Map ── */
.gl-coverage__map {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-coverage__city {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.gl-coverage__city-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-coverage__city-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
}
.gl-coverage__city-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gl-gray-700);
    white-space: nowrap;
}
/* 의정부 (메인) */
.gl-coverage__city--main .gl-coverage__city-dot {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.08);
    border: 2px solid rgba(37, 99, 235, 0.3);
    animation: gl-pulse 2.5s ease-in-out infinite;
}
.gl-coverage__city--main .gl-coverage__city-dot::after {
    width: 18px;
    height: 18px;
    background: #2563eb;
}
.gl-coverage__city--main .gl-coverage__city-name {
    font-size: 15px;
    font-weight: 800;
    color: #2563eb;
}
.gl-coverage__city-badge {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--gl-gray-800);
    color: var(--gl-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
}
.gl-coverage__city-badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gl-gray-800);
    rotate: 45deg;
}
/* 연결선 */
.gl-coverage__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
@keyframes gl-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}


/* ══════════════════════════════════════════════════
   SECTION 4 — TRACK RECORD (수많은 소송 경험)
   ══════════════════════════════════════════════════ */
.gl-record {
    padding: 100px 0;
    background: var(--gl-gray-50);
}
.gl-record__header {
    max-width: var(--gl-container);
    margin: 0 auto 60px;
    padding: 0 48px;
    text-align: center;
}
.gl-record__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 16px;
}
.gl-record__subheading {
    font-size: 16px;
    color: var(--gl-gray-500);
    line-height: 1.6;
}
.gl-record__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Left stat cards */
.gl-record__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gl-record__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    color: var(--gl-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}
.gl-record__card--rate {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
}
.gl-record__card--count {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
}
.gl-record__card-bg {
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.2;
}
.gl-record__card-label {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}
.gl-record__card-sublabel {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: auto;
}
.gl-record__card-number {
    position: relative;
    z-index: 1;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    text-align: right;
    letter-spacing: -2px;
}
.gl-record__card-number span {
    font-size: clamp(32px, 4vw, 48px);
}

/* Right case table */
.gl-record__table-wrap {
    background: var(--gl-white);
    border: 1px solid var(--gl-gray-200);
    border-radius: 12px;
    overflow: hidden;
}
.gl-record__table-header {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    padding: 16px 24px;
    background: var(--gl-gray-50);
    border-bottom: 2px solid var(--gl-gray-200);
}
.gl-record__table-th {
    font-size: 14px;
    font-weight: 700;
    color: var(--gl-gray-900);
}
.gl-record__table-th:last-child {
    text-align: right;
}
.gl-record__table-body {
    /* Each row */
}
.gl-record__table-row {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gl-gray-100);
    font-size: 14px;
    transition: background var(--gl-transition);
}
.gl-record__table-row:hover {
    background: var(--gl-gray-50);
}
.gl-record__table-row:nth-child(even) {
    background: var(--gl-gray-50);
}
.gl-record__table-row:nth-child(even):hover {
    background: var(--gl-gray-100);
}
.gl-record__table-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--gl-gray-400);
    font-variant-numeric: tabular-nums;
}
.gl-record__table-case {
    color: var(--gl-gray-800);
    font-weight: 500;
}
.gl-record__table-status {
    text-align: right;
    font-size: 13px;
    font-weight: 700;
}
.gl-record__table-status--win {
    color: #2563eb;
}
.gl-record__table-status--settled {
    color: var(--gl-gray-600);
}

/* Vertical scroll + fade-out */
.gl-record__table-scroll {
    position: relative;
    max-height: 480px;
    overflow: hidden;
}
.gl-record__table-fadeout {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}


/* ══════════════════════════════════════════════════
   SECTION 4.5 — ATTORNEY PROFILE (변호사 소개)
   ══════════════════════════════════════════════════ */
.gl-attorney {
    padding: 100px 0;
    background: var(--gl-white);
}
.gl-attorney__header {
    max-width: var(--gl-container);
    margin: 0 auto 60px;
    padding: 0 48px;
    text-align: center;
}
.gl-attorney__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 16px;
}
.gl-attorney__subheading {
    font-size: 16px;
    color: var(--gl-gray-500);
    line-height: 1.6;
}
.gl-attorney__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}
/* Photo card */
.gl-attorney__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #dde4ed 0%, #b8c5d6 60%, #8a9bb5 100%);
}
.gl-attorney__photo-placeholder {
    width: 100%;
    height: 100%;
}
.gl-attorney__photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.gl-attorney__photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.gl-attorney__photo-name {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
}
.gl-attorney__photo-name small {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 8px;
    opacity: 0.85;
}
.gl-attorney__photo-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 16px;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
}

/* Right: Info */
.gl-attorney__info {
    padding-top: 8px;
}
.gl-attorney__info-section {
    margin-bottom: 36px;
}
.gl-attorney__info-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gl-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gl-gray-900);
}
.gl-attorney__info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gl-attorney__info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gl-gray-700);
    line-height: 1.5;
}
.gl-attorney__info-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2563eb;
    margin-top: 8px;
    flex-shrink: 0;
}
.gl-attorney__info-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.gl-attorney__info-badge {
    padding: 10px 20px;
    background: var(--gl-gray-50);
    border: 1px solid var(--gl-gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gl-gray-800);
    text-align: center;
}
.gl-attorney__info-badge strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 4px;
}


/* ══════════════════════════════════════════════════
   SECTION 5 — TESTIMONIALS (성공 후기)
   ══════════════════════════════════════════════════ */
.gl-testimonials {
    padding: 100px 0;
    background: var(--gl-bg-light);
}
.gl-testimonials__header {
    max-width: var(--gl-container);
    margin: 0 auto 60px;
    padding: 0 48px;
    text-align: center;
}
.gl-testimonials__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 12px;
}
.gl-testimonials__subheading {
    font-size: 16px;
    color: var(--gl-gray-500);
}

.gl-testimonials__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
/* Carousel slides wrapper */
.gl-testimonials__slides {
    position: relative;
    height: 460px;
}
.gl-testimonials__card {
    background: var(--gl-white);
    border-radius: 20px;
    padding: 48px 32px 32px;
    display: grid;
    grid-template-columns: 360px 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    align-items: start;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    text-decoration: none;
    color: inherit;
}
.gl-testimonials__card.is-active {
    opacity: 1;
    pointer-events: auto;
}
/* Phone mockup — bottom-cropped effect */
.gl-testimonials__phone {
    background: #fff;
    border-radius: 28px 28px 0 0;
    padding: 8px 8px 0 8px;
    max-width: 360px;
    height: calc(100% + 150px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
}
.gl-testimonials__phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 4px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}
.gl-testimonials__phone-notch {
    width: 80px;
    height: 22px;
    background: #e0e0e0;
    border-radius: 11px;
}
.gl-testimonials__phone-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
}
.gl-testimonials__phone-icons svg { opacity: 0.7; }
.gl-testimonials__phone-chat {
    background: #b2c7d9;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}
.gl-testimonials__chat-img {
    width: 100%;
    height: auto;
    display: block;
}
.gl-testimonials__chat-placeholder {
    background: #b2c7d9;
    border-radius: 0;
    padding: 20px 16px;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Carousel arrows */
.gl-testimonials__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--gl-white);
    border: 1px solid var(--gl-gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gl-gray-400);
    transition: all var(--gl-transition);
    z-index: 5;
}
.gl-testimonials__arrow:hover {
    background: var(--gl-gray-50);
    color: var(--gl-gray-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.gl-testimonials__arrow--prev { left: 80px; }
.gl-testimonials__arrow--next { right: 80px; }
.gl-testimonials__arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* KakaoTalk chat mockup (legacy fallback) */
.gl-testimonials__chat {
    background: #b2c7d9;
    border-radius: 16px;
    height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-testimonials__chat-header {
    text-align: center;
    padding: 4px 0 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}
.gl-testimonials__chat-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
}
.gl-testimonials__chat-bubble--sent {
    margin-left: auto;
    background: var(--gl-kakao);
    color: var(--gl-kakao-brown);
    border-bottom-right-radius: 4px;
}
.gl-testimonials__chat-bubble--received {
    margin-right: auto;
    background: var(--gl-white);
    color: var(--gl-gray-800);
    border-bottom-left-radius: 4px;
}
.gl-testimonials__chat-time {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.35);
    margin-top: 2px;
}
.gl-testimonials__chat-time--right { text-align: right; }

/* Right: Case summary */
.gl-testimonials__case {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: center;
}
.gl-testimonials__case-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gl-gray-100);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gl-gray-600);
    width: fit-content;
}
.gl-testimonials__case-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gl-gray-900);
    line-height: 1.4;
}
.gl-testimonials__case-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--gl-gray-900);
}
.gl-testimonials__case-amount span {
    font-size: 18px;
    font-weight: 600;
    color: var(--gl-gray-500);
}
.gl-testimonials__case-meta {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--gl-gray-500);
}
.gl-testimonials__case-meta strong {
    color: var(--gl-gray-700);
}
.gl-testimonials__case-excerpt {
    font-size: 15px;
    color: var(--gl-gray-500);
    line-height: 1.7;
}
.gl-testimonials__case-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gl-accent);
    text-decoration: none;
    transition: opacity var(--gl-transition);
}
.gl-testimonials__case-link:hover {
    opacity: 0.7;
}
.gl-testimonials__case-title a {
    color: inherit;
    text-decoration: none;
}
.gl-testimonials__case-title a:hover {
    color: var(--gl-accent);
}
.gl-testimonials__cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.gl-testimonials__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--gl-accent);
    color: var(--gl-white);
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--gl-transition);
    box-shadow: 0 4px 24px rgba(232, 183, 48, 0.3);
}
.gl-testimonials__cta-btn:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(232, 183, 48, 0.4);
}


/* ══════════════════════════════════════════════════
   SECTION 6 — WHY US (선택 이유)
   ══════════════════════════════════════════════════ */
.gl-why {
    padding: 100px 0;
    background: var(--gl-bg-blue-light);
}
.gl-why__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-why__header {
    text-align: center;
    margin-bottom: 16px;
}
.gl-why__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 12px;
}
.gl-why__subheading {
    font-size: 16px;
    color: var(--gl-gray-500);
    margin-bottom: 60px;
}
.gl-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.gl-why__card {
    background: var(--gl-white);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--gl-transition);
    border: 1px solid transparent;
}
.gl-why__card:hover {
    border-color: var(--gl-gray-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.gl-why__card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gl-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.gl-why__card-content {
    flex: 1;
}
.gl-why__card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 6px;
}
.gl-why__card-desc {
    font-size: 14px;
    color: var(--gl-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* Center CTA */
.gl-why__cta-wrap {
    text-align: center;
}
.gl-why__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--gl-accent);
    color: var(--gl-white);
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--gl-transition);
    box-shadow: 0 4px 24px rgba(232, 183, 48, 0.3);
}
.gl-why__cta:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(232, 183, 48, 0.4);
}


/* ══════════════════════════════════════════════════
   SECTION 7 — PROCESS (진행 절차)
   ══════════════════════════════════════════════════ */
.gl-process {
    padding: 100px 0;
    background: var(--gl-white);
}
.gl-process__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-process__heading {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 60px;
}
.gl-process__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.gl-process__step {
    background: var(--gl-gray-50);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all var(--gl-transition);
    border: 1px solid var(--gl-gray-100);
}
.gl-process__step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.gl-process__step-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--gl-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.gl-process__step-img-placeholder {
    font-size: 48px;
    opacity: 0.5;
}
.gl-process__step-number {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--gl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}
.gl-process__step-body {
    padding: 20px 16px;
}
.gl-process__step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gl-gray-900);
    margin: 0 0 4px;
}
.gl-process__step-desc {
    font-size: 13px;
    color: var(--gl-gray-500);
    margin: 0;
    line-height: 1.5;
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.gl-footer {
    padding: 48px 0 24px;
    background: var(--gl-gray-50);
    border-top: 1px solid var(--gl-gray-200);
}
.gl-footer__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-footer__name {
    font-size: 18px;
    font-weight: 800;
    color: var(--gl-gray-900);
    margin-bottom: 20px;
}
.gl-footer__info {
    font-size: 14px;
    color: var(--gl-gray-500);
    line-height: 2;
}
.gl-footer__info span {
    margin-right: 24px;
}
.gl-footer__divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--gl-gray-300);
    margin: 0 16px;
    vertical-align: middle;
}
.gl-footer__copyright {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--gl-gray-200);
    font-size: 13px;
    color: var(--gl-gray-400);
}


/* ══════════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════════ */
.gl-breadcrumbs {
    margin-bottom: 32px;
}
.gl-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--gl-gray-400);
}
.gl-breadcrumbs-item + .gl-breadcrumbs-item::before {
    content: '›';
    margin: 0 8px;
    color: var(--gl-gray-300);
}
.gl-breadcrumbs-item a {
    color: var(--gl-gray-500);
    transition: color 0.2s ease;
}
.gl-breadcrumbs-item a:hover {
    color: var(--gl-accent);
}
.gl-breadcrumbs-item span[aria-current] {
    color: var(--gl-gray-700);
    font-weight: 600;
}


/* ══════════════════════════════════════════════════
   ARCHIVE GRID + POST CARD
   ══════════════════════════════════════════════════ */
.gl-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gl-post-card {
    background: var(--gl-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.gl-post-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.gl-post-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gl-post-card-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gl-accent);
    background: var(--gl-accent-light);
    padding: 2px 10px;
    border-radius: 9999px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.gl-post-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gl-gray-900);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.012em;
}
.gl-post-card:hover .gl-post-card-title {
    color: var(--gl-accent);
}
.gl-post-card-excerpt {
    font-size: 14px;
    color: var(--gl-gray-500);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gl-post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gl-gray-200);
    font-size: 13px;
    color: var(--gl-gray-400);
}
.gl-post-card-readmore {
    color: var(--gl-accent);
    font-weight: 600;
    transition: color 0.3s ease;
}
.gl-post-card:hover .gl-post-card-readmore {
    color: var(--gl-gray-900);
}




/* ══════════════════════════════════════════════════
   PAGE HEADER (about / contact 공통)
   ══════════════════════════════════════════════════ */
.gl-page-header {
    margin-top: var(--gl-header-h);
    padding-top: 80px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--gl-bg-blue-light) 0%, var(--gl-bg-light) 100%);
    text-align: center;
}
.gl-page-header__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-page-header__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gl-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.gl-page-header__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--gl-gray-900);
    margin: 0 0 16px;
    letter-spacing: -1px;
}
.gl-page-header__desc {
    font-size: 16px;
    color: var(--gl-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════ */
.gl-contact {
    padding: 80px 0 100px;
    background: var(--gl-bg-light);
}
.gl-contact__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}
.gl-contact__form-card {
    background: var(--gl-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.gl-contact__form-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 32px;
    letter-spacing: -0.5px;
}
.gl-contact__field {
    margin-bottom: 24px;
}
.gl-contact__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gl-gray-700);
    margin-bottom: 8px;
}
.gl-required {
    color: #ef4444;
    margin-left: 2px;
}
.gl-contact__input,
.gl-contact__select,
.gl-contact__textarea {
    width: 100%;
    border: 1.5px solid var(--gl-gray-200);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gl-gray-800);
    background: var(--gl-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.gl-contact__input::placeholder,
.gl-contact__textarea::placeholder {
    color: var(--gl-gray-400);
}
.gl-contact__input:focus,
.gl-contact__select:focus,
.gl-contact__textarea:focus {
    border-color: var(--gl-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.gl-contact__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.gl-contact__textarea {
    resize: vertical;
    min-height: 120px;
}
.gl-contact__checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}
.gl-contact__checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gl-accent);
    cursor: pointer;
}
.gl-contact__checkbox-label {
    font-size: 14px;
    color: var(--gl-gray-600);
    line-height: 1.5;
    cursor: pointer;
}
.gl-contact__checkbox-label a {
    color: var(--gl-accent);
    text-decoration: underline;
}
.gl-contact__submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gl-accent);
    color: var(--gl-white);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.gl-contact__submit:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-1px);
}
.gl-contact__info-card {
    background: var(--gl-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.gl-contact__info-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--gl-gray-900);
    margin: 0 0 32px;
    letter-spacing: -0.5px;
}
.gl-contact__info-item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gl-gray-100);
}
.gl-contact__info-item:first-of-type {
    padding-top: 0;
}
.gl-contact__info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.gl-contact__info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gl-bg-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gl-accent);
}
.gl-contact__info-content {
    flex: 1;
}
.gl-contact__info-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gl-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.gl-contact__info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gl-gray-900);
    line-height: 1.5;
}
.gl-contact__info-value a {
    color: var(--gl-accent);
    transition: color 0.3s ease;
}
.gl-contact__info-value a:hover {
    color: var(--gl-accent-hover);
}
.gl-contact__info-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--gl-gray-500);
    margin-top: 4px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .gl-contact__container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .gl-page-header__container {
        padding: 0 24px;
    }
}
@media (max-width: 768px) {
    .gl-page-header {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .gl-contact {
        padding: 40px 0 60px;
    }
    .gl-contact__form-card,
    .gl-contact__info-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
}


/* ══════════════════════════════════════════════════
   ABOUT PAGE — PROFILE HERO
   ══════════════════════════════════════════════════ */
.gl-profile-hero {
    position: relative;
    margin-top: var(--gl-header-h);
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #2d5a8e 100%);
    overflow: hidden;
}
.gl-profile-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.gl-profile-hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}
.gl-profile-hero__content {
    color: var(--gl-white);
}
.gl-profile-hero__label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.gl-profile-hero__name {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 12px;
}
.gl-profile-hero__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}
.gl-profile-hero__bio {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 44px;
    word-break: keep-all;
    max-width: 520px;
}
.gl-profile-hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.gl-profile-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--gl-transition);
}
.gl-profile-hero__cta--primary {
    background: var(--gl-accent);
    color: var(--gl-white);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}
.gl-profile-hero__cta--primary:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(37, 99, 235, 0.45);
}
.gl-profile-hero__cta--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gl-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}
.gl-profile-hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}
.gl-profile-hero__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.gl-profile-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.gl-profile-hero__photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}
.gl-profile-hero__photo-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gl-accent);
    color: var(--gl-white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
}

/* ── ABOUT — STATS BAR ── */
.gl-about-stats {
    position: relative;
    z-index: 10;
    margin-top: -44px;
    padding: 0 48px;
}
.gl-about-stats__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    background: var(--gl-gray-900);
    border-radius: 16px;
    padding: 36px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.gl-about-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.gl-about-stats__number {
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 900;
    color: var(--gl-white);
    line-height: 1;
    letter-spacing: -2px;
}
.gl-about-stats__number span {
    color: var(--gl-accent);
}
.gl-about-stats__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gl-gray-400);
    letter-spacing: -0.3px;
}

/* ── ABOUT — CAREER (주요 경력) ── */
.gl-career {
    padding: 100px 0;
    background: var(--gl-white);
}
.gl-career__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-career__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    text-align: center;
    margin-bottom: 60px;
}
.gl-career__timeline {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.gl-career__timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gl-gray-200);
}
.gl-career__item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}
.gl-career__item:last-child {
    padding-bottom: 0;
}
.gl-career__item-dot {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gl-white);
    border: 3px solid var(--gl-accent);
    z-index: 1;
}
.gl-career__item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gl-gray-900);
    margin-bottom: 4px;
}
.gl-career__item-desc {
    font-size: 15px;
    color: var(--gl-gray-500);
    line-height: 1.6;
}

/* ── ABOUT — PRACTICE AREAS (전문 분야) ── */
.gl-practice {
    padding: 100px 0;
    background: var(--gl-bg-light);
}
.gl-practice__container {
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-practice__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-gray-900);
    text-align: center;
    margin-bottom: 16px;
}
.gl-practice__subheading {
    font-size: 16px;
    color: var(--gl-gray-500);
    text-align: center;
    margin-bottom: 60px;
}
.gl-practice__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gl-practice__card {
    display: block;
    background: var(--gl-white);
    border: 1px solid var(--gl-gray-200);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--gl-transition);
}
.gl-practice__card:hover {
    border-color: var(--gl-accent);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}
.gl-practice__card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gl-bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-practice__card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gl-gray-900);
    margin-bottom: 8px;
}
.gl-practice__card-desc {
    font-size: 14px;
    color: var(--gl-gray-500);
    line-height: 1.6;
}

/* ── ABOUT — CTA ── */
.gl-about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2d5a8e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gl-about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.gl-about-cta__container {
    position: relative;
    z-index: 2;
    max-width: var(--gl-container);
    margin: 0 auto;
    padding: 0 48px;
}
.gl-about-cta__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gl-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.gl-about-cta__phone {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--gl-white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.gl-about-cta__phone a {
    color: var(--gl-white);
    transition: opacity var(--gl-transition);
}
.gl-about-cta__phone a:hover {
    opacity: 0.85;
}
.gl-about-cta__hours {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 44px;
}
.gl-about-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.gl-about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--gl-transition);
}
.gl-about-cta__btn--primary {
    background: var(--gl-accent);
    color: var(--gl-white);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}
.gl-about-cta__btn--primary:hover {
    background: var(--gl-accent-hover);
    transform: translateY(-2px);
}
.gl-about-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gl-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}
.gl-about-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */
.gl-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gl-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gl-header {
        padding: 0 24px;
    }
    .gl-header__nav {
        display: none;
    }
    .gl-header__mobile-btn {
        display: flex;
    }

    .gl-hero__container {
        padding: 0 24px;
    }
    .gl-hero__notification {
        display: none;
    }
    .gl-hero__badge {
        left: 24px;
        bottom: 60px;
        flex-wrap: wrap;
    }
    .gl-hero__dots {
        left: 24px;
    }

    .gl-stats {
        padding: 0 24px;
    }
    .gl-stats__container {
        padding: 36px 32px;
    }

    .gl-consult__container {
        padding: 0 24px;
    }
    .gl-consult__table thead th:nth-child(2),
    .gl-consult__table tbody td:nth-child(2) {
        display: none;
    }

    .gl-coverage__container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }
    .gl-coverage__map {
        order: -1;
        max-height: 360px;
    }

    .gl-record__container {
        padding: 0 16px;
    }
    .gl-record__header {
        padding: 0 24px;
    }

    .gl-attorney__container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }
    .gl-attorney__photo {
        max-width: 340px;
        margin: 0 auto;
    }
    .gl-attorney__header {
        padding: 0 24px;
    }

    .gl-testimonials__container {
        padding: 0 24px;
    }
    .gl-testimonials__header {
        padding: 0 24px;
    }
    .gl-testimonials__card {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .gl-testimonials__arrow--prev { left: 8px; }
    .gl-testimonials__arrow--next { right: 8px; }

    .gl-why__container {
        padding: 0 24px;
    }

    .gl-process__container {
        padding: 0 24px;
    }
    .gl-process__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gl-footer__container {
        padding: 0 24px;
    }

    /* About page responsive */
    .gl-profile-hero__container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
        text-align: center;
    }
    .gl-profile-hero__bio {
        max-width: 100%;
    }
    .gl-profile-hero__cta-group {
        justify-content: center;
    }
    .gl-profile-hero__photo {
        max-width: 320px;
        margin: 0 auto;
    }
    .gl-about-stats {
        padding: 0 24px;
    }
    .gl-about-stats__container {
        padding: 32px 24px;
    }
    .gl-career__container {
        padding: 0 24px;
    }
    .gl-practice__container {
        padding: 0 24px;
    }
    .gl-practice__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gl-about-cta__container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .gl-hero {
        height: 60vh;
    }
    .gl-hero__container {
        height: 60vh;
    }
    .gl-hero__title {
        font-size: clamp(24px, 6vw, 32px);
    }
    .gl-hero__subtitle {
        font-size: 14px;
    }
    .gl-hero__content {
        max-width: 100%;
    }
    .gl-hero__badge {
        display: none;
    }
    .gl-hero__dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .gl-stats {
        margin-top: -40px;
        padding: 0 16px;
    }
    .gl-stats__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 32px 20px;
    }

    .gl-record__cards {
        flex-direction: row;
    }
    .gl-record__card {
        flex: 1;
        min-height: 160px;
        padding: 24px;
    }

    .gl-why__grid {
        grid-template-columns: 1fr;
    }

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

    .gl-coverage {
        padding: 60px 0;
    }
    .gl-record {
        padding: 60px 0;
    }
    .gl-testimonials {
        padding: 60px 0;
    }
    .gl-testimonials__heading {
        font-size: clamp(22px, 5vw, 28px);
    }
    .gl-why {
        padding: 60px 0;
    }
    .gl-process {
        padding: 60px 0;
    }

    /* About page responsive */
    .gl-profile-hero {
        padding: 60px 0 60px;
    }
    .gl-profile-hero__name {
        font-size: clamp(36px, 8vw, 48px);
        letter-spacing: 4px;
    }
    .gl-profile-hero__subtitle {
        font-size: 15px;
    }
    .gl-profile-hero__bio {
        font-size: 14px;
    }
    .gl-profile-hero__photo {
        max-width: 280px;
    }
    .gl-about-stats {
        margin-top: -36px;
        padding: 0 16px;
    }
    .gl-about-stats__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 28px 16px;
    }
    .gl-career {
        padding: 60px 0;
    }
    .gl-practice {
        padding: 60px 0;
    }
    .gl-practice__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gl-about-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    :root {
        --gl-header-h: 60px;
    }

    .gl-stats__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 24px 16px;
    }

    .gl-record__cards {
        flex-direction: column;
    }

    .gl-process__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gl-testimonials__card {
        padding: 20px;
    }

    /* About page responsive */
    .gl-profile-hero__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .gl-profile-hero__cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .gl-about-stats__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 24px 12px;
    }
    .gl-about-stats__number {
        font-size: clamp(24px, 6vw, 32px);
    }
    .gl-about-stats__label {
        font-size: 12px;
    }
    .gl-practice__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gl-practice__card {
        padding: 24px 16px;
    }
    .gl-about-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    .gl-about-cta__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* ── Extended Variables (framework compatibility) ── */
:root {
    --gl-navy: var(--gl-gray-900);
    --gl-navy-light: var(--gl-gray-800);
    --gl-accent-light: #EBF2FF;
    --gl-text: var(--gl-gray-700);
    --gl-text-light: var(--gl-gray-600);
    --gl-text-muted: var(--gl-gray-400);
    --gl-border: var(--gl-gray-200);
    --gl-border-light: var(--gl-gray-100);
    --gl-light: var(--gl-gray-100);
    --gl-radius: 8px;
    --gl-radius-lg: 16px;
    --gl-radius-pill: 9999px;
    --gl-shadow: 0 1px 4px rgba(0,0,0,0.08);
    --gl-shadow-md: 0 2px 8px rgba(0,0,0,0.12);
    --gl-shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}
