/* ===================================
   HRX LLC Website - Main Stylesheet (Sample B - 화이트 배경)
   디렉터230 경영총괄수석비서관 제작
   =================================== */

/* ===================================
   CSS Variables (Design Tokens)
   =================================== */
:root {
    /* Colors - Primary (Deep Green) */
    --primary: #065f46;
    --primary-hover: #047857;
    --primary-light: #d1fae5;
    
    /* Colors - Secondary (Navy Blue) */
    --secondary: #1a365d;
    --secondary-hover: #2c5282;
    --secondary-light: #e6f3ff;
    
    /* Colors - Accent (Amber) */
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fef3c7;
    
    /* Colors - Neutral */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Colors */
    --text-primary: #1a202c;
    --text-secondary: #2d3748;
    --text-muted: #4b5563;
    
    /* Typography */
    --font-korean: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-english: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    
    /* Font Weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Spacing */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-korean);
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
}

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

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

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav__logo a {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary);
    font-family: var(--font-english);
}

.nav__menu {
    display: flex;
    gap: var(--space-8);
    list-style: none;
}

.nav__link {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.nav__link:hover {
    color: var(--primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

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

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn--outline-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn--secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.btn-cta:hover {
    background-color: var(--primary-hover);
}

/* ===================================
   Main & Sections
   =================================== */
.main {
    margin-top: 80px;
}

.section {
    padding: var(--space-24) 0;
}

.section--gray {
    background-color: var(--gray-50);
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section__title {
    font-size: var(--text-5xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.section__description {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

/* ===================================
   Hero Section - Sample B (화이트 배경)
   =================================== */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-24) 0;
}

.hero--white {
    background-color: var(--white);
}

.hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-size: 2rem;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.hero__title--green {
    color: var(--primary);
}

.hero__subtitle {
    font-size: var(--text-3xl);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-4);
}

.hero__subtitle--blue {
    color: var(--secondary);
}

.hero__tagline {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-12);
    font-family: var(--font-english);
}

.hero__tagline--muted {
    color: var(--text-muted);
}

.hero__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Cards
   =================================== */
.card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.card__icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.card__title {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.card__description {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

/* ===================================
   Grid Layouts
   =================================== */
.grid {
    display: grid;
    gap: var(--space-8);
}

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

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

/* ===================================
   About Section
   =================================== */
.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__title {
    font-size: var(--text-4xl);
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.about__text {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card__badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.service-card__badge--vision {
    background-color: var(--primary-light);
    color: var(--primary);
}

.service-card__badge--com {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.service-card__badge--admin {
    background-color: var(--accent-light);
    color: var(--accent-hover);
}

.service-card__title {
    font-size: var(--text-3xl);
    color: var(--primary);
    font-family: var(--font-english);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
}

.service-card__subtitle {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.service-card__description {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.service-card__teams {
    list-style: none;
    text-align: left;
}

.service-card__teams li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.service-card__teams li:last-child {
    border-bottom: none;
}

/* ===================================
   Cases Section
   =================================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.case-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.case-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.case-card__header {
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
}

.case-card__industry {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    opacity: 0.9;
    margin-bottom: var(--space-2);
}

.case-card__title {
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: 0;
}

.case-card__body {
    padding: var(--space-6);
}

.case-card__description {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.case-card__results {
    list-style: none;
}

.case-card__results li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: var(--space-2) 0;
    padding-left: var(--space-4);
    position: relative;
}

.case-card__results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--font-bold);
}

/* ===================================
   Contact Section
   =================================== */
.contact__form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: var(--font-korean);
    transition: var(--transition-base);
}

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

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

.form-submit {
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-8);
}

.footer__brand h3 {
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: var(--space-4);
    font-family: var(--font-english);
}

.footer__brand p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2);
}

.footer__section h4 {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-3);
}

.footer__links a {
    color: var(--gray-300);
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--primary);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-700);
    font-size: var(--text-sm);
    color: var(--gray-400);
}

/* ===================================
   CEO Profile Section
   =================================== */
.ceo-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    align-items: start;
}

.ceo-profile__visual {
    text-align: center;
    position: sticky;
    top: 100px;
}

.ceo-profile__avatar {
    margin-bottom: var(--space-6);
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.avatar-placeholder span {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--white);
    font-family: var(--font-english);
}

.ceo-profile__name h3 {
    font-size: var(--text-3xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.name-english {
    font-size: var(--text-xl);
    color: var(--primary);
    font-family: var(--font-english);
    font-weight: var(--font-semibold);
    display: block;
    margin-top: var(--space-2);
}

.ceo-profile__title {
    font-size: var(--text-base);
    color: var(--secondary);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.ceo-profile__role {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

.ceo-profile__concept {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
}

.ceo-profile__content {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-md);
}

.profile-section {
    margin-bottom: var(--space-12);
}

.profile-section:last-child {
    margin-bottom: 0;
}

.profile-section h4 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--primary);
}

.profile-list {
    list-style: none;
}

.profile-list li {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
    position: relative;
}

.profile-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: var(--text-xl);
}

.profile-list li strong {
    display: block;
    color: var(--text-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.profile-list li p {
    color: var(--text-muted);
    margin-bottom: var(--space-1);
    line-height: var(--leading-relaxed);
}

.profile-list--compact li {
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
}

.profile-list--compact li strong {
    display: inline;
    font-size: var(--text-base);
}

.text-muted {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.credential-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.achievement-card {
    background-color: var(--gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.achievement-card h5 {
    font-size: var(--text-lg);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.achievement-card ul {
    list-style: none;
}

.achievement-card ul li {
    padding-left: var(--space-4);
    position: relative;
    margin-bottom: var(--space-2);
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.achievement-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--font-bold);
}

.profile-download {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 2px solid var(--gray-200);
    text-align: center;
}

/* ===================================
   Center Detail Pages
   =================================== */
.center-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.center-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.center-badge--vision {
    background-color: var(--primary-light);
    color: var(--primary);
}

.center-badge--com {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.center-badge--admin {
    background-color: var(--accent-light);
    color: var(--accent-hover);
}

.center-title {
    font-size: var(--text-5xl);
    color: var(--primary);
    font-family: var(--font-english);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
}

.center-subtitle {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.center-description {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

.teams-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.team-detail-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
}

.team-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.team-detail-card__header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: var(--space-8);
}

.team-detail-card__header--com {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
}

.team-detail-card__header--admin {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.team-detail-card__header h3 {
    font-size: var(--text-3xl);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.team-tagline {
    font-size: var(--text-lg);
    opacity: 0.95;
    margin: 0;
}

.team-detail-card__body {
    padding: var(--space-12);
}

.team-section {
    margin-bottom: var(--space-12);
}

.team-section:last-child {
    margin-bottom: 0;
}

.team-section h4 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.team-section p {
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

.team-section strong {
    color: var(--text-primary);
}

.team-section--highlight {
    background-color: var(--gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.work-list {
    list-style: none;
}

.work-list li {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
    position: relative;
}

.work-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: var(--text-2xl);
    line-height: 1;
}

.work-list li strong {
    display: block;
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.work-list li p {
    color: var(--text-muted);
    font-size: var(--text-base);
    margin: 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.method-card {
    background-color: var(--gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-base);
}

.method-card:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.method-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: var(--font-bold);
    font-family: var(--font-english);
    margin-bottom: var(--space-4);
}

.method-card h5 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.method-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.pricing-item strong {
    display: block;
    font-size: var(--text-lg);
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.pricing-item p {
    font-size: var(--text-base);
    color: var(--text-primary);
    margin: 0;
}

.center-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    margin-top: var(--space-16);
}

.center-cta--admin {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.center-cta h3 {
    font-size: var(--text-3xl);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.center-cta > p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.cta-pricing {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.cta-pricing__amount {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--white);
}

.cta-pricing__period {
    font-size: var(--text-xl);
    color: var(--white);
    opacity: 0.8;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-question {
    font-size: var(--text-xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
    font-weight: var(--font-semibold);
}

.faq-answer p {
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: var(--font-semibold);
}

.faq-answer ul {
    list-style: none;
    margin-bottom: var(--space-4);
    margin-left: var(--space-6);
}

.faq-answer ul li {
    padding-left: var(--space-6);
    position: relative;
    margin-bottom: var(--space-3);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet (768px ~ 1023px) */
@media (max-width: 1023px) {
    .services-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .ceo-profile {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .ceo-profile__visual {
        position: static;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile (0 ~ 767px) */
@media (max-width: 767px) {
    /* Typography */
    .section__title {
        font-size: var(--text-4xl);
    }
    
    .hero__title {
        font-size: var(--text-4xl);
    }
    
    .hero__subtitle {
        font-size: var(--text-2xl);
    }
    
    .hero__tagline {
        font-size: var(--text-lg);
    }
    
    /* Spacing */
    .section {
        padding: var(--space-16) 0;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    /* Navigation */
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--space-8);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    /* Grids */
    .services-grid,
    .cases-grid,
    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }
    
    /* Cards */
    .card,
    .service-card,
    .case-card {
        padding: var(--space-6);
    }
    
    /* Hero */
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    /* CEO Profile */
    .avatar-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .avatar-placeholder span {
        font-size: var(--text-4xl);
    }
    
    .ceo-profile__content {
        padding: var(--space-6);
    }
    
    /* Center Details */
    .center-title {
        font-size: var(--text-4xl);
    }
    
    .team-detail-card__body {
        padding: var(--space-6);
    }
    
    .cta-pricing {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    /* FAQ */
    .faq-item {
        padding: var(--space-6);
    }
    
    .faq-question {
        font-size: var(--text-lg);
    }
    
    /* Contact Form */
    .contact__form {
        padding: var(--space-6);
    }
}

/* Extra Small Mobile (0 ~ 374px) */
@media (max-width: 374px) {
    .hero__title {
        font-size: var(--text-3xl);
    }
    
    .section__title {
        font-size: var(--text-3xl);
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

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

.text-secondary {
    color: var(--secondary);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mt-8 {
    margin-top: var(--space-8);
}
/* Page Hero Styles */
.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    text-align: center;
    color: white;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero__description {
    font-size: 1.375rem;
    font-weight: 400;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .page-hero__description {
        font-size: 1.125rem;
    }
}

/* About Card Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.about-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.about-card__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
}

.about-card__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
}

.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 16px;
}

.about-cta p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }
}
