/* ========================================
   魅可业务页面样式 - Services Page Styles
   文件: style-1-Services.css
   说明: 业务页面专用样式，支持离线使用
   ======================================== */

/* ========================================
   1. 全局基础与配色系统
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色调系统 */
    --primary-blue: #2563EB;
    --primary-blue-hover: #3B82F6;
    --primary-blue-glow: rgba(37, 99, 235, 0.5);
    --secondary-blue: #1D4ED8;
    --accent-blue: #60A5FA;
    --accent-cyan: #22D3EE;
    
    /* 深色背景系统 */
    --bg-darkest: #020617;
    --bg-dark: #0B1121;
    --bg-dark-elevated: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-glass: rgba(11, 17, 33, 0.85);
    --bg-card-border: rgba(37, 99, 235, 0.2);
    
    /* 文字层级系统 */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.45);
    
    /* 边框 */
    --border-subtle: rgba(37, 99, 235, 0.15);
    --border-medium: rgba(37, 99, 235, 0.35);
    --border-strong: rgba(37, 99, 235, 0.6);
    
    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.4);
    --shadow-glow-lg: 0 0 100px rgba(37, 99, 235, 0.5);
    
    /* 动画函数 */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-darkest);
    color: var(--text-primary);
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: 
        radial-gradient(ellipse 1200px 800px at 20% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 80% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 55%);
    min-height: 100vh;
}

/* ========================================
   2. 排版系统
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #22D3EE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   3. 页面基础背景
   ======================================== */
.service-page {
    background: linear-gradient(180deg, 
        rgba(2, 6, 23, 1) 0%, 
        rgba(11, 17, 33, 1) 30%,
        rgba(15, 23, 42, 1) 70%,
        rgba(2, 6, 23, 1) 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 动态网格背景 */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* 光晕装饰 */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.8), transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent 70%);
    bottom: 20%;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ========================================
   4. 导航栏系统 - 继承主页样式，仅做微调
   ======================================== */
/* 业务页面导航栏特定样式 - 浮动圆角设计 */
body.service-page header.service-header {
    top: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 48px) !important;
    max-width: 1280px !important;
    border-radius: 24px !important;
    background: rgba(11, 17, 33, 0.85) !important;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(37, 99, 235, 0.1) !important;
}

.glass-effect {
    background: rgba(11, 17, 33, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(37, 99, 235, 0.1);
    border-radius: 24px;
}

.nav-item {
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.nav-item:hover {
    transform: translateY(-2px);
    color: #165DFF !important;
    background: rgba(22, 93, 255, 0.1);
}

/* Logo 容器 */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   5. Hero Section
   ======================================== */
.service-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 40px;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: #60A5FA;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22D3EE;
    border-radius: 50%;
    box-shadow: 0 0 10px #22D3EE;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
}

/* ========================================
   6. 业务生态表格区域
   ======================================== */
.ecosystem-section {
    position: relative;
    z-index: 1;
    padding: 40px 0 100px;
}

.flow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 业务卡片区域 */
.service-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding: 0;
}

.service-card-item {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.6) 0%, rgba(11, 17, 33, 0.8) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    text-align: center;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--card-color), transparent);
    opacity: 0.8;
}

.service-card-item.ai-card { --card-color: #60A5FA; }
.service-card-item.agents-card { --card-color: #22D3EE; }
.service-card-item.cloud-card { --card-color: #818CF8; }

.service-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--card-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(37, 99, 235, 0.15);
}

/* 卡片光晕效果 */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-item:hover .card-glow {
    opacity: 0.05;
}

/* 卡片内容 */
.card-content {
    position: relative;
    z-index: 1;
}

/* 图标包装器 */
.card-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(29, 78, 216, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card-item:hover .card-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(29, 78, 216, 0.15) 100%);
    border-color: var(--card-color);
    transform: scale(1.05);
}

/* 图标光环 */
.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border: 2px dashed var(--card-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 卡片标题 */
.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 50%, var(--card-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 卡片描述 */
.card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 48px;
}

/* 特性标签 */
.card-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--card-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card-item:hover .feature-tag {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--card-color);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

/* 响应式 */
@media (max-width: 1024px) {
    .service-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards-row {
        grid-template-columns: 1fr;
    }
    
    .service-card-item {
        padding: 28px 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-desc {
        min-height: auto;
    }
}

/* 表格容器 */
.service-table-container {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.6) 0%, rgba(11, 17, 33, 0.8) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 24px;
    overflow: visible;
    backdrop-filter: blur(20px);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
}

.service-table th {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(29, 78, 216, 0.2) 100%);
    padding: 20px 16px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 0.95rem;
}

.service-table td {
    padding: 8px 12px;
    vertical-align: middle;
    height: 52px;
    text-align: center;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.service-table tr {
    height: 52px;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-item {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    position: relative;
}

.service-item:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cloud-branch {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 8px 0;
}

/* ========================================
   7. 光晕连接线动画
   ======================================== */
.service-table tbody tr td:first-child,
.service-table tbody tr td:nth-child(2) {
    position: relative;
}

/* 连接线 - 初始状态：宽度为0，不可见 */
.service-table tbody tr td:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% - 12px);
    width: 0;
    height: 2px;
    background: #22D3EE;
    transform: translateY(-50%);
    box-shadow: 0 0 8px #22D3EE, 0 0 16px rgba(34, 211, 238, 0.6);
    z-index: 200;
    pointer-events: none;
    transition: width 0.6s ease-out;
}

/* 连接线连接完成状态 */
.service-table tbody tr.line-connected td:first-child::after {
    width: 24px;
    animation: glowPulse 2s ease-in-out infinite;
}

/* 左端发光点 - 在连接线起点（紧贴着连线左端） */
.service-table tbody tr.line-connected td:first-child .service-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    background: #22D3EE;
    border-radius: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 10px #22D3EE, 0 0 20px #22D3EE;
    z-index: 201;
    animation: dotPulse 2s ease-in-out infinite;
}

/* 右端发光点 - 在连接线终点（紧贴着连线右端） */
.service-table tbody tr.line-connected td:nth-child(2) .service-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    background: #22D3EE;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #22D3EE, 0 0 20px #22D3EE;
    z-index: 201;
    animation: dotPulseLeft 2s ease-in-out infinite;
}

/* 端点脉冲动画 */
@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: translate(50%, -50%) scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: translate(50%, -50%) scale(1);
    }
}

@keyframes dotPulseLeft {
    0%, 100% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 
            0 0 6px rgba(34, 211, 238, 0.8),
            0 0 12px rgba(34, 211, 238, 0.6),
            0 0 20px rgba(34, 211, 238, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 10px rgba(34, 211, 238, 1),
            0 0 20px rgba(34, 211, 238, 0.8),
            0 0 30px rgba(34, 211, 238, 0.6);
    }
}

/* ========================================
   8. CTA Section
   ======================================== */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(145deg, 
        rgba(37, 99, 235, 0.1) 0%, 
        rgba(29, 78, 216, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(96, 165, 250, 0.5), 
        transparent);
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border: 1px solid rgba(37, 99, 235, 0.5);
    color: #fff;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ========================================
   9. 页脚样式
   ======================================== */
footer {
    position: relative;
    background-color: #020617;
    background-image: url('image-0/底纹2.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.85) 30%, rgba(2, 6, 23, 0.95) 50%);
    pointer-events: none;
    z-index: 0;
}

footer > div {
    position: relative;
    z-index: 1;
}

.footer-link {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    display: block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* ========================================
   10. 滚动条样式
   ======================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darkest);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.6) 0%, rgba(29, 78, 216, 0.8) 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3B82F6 0%, #60A5FA 100%);
}

/* ========================================
   11. 淡入动画
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeInUp 1s var(--ease-expo) forwards;
}

/* ========================================
   12. 响应式优化
   ======================================== */
@media (max-width: 1024px) {
    .service-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-table-container {
        overflow-x: auto;
    }
    
    .service-table {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    .service-cards-row {
        grid-template-columns: 1fr;
    }
    
    .service-card-item {
        padding: 28px 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-container {
        padding: 40px 24px;
        margin: 0 16px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* ========================================
   窄屏自适应修复
   ======================================== */
@media (max-width: 480px) {
    /* 确保所有文本元素能正确换行 */
    h1, h2, h3, h4, h5, h6, p, li, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* 修复flex布局中的子项溢出问题 */
    .grid > div,
    footer .grid > div {
        min-width: 0;
    }
    
    /* 页脚联系信息 */
    footer li[data-lang-key="footerTel"],
    footer li[data-lang-key="footerEmail"],
    footer li[data-lang-key="footerAddress"] {
        word-break: break-word;
    }
}

/* ========================================
   13. 性能优化 - GPU 加速
   ======================================== */
.service-item,
.cta-btn,
.parent-header {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* ========================================
   14. 可访问性
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}
