/* BrandCare 메인 스타일 - Material Design 기반 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1976d2;
    --primary-dark: #1565c0;
    --primary-light: #e3f2fd;
    --secondary-color: #424242;
    --success-color: #4caf50;
    --error-color: #f44336;
    --background: #fafafa;
    --surface: #ffffff;
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-tertiary: #9e9e9e;
    --divider: #e0e0e0;
    --shadow-1: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-2: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-3: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(25, 118, 210, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(25, 118, 210, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 헤더 및 네비게이션 */
.header {
    background: var(--surface);
    box-shadow: var(--shadow-1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 60px;
    max-width: 300px;
    object-fit: contain;
    transition: opacity 0.3s;
}

.nav-brand .logo:hover {
    opacity: 0.8;
}

.nav-brand .logo-link {
    text-decoration: none;
}

.nav-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s;
}

.nav-brand .logo-link:hover .logo-text {
    color: var(--primary-dark);
}

.nav-brand .site-name-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-left: 0.75rem;
    letter-spacing: -0.02em;
    transition: color 0.3s;
    display: none;
}

.nav-brand .logo-link:hover .site-name-text {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    letter-spacing: -0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* 메인 콘텐츠 */
.main-content {
    min-height: calc(100vh - 200px);
}

/* 히어로 섹션 - Premium Version */
.hero-premium {
    background: linear-gradient(135deg, #1a237e 0%, #283593 30%, #3949ab 60%, #5c6bc0 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    filter: blur(4px) grayscale(20%);
    pointer-events: none;
}

.hero-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 35, 126, 0.88) 0%, rgba(40, 53, 147, 0.85) 50%, rgba(92, 107, 192, 0.82) 100%),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-title-accent {
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-lead {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #ffffff;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-bottom: 48px;
    font-weight: 400;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.hero-lead strong {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.trust-label {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-cta-premium {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legacy Hero (for backward compatibility) */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.125rem;
    margin: 1.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* 버튼 */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-2);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #323232;
    box-shadow: var(--shadow-2);
}

.btn-danger {
    background: var(--error-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* 카드 공통 */
.content-card {
    background: var(--surface);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}

.content-card h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-card p {
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 400;
}

.content-card .section-header-premium p,
.content-card .section-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.content-card.highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 30%, #3949ab 60%, #5c6bc0 100%);
    padding: 4rem 0 3.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    filter: blur(4px) grayscale(20%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 35, 126, 0.88) 0%, rgba(40, 53, 147, 0.85) 50%, rgba(92, 107, 192, 0.82) 100%),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.25rem;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideInDown 0.7s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-subtitle {
    color: #ffffff !important;
    font-size: 1.375rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        0 6px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: slideInDown 0.7s ease-out 0.1s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1 !important;
}

/* Feature 섹션 */
.features {
    padding: 4rem 0;
    background: var(--surface);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--divider), transparent);
}

.experts-section,
.testimonials-section {
    background: var(--surface);
    position: relative;
}

.experts-section::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--divider), transparent);
}

.why-us {
    background: var(--background);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

/* feature-icon 제거됨 - feature-icon-wrapper로 대체 */

/* 상품 그리드 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--divider);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* 모달 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--surface);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-3);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-primary);
}

#modalProductContent img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* 폼 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--divider);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* 알림 */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid var(--success-color);
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid var(--error-color);
}

/* 테이블 */
.inquiry-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.inquiry-table th,
.inquiry-table td,
.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--divider);
}

.inquiry-table th,
.admin-table th {
    background: var(--background);
    font-weight: 600;
}

.inquiry-link {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inquiry-link:hover {
    color: var(--primary-color);
}

.lock-icon {
    color: var(--text-secondary);
    font-size: 1rem;
}

.table-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

/* 배지 */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-secondary {
    background: #f5f5f5;
    color: var(--text-secondary);
}

.secret-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: #fff3e0;
    color: #e65100;
    border-radius: 12px;
    font-size: 0.875rem;
}

/* 빈 상태 */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-state .material-icons {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* 소개 / 프로세스 */
.about-content {
    padding: 2rem 0;
}

.channel-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.channel-item {
    padding: 1.5rem;
    background: var(--background);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.channel-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* 공지사항 */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.notice-item {
    border-bottom: 1px solid var(--divider);
    padding-bottom: 0;
}

.notice-link {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.notice-link:hover {
    color: var(--primary-color);
}

.notice-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* 관리자 페이지 공통 */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-3);
}

.login-card h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-body {
    background: var(--background);
}

.admin-header {
    background: var(--surface);
    box-shadow: var(--shadow-1);
    margin-bottom: 2rem;
}

.admin-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header-actions {
    display: flex;
    gap: 1rem;
}

.admin-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--divider);
}

.admin-nav a {
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.admin-nav a.active,
.admin-nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.admin-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 4rem;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.admin-page-header > div {
    flex: 1;
}

.admin-page-header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.admin-page-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.admin-menu-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-1);
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
}

.admin-menu-card .material-icons {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 푸터 */
.footer {
    background: var(--surface);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 4rem;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

/* 반응형 */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-brand .site-name-text {
        display: inline-block;
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-left: 0.625rem;
        letter-spacing: -0.02em;
    }

    .nav-brand .logo {
        height: 48px;
        max-width: 200px;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.open {
        max-height: 300px;
    }

    .nav-menu li {
        border-top: 1px solid var(--divider);
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 새로 추가된 섹션 스타일 */

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    line-height: 1.7;
}

.page-header .page-subtitle {
    text-align: center;
    color: #ffffff !important;
    font-size: 1.375rem;
    margin-top: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.7;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    font-weight: 500;
}

/* Why Us 섹션 */
.why-us {
    padding: 4rem 0;
    background: var(--surface);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    padding: 2rem;
    background: var(--background);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

/* CTA 섹션 */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 200px;
}

/* 리스트 스타일 */
.principle-list,
.promise-list,
.package-includes {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.principle-list li,
.promise-list li,
.package-includes li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
}

.principle-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0.75rem;
}

.promise-list li::before,
.package-includes li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 1rem;
}

/* 채널 아이콘 */
.channel-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.channel-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.channel-item p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* 상품 페이지 */
.products-intro {
    margin: 3rem 0 2rem;
}

.products-intro h2 {
    margin-bottom: 0.75rem;
}

.products-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-badge {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* 새로 추가된 비주얼 요소 스타일 */
.hero-visual {
    margin-bottom: 2rem;
}

.hero-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-icon-wrapper .material-icons {
    font-size: 4rem;
    color: white;
}

.feature-image {
    margin-bottom: 1rem;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2);
}

.feature-icon-wrapper .material-icons {
    font-size: 2.5rem;
    color: white;
}

.why-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.cta-visual {
    margin-bottom: 2rem;
}

.cta-visual .material-icons {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.page-header-visual {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    animation: slideInDown 0.7s ease-out 0.05s both;
}

.page-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header-icon:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.3);
}

.page-header-icon .material-icons {
    font-size: 3rem;
    color: #ffffff !important;
    text-shadow: 
        0 2px 6px rgba(0,0,0,0.3),
        0 4px 12px rgba(0,0,0,0.2);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* 기업 로고/이미지 그리드 */
.page-header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    animation: slideInDown 0.7s ease-out 0.15s both;
}

@media (max-width: 768px) {
    .page-header-logos {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 0.5rem;
    }
}

.page-header-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.page-header-logo-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.page-header-logo-item img {
    max-height: 28px;
    max-width: 90px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.25s ease;
}

.page-header-logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.page-header-logo-item .logo-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.4),
        0 4px 8px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.page-header .material-icons,
.page-header-logo-item .material-icons,
.page-header-icon .material-icons {
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.4),
        0 4px 8px rgba(0,0,0,0.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.content-card.with-image {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.card-image {
    flex-shrink: 0;
}

.card-image-wrapper {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2);
}

.card-image-wrapper .material-icons {
    font-size: 4rem;
    color: white;
}

.card-content {
    flex: 1;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon .material-icons {
    font-size: 1.5rem;
    color: white;
}

.channel-visual {
    margin-bottom: 1rem;
}

.channel-visual .channel-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.channel-visual .channel-icon .material-icons {
    font-size: 2.5rem;
    color: white;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.step-icon .material-icons {
    font-size: 1.5rem;
    color: white;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--divider);
}

.form-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon .material-icons {
    font-size: 1.5rem;
    color: white;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.info-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-content ul {
    list-style: none;
    padding-left: 0;
}

.info-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
}

.alert .material-icons {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.table-responsive {
    overflow-x: auto;
}

.text-center {
    text-align: center;
}

.notice-visual {
    flex-shrink: 0;
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.notice-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--divider);
    transition: all 0.3s ease;
    background: var(--surface);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.notice-item:hover {
    background: var(--background);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.notice-item:last-child {
    border-bottom: 1px solid var(--divider);
    margin-bottom: 0;
}

.notice-content {
    flex: 1;
    min-width: 0;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.notice-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.notice-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.notice-date .material-icons {
    font-size: 1rem;
}

.notice-preview {
    color: var(--text-secondary);
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 0.9375rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.empty-icon {
    margin-bottom: 1rem;
}

.empty-icon .material-icons {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.btn .material-icons {
    vertical-align: middle;
    margin-right: 0.25rem;
    font-size: 1.125rem;
}

/* 모바일 반응형 개선 */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brand-intro-content {
        flex-direction: column;
    }
    
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-categories {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
    
    .content-card.with-image {
        flex-direction: column;
    }
    
    .card-image-wrapper {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.open {
        max-height: 300px;
    }

    .nav-menu li {
        border-top: 1px solid var(--divider);
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    /* 모바일에서 섹션 간격 줄이기 */
    .features,
    .experts-section,
    .testimonials-section,
    .why-us,
    .brand-intro-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1rem 0 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-card h2 {
        font-size: 1.5rem;
    }

    .content-card h3 {
        font-size: 1.25rem;
    }

    .content-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
    }

    .feature-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .hero-icon-wrapper .material-icons {
        font-size: 3rem;
    }
    
    .feature-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .channel-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .notice-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1rem;
        margin-bottom: 0.875rem;
    }
    
    .notice-visual {
        align-self: center;
    }
    
    .notice-icon {
        width: 50px;
        height: 50px;
    }
    
    .notice-icon .material-icons {
        font-size: 1.75rem;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.875rem;
    }
    
    .notice-header h3 {
        font-size: 1.125rem;
        line-height: 1.5;
        width: 100%;
    }
    
    .notice-date {
        align-self: flex-start;
        font-size: 0.8125rem;
    }
    
    .notice-preview {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-top: 0.5rem;
        margin-bottom: 0.75rem;
        -webkit-line-clamp: 3;
    }
    
    .notice-read-more {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
    }
    
    .notice-detail-header h2 {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    
    .notice-detail-section .notice-content {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
        line-height: 1.85;
    }

    .expert-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .expert-info p,
    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .brand-intro-content {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-stats {
        gap: 1rem;
    }

    .brand-stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .package-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* 작은 모바일에서 더 간결하게 */
    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin: 0.75rem 0 1.25rem;
    }

    .features,
    .experts-section,
    .testimonials-section,
    .why-us,
    .brand-intro-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .content-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .content-card h2 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .content-card h3 {
        font-size: 1.125rem;
    }

    .content-card p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .hero-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .hero-icon-wrapper .material-icons {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 3rem 0 2.5rem;
        margin-bottom: 2rem;
        min-height: 260px;
    }

    .page-header h1 {
        font-size: 2.25rem;
        color: #ffffff;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.5),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
    
    .page-subtitle {
        font-size: 1rem;
        color: #ffffff !important;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.5);
        opacity: 1 !important;
        font-weight: 500;
        word-break: keep-all;
        overflow-wrap: break-word;
        word-wrap: break-word;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .page-header-icon {
        width: 80px;
        height: 80px;
    }
    
    .page-header-icon .material-icons {
        font-size: 2.5rem;
        color: #ffffff !important;
    }
    
    .page-header-logos {
        gap: 0.375rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .page-header-logos::-webkit-scrollbar {
        display: none;
    }
    
    .page-header-logo-item {
        padding: 0.5rem 0.625rem;
        flex-shrink: 0;
        min-width: auto;
    }
    
    .page-header-logo-item img {
        max-height: 18px;
        max-width: 45px;
    }
    
    .page-header-logo-item .logo-text {
        font-size: 0.6875rem;
        white-space: nowrap;
    }
    
    .page-header-logo-item .material-icons {
        font-size: 1rem !important;
        margin-right: 0.25rem !important;
        color: #ffffff !important;
    }
    
    .card-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .card-image-wrapper .material-icons {
        font-size: 3rem;
    }
    
    .cta-card h2 {
        font-size: 1.75rem;
    }

    .cta-card p {
        font-size: 1rem;
    }
    
    .inquiry-table {
        font-size: 0.8125rem;
    }
    
    .inquiry-table th,
    .inquiry-table td {
        padding: 0.625rem 0.5rem;
    }

    .expert-card,
    .testimonial-card {
        margin-bottom: 1.25rem;
    }

    .expert-info h3,
    .testimonial-author strong {
        font-size: 1.125rem;
    }

    .expert-info p,
    .testimonial-text {
        font-size: 0.875rem;
    }

    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .brand-stat-item {
        padding: 0.875rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .package-benefits-grid {
        gap: 1.25rem;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .benefit-item h3 {
        font-size: 1.0625rem;
    }

    .benefit-item p {
        font-size: 0.8125rem;
    }

    .process-steps {
        gap: 1.25rem;
    }

    .step h3 {
        font-size: 1.0625rem;
    }

    .step p {
        font-size: 0.875rem;
    }
}

/* 상세 페이지 스타일 */
.inquiry-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.inquiry-meta,
.notice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--background);
    border-radius: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.meta-item .material-icons {
    font-size: 1.125rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.inquiry-content {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 8px;
    line-height: 1.8;
    white-space: pre-wrap;
}

.notice-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--divider);
}

.notice-detail-header h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.notice-detail-section .notice-content {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background);
    border-radius: 12px;
    line-height: 1.9;
    font-size: 1.0625rem;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-break: keep-all;
    overflow-wrap: break-word;
    letter-spacing: -0.01em;
}

.notice-detail-section .notice-content p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.notice-detail-section .notice-content p:last-child {
    margin-bottom: 0;
}

.password-form {
    margin-top: 1.5rem;
}

/* 브랜드 소개 섹션 */
.brand-intro-section {
    padding: 4rem 0;
    background: var(--surface);
}

.brand-intro-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.brand-intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-3);
}

.brand-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-intro-text {
    flex: 1;
}

.brand-intro-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
}

.brand-intro-text p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 8px;
    box-shadow: var(--shadow-1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* 패키지 혜택 그리드 */
.package-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

.products-intro-card {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: var(--background);
    border-radius: 12px;
}

.package-guide {
    margin-top: 2rem;
}

.guide-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--background);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.guide-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.guide-item p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.cta-card-inline {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    margin-top: 3rem;
}

.cta-card-inline .section-header,
.cta-card-inline h2,
.cta-card-inline p {
    color: white;
}

.cta-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.cta-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.cta-text {
    flex: 1;
}

.cta-button {
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* FAQ 스타일 */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question .material-icons {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.faq-answer {
    padding-left: 3rem;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 공지사항 카테고리 */
.notice-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--divider);
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--surface);
}

.category-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon .material-icons {
    font-size: 1.5rem;
    color: white;
}

.category-content {
    flex: 1;
    min-width: 0;
}

.category-content h3 {
    margin-bottom: 0.625rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.category-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
    margin: 0;
}

.notice-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    transition: gap 0.2s ease;
}

.notice-link:hover .notice-read-more {
    gap: 0.75rem;
}

.notice-read-more .material-icons {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.notice-link:hover .notice-read-more .material-icons {
    transform: translateX(4px);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 모바일 반응형 추가 */
@media (max-width: 1024px) {
    .brand-intro-content {
        flex-direction: column;
    }
    
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-item {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
    }
    
    .category-icon .material-icons {
        font-size: 1.375rem;
    }
    
    .category-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-content p {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    
    .notice-meta {
        padding: 1rem;
        gap: 1rem;
    }
    
    .meta-item {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .faq-answer {
        padding-left: 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .page-header-logos {
        gap: 0.375rem;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .page-header-logo-item {
        padding: 0.375rem 0.5rem;
    }
    
    .page-header-logo-item img {
        max-height: 18px;
        max-width: 45px;
    }
    
    .page-header-logo-item .logo-text {
        font-size: 0.6875rem;
    }
    
    .page-header-logo-item .material-icons {
        font-size: 1rem !important;
        margin-right: 0.25rem !important;
    }
    
    .page-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.75rem;
    }
    
    .page-header h1 {
        font-size: 1.875rem;
        padding: 0 0.75rem;
    }
}

/* 전문가 섹션 스타일 */
.experts-section {
    padding: 4rem 0;
    background: var(--surface);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expert-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

.expert-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--divider);
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
}

.expert-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.expert-image-placeholder .material-icons {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.expert-image-placeholder p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.expert-info {
    padding: 2rem;
}

.expert-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.expert-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.expert-info p {
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 고객 후기 섹션 스타일 */
.testimonials-section {
    padding: 4rem 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--divider);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.testimonial-image-placeholder .material-icons {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.testimonial-image-placeholder p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.testimonial-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-text {
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--divider);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.testimonial-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 8px;
}

.result-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* 전문가 쇼케이스 스타일 (about 페이지) */
.experts-showcase {
    margin-top: 2rem;
}

.expert-showcase-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.expert-showcase-item.reverse {
    flex-direction: row-reverse;
}

.expert-showcase-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background: var(--divider);
}

.expert-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.expert-showcase-item:hover .expert-showcase-image img {
    transform: scale(1.05);
}

.expert-showcase-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-2);
}

.expert-showcase-placeholder .material-icons {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.expert-showcase-placeholder p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.expert-showcase-content {
    flex: 1;
}

.expert-showcase-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.expert-showcase-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.expert-showcase-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.expert-showcase-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.expert-showcase-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0.75rem;
}

/* 성공 사례 스타일 */
.success-cases {
    margin-top: 2rem;
}

.success-case {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--background);
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
    align-items: center;
}

.success-case-image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background: var(--divider);
}

.success-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.success-case:hover .success-case-image img {
    transform: scale(1.05);
}

.success-case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-2);
}

.success-case-placeholder .material-icons {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.success-case-placeholder p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.success-case-content {
    flex: 1;
}

.success-case-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.success-period {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.success-results {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.success-result-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: var(--surface);
    border-radius: 8px;
    box-shadow: var(--shadow-1);
}

.success-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.success-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--success-color);
}

.success-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--divider);
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

/* 모바일 반응형 추가 */
@media (max-width: 1024px) {
    .experts-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expert-showcase-item,
    .expert-showcase-item.reverse {
        flex-direction: column;
    }
    
    .expert-showcase-image {
        width: 100%;
        max-width: 300px;
    }
    
    .success-case {
        flex-direction: column;
    }
    
    .success-case-image {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .experts-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-showcase-item,
    .expert-showcase-item.reverse {
        flex-direction: column;
    }
    
    .expert-showcase-image,
    .success-case-image {
        width: 100%;
    }
    
    .testimonial-results,
    .success-results {
        flex-direction: column;
    }
    
    .result-item,
    .success-result-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .expert-image,
    .testimonial-image {
        height: 180px;
    }
    
    .expert-showcase-image,
    .success-case-image {
        width: 100%;
        height: 200px;
    }
    
    .expert-image-placeholder .material-icons,
    .testimonial-image-placeholder .material-icons {
        font-size: 3rem;
    }
    
    .expert-showcase-placeholder,
    .success-case-placeholder {
        height: 200px;
    }
    
    .expert-showcase-placeholder .material-icons,
    .success-case-placeholder .material-icons {
        font-size: 3rem;
    }
}

/* ============================================
   PREMIUM STYLES - Global Agency Level Design
   ============================================ */

:root {
    --primary-light: #e3f2fd;
    --text-tertiary: #9e9e9e;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Premium Buttons */
.btn-primary-premium {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f5f5f5;
}

.btn-secondary-premium {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-secondary-premium:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-link-premium {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.btn-link-premium:hover {
    opacity: 1;
}

/* Section Headers Premium */
.section-header-premium {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Problems Section */
.problems-section {
    padding: 100px 0;
    background: var(--surface);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: #ffebee;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon .material-icons {
    font-size: 24px;
    color: var(--error-color);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Differentiators Section */
.differentiators-section {
    padding: 100px 0;
    background: var(--background);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.differentiator-card {
    padding: 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.differentiator-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.differentiator-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.4;
}

.differentiator-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 1rem;
}

.differentiator-list {
    list-style: none;
    padding: 0;
}

.differentiator-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.differentiator-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon .material-icons {
    font-size: 32px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Process Section Premium */
.process-section-premium {
    padding: 100px 0;
    background: var(--background);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step-premium {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.process-step-premium:last-child {
    margin-bottom: 0;
}

.step-number-premium {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.4;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

.step-deliverables {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.deliverable {
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: var(--surface);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.result-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.result-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider);
}

.result-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.result-period {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.result-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    font-style: italic;
}

.result-channels {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.channel-tag {
    padding: 4px 12px;
    background: var(--background);
    color: var(--text-secondary);
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Testimonials Section Premium */
.testimonials-section-premium {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card-premium {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote-icon .material-icons {
    font-size: 24px;
    color: var(--primary-color);
}

.testimonial-text-premium {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.testimonial-author-premium {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--divider);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.testimonial-results-premium {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-badge {
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* CTA Section Premium */
.cta-section-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-premium {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.3;
}

.cta-description-premium {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.cta-benefit-item .material-icons {
    font-size: 20px;
}

.cta-actions-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--divider);
}

.company-stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.principle-item {
    padding: 24px;
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
}

.principle-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.principle-icon .material-icons {
    font-size: 24px;
    color: var(--primary-color);
}

.principle-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.principle-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Promise Grid */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.promise-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.promise-item .material-icons {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.promise-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.promise-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Package Guide */
.package-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.guide-item {
    padding: 24px;
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
}

.guide-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.guide-item p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* CTA Card Inline */
.cta-card-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-card-inline .cta-text h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card-inline .cta-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex: 1;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon .material-icons {
    font-size: 32px;
    color: var(--primary-color);
}

.cta-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.cta-button {
    flex-shrink: 0;
}

/* Premium Responsive */
@media (max-width: 1024px) {
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .package-guide {
        grid-template-columns: 1fr;
    }
    
    .cta-card-inline {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-title-premium {
        font-size: 2.75rem;
    }
    
    .hero-trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .problems-grid,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid,
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 80px 0 60px;
    }
    
    .hero-title-premium {
        font-size: 2.25rem;
        color: #ffffff !important;
    }
    
    .hero-lead {
        font-size: 1.125rem;
        color: #ffffff !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .trust-number {
        color: #ffffff !important;
    }
    
    .trust-label {
        color: #ffffff !important;
    }
    
    .section-title-premium {
        font-size: 2rem;
        line-height: 1.4;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .hero-trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 0;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step-premium {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number-premium {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .cta-title-premium {
        font-size: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-premium {
        padding: 60px 0 40px;
    }
    
    .hero-title-premium {
        font-size: 1.875rem;
        color: #ffffff !important;
    }
    
    .hero-lead {
        font-size: 1rem;
        color: #ffffff !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .trust-number {
        color: #ffffff !important;
    }
    
    .trust-label {
        color: #ffffff !important;
    }
    
    .section-title-premium {
        font-size: 1.75rem;
        line-height: 1.4;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .hero-trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-premium {
        flex-direction: column;
    }
    
    .btn-primary-premium,
    .btn-secondary-premium {
        width: 100%;
        justify-content: center;
    }
    
    .problems-section,
    .differentiators-section,
    .services-section,
    .process-section-premium,
    .results-section,
    .testimonials-section-premium,
    .cta-section-premium {
        padding: 60px 0;
    }
    
    .problem-card,
    .differentiator-card,
    .service-card,
    .result-card,
    .testimonial-card-premium {
        padding: 24px;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .package-guide {
        grid-template-columns: 1fr;
    }
    
    .cta-card-inline {
        flex-direction: column;
        padding: 24px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .cta-button .btn {
        width: 100%;
    }
}


