/* 动态效果增强CSS */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray: #6b7280;
    --radius: 12px;
}

.navbar ul { flex-wrap: wrap; }
.logo span { white-space: nowrap; }
}

.logo span { white-space: nowrap; }
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hero 背景图 - 医院走廊 */
.hero {
    background-image: url('../../assets/img/glowing-hospital-corridor.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 深色遮罩确保文字清晰 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.5);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* 滚动动画相关 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 悬停动画增强 */
.problem-card, .solution-card, .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover, .solution-card:hover, .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* 价格卡片动态效果 */
.pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: left 0.7s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

/* 价格动画 */
.price span:not(.original-price) {
    position: relative;
    display: inline-block;
}

.price span:not(.original-price)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card:hover .price span:not(.original-price)::after {
    transform: scaleX(1);
}

/* 比较表格行高亮 */
.comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

/* 核心对比 - 医疗风格布局 */
.comparison-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 420px;
    max-width: 580px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.comparison-left {
    border-top: 4px solid #f59e0b;
}

.comparison-right {
    border-top: 4px solid #10b981;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.comparison-left .header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.comparison-right .header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.header-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-text h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.comparison-items {
    padding: 20px 25px;
}

.comparison-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #e5e7eb;
}

.comparison-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-left .item-label i {
    color: #f59e0b;
}

.comparison-right .item-label i {
    color: #10b981;
}

.item-content {
    padding-left: 28px;
}

.item-content strong {
    display: block;
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 4px;
}

.item-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* 徽章样式 */
.badge-tool {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-system {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 900px) {
    .comparison-container {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-card {
        max-width: 100%;
    }
    
    .comparison-vs {
        transform: rotate(90deg);
        margin: -10px 0;
    }
}

/* CTA按钮动画 */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

/* 自测部分动态效果 */
.test-box {
    transition: all 0.4s ease;
}

.test-box:hover {
    transform: translateY(-5px);
}

.test-box.system:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.test-box.tool:hover {
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

/* 自测指南区块 - 医疗专业风格 */
.self-test-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.self-test-card {
    flex: 1;
    min-width: 420px;
    max-width: 580px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.self-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-green {
    border-top: 4px solid #10b981;
}

.card-orange {
    border-top: 4px solid #f59e0b;
}

.self-test-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.self-test-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.card-green .self-test-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-orange .self-test-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.self-test-title h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-green, .tag-orange {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.tag-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tag-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.self-test-questions {
    padding: 20px 25px;
}

.question-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e5e7eb;
}

.question-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.question-check {
    flex-shrink: 0;
    font-size: 1.2rem;
}

.card-green .question-check {
    color: #10b981;
}

.card-orange .question-check {
    color: #f59e0b;
}

.question-text strong {
    display: block;
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.question-text p {
    margin: 0;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
}

.self-test-result {
    margin: 0 25px 15px 25px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-green .self-test-result {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.card-green .self-test-result i {
    color: #10b981;
}

.card-orange .self-test-result {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.card-orange .self-test-result i {
    color: #f59e0b;
}

.self-test-card .clinic-mode-note {
    margin: 0 25px 20px 25px;
    padding: 15px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
}

.self-test-card .clinic-mode-note i {
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.self-test-card .clinic-mode-note strong {
    color: #1e40af;
}

.self-test-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .self-test-container {
        flex-direction: column;
        align-items: center;
    }
    .self-test-card {
        max-width: 100%;
    }
    .self-test-vs {
        transform: rotate(90deg);
        margin: -10px 0;
    }
}

/* 订阅方案双卡片布局 */
.pricing-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 380px;
    max-width: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-cn {
    border-top: 4px solid #10b981;
}

.pricing-card-intl {
    border-top: 4px solid #2563eb;
}

.pricing-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.pricing-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.pricing-card-cn .pricing-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pricing-card-intl .pricing-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.4;
    word-break: break-word;
}

.tag-cn, .tag-intl {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-top: 8px;
}

.tag-cn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tag-intl {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.pricing-price {
    text-align: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-price .currency {
    font-size: 1.8rem;
    color: #1f2937;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
}

.pricing-card-cn .amount {
    color: #10b981;
}

.pricing-card-intl .amount {
    color: #2563eb;
}

.pricing-price .period {
    font-size: 1.1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    padding: 20px 30px;
    margin: 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 0.95rem;
    color: #4b5563;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1rem;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f3f4f6;
    margin: 0 30px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.pricing-note i {
    color: #6b7280;
    font-size: 1rem;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 15px 30px;
    margin: 20px 30px 30px 30px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
}

.pricing-btn i {
    margin-left: 8px;
}

.pricing-btn-cn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.pricing-btn-cn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.pricing-btn-intl {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.pricing-btn-intl:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        max-width: 100%;
    }
}

/* 导航栏滚动效果 */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* 数字计数动画 */
.counter {
    display: inline-block;
    font-weight: bold;
}

/* 进度条动画 */
.progress-bar {
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.progress {
    height: 100%;
    background-color: var(--secondary-color);
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* 呼吸动画 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 徽章动画 */
.badge-tool, .badge-system {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 功能图标悬停效果 */
.feature-icon {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    color: var(--primary-color);
}

/* 自助登记预约区块样式 */
.self-registration {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.registration-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.registration-qr {
    text-align: center;
    flex: 0 0 auto;
}

/* 图片切换器 */
.qr-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slider-container {
    position: relative;
    width: 400px;
    height: 600px;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-img.active {
    opacity: 1;
}

.slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.qr-caption {
    margin-top: 12px;
    color: #dc3545;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.registration-features {
    flex: 1;
    min-width: 400px;
    max-width: 680px;
}

/* 流程图 */
.reg-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.flow-step {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.flow-step i { margin-right: 6px; }

.reg-flow .fa-arrow-right { color: #10b981; font-size: 0.9rem; }

/* 核心要点 - 医疗风格卡片 */
.reg-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #10b981;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.highlight-card-full {
    grid-column: span 2;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.highlight-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.highlight-card-full .highlight-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.highlight-text h4 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    color: #1f2937;
    font-weight: 600;
}

.highlight-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* 语言支持 - 放在右侧底部 */
.language-support {
    text-align: center;
    padding: 18px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.language-support h3 {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
}

/* 语言网格 - 4列2行 */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.lang-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.85rem;
}

.lang-item .fi { font-size: 1.1rem; }

.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: #3b82f6;
    background: #f9fafb;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 160px;
    overflow: hidden;
}

.lang-dropdown.active {
    display: block;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s;
}

.lang-item:hover {
    background: #f3f4f6;
}

.lang-item .fi {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .lang-selector {
        position: static;
    }
    .lang-dropdown {
        position: fixed;
        top: 60px;
        left: 10px;
        right: 10px;
    }
}

/* Language Modal Styles */
#langModal .lang-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#langModal .lang-group h6 {
    font-size: 0.85rem;
    font-weight: 600;
}

#langModal .lang-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #eee;
}

#langModal .lang-option:hover {
    background-color: #f8f9fa;
    border-color: #106eea;
    color: #106eea;
}

#langModal .lang-option .fi {
    margin-right: 12px;
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

#langModal .lang-option span:last-child {
    font-size: 0.95rem;
}