* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #4F6EF7;
    --primary-light: #7B93FF;
    --secondary: #00D4AA;
    --accent: #A855F7;
    --bg-light: #F8FAFF;
    --bg-white: #FFFFFF;
    --text-dark: #1A2138;
    --text-body: #4A5568;
    --text-light: #8896AB;
    --gradient-main: linear-gradient(135deg, #4F6EF7 0%, #7B93FF 50%, #00D4AA 100%);
    --gradient-hero: linear-gradient(160deg, #EEF2FF 0%, #F0FDFA 40%, #FAF5FF 100%);
    --gradient-card: linear-gradient(135deg, rgba(79,110,247,0.05) 0%, rgba(0,212,170,0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(79,110,247,0.08);
    --shadow-md: 0 8px 30px rgba(79,110,247,0.12);
    --shadow-lg: 0 20px 60px rgba(79,110,247,0.15);
    --radius: 16px;
    --radius-lg: 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(79,110,247,0.08);
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 220px;
    object-fit: contain;
}
.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(79,110,247,0.3);
}
.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    transition: color 0.4s;
}
.nav-logo-text span {
    background: linear-gradient(135deg, #7B93FF, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar.scrolled .nav-logo-text { color: var(--text-dark); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: #FFFFFF; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text-body); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--primary); }
.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-main);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(79,110,247,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,110,247,0.4);
}
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: 0;
}
.nav-mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 3px;
}
.navbar.scrolled .nav-mobile-toggle span { background: var(--text-dark); }
.inner-page .navbar,
.inner-page .navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(79,110,247,0.08);
}
.inner-page .nav-logo-text { color: var(--text-dark); }
.inner-page .nav-links a { color: var(--text-body); }
.inner-page .nav-links a:hover,
.inner-page .nav-links a.active { color: var(--primary); }
.inner-page .nav-mobile-toggle span { background: var(--text-dark); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0B1026 0%, #131B3A 30%, #1A1040 60%, #0D1B2E 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,130,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(99,130,255,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}
.hero-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-aurora::before,
.hero-aurora::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: auroraDrift 12s ease-in-out infinite;
}
.hero-aurora::before {
    background: linear-gradient(90deg, transparent, rgba(79,110,247,0.4), rgba(0,212,170,0.3), transparent);
    top: -20%;
    left: -25%;
    transform: rotate(-8deg);
}
.hero-aurora::after {
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), rgba(79,110,247,0.25), transparent);
    bottom: -30%;
    right: -25%;
    transform: rotate(6deg);
    animation-delay: -6s;
}
@keyframes auroraDrift { 0%,100%{transform:rotate(-8deg) translateX(0)} 50%{transform:rotate(-5deg) translateX(40px)} }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(79,110,247,0.35); top: -150px; right: -100px; opacity: 0.7; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(0,212,170,0.25); bottom: -100px; left: -80px; opacity: 0.6; animation-delay: -3s; }
.hero-orb-3 { width: 280px; height: 280px; background: rgba(168,85,247,0.3); top: 35%; right: 15%; opacity: 0.5; animation-delay: -5s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(25px,-25px) scale(1.08)} 66%{transform:translate(-15px,20px) scale(0.94)} }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(147,170,255,0.6);
    border-radius: 50%;
    animation: particleRise linear infinite;
}
.hero-particles span:nth-child(1) { left: 10%; animation-duration: 9s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 25%; animation-duration: 12s; animation-delay: -2s; width: 2px; height: 2px; }
.hero-particles span:nth-child(3) { left: 40%; animation-duration: 10s; animation-delay: -4s; }
.hero-particles span:nth-child(4) { left: 55%; animation-duration: 14s; animation-delay: -1s; width: 2px; height: 2px; }
.hero-particles span:nth-child(5) { left: 70%; animation-duration: 11s; animation-delay: -3s; }
.hero-particles span:nth-child(6) { left: 85%; animation-duration: 13s; animation-delay: -5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(7) { left: 15%; animation-duration: 15s; animation-delay: -7s; width: 4px; height: 4px; opacity: 0.4; }
.hero-particles span:nth-child(8) { left: 60%; animation-duration: 8s; animation-delay: -2s; width: 4px; height: 4px; opacity: 0.4; }
@keyframes particleRise { 0%{transform:translateY(100vh) scale(0);opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{transform:translateY(-10vh) scale(1);opacity:0} }
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { animation: fadeInUp 0.8s ease-out; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--secondary);
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero-title {
    font-size: clamp(36px,5vw,56px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(79,110,247,0.3);
}
.hero-title .highlight {
    background: linear-gradient(135deg, #7B93FF 0%, #00D4AA 60%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-actions,
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(79,110,247,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(79,110,247,0.5); }
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}
.cta-section .btn-secondary,
.cta-band .btn-secondary,
.page-content .btn-secondary {
    color: var(--primary);
    background: white;
    border-color: rgba(79,110,247,0.2);
}
.hero-visual { position: relative; animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-card {
    background: rgba(15,20,45,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99,130,255,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dots span:nth-child(1) { background: #FF6B6B; }
.hero-card-dots span:nth-child(2) { background: #FFD93D; }
.hero-card-dots span:nth-child(3) { background: #6BCB77; }
.hero-code { font-family: "JetBrains Mono","Fira Code",monospace; font-size: 13px; line-height: 2; }
.hero-code .line { display: block; padding: 2px 0; }
.code-keyword { color: #C084FC; }
.code-func { color: #93AAFF; }
.code-string { color: #34D399; }
.code-comment { color: rgba(255,255,255,0.35); }
.code-bracket { color: rgba(255,255,255,0.7); }
.hero-float-card {
    position: absolute;
    background: rgba(15,20,45,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99,130,255,0.2);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    animation: float 4s ease-in-out infinite;
}
.hero-float-card.card-1 { top: -20px; right: -20px; }
.hero-float-card.card-2 { bottom: -15px; left: -25px; animation-delay: -2s; }
.float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.float-icon.blue { background: rgba(79,110,247,0.25); }
.float-icon.green { background: rgba(0,212,170,0.25); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.stats-bar { background: white; padding: 50px 0; border-bottom: 1px solid rgba(79,110,247,0.06); }
.stats-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat-item { text-align: center; padding: 20px; }
.stat-number { font-size: 42px; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.stat-number span { font-size: 24px; }
.stat-label { font-size: 14px; color: var(--text-light); margin-top: 6px; font-weight: 500; }

.section { padding: 100px 0; }
.section-container,
.news-container,
.cases-container,
.filter-container,
.news-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79,110,247,0.06);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.section-title { font-size: clamp(28px,4vw,40px); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.services,
.cases-preview,
.process { background: var(--bg-light); }
.products,
.news-preview,
.advantages { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid rgba(79,110,247,0.06);
    position: relative;
    overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-main); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.service-icon.icon-blue { background: rgba(79,110,247,0.1); }
.service-icon.icon-green { background: rgba(0,212,170,0.1); }
.service-icon.icon-purple { background: rgba(168,85,247,0.1); }
.service-icon.icon-orange { background: rgba(255,159,67,0.1); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.service-tags,
.product-features,
.news-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.service-tags { margin-top: 16px; }
.service-tags span,
.product-features span,
.news-list-tags span {
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-body);
    font-weight: 500;
}
.product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(79,110,247,0.08); transition: all 0.4s; background: white; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-banner { height: 220px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-banner.banner-1 { background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%); }
.product-banner.banner-2 { background: linear-gradient(135deg, #F093FB 0%, #F5576C 50%, #FF9A56 100%); }
.product-banner-content { text-align: center; color: white; z-index: 2; position: relative; }
.product-banner-content .product-logo { font-size: 48px; margin-bottom: 12px; }
.product-banner-content h3 { font-size: 24px; font-weight: 700; }
.product-banner-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 20% 50%, white 1px, transparent 1px), radial-gradient(circle at 80% 20%, white 1px, transparent 1px), radial-gradient(circle at 60% 80%, white 1.5px, transparent 1.5px);
    background-size: 40px 40px, 60px 60px, 50px 50px;
}
.product-info { padding: 32px; }
.product-info h4 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.product-info p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.product-features span::before { content: "✓"; color: var(--secondary); font-weight: 700; margin-right: 6px; }
.product-actions {
    margin-top: 24px;
}
.product-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--gradient-main);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(79,110,247,0.22);
    transition: all 0.3s;
}
.product-detail-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79,110,247,0.32);
}

.cases-preview-grid,
.news-preview-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.case-preview-card,
.news-preview-item {
    border-radius: var(--radius);
    border: 1px solid rgba(79,110,247,0.06);
    transition: all 0.4s;
    overflow: hidden;
}
.case-preview-card { background: white; }
.news-preview-item { background: var(--bg-light); padding: 28px; }
.case-preview-card:hover,
.news-preview-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: white; }
.case-preview-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.case-preview-thumb.t1 { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); }
.case-preview-thumb.t2 { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.case-preview-thumb.t3 { background: linear-gradient(135deg, #FDE68A, #FBCFE8); }
.case-preview-body { padding: 24px; }
.case-preview-tag,
.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(79,110,247,0.06);
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.case-preview-body h4,
.news-preview-item h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.5; }
.case-preview-body p,
.news-preview-item p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.news-date { font-size: 12px; color: var(--text-light); margin-bottom: 10px; font-weight: 500; }
.section-more { text-align: center; }
.section-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid rgba(79,110,247,0.2);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.section-more a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79,110,247,0.25); }

.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0.2; }
.process-step { text-align: center; position: relative; }
.process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(79,110,247,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    z-index: 2;
}
.process-step:hover .process-step-num { background: var(--gradient-main); color: white; border-color: transparent; transform: scale(1.1); box-shadow: 0 8px 25px rgba(79,110,247,0.3); }
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.advantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.advantage-card { padding: 36px; border-radius: var(--radius); background: var(--gradient-card); border: 1px solid rgba(79,110,247,0.06); transition: all 0.3s; }
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.advantage-icon { font-size: 32px; margin-bottom: 16px; }
.advantage-card h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.advantage-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.cta-section,
.cta-band {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section .hero-orb,
.cta-band .hero-orb { opacity: 0.3; }
.cta-container,
.cta-band-content { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 2; padding: 0 24px; }
.cta-container h2,
.cta-band h2 { font-size: clamp(28px,4vw,38px); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.cta-container p,
.cta-band p { font-size: 16px; color: var(--text-body); margin-bottom: 36px; }
.cta-actions { justify-content: center; }

.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero .hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.page-hero .orb-1 { width: 300px; height: 300px; background: rgba(79,110,247,0.2); top: -80px; left: -60px; }
.page-hero .orb-2 { width: 250px; height: 250px; background: rgba(168,85,247,0.12); bottom: -60px; right: -40px; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 44px); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: var(--text-light); }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 14px; color: var(--text-light); }
.breadcrumb a { color: var(--primary); text-decoration: none; }

.content-hero {
    --content-hero-accent: 79,110,247;
    --content-hero-accent-2: 0,212,170;
    padding: 168px 0 94px;
    background:
        radial-gradient(circle at 18% 24%, rgba(var(--content-hero-accent-2),0.22), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(var(--content-hero-accent),0.38), transparent 34%),
        radial-gradient(circle at 52% 82%, rgba(168,85,247,0.22), transparent 38%),
        linear-gradient(145deg, #050B1D 0%, #081936 48%, #0D1530 100%);
    isolation: isolate;
}
.content-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(135,156,255,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135,156,255,0.10) 1px, transparent 1px),
        linear-gradient(115deg, transparent 0 42%, rgba(var(--content-hero-accent-2),0.16) 42.2%, transparent 43.2%),
        linear-gradient(245deg, transparent 0 58%, rgba(var(--content-hero-accent),0.18) 58.2%, transparent 59.2%);
    background-size: 54px 54px, 54px 54px, 100% 100%, 100% 100%;
    mask-image: radial-gradient(ellipse at 50% 38%, black 24%, transparent 82%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 38%, black 24%, transparent 82%);
    opacity: 0.9;
    z-index: 0;
}
.content-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1040px, calc(100% - 48px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(var(--content-hero-accent),0.82), rgba(var(--content-hero-accent-2),0.78), transparent);
    box-shadow: 0 -12px 44px rgba(var(--content-hero-accent),0.42);
    z-index: 2;
}
.content-hero .hero-orb {
    filter: blur(82px);
    opacity: 0.72;
    z-index: 0;
}
.content-hero .orb-1 {
    width: 430px;
    height: 430px;
    top: -156px;
    left: auto;
    right: -96px;
    background: rgba(var(--content-hero-accent),0.42);
}
.content-hero .orb-2 {
    width: 340px;
    height: 340px;
    right: auto;
    bottom: -122px;
    left: -72px;
    background: rgba(var(--content-hero-accent-2),0.28);
}
.content-hero .page-hero-content {
    max-width: 830px;
}
.content-hero .page-hero-content::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 132px;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(var(--content-hero-accent-2),0.9), rgba(var(--content-hero-accent),0.9), transparent);
    box-shadow: 0 0 28px rgba(var(--content-hero-accent-2),0.42);
}
.content-hero .breadcrumb {
    color: rgba(226,235,255,0.54);
}
.content-hero .breadcrumb a {
    color: #9FB2FF;
}
.content-hero .breadcrumb span {
    color: rgba(226,235,255,0.78);
}
.content-hero h1 {
    color: #FFFFFF;
    text-shadow: 0 12px 42px rgba(0,0,0,0.36);
}
.content-hero h1::after {
    content: "";
    display: block;
    width: 82px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(var(--content-hero-accent),1), rgba(var(--content-hero-accent-2),1));
    box-shadow: 0 0 26px rgba(var(--content-hero-accent-2),0.48);
}
.content-hero p {
    color: rgba(226,235,255,0.76);
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 17px;
}
.news-hero {
    --content-hero-accent: 79,110,247;
    --content-hero-accent-2: 0,212,170;
}
.cases-hero {
    --content-hero-accent: 123,147,255;
    --content-hero-accent-2: 168,85,247;
    background:
        radial-gradient(circle at 20% 24%, rgba(168,85,247,0.25), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(79,110,247,0.42), transparent 34%),
        radial-gradient(circle at 50% 80%, rgba(0,212,170,0.16), transparent 36%),
        linear-gradient(145deg, #050A1A 0%, #11143A 48%, #07152D 100%);
}
.article-hero {
    --content-hero-accent: 72,120,255;
    --content-hero-accent-2: 0,212,170;
    background:
        radial-gradient(circle at 18% 28%, rgba(0,212,170,0.18), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(72,120,255,0.34), transparent 34%),
        radial-gradient(circle at 52% 82%, rgba(168,85,247,0.18), transparent 38%),
        linear-gradient(145deg, #050B1D 0%, #071B35 52%, #0A1026 100%);
}

.single-page .page-hero {
    padding: 168px 0 96px;
    background:
        radial-gradient(circle at 18% 28%, rgba(0,212,170,0.24), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(79,110,247,0.42), transparent 34%),
        radial-gradient(circle at 58% 78%, rgba(168,85,247,0.28), transparent 36%),
        linear-gradient(150deg, #061225 0%, #0B1834 43%, #111A45 72%, #071827 100%);
    isolation: isolate;
}
.single-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(123,147,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123,147,255,0.08) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse at 50% 35%, black 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 35%, black 20%, transparent 78%);
    z-index: 0;
}
.single-page .page-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(980px, calc(100% - 48px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(123,147,255,0.75), rgba(0,212,170,0.72), transparent);
    box-shadow: 0 -12px 45px rgba(79,110,247,0.45);
    z-index: 2;
}
.single-page .page-tech-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(0,212,170,0.12) 42.2%, transparent 43.2%),
        linear-gradient(245deg, transparent 0 56%, rgba(123,147,255,0.16) 56.2%, transparent 57.2%);
    opacity: 0.75;
    z-index: 1;
}
.single-page .page-tech-scan {
    position: absolute;
    left: -12%;
    top: 18%;
    width: 124%;
    height: 120px;
    background: linear-gradient(90deg, transparent, rgba(79,110,247,0.14), rgba(0,212,170,0.12), transparent);
    transform: rotate(-7deg);
    filter: blur(1px);
    z-index: 1;
}
.single-page .page-tech-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.single-page .page-tech-lines span {
    position: absolute;
    height: 1px;
    width: 230px;
    background: linear-gradient(90deg, transparent, rgba(0,212,170,0.85), transparent);
    opacity: 0.52;
}
.single-page .page-tech-lines span:nth-child(1) { top: 33%; left: 8%; }
.single-page .page-tech-lines span:nth-child(2) { top: 56%; right: 12%; width: 280px; background: linear-gradient(90deg, transparent, rgba(123,147,255,0.92), transparent); }
.single-page .page-tech-lines span:nth-child(3) { bottom: 24%; left: 42%; width: 190px; opacity: 0.38; }
.single-page .page-hero .hero-orb { filter: blur(86px); opacity: 0.72; z-index: 0; }
.single-page .page-hero .orb-1 { width: 420px; height: 420px; background: rgba(79,110,247,0.38); top: -150px; left: auto; right: -80px; }
.single-page .page-hero .orb-2 { width: 330px; height: 330px; background: rgba(0,212,170,0.26); bottom: -110px; right: auto; left: -60px; }
.single-page .page-hero-content { max-width: 820px; }
.single-page .page-hero .breadcrumb { color: rgba(255,255,255,0.52); }
.single-page .page-hero .breadcrumb a { color: #93AAFF; }
.single-page .page-hero h1 {
    color: #FFFFFF;
    text-shadow: 0 10px 42px rgba(0,0,0,0.34);
}
.single-page .page-hero h1::after {
    content: "";
    display: block;
    width: 76px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--gradient-main);
    box-shadow: 0 0 24px rgba(0,212,170,0.48);
}
.single-page .page-hero p {
    color: rgba(226,235,255,0.74);
    max-width: 620px;
    margin: 20px auto 0;
    font-size: 17px;
}

.news-tabs-section,
.filter-section { padding: 40px 0 0; background: white; }
.news-tabs,
.filter-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.news-tab,
.filter-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(79,110,247,0.15);
    background: white;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.news-tab:hover,
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.news-tab.active,
.filter-tab.active { background: var(--gradient-main); color: white; border-color: transparent; box-shadow: 0 4px 15px rgba(79,110,247,0.3); }
.news-section,
.cases-section { padding: 50px 0 100px; background: white; }
.news-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; margin-bottom: 48px; }
.news-featured-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(79,110,247,0.06);
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    transition: all 0.4s;
    text-decoration: none;
}
.news-featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
.news-featured-content { position: relative; z-index: 2; padding: 36px; color: white; }
.news-featured-content .tag,
.news-side-card .tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.news-featured-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-featured-content p { font-size: 14px; opacity: 0.85; line-height: 1.7; }
.news-featured-content .date { font-size: 12px; opacity: 0.6; margin-top: 12px; }
.news-featured-side { display: flex; flex-direction: column; gap: 20px; }
.news-side-card {
    flex: 1;
    border-radius: var(--radius);
    padding: 28px;
    background: var(--bg-light);
    border: 1px solid rgba(79,110,247,0.04);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}
.news-side-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateX(4px); }
.news-side-card .tag { background: rgba(79,110,247,0.06); color: var(--primary); width: fit-content; }
.news-side-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.5; }
.news-side-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.news-side-card .date { font-size: 12px; color: var(--text-light); margin-top: 10px; opacity: 0.7; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(79,110,247,0.06);
    transition: all 0.3s;
    align-items: start;
    text-decoration: none;
}
.news-list-item:first-child { padding-top: 0; }
.news-list-item:hover { padding-left: 12px; }
.news-list-date { text-align: center; }
.news-list-date .day { font-size: 32px; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.news-list-date .month { font-size: 13px; color: var(--text-light); font-weight: 500; }
.news-list-body h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.5; transition: color 0.3s; }
.news-list-item:hover .news-list-body h4 { color: var(--primary); }
.news-list-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; list-style: none; flex-wrap: wrap; }
.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(79,110,247,0.15);
    color: var(--text-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.pagination a:hover,
.pagination .active,
.pagination span.current { background: var(--gradient-main); color: white; border-color: transparent; box-shadow: 0 4px 12px rgba(79,110,247,0.3); }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(79,110,247,0.06); transition: all 0.4s cubic-bezier(0.4,0,0.2,1); text-decoration: none; }
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.case-thumb { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; overflow: hidden; }
.case-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.03)); }
.case-thumb.c1 { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); }
.case-thumb.c2 { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.case-thumb.c3 { background: linear-gradient(135deg, #FDE68A, #FBCFE8); }
.case-thumb.c4 { background: linear-gradient(135deg, #BFDBFE, #93C5FD); }
.case-thumb.c5 { background: linear-gradient(135deg, #FECACA, #FCA5A5); }
.case-thumb.c6 { background: linear-gradient(135deg, #DDD6FE, #C4B5FD); }
.case-body { padding: 28px; }
.case-body h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.case-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.case-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light); flex-wrap: wrap; }
.case-meta span { display: flex; align-items: center; gap: 4px; }
.case-results { display: flex; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(79,110,247,0.06); }
.case-result-item { text-align: center; flex: 1; }
.case-result-item .num { font-size: 18px; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.case-result-item .label { font-size: 11px; color: var(--text-light); margin-top: 2px; }

.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: all 0.3s; }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-col h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-filing-link {
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-filing-link:hover {
    color: var(--primary-light);
}
.float-contact {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 180;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-contact-item {
    position: relative;
}
.float-contact-btn {
    width: 58px;
    min-height: 58px;
    border: 0;
    border-radius: 16px;
    background: rgba(255,255,255,0.94);
    color: var(--text-dark);
    box-shadow: 0 10px 28px rgba(20,35,80,0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(79,110,247,0.12);
}
.float-contact-btn:hover {
    transform: translateX(-4px);
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 14px 34px rgba(79,110,247,0.26);
}
.float-contact-icon {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79,110,247,0.1);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}
.float-contact-btn:hover .float-contact-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.float-contact-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}
.float-contact-panel {
    position: absolute;
    top: 50%;
    bottom: auto;
    right: 72px;
    width: 178px;
    max-height: calc(100vh - 32px);
    overflow: visible;
    padding: 14px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(79,110,247,0.1);
    box-shadow: 0 18px 48px rgba(20,35,80,0.18);
    opacity: 0;
    transform: translate(12px, -50%);
    pointer-events: none;
    transition: all 0.25s;
}
.float-contact-panel.active {
    opacity: 1;
    transform: translate(0, -50%);
    pointer-events: auto;
}
.float-contact-panel::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    bottom: auto;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid rgba(79,110,247,0.1);
    border-top: 1px solid rgba(79,110,247,0.1);
}
.float-panel-title {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}
.float-contact-panel img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(79,110,247,0.08);
}
.float-contact-panel p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
}
.phone-panel {
    width: 190px;
    text-align: center;
}
.phone-panel strong {
    display: block;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.25;
    margin: 4px 0 12px;
}
.phone-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    border-radius: 999px;
    background: var(--gradient-main);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(79,110,247,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 100;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(79,110,247,0.4); }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.content-section { padding: 80px 0 100px; background: white; }
.content-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.content-card {
    background: white;
    border: 1px solid rgba(79,110,247,0.08);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}
.page-content { font-size: 16px; color: var(--text-body); }
.page-content h2,
.page-content h3 { color: var(--text-dark); margin: 24px 0 12px; line-height: 1.35; }
.page-content p { margin-bottom: 16px; }
.page-content ul { margin: 14px 0 20px 22px; }
.page-content li { margin-bottom: 8px; }
.article-title { font-size: clamp(26px,4vw,38px); color: var(--text-dark); line-height: 1.3; margin-bottom: 14px; }
.article-info { font-size: 13px; color: var(--text-light); padding-bottom: 22px; margin-bottom: 28px; border-bottom: 1px solid rgba(79,110,247,0.08); }
.pager { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(79,110,247,0.08); color: var(--text-light); }
.pager a { color: var(--primary); text-decoration: none; }

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .cases-preview-grid,
    .news-preview-list,
    .cases-grid { grid-template-columns: repeat(2,1fr); }
    .product-showcase,
    .news-featured { grid-template-columns: 1fr; }
    .news-featured-side { flex-direction: row; }
    .process-steps { grid-template-columns: repeat(3,1fr); }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .nav-logo-img { height: 36px; max-width: 180px; }
    .hero-title { font-size: 32px; }
    .hero-float-card { display: none; }
    .hero-card { padding: 28px; }
    .stats-container { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .stat-number { font-size: 32px; }
    .section { padding: 70px 0; }
    .services-grid,
    .product-showcase,
    .cases-preview-grid,
    .news-preview-list,
    .advantages-grid,
    .cases-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
    .page-hero { padding: 130px 0 60px; }
    .content-hero { padding: 136px 0 68px; }
    .content-hero .page-hero-content::before { top: -24px; width: 104px; }
    .content-hero h1::after { margin-top: 14px; }
    .content-hero p { font-size: 15px; }
    .news-featured-side { flex-direction: column; }
    .news-list-item { grid-template-columns: 70px 1fr; gap: 16px; }
    .news-list-date .day { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .float-contact { right: 12px; bottom: 88px; gap: 10px; }
    .float-contact-btn { width: 52px; min-height: 52px; border-radius: 14px; }
    .float-contact-panel { right: 62px; width: 166px; padding: 12px; }
    .float-contact-panel img { width: 140px; height: 140px; }
    .phone-panel { width: 178px; }
    .content-card { padding: 30px 22px; border-radius: var(--radius); }
}

@media (max-width: 480px) {
    .hero-actions,
    .cta-actions { flex-direction: column; align-items: center; }
    .btn-primary,
    .btn-secondary { width: 100%; justify-content: center; }
    .process-steps { grid-template-columns: 1fr; }
    .news-list-item { grid-template-columns: 1fr; gap: 12px; }
    .news-list-date { text-align: left; display: flex; gap: 8px; align-items: baseline; }
    .case-results { flex-direction: column; }
}
