/* Global Settings */
:root {
    --navy: #002349;
    --navy-light: #003a75;
    --navy-dark: #001a33;
    --emerald: #10b981;
    --bg-main: #F8F9FA;
}

* {
    font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
}

/* Background Texture */
.global-texture {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(0, 35, 73, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 35, 73, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.global-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-7-7-7-7 3.134-7 7c0 1.657 1.343 3 3 3zM56 11c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm39 69c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm18-22c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23002349' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Header Styles */
.header-navy {
    background: #C41E3A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.lang-btn.active {
    background: white;
    color:  #14532d;
    font-weight: 600;
}

.lang-btn:not(.active):hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.support-btn {
    position: relative;
    overflow: hidden;
}

.support-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: 0.5s;
}

.support-btn:hover::before {
    left: 100%;
}

/* Progress Card */
.progress-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.agent-avatar {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid white;
}

.step-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.step-item.active {
    opacity: 1;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.step-item:not(.active) {
    border: 1px solid #f1f5f9;
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Category Grid */
.interaction-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-grid {
    transition: all 0.3s;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card.selected {
    border-color: #002349;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 4px 12px rgba(0, 35, 73, 0.2);
}

.category-card.selected::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    background: #002349;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.category-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.875rem;
    text-align: center;
}

.category-sub {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    margin-top: 2px;
}

/* Input Area */
.input-area textarea {
    font-size: 0.95rem;
    line-height: 1.6;
}

.input-area textarea:focus {
    outline: none;
}

.continue-btn:disabled {
    background: #cbd5e1 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Assessment Animation */
.assessment-animation {
    position: relative;
    width: 120px;
    height: 120px;
}

.scanner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    opacity: 0;
    animation: scan-pulse 2s ease-out infinite;
}

.scanner-ring.delay-150 {
    animation-delay: 0.5s;
}

.scanner-ring.delay-300 {
    animation-delay: 1s;
}

@keyframes scan-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    animation: core-breathe 2s ease-in-out infinite;
}

@keyframes core-breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.status-item {
    transition: all 0.3s;
}

.status-item.complete {
    background: #d1fae5;
    border: 1px solid #10b981;
}

.status-item.complete .status-icon {
    color: #059669;
}

/* Results Modules */
.result-module {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
}

.module-content {
    padding: 16px;
}

.hts-code {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.hts-code .label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.hts-code .code {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #002349;
    font-family: 'SF Mono', Monaco, monospace;
    letter-spacing: -0.02em;
}

.hts-code .rate {
    display: block;
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
    margin-top: 4px;
}

/* PGA Items */
.pga-item {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.pga-item.required {
    border-left: 3px solid #f59e0b;
}

.pga-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-exempt {
    background: #d1fae5;
    color: #059669;
}

/* Bento Grid */
.bento-grid {
    gap: 1.5rem;
}

.bento-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bento-card-content {
    padding: 1.5rem;
    height: 100%;
}

.airport-tag {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.pga-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.contact-inline {
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    overflow: hidden;
    min-width: 0;
}
.service-card:hover .contact-inline {
    opacity: 1;
    transform: translateX(0);
}
.contact-inline .co-name {
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
}
.contact-inline .co-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    opacity: 0.82;
    white-space: nowrap;
    margin-bottom: 0.1rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}


/* Footer */
.footer-navy {
    background: linear-gradient(135deg, #002349 0%, #001330 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10b981; /* Emerald-500 */
    border-color: #10b981;
    transform: translateY(-3px);
}

/* 2. 页脚特有组件 (Port & Cert Badges) */
.port-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
    transition: all 0.2s;
}

.port-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* 3. 结果页面 (Step 4) 的动画与微调 */
.results-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.confidence-bar .bg-blue-600 {
    position: relative;
    overflow: hidden;
}

.confidence-bar .bg-blue-600::after {
    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;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 4. 输入框焦点状态优化 */
textarea:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* 5. 响应式布局补充 (移动端适配) */
@media (max-width: 768px) {
    .interaction-card {
        border-radius: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card-content {
        padding: 1.25rem;
    }
}

/* 6. 表单元素美化 */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

/* 7. 步骤条完成后的样式 */
.step-item.complete {
    opacity: 1;
}

.step-item.complete .step-number {
    background: #10b981 !important; /* Emerald-500 */
}

/* 8. 交互反馈：按钮点击效果 */
button:active {
    transform: scale(0.98);
}

/* 9. 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ===== Company Intro Sections ===== */
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.badge-blue  { background: #eff6ff; color: #1d4ed8; }
.badge-green { background: #ecfdf5; color: #059669; }
.badge-amber { background: #fffbeb; color: #b45309; }

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 768px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
}
@media (max-width: 480px) {
    .card-grid { grid-template-columns: 1fr; }
}

/* Card */
.img-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edf3;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}
.img-card-top {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.img-card-top .card-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 2px 10px;
    border-radius: 9999px;
}
.img-card-body {
    padding: 14px 16px 16px;
}
.img-card-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}
.img-card-body p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
}

/* Stat row */
.stat-row { display: flex; }
.stat-cell { text-align: center; padding: 0 22px; }
.stat-cell + .stat-cell { border-left: 1px solid #e2e8f0; }
.stat-val {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
}
.stat-lbl { font-size: 0.78rem; color: #64748b; margin-top: 4px; font-weight: 500; }

/* Light card section icon & label colors */
.s1 .img-card-top i { color: rgba(29,78,216,0.8); }
.s2 .img-card-top i { color: rgba(5,150,105,0.8); }
.s3 .img-card-top i { color: rgba(180,83,9,0.8); }
.s1 .img-card-top .card-label { background: rgba(29,78,216,0.1); color: #1d4ed8; }
.s2 .img-card-top .card-label { background: rgba(5,150,105,0.1); color: #059669; }
.s3 .img-card-top .card-label { background: rgba(180,83,9,0.1); color: #b45309; }

/* Section separator */
.intro-sep { height: 1px; background: linear-gradient(to right, transparent, #e2e8f0, transparent); }

/* ===== 紧凑三模块样式 ===== */
.services-showcase {
    background-color: #F9FAFB;
    padding: 4rem 0;
}

.module {
    margin-bottom: 5rem;
}
.module:last-child {
    margin-bottom: 0;
}

/* 卡片网格 - 保持您原有的网格布局 */
.card-grid.s1,
.card-grid.s2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Credentials 网格 - 4张卡片排成一行 */
.card-grid.s3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* 卡片基础样式增强 */
.img-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* About Us 卡片 - 深色风格 */
.img-card.card-dark {
    background-color: #f5e6e9;
    color: white;
}

.img-card.card-dark .img-card-body {
    background-color: #f5e6e9;
    padding: 1.5rem;
    flex: 1;
}

.img-card.card-dark .img-card-body h4 {
    color: #7a0f20;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.img-card.card-dark .img-card-body p {
    color: #9b3a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Core Services 卡片 - 浅色风格 */
.img-card.card-light {
    background-color: white;
    border: 1px solid #E2E8F0;
}

.img-card.card-light .img-card-body {
    background-color: white;
    padding: 1.5rem;
    flex: 1;
}

.img-card.card-light .img-card-body h4 {
    color: #0B2A4A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.img-card.card-light .img-card-body p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Credentials 卡片 - 线框风格 */
.img-card.card-outline {
    background-color: #FAFAFA;
    border: 1px solid #E2E8F0;
}

.img-card.card-outline .img-card-body {
    background-color: #FAFAFA;
    padding: 1.5rem;
    flex: 1;
}

.img-card.card-outline .img-card-body h4 {
    color: #0B2A4A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.img-card.card-outline .img-card-body p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 卡片顶部区域调整 */
.img-card .img-card-top {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    min-height: 80px;
}

.img-card .card-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .card-grid.s1,
    .card-grid.s2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-grid.s3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .card-grid.s1,
    .card-grid.s2,
    .card-grid.s3 {
        grid-template-columns: 1fr;
    }
    
    .module {
        margin-bottom: 3rem;
    }
}
/* ===== About Us 新卡片样式 ===== */
.about-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 1.25rem;
    padding: 1.75rem 1.75rem 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(196, 30, 58, 0.1);
}

.about-card-label {
    display: inline-block;
    background: #fce8eb;
    color: #C41E3A;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 0;
}

/* 红线：在 label 和 h4 之间，用 h4::before 实现 */
.about-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #8B1222;
    margin-bottom: 0.6rem;
    margin-top: 0.9rem;
    line-height: 1.3;
    position: relative;
    padding-top: 0.9rem;
}

.about-card h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #C41E3A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-card:hover h4::before {
    transform: scaleX(1);
}

.about-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}
