/* =============================================
   에이원공인중개사사무소 - Clean Premium Style
   ============================================= */

:root {
    --gold: #D4B06A;
    --gold-light: #EDD9A3;
    --gold-dark: #B8964F;
    --black: #0c0c0c;
    --black-light: #131313;
    --black-card: #1a1a1a;
    --white: #f5f5f5;
    --gray-100: #e8e8e8;
    --gray-300: #d4d4d4;
    --gray-500: #999;
    --gray-700: #555;
    --font: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* =============================================
   네비게이션
   ============================================= */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-logo-img { height: 32px; width: auto; }

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.88rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
}

/* =============================================
   히어로 섹션
   ============================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 176, 106, 0.18), transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(212, 176, 106, 0.06), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 40px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(201, 169, 98, 0.25));
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-title .gold {
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: #bbb;
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.hero-keywords span {
    display: inline-block;
    padding: 6px 16px;
    font-size: 1.19rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-num small {
    font-size: 1.6rem;
    font-weight: 600;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
    font-weight: 500;
}

.stat-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201, 169, 98, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =============================================
   전문 분야 (명함 스타일)
   ============================================= */
.expertise {
    background: #141414;
    padding: 120px 20px;
}

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

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.expertise-grid.expertise-grid-3x2 {
    grid-template-columns: repeat(3, 1fr);
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--gold-light);
}

.service-link::after {
    content: ' →';
}

.exp-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.exp-card:hover {
    border-color: rgba(212, 176, 106, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.exp-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.exp-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.exp-text p {
    font-size: 0.82rem;
    color: #999;
    line-height: 1.5;
}

/* v2: 세로형 카드 */
.exp-card.exp-card-v2 {
    flex-direction: column;
    gap: 0;
    padding: 40px 32px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.12);
    border-top: 3px solid var(--gold);
}

.exp-card.exp-card-v2:hover {
    border-color: rgba(212, 176, 106, 0.4);
    border-top-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 176, 106, 0.15);
}

.exp-card.exp-card-v2 .exp-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 176, 106, 0.12);
    border-radius: 50%;
    margin-bottom: 24px;
}

.exp-card.exp-card-v2 .exp-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    -webkit-text-fill-color: unset;
    white-space: nowrap;
}

.exp-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exp-list li {
    font-size: 0.92rem;
    color: #bbb;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.exp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* =============================================
   왜 에이원인가
   ============================================= */
.why-us {
    padding: 120px 20px;
    background: var(--black);
}

.section-head {
    margin-bottom: 64px;
}

.section-head.left {
    text-align: left;
}

.section-head.center { text-align: center; }

.section-head .label {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    font-weight: 500;
}

.section-head h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

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

.why-item {
    padding: 36px 28px;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.why-item:hover {
    border-color: rgba(212, 176, 106, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* v2: 번호 강조형 */
.why-item.why-item-v2 {
    padding: 36px 24px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.1);
    border-left: 3px solid var(--gold);
    position: relative;
}

.why-item.why-item-v2:hover {
    border-color: rgba(212, 176, 106, 0.35);
    border-left-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.why-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--gold);
    opacity: 0.35;
}

.why-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
    white-space: nowrap;
}

.why-item p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
}

/* =============================================
   인증
   ============================================= */
.credentials {
    padding: 120px 20px;
    background: #141414;
}

.cred-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 750px;
    margin: 0 auto 64px;
}

.cred-card {
    padding: 44px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.cred-card.main {
    border-color: rgba(212, 176, 106, 0.3);
    background: linear-gradient(180deg, rgba(212, 176, 106, 0.06) 0%, #1c1c1c 100%);
}

.cred-card:hover {
    border-color: rgba(212, 176, 106, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cred-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.cred-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.cred-card p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 16px;
}

.cred-num {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.rep-history {
    max-width: 750px;
    margin: 0 auto;
    padding: 44px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.1);
}

.rep-history h4 {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--white);
}

.rep-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rep-item {
    padding: 18px;
    background: rgba(212, 176, 106, 0.04);
    border-left: 2px solid var(--gold);
}

.rep-org {
    display: block;
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 4px;
}

.rep-role {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ccc;
}

/* =============================================
   서비스
   ============================================= */
.services {
    padding: 100px 20px;
    background: var(--black);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--black);
    transition: background 0.2s, color 0.2s;
}

.service-item:hover {
    background: var(--black-card);
    color: var(--gold);
}

.service-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* =============================================
   최종 CTA
   ============================================= */
.final-cta {
    padding: 120px 20px;
    background: #111;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212, 176, 106, 0.06), transparent);
    pointer-events: none;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-text h2 strong {
    font-weight: 700;
    color: var(--gold);
}

.cta-text p {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.8;
}

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

.cta-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201, 169, 98, 0.3);
}

.cta-phone small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.cta-phone strong {
    display: block;
    font-size: 1.15rem;
}

.cta-mobile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s;
}

.cta-mobile:hover { border-color: var(--gold); }

.cta-mobile small {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-mobile span {
    font-weight: 600;
}

.cta-btn {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

.cta-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =============================================
   푸터
   ============================================= */
.main-footer {
    padding: 60px 20px 30px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img { height: 28px; width: auto; }
.footer-logo span { font-weight: 500; }

.footer-description {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.7;
}

.footer-content h4 {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #999;
    transition: color 0.2s;
}

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

.footer-certifications li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #999;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #666;
}

/* =============================================
   서브페이지 공통
   ============================================= */
.page-header {
    padding: 160px 20px 70px;
    background: var(--black);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 176, 106, 0.16), transparent);
    pointer-events: none;
}

.page-label {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    font-weight: 500;
}

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.page-header p {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.8;
}

.content-section {
    padding: 100px 20px;
    background: var(--black);
}

.content-section.alt {
    background: #141414;
}

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

.section-header.left { text-align: left; }

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
}

.section-desc {
    margin-top: 20px;
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.9;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advisory-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 32px 36px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.12);
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.advisory-item:hover {
    background: #222;
    border-color: rgba(212, 176, 106, 0.4);
    border-left-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.advisory-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 176, 106, 0.12);
    border-radius: 50%;
    color: var(--gold);
}

.advisory-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

.service-target {
    margin-top: 40px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.06) 0%, rgba(212, 176, 106, 0.02) 100%);
    border: 1px solid rgba(212, 176, 106, 0.12);
    border-left: 3px solid var(--gold);
    font-size: 0.92rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* About 페이지 */
.about-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-intro .label {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.about-intro p {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-intro strong { color: var(--gold); }

.ceo-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 48px;
    align-items: start;
}

.ceo-image-placeholder {
    aspect-ratio: 3/4;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.ceo-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.ceo-info .position { color: var(--gold); margin-bottom: 20px; }
.ceo-info .description { color: #bbb; line-height: 1.9; margin-bottom: 24px; }

.ceo-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ceo-qualifications span {
    padding: 8px 14px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    font-size: 0.8rem;
    color: var(--gold-light);
}

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

.philosophy-card {
    padding: 44px 32px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.philosophy-card:hover {
    border-color: rgba(212, 176, 106, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.philosophy-icon { color: var(--gold); margin-bottom: 22px; }
.philosophy-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.philosophy-card p { font-size: 0.95rem; color: #bbb; line-height: 1.7; }

/* Services 페이지 */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-detail-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.12);
    border-top: 3px solid var(--gold);
    transition: all 0.3s;
}

.service-detail-card:hover {
    border-color: rgba(212, 176, 106, 0.4);
    border-top-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.service-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--gold);
}

.service-detail-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.service-detail-content > p { font-size: 0.95rem; color: #bbb; margin-bottom: 18px; }

.service-detail-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-detail-content li {
    padding: 7px 14px;
    background: rgba(212, 176, 106, 0.08);
    border: 1px solid rgba(212, 176, 106, 0.18);
    font-size: 0.82rem;
    color: #d0d0d0;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.analysis-card {
    padding: 40px 36px;
    background: #1c1c1c;
    border: 1px solid rgba(212, 176, 106, 0.12);
    border-top: 3px solid var(--gold);
    transition: all 0.3s;
}

.analysis-card:hover {
    border-color: rgba(212, 176, 106, 0.4);
    border-top-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.analysis-icon {
    color: var(--gold);
    margin-bottom: 20px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 176, 106, 0.1);
    border-radius: 50%;
}

.analysis-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.analysis-card p { font-size: 0.95rem; color: #bbb; line-height: 1.8; }

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.process-item {
    flex: 1;
    text-align: center;
    padding: 28px 16px;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(212, 176, 106, 0.35);
}

.process-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.process-item p { font-size: 0.9rem; color: #aaa; }

.process-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 44px;
    flex-shrink: 0;
}

/* Contact 페이지 */
.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 32px;
}

.contact-info-card {
    padding: 32px;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon { color: var(--gold); flex-shrink: 0; }
.contact-item-content h4 { font-size: 0.7rem; color: var(--gray-500); letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-item-content p { font-size: 0.95rem; }
.contact-item-content a:hover { color: var(--gold); }

.contact-quick { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.04); }
.contact-quick h4 { font-size: 0.8rem; margin-bottom: 12px; }
.contact-quick-buttons { display: flex; gap: 10px; }

.contact-form {
    padding: 32px;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-form h3 { font-size: 1.1rem; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 6px; color: var(--gray-300); }
.form-group .required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-700); }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group textarea { min-height: 140px; resize: vertical; }

.error-message {
    padding: 14px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.success-message {
    text-align: center;
    padding: 60px 32px;
    background: var(--black-card);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.success-message svg { color: var(--gold); margin-bottom: 20px; }
.success-message h3 { font-size: 1.3rem; margin-bottom: 10px; }
.success-message p { color: var(--gray-500); margin-bottom: 24px; }

.map-section {
    margin-top: 48px;
    padding: 32px;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.map-section h3 { font-size: 1.1rem; margin-bottom: 16px; }
.map-address p { color: var(--gray-300); }

/* CTA 섹션 (서브페이지) */
.cta-section {
    padding: 120px 20px;
    background: #0e0e0e;
    border-top: 1px solid rgba(212, 176, 106, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212, 176, 106, 0.08), transparent);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 18px; line-height: 1.4; color: var(--white); }
.cta-content p { font-size: 1.05rem; color: #aaa; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* 버튼 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 98, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* =============================================
   언어 선택기
   ============================================= */

/* 최초 방문 언어 팝업 */
.lang-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lang-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lang-popup {
    background: #1a1a1a;
    border: 1px solid rgba(212, 176, 106, 0.2);
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
}

.lang-popup h3 {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 500;
}

.lang-popup p {
    font-size: 0.88rem;
    color: #999;
    margin-bottom: 32px;
}

.lang-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
}

.lang-option:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 176, 106, 0.06);
}

.lang-option .flag {
    font-size: 1.3rem;
    line-height: 1;
}

/* 네비게이션 언어 버튼 */
.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.75rem;
    font-family: var(--font);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-lang-btn .flag {
    font-size: 1rem;
    line-height: 1;
}

/* 언어 드롭다운 */
.lang-dropdown-wrap {
    position: relative;
}

/* 모바일 언어 버튼은 모바일에서만 표시 */
.mobile-lang-item { display: none; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(212, 176, 106, 0.15);
    min-width: 160px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #ccc;
    font-size: 0.88rem;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.lang-dropdown button:last-child { border-bottom: none; }

.lang-dropdown button:hover {
    background: rgba(212, 176, 106, 0.08);
    color: var(--gold);
}

.lang-dropdown button.active {
    color: var(--gold);
}

.lang-dropdown .flag { font-size: 1.1rem; }

/* =============================================
   반응형
   ============================================= */
@media (max-width: 1024px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-grid.expertise-grid-3x2 { grid-template-columns: repeat(2, 1fr); }
    
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .cred-cards { grid-template-columns: 1fr; }
    .rep-list { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    
    .cta-box { flex-direction: column; text-align: center; }
    
    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
    
    .ceo-section { grid-template-columns: 1fr; }
    .ceo-image { max-width: 250px; margin: 0 auto; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .analysis-grid { grid-template-columns: 1fr; }
    .advisory-grid { grid-template-columns: 1fr; }
    .process-wrapper { flex-direction: column; align-items: center; }
    .process-line { width: 1px; height: 30px; margin: 0; background: linear-gradient(180deg, var(--gold), transparent); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* 네비게이션 모바일 */
    .main-nav .container { height: 60px; }
    .nav-logo { font-size: 0.85rem; gap: 8px; }
    .nav-logo-img { height: 26px; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 99999;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .mobile-menu-btn { display: flex; z-index: 100000; position: relative; }
    .lang-dropdown-wrap { display: none; }
    
    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        max-width: 280px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu li:last-child { border-bottom: none; }

    /* 모바일 언어 선택 버튼 */
    .mobile-lang-item {
        margin-top: 12px !important;
        border-top: 1px solid rgba(212, 176, 106, 0.2) !important;
        border-bottom: none !important;
        padding-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #mobileLangBtn {
        background: transparent;
        border: 1px solid rgba(212, 176, 106, 0.4);
        color: var(--gold);
        font-size: 0.95rem;
        padding: 10px 28px;
        border-radius: 6px;
        cursor: pointer;
        letter-spacing: 0.08em;
        font-family: inherit;
    }
    .mobile-lang-dropdown {
        display: none;
        margin-top: 10px;
        text-align: center;
    }
    .mobile-lang-dropdown button {
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        color: #999;
        font-size: 0.9rem;
        padding: 10px 28px;
        cursor: pointer;
        font-family: inherit;
        letter-spacing: 0.06em;
        transition: color 0.2s;
    }
    .mobile-lang-dropdown button:hover { color: var(--gold); }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        color: #ccc !important;
        padding: 20px 16px;
        letter-spacing: 0.15em;
        font-weight: 400;
        transition: color 0.2s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--gold) !important;
    }

    /* 히어로 모바일 */
    .hero-section { padding: 90px 16px 40px; min-height: auto; }
    .hero-badge { font-size: 0.68rem; padding: 6px 14px; margin-bottom: 28px; }
    .hero-logo { margin-bottom: 24px; }
    .hero-logo img { height: 56px; }
    .hero-title { margin-bottom: 16px; }
    .hero-title span { font-size: 1.7rem; line-height: 1.35; }
    .hero-desc { font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 32px; }
    
    .hero-stats { 
        gap: 0; 
        flex-wrap: nowrap;
        justify-content: center;
        margin-bottom: 32px;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .stat { flex: 1; min-width: 0; padding: 0 6px; }
    .stat-num { font-size: 1.4rem; white-space: nowrap; }
    .stat-num small { font-size: 0.85rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0.04em; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .stat-line { height: 24px; margin: 0 2px; flex-shrink: 0; }
    
    .hero-btns { 
        flex-direction: column; 
        align-items: stretch;
        padding: 0 16px;
        gap: 10px;
    }
    .btn-gold, .hero-btns .btn-outline { 
        width: 100%; 
        max-width: none;
        justify-content: center; 
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .hero-keywords {
        gap: 8px;
        margin-top: 24px;
        padding: 0 8px;
    }
    .hero-keywords span {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    /* 섹션 공통 모바일 */
    .expertise { padding: 64px 16px; }
    .why-us { padding: 64px 16px; }
    .credentials { padding: 64px 16px; }
    .final-cta { padding: 64px 16px; }
    .content-section { padding: 64px 16px; }
    .cta-section { padding: 64px 16px; }
    .page-header { padding: 110px 16px 50px; }
    
    .section-head { margin-bottom: 36px; }
    .section-head h2 { font-size: 1.5rem; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.9rem; margin-top: 14px; }
    .page-header h1 { font-size: 1.6rem; margin-bottom: 12px; }
    .page-header p { font-size: 0.9rem; }
    
    /* 전문 분야 카드 모바일 */
    .expertise-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .expertise-grid.expertise-grid-3x2 { grid-template-columns: 1fr 1fr; gap: 12px; }
    .exp-card { padding: 14px; gap: 8px; }
    .exp-card.exp-card-v2 { padding: 22px 16px; }
    .exp-card.exp-card-v2 .exp-icon { width: 40px; height: 40px; margin-bottom: 16px; }
    .exp-card.exp-card-v2 .exp-text h4 { font-size: 0.82rem; margin-bottom: 12px; white-space: normal; }
    .exp-icon { width: 24px; height: 24px; }
    .exp-text h4 { font-size: 0.82rem; white-space: normal; }
    .exp-text p { font-size: 0.7rem; }
    .exp-list li { font-size: 0.78rem; padding-left: 12px; line-height: 1.5; }
    .exp-list { gap: 6px; }
    .service-link { font-size: 0.75rem; margin-top: 12px; }
    
    /* 왜 에이원인가 모바일 */
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-item { padding: 24px 20px; }
    .why-item.why-item-v2 { padding: 28px 22px; }
    .why-num { font-size: 2rem; margin-bottom: 16px; }
    .why-item h4 { font-size: 1rem; margin-bottom: 10px; }
    .why-item p { font-size: 0.88rem; line-height: 1.7; }
    
    /* 인증 모바일 */
    .cred-card { padding: 28px 20px; }
    .cred-card h3 { font-size: 1.15rem; }
    .rep-history { padding: 28px 20px; }
    .rep-history h4 { font-size: 1rem; margin-bottom: 20px; }
    .rep-item { padding: 14px; }
    .rep-org { font-size: 0.78rem; }
    .rep-role { font-size: 0.88rem; }
    
    /* CTA 모바일 */
    .cta-box { gap: 28px; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-text p { font-size: 0.9rem; }
    .cta-btns { width: 100%; }
    .cta-phone { width: 100%; justify-content: center; }
    .cta-mobile { width: 100%; justify-content: center; }
    .cta-btn { width: 100%; }
    .cta-content h2 { font-size: 1.4rem; }
    .cta-content p { font-size: 0.9rem; margin-bottom: 28px; }
    .cta-buttons { flex-direction: column; align-items: stretch; padding: 0 16px; }
    .btn-large { padding: 14px 24px; font-size: 0.92rem; }
    
    /* 서비스 페이지 모바일 */
    .service-detail-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .service-detail-icon { width: 36px; height: 36px; }
    .service-detail-content h3 { font-size: 1.05rem; }
    .service-detail-content > p { font-size: 0.88rem; margin-bottom: 14px; }
    .service-detail-content li { font-size: 0.78rem; padding: 6px 10px; }
    .advisory-item { padding: 22px 18px; gap: 16px; }
    .advisory-icon { width: 42px; height: 42px; }
    .advisory-item span { font-size: 0.92rem; }
    .analysis-card { padding: 28px 22px; }
    .analysis-card h3 { font-size: 1rem; }
    .analysis-card p { font-size: 0.88rem; }
    .analysis-icon { width: 44px; height: 44px; }
    .process-item { padding: 20px 12px; }
    .process-number { width: 40px; height: 40px; font-size: 0.78rem; margin-bottom: 14px; }
    .process-item h4 { font-size: 0.92rem; margin-bottom: 6px; }
    .process-item p { font-size: 0.82rem; }
    .process-line { height: 20px; }
    
    /* About 페이지 모바일 */
    .about-intro { max-width: 100%; padding: 0 4px; }
    .about-intro .label { font-size: 0.72rem; letter-spacing: 0.25em; margin-bottom: 12px; }
    .about-intro h2 { font-size: 1.4rem; margin-bottom: 18px; line-height: 1.45; }
    .about-intro p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }
    .ceo-section { gap: 28px; }
    .ceo-image { max-width: 180px; }
    .ceo-info h3 { font-size: 1.15rem; }
    .ceo-info .position { font-size: 0.88rem; margin-bottom: 16px; }
    .ceo-info .description { font-size: 0.88rem; line-height: 1.8; margin-bottom: 18px; }
    .ceo-qualifications span { font-size: 0.72rem; padding: 6px 10px; }
    .philosophy-card { padding: 28px 22px; }
    .philosophy-card h3 { font-size: 1rem; }
    .philosophy-card p { font-size: 0.88rem; }
    
    /* Contact 페이지 모바일 */
    .contact-info-card { padding: 24px 20px; }
    .contact-form { padding: 24px 20px; }
    .contact-info-card h3 { font-size: 1rem; }
    .contact-form h3 { font-size: 1rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; } /* 모바일 iOS 줌 방지 */
    
    /* 서비스 그리드 모바일 */
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* 푸터 모바일 */
    .footer-content { grid-template-columns: 1fr; gap: 28px; }
    .main-footer { padding: 40px 16px 24px; }
    .footer-logo { margin-bottom: 12px; }
    .footer-description { font-size: 0.82rem; }
    .footer-content h4 { font-size: 0.72rem; margin-bottom: 14px; }
    .footer-contact li { font-size: 0.82rem; }
    .footer-links a { font-size: 0.85rem; }
    .footer-certifications li { font-size: 0.78rem; }
    .footer-bottom p { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-title span { font-size: 1.45rem; }
    .hero-desc { font-size: 0.78rem; }
    .hero-stats { 
        flex-direction: column; 
        align-items: center; 
        gap: 12px; 
        max-width: none; 
    }
    .stat { 
        display: flex; 
        align-items: baseline; 
        gap: 8px; 
    }
    .stat-num { font-size: 1.5rem; }
    .stat-num small { font-size: 0.9rem; }
    .stat-label { font-size: 0.72rem; color: #aaa; }
    .stat-line { display: none; }
    
    .expertise-grid { grid-template-columns: 1fr; gap: 10px; }
    .expertise-grid.expertise-grid-3x2 { grid-template-columns: 1fr; gap: 10px; }
    .exp-card { padding: 16px 14px; }
    .exp-card.exp-card-v2 { padding: 24px 18px; }
    .exp-card.exp-card-v2 .exp-text h4 { font-size: 0.88rem; }
    
    .hero-keywords {
        gap: 6px;
        margin-top: 20px;
        padding: 0 4px;
    }
    .hero-keywords span {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .why-item h4 { white-space: normal; }
    
    .section-head h2 { font-size: 1.3rem; }
    .section-title { font-size: 1.3rem; }
    .page-header h1 { font-size: 1.35rem; }
    
    .cta-text h2 { font-size: 1.25rem; }
    .cta-content h2 { font-size: 1.2rem; }
    
    .ceo-qualifications { gap: 6px; }
    .ceo-qualifications span { font-size: 0.68rem; padding: 5px 8px; }
}
