.hero-banner {
    position: relative;
    width: 100%;
}

.hero-banner .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: left;
    color: var(--color-white);
    z-index: 10;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 36px;
    margin-bottom: var(--space-2xl);
    opacity: 0.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(48, 85, 165, 0.4);
}

.hero-btn span {
    transition: var(--transition-normal);
}

.hero-btn:hover span {
    transform: translateX(4px);
}

.hero-banner .swiper-pagination {
    bottom: 30px;
}

.hero-banner .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hero-banner .swiper-pagination-bullet-active {
    background: var(--color-white);
}

.company-intro {
    background-image: url('../assets/images/index/gallery/company-introduction-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--space-5xl) 0;
}

.company-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-intro-text {
    text-align: left;
    margin-bottom: var(--space-3xl);
}

.company-intro-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: #3D3F45;
    margin-bottom: var(--space-md);
}

.company-intro-text p:last-child {
    margin-bottom: 0;
}

.company-stats {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
}

.enterprise-dev {
    padding: 0;
    background: transparent;
}

.enterprise-dev .container {
    max-width: 100%;
    padding: 0;
}

.enterprise-dev-image {
    width: 100%;
}

.enterprise-dev-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-solutions {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.contact-section {
    background: #f7f8f9;
    padding: var(--space-5xl) 0;
}

.contact-desc {
    text-align: center;
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-divider {
    width: 80px;
    height: 3px;
    background: #9ca3af;
    margin: 0 auto var(--space-3xl);
    border-radius: 100px;
}


.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--space-4xl);
}

.contact-info {
    flex: 0.4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-image {
    flex: 1.6;
    max-width: 750px;
    display: flex;
    align-items: stretch;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}