/* ============================
   유정노동법률사무소 - 메인 CSS
   ============================ */

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

:root {
    /* ── 네이비 블루 (강한 파란색 기준) ── */
    --primary:       #0a2472;   /* 메인 네이비 – 더 선명한 블루 */
    --primary-dark:  #050e2d;   /* 딥 네이비 (히어로·CTA 배경) */
    --primary-light: #1740a8;   /* 라이트 네이비 */
    --primary-mid:   #071844;   /* 중간 네이비 */

    /* ── 순금색 (로고 엠블럼 – 정통 골드) ── */
    --accent:        #c8960c;   /* 정통 골드 */
    --accent-light:  #e0a910;   /* 밝은 골드 */
    --accent-dark:   #9e7208;   /* 딥 골드 */
    --accent-shine:  #ffd045;   /* 하이라이트 골드 */

    --white:    #ffffff;
    --off-white: #f4f7fc;
    --gray-100: #eceff7;
    --gray-200: #dae0ee;
    --gray-300: #bfc9dc;
    --gray-500: #7a8ba4;
    --gray-700: #384d68;
    --gray-900: #0e1c2f;

    --font-main: 'Noto Sans KR', sans-serif;
    --shadow-sm: 0 2px 8px rgba(7,22,48,0.10);
    --shadow-md: 0 8px 30px rgba(7,22,48,0.15);
    --shadow-lg: 0 20px 60px rgba(7,22,48,0.22);
    --radius: 12px;
    --radius-lg: 20px;
    --nav-h: 80px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--gray-900); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---- 스크롤바 ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* ---- 버튼 ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600; font-family: var(--font-main);
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,147,58,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ---- 섹션 공통 ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { 
    display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
    color: var(--accent); background: rgba(200,147,58,0.1); 
    padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--primary-dark); line-height: 1.3; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); }
.text-accent { color: var(--accent); }

/* ==================
   네비게이션
   ================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h); background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}
.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link { color: var(--primary-dark); }
.navbar.scrolled .logo-accent { color: var(--accent); }
.navbar.scrolled .hamburger span { background: var(--primary-dark); }

.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }

/* ── 로고 ── */
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.nav-logo-emblem {
    width: 62px; height: 62px; border-radius: 0; object-fit: contain;
    flex-shrink: 0; transition: var(--transition);
    filter: drop-shadow(0 3px 12px rgba(200,150,12,0.6));
}
.navbar.scrolled .nav-logo-emblem {
    width: 54px; height: 54px;
    filter: drop-shadow(0 2px 6px rgba(200,150,12,0.35));
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-kr {
    font-size: 1.05rem; font-weight: 800; line-height: 1;
    color: var(--white); letter-spacing: -0.3px;
    background: linear-gradient(135deg, #ffd045 0%, #c8960c 40%, #e0a910 70%, #ffd045 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-en-full {
    font-size: 0.58rem; font-weight: 700; letter-spacing: 2.5px;
    color: rgba(255,255,255,0.55); text-transform: uppercase; line-height: 1;
}
.navbar.scrolled .logo-kr {
    background: linear-gradient(135deg, #9e7208 0%, #c8960c 50%, #e0a910 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar.scrolled .logo-en-full { color: rgba(13,43,94,0.5); }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { 
    color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500;
    padding: 8px 16px; border-radius: 8px; transition: var(--transition);
}
.nav-link:hover { color: var(--accent-light); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--accent); }
.nav-cta { 
    background: var(--accent); color: var(--white) !important; 
    border-radius: 50px; padding: 10px 22px; font-weight: 700;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,162,39,0.35); }
.navbar.scrolled .nav-cta { color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ==================
   히어로 섹션
   ================== */
.hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: calc(var(--nav-h) + 40px) 24px 80px;
    background: var(--primary-dark);
}

/* 빌딩 슬라이드쇼 */
.hero-slideshow {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.8s ease-in-out;
    animation: heroZoom 8s ease-in-out infinite;
}
.hero-slide.active { opacity: 1; }

/* 도시 빌딩 이미지 변화는 JS에서 관리 */
.hero-slide-1 { background-image: url('../images/hero-slide-1.jpg'); background-color: #0a1929; }
.hero-slide-2 { background-image: url('../images/hero-slide-2.jpg'); background-color: #0d1f33; }
.hero-slide-3 { background-image: url('../images/hero-slide-3.jpg'); background-color: #111827; }
.hero-slide-4 { background-image: url('../images/hero-slide-4.jpg'); background-color: #0e2139; }

@keyframes heroZoom {
    0%   { transform: scale(1.0); }
    50%  { transform: scale(1.07); }
    100% { transform: scale(1.0); }
}

.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: 
        linear-gradient(to bottom, rgba(3,10,28,0.85) 0%, rgba(6,18,48,0.55) 50%, rgba(3,10,28,0.90) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.hero-particles {
    position: absolute; inset: 0; z-index: 2; overflow: hidden;
}
.particle {
    position: absolute; width: 2px; height: 2px; background: rgba(255,255,255,0.4);
    border-radius: 50%; animation: float-up linear infinite;
}
@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* 히어로 슬라이드 인디케이터 */
.hero-indicators {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: none; cursor: pointer;
    transition: all 0.3s ease; padding: 0;
}
.hero-dot.active {
    background: var(--accent-light); width: 24px; border-radius: 4px;
}

/* 히어로 콘텐츠 z-index 조정 */
.hero-content { position: relative; z-index: 5; text-align: center; max-width: 800px; width: 100%; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,147,58,0.2); border: 1px solid rgba(200,147,58,0.4);
    color: var(--accent-light); font-size: 0.85rem; font-weight: 600;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; color: var(--white);
    line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px;
}
.hero-accent { color: var(--accent-light); }

.hero-desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 36px; }
.hero-desc strong { color: var(--accent-light); }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { 
    display: flex; align-items: center; justify-content: center; gap: 0;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 16px;
    padding: 24px 40px; flex-wrap: wrap; gap: 0;
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--accent-light); }
.stat-unit { font-size: 1.2rem; font-weight: 700; color: var(--accent-light); }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 1px;
    animation: bounce 2s infinite; z-index: 5;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ==================
   단체사진 섹션
   ================== */
.team-photo-section {
    padding: 0;
    background: var(--white);
    overflow: hidden;
}
.team-photo-wrapper {
    display: grid;
    grid-template-columns: 62vw 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 720px;
}
.team-photo-img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: #e8ecf3;   /* 사진 배경과 유사한 밝은 회색 */
}
.team-photo-img img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: contain;          /* 3명 전원 잘림 없이 표시 */
    object-position: center center;
    display: block;
    padding: 16px 0;              /* 위아래 여백으로 자연스럽게 */
}
/* 페이드 오버레이 완전 제거 — 세 명 모두 선명하게 표시 */
.team-photo-img::after { display: none; }
.team-photo-img::before { display: none; }

.team-photo-content {
    padding: 80px 64px 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}
.team-photo-content .section-tag { display: block; text-align: left; margin-bottom: 16px; }
.team-photo-content .section-title { text-align: left; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.section-desc { color: var(--gray-700); font-size: 1rem; line-height: 1.8; margin: 20px 0 28px; }
.section-desc strong { color: var(--primary); }

.team-features { margin-bottom: 32px; }
.team-features li {
    display: flex; align-items: center; gap: 12px;
    color: var(--gray-700); padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.95rem;
}
.team-features li:last-child { border-bottom: none; }
.team-features li i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* ==================
   인사말 섹션
   ================== */
.greeting-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 60%, var(--primary) 100%);
}
.greeting-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 24px; }
.quote-mark { font-size: 6rem; color: var(--accent); line-height: 0.5; margin-bottom: 16px; font-family: Georgia, serif; }
.greeting-quote {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--white);
    line-height: 1.5; margin-bottom: 24px; font-style: italic;
}
.greeting-text { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.9; margin-bottom: 36px; }
.greeting-signature { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sig-role { font-size: 0.85rem; color: rgba(255,255,255,0.6); letter-spacing: 2px; }
.sig-name { font-size: 1.4rem; font-weight: 700; color: var(--accent-light); letter-spacing: 4px; }

/* ==================
   서비스 섹션
   ================== */
.services-section {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
/* 단일 배경 이미지 – 계약서/서류 사진을 전면에 흐리게 */
.services-section::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../images/bg-services-section.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.06;
    pointer-events: none;
    filter: blur(2px) grayscale(30%);
}
.services-section .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 40px 32px; transition: var(--transition);
    border: 1px solid var(--gray-200); position: relative; overflow: hidden;
    box-shadow: 0 2px 16px rgba(10,36,114,0.06);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { color: var(--white); }

/* ── 카드 상단 포인트 라인 색상 (카드별 변주) ── */
.service-card--1::before { background: linear-gradient(90deg, #0a2472, #1740a8); }
.service-card--2::before { background: linear-gradient(90deg, #1740a8, #2255cc); }
.service-card--3::before { background: linear-gradient(90deg, #c8960c, #e0a910); }
.service-card--4::before { background: linear-gradient(90deg, #0a2472, #c8960c); }
.service-card--5::before { background: linear-gradient(90deg, #2255cc, #1740a8); }
.service-card--6::before { background: linear-gradient(90deg, #c8960c, #0a2472); }

/* ── 아이콘 박스 배경 (6가지 톤) ── */
.service-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 24px; transition: var(--transition);
    box-shadow: 0 4px 12px rgba(10,36,114,0.12);
}

/* 1 – 딥 네이비 */
.service-card--1 .service-icon {
    background: linear-gradient(135deg, rgba(10,36,114,0.12), rgba(10,36,114,0.20));
    color: #0a2472;
}
.service-card--1:hover .service-icon { background: #0a2472; color: var(--white); }

/* 2 – 미드 블루 */
.service-card--2 .service-icon {
    background: linear-gradient(135deg, rgba(23,64,168,0.10), rgba(23,64,168,0.18));
    color: #1740a8;
}
.service-card--2:hover .service-icon { background: #1740a8; color: var(--white); }

/* 3 – 골드 */
.service-card--3 .service-icon {
    background: linear-gradient(135deg, rgba(200,150,12,0.10), rgba(200,150,12,0.18));
    color: #c8960c;
}
.service-card--3:hover .service-icon { background: #c8960c; color: var(--white); }

/* 4 – 네이비+골드 믹스 */
.service-card--4 .service-icon {
    background: linear-gradient(135deg, rgba(10,36,114,0.08), rgba(200,150,12,0.14));
    color: #0a2472;
}
.service-card--4:hover .service-icon { background: linear-gradient(135deg, #0a2472, #c8960c); color: var(--white); }

/* 5 – 라이트 블루 */
.service-card--5 .service-icon {
    background: linear-gradient(135deg, rgba(34,85,204,0.08), rgba(34,85,204,0.16));
    color: #2255cc;
}
.service-card--5:hover .service-icon { background: #2255cc; color: var(--white); }

/* 6 – 골드+네이비 믹스 */
.service-card--6 .service-icon {
    background: linear-gradient(135deg, rgba(200,150,12,0.08), rgba(10,36,114,0.14));
    color: #c8960c;
}
.service-card--6:hover .service-icon { background: linear-gradient(135deg, #c8960c, #0a2472); color: var(--white); }

.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

.services-cta { text-align: center; margin-top: 48px; }

/* ==================
   수상/인증 배너
   ================== */
.awards-banner {
    background: var(--primary-dark); padding: 20px 0;
    overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05);
}
.awards-track { overflow: hidden; }
.awards-list {
    display: flex; gap: 48px; align-items: center;
    animation: marquee 30s linear infinite; white-space: nowrap; width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.award-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; flex-shrink: 0;
}
.award-item i { color: var(--accent-light); }

/* ==================
   WHY 섹션
   ================== */
.why-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
/* 정장 전문가 배경 사진 */
.why-section::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../images/bg-why-section.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.07;
    filter: grayscale(20%);
    pointer-events: none;
}
.why-section .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
    padding: 40px 28px; border-radius: var(--radius); text-align: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border: 2px solid transparent;
    transition: var(--transition); position: relative;
    box-shadow: 0 2px 16px rgba(10,36,114,0.06);
}
.why-card:hover { background: var(--white); border-color: var(--accent); box-shadow: var(--shadow-md); }
.why-num { font-size: 3rem; font-weight: 900; color: var(--gray-200); line-height: 1; margin-bottom: 16px; }
.why-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: var(--gray-700); line-height: 1.7; }

/* ==================
   고객사 섹션
   ================== */
.clients-section { padding: 80px 0; background: var(--off-white); }
.clients-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.client-item {
    background: var(--white); border: 1px solid var(--gray-200);
    padding: 20px; text-align: center; border-radius: var(--radius);
    font-size: 0.9rem; font-weight: 600; color: var(--gray-700);
    transition: var(--transition);
}
.client-item:hover { border-color: var(--primary); color: var(--primary); background: rgba(7,26,62,0.03); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* 업종별 카드 */
.clients-industry-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px;
}
.industry-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.industry-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white);
}
.industry-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.industry-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }
.clients-note {
    text-align: center; font-size: 0.82rem; color: var(--gray-500);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.clients-note i { color: var(--accent); }

/* ==================
   활동 섹션
   ================== */
.activity-section { padding: 100px 0; background: var(--white); }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.activity-card {
    display: flex; gap: 20px; padding: 28px;
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--gray-200); transition: var(--transition);
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.activity-icon {
    width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
    background: rgba(26,58,92,0.07); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
}
.activity-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
    color: var(--accent); background: rgba(200,147,58,0.1); padding: 3px 10px; border-radius: 50px; margin-bottom: 8px;
}
.activity-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.activity-content p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ==================
   CTA 섹션
   ================== */
.cta-section {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 50%, var(--primary) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-content { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; }

.cta-contact { display: flex; justify-content: center; gap: 48px; margin-bottom: 40px; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 16px; }
.cta-phone i { font-size: 1.5rem; color: var(--accent-light); }
.cta-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.cta-number { font-size: 1.2rem; font-weight: 700; color: var(--white); display: block; }
a.cta-number:hover { color: var(--accent-light); }

/* ==================
   푸터
   ================== */
.footer { background: var(--primary-dark); padding: 72px 0 0; border-top: 1px solid rgba(201,162,39,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-logo { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 12px; display: flex; flex-direction: column; gap: 4px; }
.footer-logo-kr {
    background: linear-gradient(135deg, #ffd045 0%, #c8960c 50%, #e0a910 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 800;
}
.footer-logo-en { font-size: 0.62rem; font-weight: 700; letter-spacing: 2.5px; color: var(--accent-light); opacity: 0.85; text-transform: uppercase; }
.footer-slogan { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-nav h4, .footer-services h4, .footer-contact h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-nav ul li, .footer-services ul li { margin-bottom: 10px; }
.footer-nav ul li a, .footer-services ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-nav ul li a:hover, .footer-services ul li a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-info p { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; line-height: 1.6; }
.footer-info p i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ==================
   애니메이션
   ================== */
.animate-fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.animate-card { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-card.visible { opacity: 1; transform: translateY(0); }

/* ==================
   페이지 공통 헤더
   ================== */
.page-hero {
    padding: calc(var(--nav-h) + 64px) 0 64px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-mid) 50%, var(--primary) 100%);
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.06) 0%, transparent 60%);
}
.page-hero-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; color: var(--accent-light); background: rgba(201,162,39,0.18); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb .separator { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--accent-light); }

/* ==================
   사무실 소개 페이지
   ================== */
.about-intro-section { padding: 100px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-text .section-title { text-align: left; }
.about-intro-text .section-tag { display: block; text-align: left; }

.about-values { padding: 100px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { background: var(--white); padding: 48px 32px; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid var(--gray-200); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.value-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); margin: 0 auto 28px; }
.value-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; }

.history-section { padding: 100px 0; }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid var(--white); box-shadow: 0 0 0 3px var(--accent); }
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 4px; }
.timeline-desc { font-size: 0.88rem; color: var(--gray-700); }

.certifications-section { padding: 80px 0; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; text-align: center; transition: var(--transition); }
.cert-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.cert-card i { font-size: 2.5rem; color: var(--accent-light); margin-bottom: 16px; }
.cert-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cert-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ==================
   구성원 소개 페이지
   ================== */
.members-section { padding: 100px 0; }
.member-profile {
    display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start;
    padding: 60px 0; border-bottom: 1px solid var(--gray-200);
}
.member-profile:last-child { border-bottom: none; }
.member-profile.reverse { direction: rtl; }
.member-profile.reverse > * { direction: ltr; }

.member-photo-wrap { position: relative; }
.member-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.member-badge {
    position: absolute; bottom: -16px; left: 24px; right: 24px;
    background: var(--primary); color: var(--white); text-align: center;
    padding: 12px 16px; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.member-info { padding-top: 8px; }
.member-role { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; }
.member-name { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.member-name-en { font-size: 1rem; color: var(--gray-500); margin-bottom: 24px; letter-spacing: 2px; }
.member-intro { font-size: 0.95rem; color: var(--gray-700); line-height: 1.9; margin-bottom: 32px; border-left: 3px solid var(--accent); padding-left: 20px; }

.member-detail-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn {
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    border: 2px solid var(--gray-200); background: transparent; cursor: pointer;
    transition: var(--transition); font-family: var(--font-main);
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.member-tab-content { display: none; }
.member-tab-content.active { display: block; }
.career-list { display: flex; flex-direction: column; gap: 0; }
.career-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; }
.career-item:last-child { border-bottom: none; }
.career-period { min-width: 140px; color: var(--accent); font-weight: 600; font-size: 0.82rem; }
.career-desc { color: var(--gray-700); line-height: 1.6; }
.career-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--primary); background: rgba(26,58,92,0.07); padding: 2px 8px; border-radius: 4px; margin-left: 8px; }

/* Partners section */
.partners-section { padding: 80px 0; background: var(--off-white); }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.partner-card { background: var(--white); border-radius: var(--radius); padding: 36px; text-align: center; border: 1px solid var(--gray-200); transition: var(--transition); }
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.partner-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--white); }
.partner-name { font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.partner-title { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.partner-spec { font-size: 0.88rem; color: var(--gray-700); line-height: 1.7; }

/* ==================
   업무분야 페이지
   ================== */
.services-detail-section { padding: 0; }

/* 각 업무분야 블록 공통 - 배경 이미지 지원 */
.service-detail-block {
    position: relative;
    padding: 80px 0;
    border-bottom: none;
    overflow: hidden;
}
.service-detail-block:last-child { border-bottom: none; }

/* 배경 이미지 레이어 */
.service-detail-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}
/* 배경 오버레이 */
.service-detail-block::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}
/* 배경 이미지가 있는 블록에서 ::before, ::after 활성화 */
.service-detail-block.has-bg::before { opacity: 1; }
.service-detail-block.has-bg::after  { opacity: 1; }

/* 각 블록 안의 콘텐츠를 배경 위에 표시 */
.service-detail-block > .container { position: relative; z-index: 2; }

/* ── 01. 노동분쟁 해결 ─ 악수/계약 이미지 ── */
#dispute::before {
    background-image: url('../images/bg-service-1.jpg');
}
#dispute::after {
    background: linear-gradient(135deg, rgba(10,36,114,0.88) 0%, rgba(10,36,114,0.75) 100%);
}

/* ── 02. 직장 내 괴롭힘 ─ 직장 갈등 이미지 ── */
#harassment::before {
    background-image: url('../images/bg-service-2.jpg');
}
#harassment::after {
    background: linear-gradient(135deg, rgba(90,5,5,0.88) 0%, rgba(120,20,20,0.78) 100%);
}

/* ── 03. 산업재해 ─ 건설현장 안전 이미지 ── */
#industrial::before {
    background-image: url('../images/bg-service-3.jpg');
}
#industrial::after {
    background: linear-gradient(135deg, rgba(120,60,0,0.85) 0%, rgba(180,80,0,0.75) 100%);
}

/* ── 04. 취업규칙·인사규정 ─ 계약서 서명 이미지 ── */
#policy::before {
    background-image: url('../images/bg-service-4.jpg');
}
#policy::after {
    background: linear-gradient(135deg, rgba(20,30,50,0.87) 0%, rgba(35,55,90,0.80) 100%);
}

/* ── 05. 임금체계 컨설팅 ─ 임금/재무 이미지 ── */
#wage::before {
    background-image: url('../images/bg-service-5.jpg');
}
#wage::after {
    background: linear-gradient(135deg, rgba(10,70,40,0.87) 0%, rgba(15,100,55,0.78) 100%);
}

/* ── 06. 중대재해 예방 ─ 안전모/안전장비 이미지 ── */
#safety::before {
    background-image: url('../images/bg-service-6.jpg');
}
#safety::after {
    background: linear-gradient(135deg, rgba(130,10,10,0.87) 0%, rgba(160,20,20,0.78) 100%);
}

/* ── 07. 4대보험 ─ 보험서류/서류 이미지 ── */
#insurance::before {
    background-image: url('../images/bg-service-7.jpg');
}
#insurance::after {
    background: linear-gradient(135deg, rgba(10,40,100,0.87) 0%, rgba(15,70,140,0.78) 100%);
}

/* ── 08. 인사노무 컨설팅 ─ HR 팀 회의 이미지 ── */
#consult::before {
    background-image: url('../images/bg-service-8.jpg');
}
#consult::after {
    background: linear-gradient(135deg, rgba(60,10,100,0.87) 0%, rgba(90,20,140,0.78) 100%);
}
.service-detail-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.service-detail-icon { width: 68px; height: 68px; border-radius: 16px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--white); flex-shrink: 0; }
.service-detail-title { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); }
.service-detail-sub { font-size: 0.9rem; color: var(--gray-500); margin-top: 4px; }

.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.service-desc { font-size: 0.95rem; color: var(--gray-700); line-height: 1.9; }
.service-items { }
.service-items h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.service-items ul { display: flex; flex-direction: column; gap: 8px; }
.service-items ul li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-700); }
.service-items ul li::before { content: '▶'; color: var(--accent); font-size: 0.6rem; flex-shrink: 0; }

/* ==================
   오시는 길 페이지
   ================== */
.location-section { padding: 100px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.location-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 32px; }
.location-detail { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.location-item { display: flex; gap: 16px; }
.location-item i { width: 44px; height: 44px; border-radius: 12px; background: rgba(26,58,92,0.07); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.location-item-text strong { display: block; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 4px; }
.location-item-text p { font-size: 0.95rem; color: var(--gray-900); font-weight: 500; }

.transport-section { background: var(--off-white); padding: 32px; border-radius: var(--radius); }
.transport-section h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 20px; }
.transport-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: center; font-size: 0.9rem; }
.transport-badge { padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; min-width: 60px; text-align: center; }
.badge-subway { background: #0052A4; color: white; }
.badge-bus { background: #417505; color: white; }
.transport-item span { color: var(--gray-700); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 480px; border: none; display: block; }

/* ==================
   상담신청 페이지
   ================== */
.consult-section { padding: 100px 0; background: var(--off-white); }
.consult-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }

.consult-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }
.consult-info p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 32px; }
.consult-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.consult-step { display: flex; gap: 16px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; }
.step-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.step-text p { font-size: 0.85rem; color: var(--gray-500); }

.consult-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.form-title { font-size: 1.3rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.form-subtitle { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 36px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group label .required { color: var(--accent); margin-left: 2px; }
.form-control {
    width: 100%; padding: 13px 16px;
    border: 2px solid var(--gray-200); border-radius: var(--radius);
    font-size: 0.9rem; font-family: var(--font-main); color: var(--gray-900);
    transition: var(--transition); background: var(--white); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,92,0.1); }
.form-control::placeholder { color: var(--gray-300); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a93a2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 120px; }

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

.form-submit { margin-top: 32px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success i { font-size: 3rem; color: #27ae60; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.form-success p { color: var(--gray-500); }

/* ==================
   반응형
   ================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .clients-industry-grid { grid-template-columns: repeat(2, 1fr); }
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .history-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .nav-menu { 
        display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
        background: var(--primary-dark); flex-direction: column; align-items: center;
        justify-content: center; gap: 8px; padding: 24px;
    }
    .nav-menu.open { display: flex; }
    .nav-link { color: var(--white) !important; font-size: 1.1rem; padding: 12px 24px; width: 100%; text-align: center; }
    .nav-cta { background: var(--accent) !important; color: var(--white) !important; }
    .hamburger { display: flex; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-stats { padding: 20px 24px; gap: 0; }
    .stat-item { padding: 0 16px; }
    .stat-num { font-size: 1.5rem; }
    .stat-divider { height: 36px; }

    .team-photo-wrapper { grid-template-columns: 1fr; }
    .team-photo-img img { min-height: 500px; }
    .team-photo-img::after { background: linear-gradient(to bottom, transparent 70%, var(--white) 100%); }
    .team-photo-content { padding: 40px 24px 56px; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .activity-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .member-profile { grid-template-columns: 1fr; }
    .member-profile.reverse { direction: ltr; }
    .location-grid { grid-template-columns: 1fr; }
    .consult-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .consult-form-wrap { padding: 28px 20px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }
    .cta-contact { gap: 24px; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-industry-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: center; }
    .member-detail-tabs { gap: 6px; }
    .tab-btn { font-size: 0.78rem; padding: 6px 12px; }
}
