.hero {
    min-height: 500px;
    height: 60vh;
    max-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -100px;
    left: -100px;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    height: 100%;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-content {
    color: #1e293b;
    max-width: 600px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.hero-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(30, 41, 59, 0.08);
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 41, 59, 0.12);
    color: #334155;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}


.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.hero-buttons .btn-secondary {
    background: rgba(30, 41, 59, 0.08);
    border: 1px solid rgba(30, 41, 59, 0.2);
    color: #334155;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(30, 41, 59, 0.15);
    border-color: rgba(30, 41, 59, 0.3);
}

.hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 32px;
    height: 4px;
    background: rgba(30, 41, 59, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: #3b82f6;
    width: 48px;
}

.hero-indicator:hover {
    background: rgba(30, 41, 59, 0.4);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 41, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #334155;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 41, 59, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.products-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 48px;
}

.products-main-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.products-main-title .highlight {
    color: #3b82f6;
    font-weight: 800;
}

.products-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Products Features */
.products-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 992px) {
    .products-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .products-main-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-main-title {
        font-size: 20px;
    }
    
    .feature-card {
        padding: 20px;
        gap: 16px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-title {
        font-size: 15px;
    }
    
    .feature-desc {
        font-size: 13px;
    }
}

.solutions-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 30%, #faf5ff 70%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.solutions-section::before,
.solutions-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
}

.solutions-section::before {
    top: 5%;
    left: 3%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, transparent 50%, rgba(59, 130, 246, 0.4) 50%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.solutions-section::after {
    bottom: 10%;
    right: 5%;
    width: 280px;
    height: 280px;
    background: linear-gradient(-45deg, transparent 50%, rgba(139, 92, 246, 0.35) 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.polygon-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
}

.polygon-bg-1 {
    top: 15%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, transparent 50%, rgba(59, 130, 246, 0.5) 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.polygon-bg-2 {
    bottom: 25%;
    left: 8%;
    width: 180px;
    height: 180px;
    background: linear-gradient(-135deg, transparent 50%, rgba(139, 92, 246, 0.45) 50%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.polygon-bg-3 {
    top: 40%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(90deg, transparent 50%, rgba(6, 182, 212, 0.4) 50%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.polygon-bg-4 {
    top: 70%;
    right: 25%;
    width: 100px;
    height: 100px;
    background: linear-gradient(160deg, transparent 50%, rgba(59, 130, 246, 0.45) 50%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.polygon-bg-5 {
    top: 8%;
    left: 35%;
    width: 90px;
    height: 90px;
    background: linear-gradient(200deg, transparent 50%, rgba(139, 92, 246, 0.4) 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.solutions-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.solutions-main-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.solutions-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.solutions-tabs-wrapper {
    background: white;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.05);
}

.solutions-tabs {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.solution-tab {
    flex: 1;
    padding: 18px 16px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.solution-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.solution-tab:hover {
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.solution-tab:hover::before {
    width: 40%;
}

.solution-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.solution-tab.active::before {
    width: 60%;
    background: rgba(255, 255, 255, 0.5);
}

.tab-num {
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.solution-tab.active .tab-num {
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-tab .tab-text {
    font-weight: 600;
}

.solutions-content {
    position: relative;
    z-index: 1;
}

.solution-panel {
    display: none;
}

.solution-panel.active {
    display: block;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 10px 40px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
}

.solution-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 24px 24px 0 0;
}

.solution-image-area {
    position: relative;
}

.solution-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(226, 232, 240, 0.8);
}

.solution-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid #e2e8f0;
}

.solution-image-placeholder i {
    font-size: 48px;
    color: #94a3b8;
}

.solution-image-placeholder span {
    font-size: 14px;
    color: #64748b;
}

.solution-info-area {
    color: #1e293b;
}

.solution-info-area h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.solution-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin-bottom: 20px;
    border-radius: 2px;
}

.solution-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 32px;
}

.solution-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.stat-item i {
    font-size: 18px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 24px;
    text-align: center;
}

.stat-label {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.solution-info-area .btn-primary {
    padding: 12px 32px;
    font-size: 14px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.solution-info-area .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-image-area {
        order: -1;
    }
    
    .solution-image {
        height: 280px;
    }
    
    .solution-image-placeholder {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .solutions-main-title {
        font-size: 28px;
    }
    
    .solutions-tabs-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .solutions-tabs {
        min-width: max-content;
    }
    
    .solution-tab {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .solution-showcase {
        padding: 24px;
    }
    
    .solution-info-area h3 {
        font-size: 24px;
    }
    
    .solution-stats {
        gap: 24px;
    }
    
    .stat-num {
        font-size: 24px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 25%, #fef3c7 50%, #fffbeb 75%, #fef9c3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.adv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.adv-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    top: -150px;
    right: 5%;
    animation: advFloat 10s ease-in-out infinite;
}

.adv-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: 0;
    animation: advFloat 12s ease-in-out infinite reverse;
}

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

.adv-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(251, 191, 36, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.advantages-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #d97706;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    position: relative;
}

.advantages-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.3); }
}

.advantages-main-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #78350f 0%, #92400e 30%, #d97706 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.advantages-subtitle {
    font-size: 16px;
    color: #92400e;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 
        0 4px 24px rgba(251, 191, 36, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f59e0b, #fbbf24, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 60px rgba(245, 158, 11, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(255, 255, 255, 1);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 15px 15px 0 0;
}

.advantage-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon-img {
    transform: scale(1.1);
}

.advantage-icon.purple {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.advantage-icon.green {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.advantage-icon.orange {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 22px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-ring.purple {
    border-color: rgba(139, 92, 246, 0.3);
}

.icon-ring.green {
    border-color: rgba(16, 185, 129, 0.3);
}

.icon-ring.orange {
    border-color: rgba(245, 158, 11, 0.3);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.advantage-card:hover .icon-ring {
    animation-duration: 1.5s;
    border-color: rgba(251, 191, 36, 0.5);
}

.advantage-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.advantage-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.advantage-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.advantage-tag {
    padding: 6px 14px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-tag {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
    border-color: rgba(251, 191, 36, 0.3);
}

@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 70px 0;
    }
    
    .advantages-main-title {
        font-size: 28px;
    }
    
    .advantages-subtitle {
        font-size: 14px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .advantage-card {
        padding: 20px 14px;
    }
    
    .advantage-icon-wrap {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .advantage-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .icon-ring {
        width: 60px;
        height: 60px;
    }
    
    .advantage-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .advantage-desc {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .advantage-tags {
        gap: 6px;
    }
    
    .advantage-tag {
        padding: 4px 10px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantages-header {
        margin-bottom: 40px;
    }
    
    .advantages-main-title {
        font-size: 22px;
    }
    
    .advantages-label {
        font-size: 10px;
        padding: 8px 18px;
    }
    
    .advantages-grid {
        gap: 10px;
    }
    
    .advantage-card {
        padding: 16px 12px;
    }
    
    .advantage-icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .advantage-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .advantage-icon-img {
        width: 26px;
        height: 26px;
    }
    
    .icon-ring {
        width: 50px;
        height: 50px;
    }
    
    .advantage-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .advantage-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }
    
    .advantage-tag {
        padding: 3px 8px;
        font-size: 9px;
    }
}

.global-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 25%, #e0f2fe 50%, #f0f9ff 75%, #ecfeff 100%);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.global-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(14, 165, 233, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: globalGlow 15s ease-in-out infinite alternate;
}

@keyframes globalGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.global-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.global-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.global-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 30%, #0ea5e9 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.global-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
}

.global-subtitle {
    font-size: 17px;
    color: #0369a1;
    line-height: 1.8;
    max-width: 700px;
    margin: 20px auto 0;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.global-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.global-info-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.08);
}

.global-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0ea5e9, #06b6d4, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.global-info-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.global-info-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateX(8px);
    box-shadow: 
        0 20px 50px rgba(14, 165, 233, 0.15),
        0 0 0 1px rgba(14, 165, 233, 0.15);
}

.global-info-item:hover::before {
    opacity: 1;
}

.global-info-item:hover::after {
    opacity: 1;
}

.global-info-item h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.01em;
    padding-left: 20px;
}

.global-info-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #0ea5e9, #06b6d4);
    border-radius: 2px;
}

.global-info-item p {
    font-size: 15px;
    color: #334155;
    line-height: 1.9;
    padding-left: 20px;
}

.global-earth {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.global-earth::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: earthPulse 4s ease-in-out infinite;
}

@keyframes earthPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.earth-container {
    position: relative;
    width: 500px;
    height: 500px;
    flex-shrink: 0;
    z-index: 1;
}

#earth-canvas {
    width: 100%;
    height: 100%;
    cursor: grab;
    filter: drop-shadow(0 0 60px rgba(251, 191, 36, 0.25));
}

#earth-canvas:active {
    cursor: grabbing;
}

@media (max-width: 1024px) {
    .global-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .global-info {
        text-align: center;
    }
    
    .global-info-item h3,
    .global-info-item p {
        padding-left: 0;
    }
    
    .global-info-item h3::before {
        display: none;
    }
    
    .earth-container {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .global-earth::before {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .global-section {
        padding: 50px 0;
    }
    
    .global-title {
        font-size: 28px;
    }
    
    .global-title::after {
        width: 60px;
    }
    
    .global-subtitle {
        font-size: 15px;
    }
    
    .global-info-item {
        padding: 28px 24px;
    }
    
    .global-info-item h3 {
        font-size: 22px;
    }
    
    .earth-container {
        width: 300px;
        height: 300px;
    }
    
    .global-earth::before {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }

    .solutions-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
        height: 250px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        height: 40vh;
        max-height: 450px;
    }

    .hero-content-wrapper {
        max-width: 100%;
        padding: 0 16px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .hero-title span {
        display: block;
        margin-top: 4px;
    }

    .hero-desc {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-badge {
        padding: 4px 10px;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .hero-badge-dot {
        width: 5px;
        height: 5px;
    }

    .hero-badge-tag {
        padding: 2px 6px;
        font-size: 10px;
        margin-left: 6px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }

    .hero-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .hero-nav.prev {
        left: 10px;
    }

    .hero-nav.next {
        right: 10px;
    }

    .hero-indicators {
        bottom: 16px;
        gap: 8px;
    }

    .hero-indicator {
        width: 24px;
        height: 3px;
    }

    .hero-indicator.active {
        width: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-column: span 1;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.news-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 25%, #ede9fe 50%, #f5f3ff 75%, #fdf4ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(192, 132, 252, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.news-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.news-header {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

.news-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    position: relative;
}

.news-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: newsPulse 2s ease-in-out infinite;
}

@keyframes newsPulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.2); }
}

.news-main-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #8b5cf6 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.news-subtitle {
    font-size: 16px;
    color: #6d28d9;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.news-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.news-tab {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #6d28d9;
    transition: all 0.3s ease;
}

.news-tab:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
}

.news-tab.active {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-color: #8b5cf6;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.news-tab i {
    font-size: 16px;
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 4px 24px rgba(139, 92, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: none;
}

.news-card.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #a78bfa, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-card:hover {
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 1);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.news-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #4c1d95;
    letter-spacing: -0.01em;
}

.news-card-title i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.news-card-title i::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 10px 10px 0 0;
}

.news-card:nth-child(2) .news-card-title i {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #e9d5ff 100%);
    box-shadow: 
        0 4px 15px rgba(168, 85, 247, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.news-more:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.news-more i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.news-more:hover i {
    transform: translateX(4px);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.news-item:hover::before {
    opacity: 1;
}

.news-item-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #3b82f6;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.news-item:hover .news-item-number {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.news-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    flex: 1;
    letter-spacing: 0.01em;
}

.news-item-title:hover {
    color: #3b82f6;
}

.news-item-time {
    font-size: 11px;
    color: #94a3b8;
    flex-shrink: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .news-main-title {
        font-size: 28px;
    }
    
    .news-subtitle {
        font-size: 14px;
    }

    .news-tabs {
        gap: 8px;
    }

    .news-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .news-tab i {
        font-size: 14px;
    }

    .news-card {
        padding: 24px;
    }
    
    .news-card-title {
        font-size: 16px;
    }
    
    .news-card-title i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .news-item {
        padding: 14px 16px;
    }
    
    .news-item-title {
        font-size: 13px;
    }
}
