.homepage {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.hp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hp-section {
    padding: 50px 0;
    width: 100%;
}

.hp-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
    text-align: center;
}

.hp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.hp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.35) 0%, rgba(30, 58, 138, 0.25) 50%, rgba(37, 99, 235, 0.20) 100%);
    z-index: 1;
}

.hp-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hp-hero-content {
    max-width: 750px;
    text-align: left;
    color: #fff;
    padding: 0;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 6px;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.hp-hero-badge span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
}

.hp-hero-content h1 {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.hp-hero-content h1 span {
    color: #60a5fa;
    text-shadow: 0 2px 25px rgba(96, 165, 250, 0.5);
}

.hp-hero-content p {
    font-size: 19px;
    font-weight: 400;
    margin: 0 0 45px 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 580px;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.hp-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 70px;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hp-btn-primary {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.hp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.hp-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.hp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.hp-hero-stats {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
}

.hp-stat {
    text-align: left;
    padding: 0;
}

.hp-stat-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hp-stat-label {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hp-btn-dark {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.hp-btn-dark:hover {
    background: #333;
}

.hp-btn-lg {
    padding: 14px 32px;
}

.hp-grid {
    display: grid;
    width: 100%;
}

.hp-grid-3 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hp-grid-4 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.hp-grid-hot {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}


.hp-card {
    display: block;
    background: #fff;
    text-decoration: none;
    position: relative;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    transition: all 0.3s;
    overflow: hidden;
}

.hp-card:hover,
.hp-card:focus,
.hp-card:active,
.hp-card:visited {
    border: 1px solid #e0e0e0 !important;
    outline: none !important;
}

.hp-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #bbb !important;
}

.hp-card-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
}

.hp-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
}

.hp-card-body {
    padding: 8px 10px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 1;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-card-body h3 {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s;
}

.hp-card:hover .hp-card-body h3 {
    color: var(--nav-bg, #0066cc);
}

.hp-card-body span {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.hp-hot-badge {
    position: absolute;
    top: 10px;
    left: -28px;
    background: #ef4444;
    color: #fff;
    padding: 4px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    transform: rotate(-45deg);
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hp-categories {
    background: #f8f9fa;
}

.hp-categories .hp-container {
    max-width: 1200px !important;
}

.hp-products {
    background: #fff;
}

.hp-products .hp-container {
    max-width: 1200px !important;
}

.focus .hp-container {
    max-width: 1200px !important;
}

.hp-categories-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 15px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f8f9fa;
}

.hp-categories-scroll::-webkit-scrollbar {
    height: 6px;
}

.hp-categories-scroll::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.hp-categories-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.hp-categories-scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.hp-category-item {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
}

.hp-category-item:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.hp-category-image {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-category-content {
    padding: 12px;
    text-align: center;
}

.hp-category-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.hp-category-content span {
    font-size: 12px;
    color: #999;
    display: block;
}


.hp-about {
    background: #fff;
    padding: 100px 0;
}

/* Focus Section - 参考主题样式 */
.focus {
    background: #fff;
    padding: 15px 0 0;
}

.focus .hp-container {
    max-width: 1200px !important;
    padding: 0 20px;
}

/* 蓝色横幅标题栏 */
.focus-banner {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    margin-bottom: 5px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.focus-banner-left {
    background: var(--nav-bg, #0066cc);
    color: #fff;
    padding: 15px 80px 15px calc(max((100vw - 1200px) / 2, 0px) + 25px);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
}

.focus-banner-left h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.focus-banner-right {
    padding: 15px 25px;
    flex: 1;
}

.focus-banner-right span {
    font-size: 16px;
    color: var(--nav-bg, #0066cc);
    font-weight: 500;
}

/* 主内容区：左图右文 */
.focus-main {
    display: flex;
    align-items: stretch;
    gap: 30px;
    padding: 15px 0;
}

.focus-image {
    flex: 0.8;
    position: relative;
}


.focus-slider-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
}

.focus-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.focus-slide-item {
    width: 100%;
    height: 100%;
}

.focus-slide-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}

.focus-slide-item:hover img {
    transform: scale(1.05);
}

.focus-slide-item.active {
    display: block;
}

.focus-slide-item:not(.active) {
    display: none;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* 右侧文本区域 */
.focus-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.focus-highlight-banner {
    background: #f0f5ff;
    color: var(--nav-bg, #0066cc);
    padding: 12px 20px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

.focus-highlight-banner span {
    display: block;
}

.focus-delivery-flow {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 13px;
}

.focus-delivery-flow:first-child .focus-delivery-step {
    flex: 1;
    text-align: center;
    white-space: normal;
}

.focus-delivery-step {
    padding: 6px 10px;
    background: #f0f0f0;
    border-radius: 3px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.focus-delivery-arrow {
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
}

.focus-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px;
}

.focus-readmore {
    display: inline-block;
    padding: 10px 24px;
    background: var(--nav-bg, #0066cc);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.focus-readmore:hover {
    box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* 底部5图画廊 */
.focus-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 0 0 30px;
}

.focus-gallery-item {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #fff;
    padding: 6px;
    border: 1px solid #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.focus-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 响应式 */
@media (max-width: 768px) {
    .focus-banner {
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 0;
    }

    .focus-banner-left {
        padding: 12px 20px;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
        width: 100%;
    }

    .focus-banner-left h2 {
        font-size: 17px;
        white-space: normal;
        line-height: 1.4;
    }

    .focus-banner-right {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .focus-banner-right span {
        font-size: 13px;
    }

    .focus-main {
        flex-direction: column;
        gap: 20px;
    }

    .focus-buttons {
        flex-wrap: wrap;
    }

    .focus-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .focus-delivery-flow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .focus-delivery-step {
        font-size: 12px;
        padding: 4px 8px;
    }

    .focus-text p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .focus-banner-left {
        padding: 10px 16px;
    }

    .focus-banner-left h2 {
        font-size: 15px;
    }

    .focus-banner-right {
        padding: 8px 16px;
    }

    .focus-banner-right span {
        font-size: 12px;
    }

    .focus-gallery {
        grid-template-columns: 1fr;
    }

    .focus-delivery-flow {
        gap: 4px;
    }

    .focus-delivery-step {
        font-size: 11px;
        padding: 3px 6px;
    }

    .focus-text p {
        font-size: 12px;
    }

    .focus-readmore {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.hp-advantages {
    background: #f8f9fa;
    padding: 60px 0 !important;
}

.hp-why-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-adv {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.hp-adv:hover {
    border-color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.hp-adv svg {
    margin-bottom: 16px;
    color: #1a1a1a;
    width: 44px;
    height: 44px;
}

.hp-adv h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.hp-adv p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.hp-cta-certs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e8ecf0;
}


.hp-cta-certs:hover {
    opacity: 1;
}

.hp-cta-cert {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

.hp-cta-cert img {
    height: 108px;
    width: auto;
    object-fit: contain;
    display: block;

}

.hp-cta-cert svg {
    width: 72px;
    height: 72px;
    color: #999;
    flex-shrink: 0;
}

.hp-cta-cert span {
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;

}


@media (max-width: 992px) {

    .hp-why-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-why-advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-cta-certs {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .hp-cta-cert img {
        height: 80px !important;
    }

    .hp-cta-cert svg {
        width: 48px !important;
        height: 48px !important;
    }

    .hp-cta-cert span {
        font-size: 10px !important;
    }

}

.hp-hot {
    background: #f8f9fa;
}

.hp-hot .hp-container {
    max-width: 1200px !important;
}

.hp-center {
    text-align: center;
    margin-top: 30px;
}

.hp-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.hp-col h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    position: relative;
}

.hp-col h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1a1a1a;
    margin-top: 15px;
}

.hp-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 35px;
}

.hp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.hp-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.hp-features li:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.hp-features li svg {
    flex-shrink: 0;
    color: #1a1a1a;
}

.hp-features li span {
    flex: 1;
}

.hp-about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.hp-about-img:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.hp-about-slider {
    width: 100%;
    position: relative;
}

.hp-about-slider-container {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
}

.hp-about-slide {
    flex: 0 0 100%;
    animation: aboutSlide 12s infinite;
}

.hp-about-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes aboutSlide {
    0%, 16.67% { transform: translateX(0); }
    16.68%, 33.33% { transform: translateX(-100%); }
    33.34%, 50% { transform: translateX(-200%); }
    50.01%, 66.67% { transform: translateX(-300%); }
    66.68%, 83.33% { transform: translateX(-400%); }
    83.34%, 100% { transform: translateX(-500%); }
}



.hp-cta {
    padding: 60px 0;
    background: #f8f9fa;
}

.hp-cta-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.2;
    text-align: left;
}

.hp-cta-content > p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    text-align: left;
}

.hp-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hp-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    border-radius: 4px;
}

.hp-cta-btn-primary:hover {
    background: #333;
}

.hp-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
    border-radius: 4px;
}

.hp-cta-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}


.hp-cta-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hp-cta-news {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
}

.hp-cta-news h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a1a1a;
}

.hp-cta-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-cta-news-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hp-cta-news-list li:last-child {
    border-bottom: none;
}

.hp-cta-news-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
}

.hp-cta-news-date {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
    padding-top: 2px;
    min-width: 42px;
    font-weight: 500;
}

.hp-cta-news-title {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    transition: color 0.2s;
}

.hp-cta-news-list a:hover .hp-cta-news-title {
    color: #2271b1;
}

.hp-cta-news-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    padding: 6px 14px;
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.2s;
}

.hp-cta-news-more:hover {
    color: #fff;
    background: #1a1a1a;
    border-color: #1a1a1a;
}

@media (max-width: 1200px) {
    .hp-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-grid-4 {
        grid-template-columns: repeat(5, 1fr);
    }

    .hp-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hp-category-item {
        width: 160px;
    }
    
    .hp-category-image {
        height: 100px;
    }
    
    .hp-hero-content h1 {
        font-size: 50px;
    }
    
    .hp-hero-content p {
        font-size: 17px;
    }
    
    .hp-col h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .hp-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hp-hero-container {
        padding: 0 20px;
        align-items: center;
    }
    
    .hp-hero-content {
        text-align: left;
    }
    
    .hp-hero-content h1 {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
    
    .hp-hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hp-hero-btns {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        align-items: flex-start;
    }
    
    .hp-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hp-hero-stats {
        gap: 20px;
        justify-content: flex-start;
    }
    
    .hp-stat {
        padding: 12px 16px;
    }
    
    .hp-stat-value {
        font-size: 26px;
    }
    
    .hp-stat-label {
        font-size: 12px;
    }
    
    .focus-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .focus-box {
        text-align: center;
    }
    
    .focus-slider {
        max-width: 100%;
        width: 100%;
    }
    
    .hp-section {
        padding: 40px 0;
    }
    
    .hp-section h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .hp-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    

    .hp-why-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hp-adv {
        padding: 25px 20px !important;
    }
    
    .hp-adv svg {
        width: 40px !important;
        height: 40px !important;
    }
    
    .hp-adv h3 {
        font-size: 16px !important;
    }
    

    
    .hp-category-item {
        width: 140px;
    }
    
    .hp-category-image {
        height: 90px;
    }
    
    .hp-category-content {
        padding: 10px;
    }
    
    .hp-category-content h3 {
        font-size: 13px;
    }
    
    .hp-about {
        padding: 70px 0;
    }
    
    .hp-col h2 {
        font-size: 30px;
    }
    
    .hp-col p {
        font-size: 15px;
    }
    
    .hp-features li {
        padding: 12px 16px;
        font-size: 14px;
    }

    .hp-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .hp-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}

@media (max-width: 480px) {
    .hp-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hp-hero-container {
        padding: 0 20px;
    }
    
    .hp-hero-content h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    .hp-hero-content p {
        font-size: 14px;
    }
    
    .hp-hero-badge {
        padding: 8px 16px;
    }
    
    .hp-hero-badge span {
        font-size: 12px;
    }
    
    .hp-hero-btns {
        align-items: flex-start;
    }
    
    .hp-hero-stats {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .hp-stat {
        padding: 10px 14px;
    }
    
    .hp-stat-value {
        font-size: 22px;
    }
    
    .hp-stat-label {
        font-size: 11px;
    }
    
    .hp-about {
        padding: 60px 0;
    }
    
    .hp-col h2 {
        font-size: 26px;
    }
    
    .hp-col p {
        font-size: 14px;
    }
    
    .hp-features li {
        font-size: 14px;
        padding: 10px 14px;
        gap: 12px;
    }
    
    .hp-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hp-why-advantages {
        grid-template-columns: 1fr;
    }
    
    .hp-adv {
        padding: 20px 15px !important;
    }
    
    .hp-adv svg {
        width: 36px !important;
        height: 36px !important;
    }
    
    .hp-adv h3 {
        font-size: 15px !important;
    }
    
    .hp-adv p {
        font-size: 13px !important;
    }
    
    .hp-category-item {
        width: 120px;
    }
    
    .hp-category-image {
        height: 80px;
    }
    
    .hp-category-content {
        padding: 8px;
    }
    
    .hp-category-content h3 {
        font-size: 12px;
    }
    
    .hp-category-content span {
        font-size: 11px;
    }

    .hp-cta-grid {
        gap: 20px;
    }


    .hp-cta-certs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

}

/* Hot Products Slider */
.hp-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.hp-slider-container {
    overflow: hidden;
    width: 100%;
}

.hp-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.hp-slider-track .hp-card {
    flex: 0 0 calc((100% - 75px) / 6);
    min-width: calc((100% - 75px) / 6);
}

.hp-slider-btn {
    display: none;
}


.hp-slider-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    stroke-width: 2.5 !important;
}


@media (max-width: 1200px) {
    .hp-slider-track .hp-card {
        flex: 0 0 calc((100% - 60px) / 5);
        min-width: calc((100% - 60px) / 5);
    }
}

@media (max-width: 768px) {
    .hp-slider-wrapper {
        padding: 0;
    }

    .hp-slider-track .hp-card {
        flex: 0 0 calc((100% - 20px) / 3);
        min-width: calc((100% - 20px) / 3);
    }
}

@media (max-width: 480px) {
    .hp-slider-wrapper {
        padding: 0;
    }

    .hp-slider-track .hp-card {
        flex: 0 0 calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
    }
}

/* ===== News & CTA Section ===== */
.hp-cta { padding: 80px 0; background: #f8f9fa; }
.hp-news-section { max-width: 1200px; margin: 0 auto; }
.hp-news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.hp-news-header-left { display: flex; flex-direction: column; gap: 8px; }
.hp-news-eyebrow { font-size: 11px; font-weight: 700; color: #2563eb; letter-spacing: 2.5px; text-transform: uppercase; }
.hp-news-header h2 { font-size: 28px; font-weight: 700; color: #111; margin: 0; letter-spacing: -0.3px; }
.hp-news-all { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #555; text-decoration: none; transition: color 0.2s; }
.hp-news-all:hover { color: #2563eb; }
.hp-news-all svg { transition: transform 0.2s; }
.hp-news-all:hover svg { transform: translateX(3px); }

.hp-news-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }

.hp-news-lead { position: relative; border-radius: 14px; overflow: hidden; background: #1a1a2e; min-height: 480px; }
.hp-news-lead-link { display: block; text-decoration: none; color: #fff; height: 100%; position: relative; }
.hp-news-lead-img { position: absolute; inset: 0; }
.hp-news-lead-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hp-news-lead-img-empty { background: linear-gradient(135deg, #1e293b, #334155); }
.hp-news-lead-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%); transition: background 0.3s; }
.hp-news-lead:hover .hp-news-lead-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.9) 100%); }
.hp-news-lead:hover .hp-news-lead-img img { transform: scale(1.05); }
.hp-news-lead-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 40px; z-index: 2; }
.hp-news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hp-news-cat { font-size: 11px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; background: rgba(37,99,235,0.8); border-radius: 20px; backdrop-filter: blur(4px); }
.hp-news-date { font-size: 12px; color: rgba(255,255,255,0.7); }
.hp-news-lead-title { font-size: 26px; font-weight: 700; color: #fff; margin: 0 0 10px; line-height: 1.3; }
.hp-news-excerpt { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0 0 14px; }
.hp-news-read { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: #93c5fd; transition: gap 0.2s; }
.hp-news-lead:hover .hp-news-read { gap: 8px; color: #fff; }

.hp-news-list { display: flex; flex-direction: column; background: #fff; border: 1px solid #e8ecf0; border-radius: 14px; overflow: hidden; }
.hp-news-list-item { border-bottom: 1px solid #e8ecf0; }
.hp-news-list-item:last-child { border-bottom: none; }
.hp-news-list-link { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; text-decoration: none; transition: background 0.2s; }
.hp-news-list-link:hover { background: #f8f9fa; }
.hp-news-list-date { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 56px; padding: 8px 0; background: #f0f5ff; border-radius: 8px; }
.hp-news-list-day { font-size: 22px; font-weight: 700; color: #2563eb; line-height: 1; }
.hp-news-list-month { font-size: 11px; font-weight: 600; color: #2563eb; text-transform: uppercase; margin-top: 2px; }
.hp-news-list-year { font-size: 10px; color: #888; margin-top: 1px; }
.hp-news-list-content { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hp-news-list-cat { font-size: 11px; color: #2563eb; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hp-news-list-title { font-size: 15px; font-weight: 600; color: #1a1a1a; margin: 0; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: color 0.2s; }
.hp-news-list-link:hover .hp-news-list-title { color: #2563eb; }

/* ===== Certs ===== */
.hp-cta-certs { display: flex; align-items: flex-start; justify-content: flex-end; gap: 10px; margin-top: 40px; padding-top: 20px; border-top: 1px solid #e8ecf0; max-width: 1200px; margin-left: auto; margin-right: auto; }
.hp-cta-cert { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #666; white-space: nowrap; }
.hp-cta-cert img { height: 108px; width: auto; object-fit: contain; display: block; }
.hp-cta-cert svg { width: 72px; height: 72px; color: #999; flex-shrink: 0; }
.hp-cta-cert span { font-weight: 600; letter-spacing: 0.3px; text-align: center; }

/* ===== VR Section ===== */
.hp-vr { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #0a0f1a; }
.hp-vr-bg { position: absolute; inset: 0; }
.hp-vr-bg img { width: 100%; height: 100%; object-fit: cover; }
.hp-vr-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.25) 100%); }
.hp-vr-content { position: relative; z-index: 2; text-align: center; max-width: 680px; padding: 60px 24px; color: #fff; }
.hp-vr-icon { width: 80px; height: 80px; margin: 0 auto 24px; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.hp-vr-icon::before { content: ''; position: absolute; inset: -6px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.hp-vr-icon svg { width: 36px; height: 36px; opacity: .9; }
.hp-vr-content h2 { font-size: 32px; font-weight: 700; margin: 0 0 12px; letter-spacing: 2px; line-height: 1.2; text-transform: uppercase; }
.hp-vr-content p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); margin: 0 0 32px; letter-spacing: .3px; }
.hp-vr-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: rgba(255,255,255,.12); color: #fff; text-decoration: none; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all .3s ease; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); letter-spacing: .5px; }
.hp-vr-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); transform: translateY(-1px); }
.hp-vr-btn svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
    .hp-news-grid { grid-template-columns: 1fr; }
    .hp-news-lead { min-height: 320px; }
    .hp-news-lead-title { font-size: 22px; }
    .hp-news-lead-body { padding: 24px 28px; }
    .hp-news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hp-news-header h2 { font-size: 22px; }
    .hp-news-list-link { padding: 14px 16px; gap: 12px; }
    .hp-news-list-date { width: 48px; padding: 6px 0; }
    .hp-news-list-day { font-size: 18px; }
    .hp-news-list-title { font-size: 14px; }
    .hp-vr { min-height: 380px; }
    .hp-vr-content { padding: 40px 20px; }
    .hp-vr-icon { width: 64px; height: 64px; margin-bottom: 18px; }
    .hp-vr-icon svg { width: 28px; height: 28px; }
    .hp-vr-content h2 { font-size: 24px; letter-spacing: 1.5px; }
    .hp-vr-content p { font-size: 13px; }
    .hp-vr-btn { padding: 12px 28px; font-size: 13px; }
    .hp-hot-badge {
        top: 6px;
        left: -18px;
        padding: 2px 20px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    .hp-grid-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hp-card-body {
        padding: 6px 8px;
        min-height: 36px;
    }
    .hp-card-body h3 {
        font-size: 11px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hp-cta-certs { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hp-hot-badge {
        top: 4px;
        left: -14px;
        padding: 2px 16px;
        font-size: 8px;
    }
    .hp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .hp-card-body {
        padding: 4px 6px;
        min-height: 32px;
    }
    .hp-card-body h3 {
        font-size: 10px;
        line-height: 1.2;
    }
    .hp-products .hp-container {
        padding: 0 12px;
    }
    .hp-news-lead { min-height: 240px; }
    .hp-news-lead-body { padding: 20px 22px; }
    .hp-news-lead-title { font-size: 18px; }
    .hp-news-excerpt { display: none; }
    .hp-news-list-link { padding: 12px 14px; gap: 10px; }
    .hp-news-list-date { width: 42px; padding: 4px 0; }
    .hp-news-list-day { font-size: 16px; }
    .hp-news-list-month { font-size: 10px; }
    .hp-news-list-year { font-size: 9px; }
    .hp-news-list-title { font-size: 13px; }
    .hp-news-list-cat { display: none; }
}


