/* style.css는 페이지/섹션 전용 스타일만 유지합니다.
   전역/네비/버튼/푸터/기본 타이포는 variables.css, base.css,
   navbar.css, buttons.css, footer.css에서 관리합니다. */

/* Hero styles are managed in css/hero.css */

.target-item:hover::before {
    transform: scaleX(1);
}

.target-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(26, 26, 46, 0.1);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.target-item:hover .target-icon {
    transform: scale(1.1) rotate(-5deg);
}

.target-icon i {
    font-size: 32px;
    color: var(--white);
}

.target-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.target-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.status-card {
    background: var(--gradient-card);
    padding: 60px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.status-card:hover::before {
    transform: scaleX(1);
}

.status-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.status-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.status-card:hover .status-icon {
    transform: scale(1.1);
}

.status-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.status-icon i {
    font-size: 48px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.status-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.status-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-fill {
    width: 95%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: progressAnimate 2s ease-out;
    position: relative;
}

@keyframes progressAnimate {
    from { width: 0; }
    to { width: 95%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Optimized CTA Section - Compact Design */
.cta-section {
    background: var(--gradient-hero);
    color: #ffffff; /* 명확한 흰색 */
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff; /* 명확한 흰색 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 가독성을 위한 그림자 */
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95); /* 약간 투명한 흰색 */
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* 가독성을 위한 그림자 */
}

.cta-content .btn {
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #ffffff; /* 명확한 흰색 */
    padding: 80px 0 40px;
    position: relative;
}

/* AI Counsel Bot */
.ai-chatbot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
}

.ai-chatbot-fab {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.ai-chatbot-panel {
    width: 340px;
    max-height: 72vh;
    margin-top: 10px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.2);
    overflow: hidden;
}

.ai-chatbot-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px 10px;
    border-bottom: 1px solid var(--border-light);
}

.ai-chatbot-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ai-chatbot-title-group strong {
    color: var(--text-dark);
    font-size: 14px;
}

.ai-chatbot-title-group small {
    color: #64748b;
    font-size: 12px;
}

.ai-chatbot-close {
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
}

.ai-chatbot-messages {
    padding: 12px;
    height: 250px;
    overflow-y: auto;
    background: #f8fafc;
}

.ai-chatbot-message {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.ai-chatbot-message.user {
    margin-left: auto;
    background: #dbeafe;
    color: #1e3a8a;
}

.ai-chatbot-message.bot {
    margin-right: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.ai-chatbot-link {
    display: inline-block;
    margin-top: 6px;
    color: #2563eb;
    font-weight: 600;
}

.ai-chatbot-quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-top: 1px solid var(--border-light);
    background: #fff;
}

.ai-chatbot-chip {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}

.ai-chatbot-input {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px 12px 12px;
    border-top: 1px solid var(--border-light);
    background: #fff;
}

.ai-chatbot-input input {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 13px;
}

.ai-chatbot-input button {
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ai-chatbot {
        right: 12px;
        bottom: 12px;
    }

    .ai-chatbot-panel {
        width: min(92vw, 340px);
        max-height: 68vh;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: #ffffff; /* 명확한 흰색 */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9); /* 더 밝은 색상 */
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-company-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-company-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8); /* 더 밝은 색상 */
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-company-info strong {
    color: #ffffff; /* 명확한 흰색 */
}

.footer-version {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff; /* 명확한 흰색 */
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8); /* 더 밝은 색상 */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-column a:hover {
    color: #ffffff; /* 호버 시 완전한 흰색 */
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7); /* 더 밝은 색상 */
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8); /* 더 밝은 색상 */
}

.footer-legal a:hover {
    color: #ffffff; /* 호버 시 완전한 흰색 */
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8); /* 더 밝은 색상 */
}

.footer-social a:hover {
    color: #ffffff; /* 호버 시 완전한 흰색 */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    list-style: none;
    padding: 15px 0;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-sm);
    margin: 2px 12px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 46, 0.05), transparent);
    transition: left 0.5s;
}

.dropdown-menu a:hover::before {
    left: 100%;
}

.dropdown-menu a:hover {
    background: rgba(26, 26, 46, 0.05);
    color: var(--primary-color);
    transform: translateX(8px);
}

.dropdown-menu a::after {
    display: none;
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 16px 16px;
    z-index: 1002;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu.active .dropdown {
    margin: 8px 0;
}

.nav-menu.active .dropdown > a {
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    background: rgba(26, 26, 46, 0.02);
    margin-bottom: 8px;
}

.nav-menu.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-bg);
    margin: 8px 0 0 0;
    border-radius: var(--border-radius-md);
    padding: 8px 0;
    border: 1px solid var(--border-light);
}

.nav-menu.active .dropdown.active .dropdown-menu {
    display: block;
}

.nav-menu.active .dropdown-menu a {
    padding: 12px 24px;
    margin: 1px 8px;
    font-size: 14px;
}

/* Mobile dropdown toggle */
@media (max-width: 968px) {
    /* Navigation styles */
    .dropdown-menu {
        display: none;
    }
    
    .nav-menu.active .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Ensure mobile menu appears above all content */
    .navbar {
        z-index: 1003;
    }
    
    .nav-menu.active {
        z-index: 1002;
    }
    
    .dropdown-menu {
        z-index: 1001;
    }
    
}

@media (max-width: 640px) {
}

@media (max-width: 480px) {
}
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .target-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-box,
    .solution-box {
        padding: 30px;
    }
    
    .service-card {
        padding: 40px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .box-header h3 {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-box,
    .solution-box {
        padding: 30px;
    }
    
    .service-card {
        padding: 40px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .box-header h3 {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .problem-box,
    .solution-box {
        padding: 24px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .stat-item {
        padding: 16px 20px;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 32px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--highlight-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
    width: 30px;
    text-align: center;
}

.contact-detail-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-detail-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--gradient-card);
    padding: 50px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-text {
    color: var(--text-light);
    line-height: 1.5;
}

/* Office Location Section */
.office-location-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.location-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
    width: 30px;
    text-align: center;
}

.location-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.location-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.address-detail {
    font-size: 14px;
    opacity: 0.8;
}

.map-placeholder {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.map-iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

@media (max-width: 768px) {
    .map-iframe {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .map-iframe {
        height: 280px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 30px;
    background: var(--card-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    font-size: 16px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 24px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* CEO Page Styles */
.ceo-message-section {
    padding: 120px 0;
    background: var(--white);
}

.ceo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.ceo-photo {
    text-align: center;
}

.photo-placeholder {
    width: 250px;
    height: 300px;
    background: var(--light-bg);
    border-radius: var(--border-radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-light);
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.photo-placeholder span {
    color: var(--text-light);
    font-size: 16px;
}

.ceo-info h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* CEO page signature image styling */
.ceo-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.ceo-sign-img {
    max-width: 320px;
    width: 80%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.12));
}

.signature-caption {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
}

.ceo-title {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.ceo-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.credential-item i {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-quote {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.message-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 0;
}

.message-title .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.message-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.message-text p {
    margin-bottom: 24px;
}

.message-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.message-highlight {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.philosophy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.philosophy-list i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.philosophy-list strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.philosophy-list p {
    color: var(--text-light);
    margin: 0;
    font-size: 16px;
}

.message-vision {
/* Design overrides: buttons, navigation, dropdowns, accessibility */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 1.5px solid rgba(15, 52, 96, 0.12);
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(15, 52, 96, 0.06);
    transform: translateY(-1px);
}

/* Navigation refinements */
.nav-menu {
    gap: 20px;
}

.nav-menu > li > a {
    padding: 10px 18px;
    border-radius: 10px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 3px;
    background: transparent;
    border-radius: 3px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    background: var(--accent-color);
    transform: translateY(0);
}

/* Dropdown active state and caret (if present) */
.dropdown.active > a {
    background: rgba(26, 26, 46, 0.04);
}

.dropdown > a:focus-visible,
.nav-menu a:focus-visible,
.btn:focus-visible {
    outline: 3px solid rgba(15, 52, 96, 0.12);
    outline-offset: 3px;
}

/* Mobile: make menu items easier to tap */
@media (max-width: 968px) {
    .nav-menu.active {
        padding: 16px 20px;
    }

    .nav-menu.active a {
        padding: 14px 12px;
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: block;
        background: rgba(255,255,255,0.03);
        border-radius: 10px;
        padding: 8px 10px;
    }

    .mobile-menu-toggle i {
        font-size: 20px;
    }
}

/* Improve dropdown visibility on dark/light backgrounds */
.dropdown-menu {
    background: rgba(255,255,255,0.98);
    color: var(--text-dark);
}

.dropdown-menu a {
    color: var(--text-dark);
}

/* Footer small-screen spacing */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small accessibility tweak: increase default body text contrast slightly */
body {
    color: rgba(26,26,46,0.95);
}

/* Component refinements: card variants and improved buttons */
.card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card,
.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,248,251,0.95));
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.service-card .service-icon-large,
.service-card .service-icon {
    background: var(--gradient-primary);
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
}

/* Subtle animated underline for primary call-to-action */
.btn-primary {
    position: relative;
    overflow: visible;
}

.btn-primary::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -6px;
    height: 4px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    transform: scaleX(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0.6;
}

.btn-primary:hover::after {
    transform: scaleX(1.02);
    opacity: 1;
}
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.vision-card {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon i {
    font-size: 24px;
    color: var(--white);
}

.vision-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.vision-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.message-closing {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0;
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
}

.ceo-signature {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-light);
}

.signature-content {
    max-width: 400px;
    margin: 0 auto;
}

.signature-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.signature-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.signature-name strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
}

.signature-name span {
    font-size: 16px;
    color: var(--text-light);
}

.signature-date {
    font-size: 16px;
    color: var(--text-muted);
}

/* Company Values Section */
.company-values-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.value-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 180px 0 120px;
    background: var(--gradient-hero);
    color: var(--white);
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Responsive Design for Contact and CEO Pages */
@media (max-width: 968px) {
    .contact-form-content,
    .location-content,
    .ceo-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .message-vision {
        grid-template-columns: 1fr;
    }
    
    .ceo-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .message-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .contact-info-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .value-card {
        padding: 40px 30px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .message-title {
        font-size: 28px;
    }
    
    .message-text {
        font-size: 16px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 60px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.effective-date {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.effective-date i {
    font-size: 18px;
}

.privacy-section {
    margin-bottom: 60px;
    padding: 50px;
    background: var(--gradient-card);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.privacy-section h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

/* Legal docs (Terms / Privacy) should keep identical heading rhythm and readability. */
.legal-doc-section .privacy-section h2 {
    line-height: 1.35;
    letter-spacing: -0.01em;
    word-break: keep-all;
}

.legal-doc-section .privacy-section > p,
.legal-doc-section .purpose-item span,
.legal-doc-section .exception-item span,
.legal-doc-section .retention-item li {
    line-height: 1.82;
}

.privacy-section h2 i {
    color: var(--primary-color);
    font-size: 24px;
}

.privacy-section > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.info-box {
    background: rgba(26, 26, 46, 0.03);
    padding: 24px;
    border-radius: var(--border-radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-box p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.purpose-list {
    margin-top: 20px;
}

.purpose-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
}

.purpose-item i {
    color: var(--success-color);
    font-size: 18px;
}

.purpose-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.retention-info {
    margin-top: 24px;
}

.retention-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.retention-item {
    background: var(--light-bg);
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
}

.retention-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.retention-item ul {
    list-style: none;
    padding: 0;
}

.retention-item li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.retention-item li:last-child {
    border-bottom: none;
}

.destruction-method {
    margin: 24px 0;
}

.destruction-method h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.destruction-method p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.destruction-method ul {
    list-style: none;
    padding: 0;
}

.destruction-method li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    padding-left: 24px;
}

.destruction-method li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.exception-list {
    margin-top: 20px;
}

.exception-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
}

.exception-item i {
    color: var(--warning-color);
    font-size: 18px;
}

.exception-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.cookie-info {
    margin: 24px 0;
}

.cookie-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cookie-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cookie-settings {
    background: var(--light-bg);
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    margin-top: 20px;
}

.cookie-settings h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cookie-settings p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.warning-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.1);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-top: 16px;
    border-left: 4px solid var(--warning-color);
}

.warning-note i {
    color: var(--warning-color);
    font-size: 18px;
}

.warning-note span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-manager {
    margin: 24px 0;
}

.contact-manager h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.manager-info {
    background: var(--light-bg);
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
}

.manager-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.manager-item:last-child {
    border-bottom: none;
}

.manager-item strong {
    min-width: 80px;
    font-weight: 700;
    color: var(--text-dark);
}

.manager-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.manager-item a:hover {
    color: var(--highlight-color);
}

.external-contacts {
    margin-top: 32px;
}

.external-contacts h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--highlight-color);
}

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    color: var(--white);
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb i {
    margin-right: 8px;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Privacy Policy Responsive Design */
@media (max-width: 968px) {
    .privacy-section {
        padding: 40px 30px;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .contact-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .privacy-section {
        padding: 30px 20px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 8px;
    }
    
    .effective-date {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 24px 16px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .info-box,
    .cookie-settings,
    .manager-info,
    .retention-item {
        padding: 16px;
    }
}
/* Enhanced Footer Styles */
.footer-company-info {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    font-size: 13px;
    opacity: 0.8;
}

.company-details p,
.contact-details p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.company-details strong,
.contact-details strong {
    color: var(--white);
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 4px 0;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-column a i {
    width: 16px;
    text-align: center;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
}

.footer-legal a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
    margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 968px) {
    .footer-company-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        order: 2;
    }
    
    .copyright {
        order: 1;
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal .separator {
        display: none;
    }
}
/* Button Styles - Missing Core Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    user-select: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff; /* 명확한 흰색 */
    box-shadow: var(--shadow-sm);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 가독성을 위한 그림자 */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #ffffff; /* 호버 시에도 명확한 흰색 유지 */
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff; /* 호버 시 명확한 흰색 */
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: var(--border-radius-lg);
}

.btn i {
    font-size: 16px;
    color: inherit; /* 부모 요소의 색상 상속 */
}

.btn-large i {
    font-size: 18px;
    color: inherit; /* 부모 요소의 색상 상속 */
}

/* Fix for CTA buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

/* Update footer-bottom layout to accommodate social icons */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom .copyright {
    margin: 0;
    font-size: 14px;
    opacity: 0.6;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

/* Responsive adjustments for footer social */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        position: relative;
    }
    
    .footer-bottom .copyright {
        position: static;
        transform: none;
        order: 3;
    }
    
    .footer-legal {
        order: 1;
    }
    
    .footer-social {
        order: 2;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
/* Optimized Main Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .vision-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 35px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .vision-main h3 {
        font-size: 22px;
    }
    
    .vision-subtitle {
        font-size: 14px;
    }
    
    .poetry-line {
        font-size: 16px;
    }
    
    .poetry-line.highlight {
        font-size: 18px;
    }
    
    .vision-tagline-section {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .vision-tagline-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
        max-width: 100%;
    }
    
    .vision-tagline-visual-compact {
        grid-row: 1;
        grid-column: 1;
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .vision-tagline-main-compact {
        font-size: 14px;
        text-align: center;
        grid-column: 1;
        grid-row: 2;
    }
    
    .vision-tagline-brand-compact {
        font-size: 18px;
        text-align: center;
        grid-column: 1;
        grid-row: 3;
    }

    .feature-card {
        padding: 30px 25px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* New Feature Buttons for Vision Section */
.vision-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-card);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 12px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    min-width: 140px;
    justify-content: center;
}

.feature-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature-button i {
    font-size: 18px;
    color: var(--accent-color);
}

.feature-button span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* New Service Cards */
.service-card-new {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-header {
    background: var(--gradient-primary);
    padding: 40px;
    text-align: center;
    position: relative;
}

.service-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Hide empty icon wrappers to fix spacing */
.service-icon-large:empty,
.feature-icon-wrapper:empty {
    display: none;
}

.service-card-header:has(.service-icon-large:empty) {
    padding: 0;
    min-height: 0;
}

.overview-feature-card:has(.feature-icon-wrapper:empty) .feature-icon-wrapper {
    display: none;
}

.service-icon-large.blue {
    background: rgba(79, 172, 254, 0.2);
}

.service-icon-large.green {
    background: rgba(0, 212, 170, 0.2);
}

.service-icon-large.purple {
    background: rgba(147, 51, 234, 0.2);
}

.service-icon-large.orange {
    background: rgba(251, 146, 60, 0.2);
}

.service-icon-large i {
    font-size: 36px;
    color: white;
}

.service-card-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-card-new h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card-new .service-subtitle {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-card-new .service-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Coming Soon Card Styles */
.service-card-coming-soon {
    opacity: 0.85;
    position: relative;
}

.service-card-coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.3) 100%);
    pointer-events: none;
    border-radius: var(--border-radius-xl);
}

.service-badge-coming-soon {
    background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%) !important;
    color: white !important;
}

/* Placeholder Card Styles */
.service-card-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed var(--border-medium);
}

.service-card-placeholder:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

.service-placeholder-content {
    text-align: center;
    padding: 40px 20px;
}

.service-placeholder-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-placeholder-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 14px;
    width: 16px;
}

.feature-item span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .vision-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-button {
        min-width: 200px;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 30px;
        max-width: 500px;
    }
    
    .service-card-new {
        max-width: 100%;
    }
    
    .service-card-header {
        padding: 30px;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 28px;
    }
    
    .service-card-content {
        padding: 30px;
    }
    
    .service-card-new h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .feature-button {
        padding: 10px 20px;
        min-width: 160px;
    }
    
    .feature-button i {
        font-size: 16px;
    }
    
    .feature-button span {
        font-size: 14px;
    }
    
    .service-card-header {
        padding: 25px;
    }
    
    .service-card-content {
        padding: 25px;
    }
    
    .service-card-new h3 {
        font-size: 22px;
    }
}
/* Footer Brand Row Layout */
.footer-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.footer-logo {
    height: 60px;
    flex-shrink: 0;
}

.footer-brand-row .footer-company-info {
    flex: 1;
}

.footer-brand-row .footer-company-info p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustments for footer brand row */
@media (max-width: 768px) {
    .footer-brand-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-brand-row {
        gap: 15px;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-brand-row .footer-company-info p {
        font-size: 13px;
        margin-bottom: 6px;
    }
}
/* Enhanced Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

/* Button Variants */
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff; /* 명확한 흰색 */
    box-shadow: var(--shadow-md);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 가독성을 위한 그림자 */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #ffffff; /* 호버 시에도 명확한 흰색 유지 */
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: #ffffff; /* 명확한 흰색 */
    box-shadow: var(--shadow-md);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 가독성을 위한 그림자 */
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #ffffff; /* 호버 시에도 명확한 흰색 유지 */
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #ffffff; /* 호버 시 명확한 흰색 */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--gradient-subtle);
    color: var(--accent-color);
    transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

.btn-xl {
    padding: var(--space-xl) var(--space-3xl);
    font-size: var(--text-xl);
    border-radius: var(--radius-xl);
}

/* Button States */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Mobile Button Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-sm);
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--text-base);
    }
    
    .btn-xl {
        padding: var(--space-lg) var(--space-2xl);
        font-size: var(--text-lg);
    }
}
/* Enhanced Section System */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    background: var(--gradient-subtle);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-light);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Backgrounds */
.section-bg-light {
    background: var(--light-bg);
}

.section-bg-gradient {
    background: var(--gradient-hero);
    color: var(--text-white);
}

.section-bg-gradient .section-title,
.section-bg-gradient .section-subtitle {
    color: var(--text-white);
}

.section-bg-gradient .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Section Headers */
@media (max-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .section-lg {
        padding: var(--space-3xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .section-description {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .section-subtitle {
        font-size: var(--text-xs);
        padding: 6px var(--space-sm);
    }
}
/* Hero 스타일은 css/hero.css로 분리 관리 */

/* Enhanced Language Toggle Styles */
.lang-toggle {
    position: relative;
    overflow: hidden;
}

.lang-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.lang-toggle:hover::before {
    left: 100%;
}

.lang-toggle:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced News Card Styles */
.news-card.text-only {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card.text-only:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-badge {
    position: relative;
    overflow: hidden;
}

.news-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.news-badge:hover::before {
    left: 100%;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

/* Enhanced Service Card Animations */
.service-card-new {
    position: relative;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-xl);
}

.service-card-new:hover::before {
    opacity: 1;
}

/* Enhanced Feature Button Animations */
.feature-button {
    position: relative;
    overflow: hidden;
}

.feature-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.feature-button:hover::before {
    width: 100%;
    height: 100%;
}

/* Enhanced Partner Card Styles */
.partner-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 0.05;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Enhanced Page Header */
.page-header {
    background: var(--gradient-hero);
    color: #ffffff; /* 명확한 흰색 */
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23header-dots)"/></svg>');
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff; /* 명확한 흰색 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 가독성을 위한 그림자 */
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95); /* 더 밝은 색상 */
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* 가독성을 위한 그림자 */
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9); /* 더 밝은 색상 */
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9); /* 더 밝은 색상 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff; /* 호버 시 완전한 흰색 */
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9); /* 더 밝은 색상 */
}

/* Responsive Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
