* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:link,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
}

/* Global Safari compatibility fixes */
html {
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary-color: #0d0d0d;
    --secondary-color: #1a1a1a;
    --accent-color: #c7000b;
    --text-dark: #111;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #0d0d0d;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #0d0d0d;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 30px 0;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 100px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo svg {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    flex: 1;
    justify-content: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-contact .phone {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: 0px;
}

.hero-subtitle {
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.15;
    margin-top: 0;
}

.hero-typing-container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-typing-text {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.15;
}

.hero-cursor {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-white);
    animation: heroBlink 1s infinite;
}

@keyframes heroBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.hero-quote {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.quote-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.scroll-icon {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
}

.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.services-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.services .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding: 8px 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.services-label::before,
.services-label::after {
    display: none;
}

.services-title {
    font-size: 52px;
    font-weight: 300;
    color: #111;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.services-title .highlight {
    font-weight: 700;
    color: #000;
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card.active {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.15);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .card-border {
    opacity: 1;
    animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
    0% {
        background: linear-gradient(0deg, transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    }
    25% {
        background: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    }
    50% {
        background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    }
    75% {
        background: linear-gradient(270deg, transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    }
    100% {
        background: linear-gradient(360deg, transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    }
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    transition: all 0.5s ease;
}

.service-card:hover .card-number {
    color: rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.5s ease;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: #111;
    transition: all 0.5s ease;
}

.service-card:hover .card-icon {
    background: #111;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover .card-icon svg {
    color: #fff;
}

.card-title {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.3;
    transition: all 0.5s ease;
}

.service-card:hover .card-title {
    transform: translateX(5px);
}

.card-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.6;
    transition: all 0.5s ease;
}

.service-card:hover .card-desc {
    color: #333;
}

.card-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.card-arrow svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.5s ease;
}

.service-card:hover .card-arrow {
    background: #111;
    border-color: #111;
    transform: translateX(5px);
}

.service-card:hover .card-arrow svg {
    color: #fff;
}

.card-details {
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 0;
    opacity: 0;
}

.service-card:hover .card-details {
    max-height: 200px;
    padding: 20px 30px;
    margin-top: 24px;
    opacity: 1;
}

.detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-list span {
    font-size: 13px;
    color: #333;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.detail-list span:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.services-footer {
    text-align: center;
}

.services-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: #111 !important;
    border: 1px solid #111;
    border-radius: 50px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.services-cta span,
.services-cta svg {
    color: #fff !important;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.services-cta:hover::before {
    left: 100%;
}

.services-cta:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.services-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

.services-cta:hover svg {
    transform: translateX(5px);
}

.industry-image {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-info {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-image img {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.index-s5 {
    padding: 120px 0;
    background: #fff;
}

.index-s5 .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.industries-header {
    text-align: center;
    margin-bottom: 80px;
}

.industries-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 24px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.industries-title {
    font-size: 52px;
    font-weight: 300;
    color: #111;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.industries-title .highlight {
    font-weight: 700;
    color: #000;
}

.industries-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.industries-showcase {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 80px;
}

.industry-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.industry-image-wrapper {
    position: relative;
}

.industry-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
}

.industry-counter {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.counter-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.counter-divider {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.counter-total {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.industry-info {
    padding: 20px 0;
}

.industry-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: #f5f5f5;
    border-radius: 20px;
}

.industry-name {
    font-size: 36px;
    font-weight: 500;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.3;
}

.industry-desc {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px;
    line-height: 1.8;
}

.industry-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.client-dot {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

.industry-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #999;
}

.industry-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-tab:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.industry-tab.active {
    background: #111;
    border-color: #111;
}

.tab-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.industry-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.15);
}

.tab-icon svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.4s ease;
}

.industry-tab.active .tab-icon svg {
    color: #fff;
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tab-name {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    transition: all 0.4s ease;
}

.industry-tab.active .tab-name {
    color: #fff;
}

.tab-count {
    font-size: 12px;
    color: #999;
    transition: all 0.4s ease;
}

.industry-tab.active .tab-count {
    color: rgba(255, 255, 255, 0.6);
}

.industries-footer {
    text-align: center;
}

.industries-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: #111 !important;
    border: 1px solid #111;
    border-radius: 50px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.industries-cta span,
.industries-cta svg {
    color: #fff !important;
}

.industries-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.industries-cta:hover::before {
    left: 100%;
}

.industries-cta:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.industries-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

.industries-cta:hover svg {
    transform: translateX(5px);
}

.index-s6 {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.s6-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #fff;
}

.s6-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.s6-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

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

.index-s6 .h3 {
    font-size: 48px;
    color: #111;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.2;
}

.index-s6 .items {
    overflow: hidden;
    margin-bottom: 40px;
}

.index-s6 .b-box {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.index-s6 .item {
    flex-shrink: 0;
    width: calc(50% - 15px);
}

.index-s6 .item .txt-box {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 8px;
    transition: var(--transition);
}

.index-s6 .item:hover .txt-box {
    background: var(--accent-color);
}

.index-s6 .item a {
    text-decoration: none;
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.index-s6 .item .date {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.index-s6 .item:hover .date {
    color: #fff;
}

.index-s6 .item .h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 25px;
    font-weight: 400;
}

.index-s6 .item:hover .h3 {
    color: #fff;
}

.index-s6 .item .tips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.index-s6 .item .tips span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.index-s6 .item:hover .tips span {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.index-s6 .pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.index-s6 .pagination .number {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.index-s6 .pagination .number.active,
.index-s6 .pagination .number:hover {
    background: var(--accent-color);
}

.index-s6 .more {
    display: block;
    text-align: center;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(199, 0, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer {
    background: #fff;
    padding: 100px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
    width: 100%;
    display: block;
    position: relative;
}

.footer .top-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: auto;
}

.translation-text {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    text-align: center;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.typing-container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.typing-text {
    font-size: 36px;
    color: #111;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.cursor {
    font-size: 36px;
    color: #111;
    font-weight: 600;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.footer .n-info {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.footer .tab-tit {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.footer .tab-tit span {
    padding: 8px 20px;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-size: 14px;
}

.footer .tab-tit span:hover,
.footer .tab-tit span.active {
    background: var(--accent-color);
    color: #fff;
}

.footer .tab-cont {
    margin-bottom: 30px;
}

.footer .tab {
    display: none;
}

.footer .tab.active {
    display: block;
}

.footer .tab .para {
    color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    line-height: 1.8;
}

.footer .n-share {
    text-align: center;
}

.footer .n-share .wechat {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
}

.footer .n-share .wechat:hover {
    transform: scale(1.1);
}

.footer .bot-block {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .bot-block p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.icp-number {
    margin-left: 20px;
}

.contact-qr {
    display: flex;
    align-items: center;
    text-align: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-qr p {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
    font-weight: 500;
}

.contact-qr img {
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
}

.nav-menu.active li a {
    font-size: 1.5rem;
    color: var(--text-white);
}

/* PC Desktop - Restore spacing */
@media (min-width: 769px) {
    .services {
        padding: 120px 0 !important;
    }
    
    .index-s5 {
        padding: 150px 0 !important;
    }
    
    .index-s6 {
        padding: 150px 0 !important;
    }
    
    .footer {
        padding: 100px 0 30px !important;
    }
}

@media (max-width: 1200px) {
    .nav-wrapper {
        padding: 0 50px;
    }
    
    .hero-content,
    .hero-bottom {
        padding: 0 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-title {
        font-size: 42px;
    }
    
    .index-s5 .item {
        width: calc(50% - 15px);
    }
    
    .footer .top-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu,
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .services {
        padding: 80px 0 !important;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .index-s6 .item {
        width: 100%;
    }
    
    .footer .boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* ULTIMATE FORCE - NO SPACING AT ALL */
    section.index-s5,
    section.index-s6 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    
    section.services {
        padding: 60px 0 !important;
    }
    
    footer.footer {
        padding-top: 10px !important;
        padding-bottom: 30px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    
    html, body {
        background: #fff !important;
    }
    
    body {
        background-color: #fff !important;
    }
    
    a {
        -webkit-tap-highlight-color: transparent;
    }
    
    .bg {
        display: none !important;
    }
    
    .hero {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .hero-background {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .hero-video {
        display: none !important;
    }
    
    .hero-overlay {
        display: none !important;
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .services {
        min-height: auto;
    }
    
    .services .container {
        padding: 0 20px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-label {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .card-number {
        font-size: 48px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .card-details {
        max-height: none;
        padding: 15px 20px;
        margin-top: 20px;
        opacity: 1;
    }
    
    .services-background {
        background: #fff !important;
    }
    
    .services-video {
        display: none !important;
    }
    
    .services-overlay {
        display: none !important;
    }
    
    .services-particles {
        display: none !important;
    }
    
    .services-cta {
        padding: 14px 36px;
        font-size: 14px;
    }
    
    .index-s5 {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .index-s6 {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .s6-background {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .s6-video {
        display: none !important;
    }
    
    .s6-overlay {
        display: none !important;
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .footer {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .navbar {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .navbar.scrolled {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .hero-typing-text,
    .hero-cursor {
        color: #111 !important;
    }
    
    .navbar .logo svg text {
        fill: #111 !important;
    }
    
    .nav-menu li a {
        color: #111 !important;
    }
    
    .nav-wrapper {
        padding: 0 20px;
        justify-content: flex-start;
        position: relative;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo svg {
        height: 35px;
    }
    
    .hamburger {
        position: absolute;
        right: 20px;
    }
    
    .hero-content,
    .hero-bottom {
        padding: 0 20px;
    }
    
    .hero-typing-text {
        font-size: 2.5rem;
    }
    
    .hero-cursor {
        font-size: 2.5rem;
    }
    
    .services-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-showcase {
        grid-template-columns: 1fr;
    }
    
    .industry-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-title {
        font-size: 36px;
    }
    
    .industry-name {
        font-size: 28px;
    }
    
    .industry-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .industry-tab {
        flex: 1;
        min-width: calc(50% - 10px);
    }
    
    .hero-quote {
        display: none;
    }
    
    .index-s6 .item .txt-box {
        background: #fff !important;
        background-color: #fff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .index-s6 .item:hover .txt-box {
        background: #fff !important;
        background-color: #fff !important;
    }
    
    .services .txt {
        border: none;
        border-radius: 0;
        padding: 0;
    }
    
    .index-s5 .container {
        padding: 0 20px;
    }
    
    .industry-counter {
        right: 15px;
        bottom: -15px;
        padding: 10px 20px;
    }
    
    .counter-number {
        font-size: 24px;
    }
    
    .industry-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .industries-cta {
        padding: 14px 36px;
        font-size: 14px;
    }
    
    .index-s6 .container {
        border: none;
        border-radius: 0;
        padding: 0;
    }
    
    .footer {
        border: none;
        border-radius: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        display: flex;
    }
    
    .footer .top-block {
        align-items: center;
        margin-right: 0;
        margin-left: 0;
    }
    
    .contact-qr {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        position: static;
        transform: none;
        right: auto;
        top: auto;
    }
    
    .contact-qr p {
        margin-right: 0;
    }
}
