/* ==========================================================================
   首页专属样式 — "科研期刊 × 精密仪器"设计语言
   仅由 pages/home/index.html 加载，全部样式限定在 hp- 前缀作用域，
   不影响其他页面。加载顺序置于 style.css / responsive.css 之后。
   ========================================================================== */

/* ---------- 设计变量 ---------- */
:root {
    --hp-ink: #10262b;            /* 深墨青 */
    --hp-ink-soft: #3d5a61;       /* 柔和墨青 */
    --hp-teal: #0e7c7b;           /* 主青 */
    --hp-teal-deep: #0a4a48;
    --hp-copper: #b4762e;         /* 铜色点缀（电极意象） */
    --hp-copper-soft: #c98f47;
    --hp-paper: #f6f4ee;          /* 暖纸白 */
    --hp-paper-deep: #efede5;
    --hp-white: #ffffff;
    --hp-line: rgba(16, 38, 43, 0.14);
    --hp-line-soft: rgba(16, 38, 43, 0.08);
    --hp-serif: 'Noto Serif SC', serif;
    --hp-sans: 'Noto Sans SC', sans-serif;
}

/* ==========================================================================
   1. HERO 首屏
   ========================================================================== */
.hp-hero {
    position: relative;
    background:
        repeating-linear-gradient(0deg, var(--hp-line-soft) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, var(--hp-line-soft) 0 1px, transparent 1px 44px),
        radial-gradient(ellipse 90% 70% at 70% 10%, rgba(14, 124, 123, 0.06), transparent 60%),
        var(--hp-paper);
    padding: 92px 0 0;
    overflow: hidden;
}

/* 右上角铜色角标装饰 */
.hp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    background:
        linear-gradient(135deg, transparent 49.7%, rgba(180, 118, 46, 0.35) 49.7%, rgba(180, 118, 46, 0.35) 50.3%, transparent 50.3%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
}

.hp-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 72px;
    align-items: center;
    padding-bottom: 84px;
}

/* 左栏文案 */
.hp-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--hp-teal);
    font-weight: 600;
    margin-bottom: 30px;
}

.hp-hero-eyebrow::before {
    content: '';
    width: 44px;
    height: 1px;
    background: var(--hp-teal);
}

.hp-hero-title {
    font-family: var(--hp-serif);
    font-size: clamp(38px, 4.6vw, 60px);
    font-weight: 900;
    line-height: 1.22;
    color: var(--hp-ink);
    margin: 0 0 26px;
    letter-spacing: 0.5px;
}

.hp-hero-title em {
    font-style: normal;
    color: var(--hp-teal);
    position: relative;
    white-space: nowrap;
}

/* 手绘感铜色下划线 */
.hp-hero-title em::after {
    content: '';
    position: absolute;
    left: 2%;
    bottom: 6px;
    width: 96%;
    height: 10px;
    background: linear-gradient(90deg, rgba(180, 118, 46, 0.32), rgba(180, 118, 46, 0.10));
    transform: skewX(-14deg);
    z-index: -1;
}

.hp-hero-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--hp-ink-soft);
    max-width: 560px;
    margin: 0 0 40px;
}

.hp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* 实心按钮 */
.hp-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hp-ink);
    color: #fff;
    text-decoration: none;
    padding: 15px 34px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-btn-solid i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.hp-btn-solid:hover {
    background: var(--hp-teal-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 74, 72, 0.22);
}

.hp-btn-solid:hover i {
    transform: translateX(4px);
}

/* 描边按钮 */
.hp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--hp-ink);
    text-decoration: none;
    padding: 15px 34px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--hp-ink);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hp-btn-ghost:hover {
    background: var(--hp-ink);
    color: #fff;
    transform: translateY(-2px);
}

/* 右栏仪器面板卡 */
.hp-hero-panel {
    position: relative;
    background: var(--hp-white);
    border: 1px solid var(--hp-line);
    padding: 18px 18px 22px;
    box-shadow: 0 24px 60px rgba(16, 38, 43, 0.10);
}

/* 面板四角刻度 */
.hp-hero-panel::before,
.hp-hero-panel::after {
    content: '+';
    position: absolute;
    color: var(--hp-copper);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

.hp-hero-panel::before {
    top: 10px;
    left: 12px;
}

.hp-hero-panel::after {
    bottom: 10px;
    right: 12px;
}

.hp-hero-panel-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--hp-ink-soft);
    padding: 6px 6px 14px;
    border-bottom: 1px solid var(--hp-line-soft);
    margin-bottom: 16px;
}

.hp-hero-panel-label b {
    font-family: var(--hp-serif);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--hp-ink);
}

.hp-hero-panel-img {
    position: relative;
    aspect-ratio: 4 / 3.1;
    background: var(--hp-paper-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-hero-panel-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-hero-panel-img img.active {
    opacity: 1;
}

.hp-hero-panel:hover .hp-hero-panel-img img.active {
    transform: scale(1.04);
}

/* 面板文字随图片切换的淡入淡出 */
.hp-hero-panel-label,
.hp-hero-panel-caption {
    transition: opacity 0.45s ease;
}

.hp-hero-panel.is-switching .hp-hero-panel-label,
.hp-hero-panel.is-switching .hp-hero-panel-caption {
    opacity: 0.15;
}

/* 图片切换指示点 */
.hp-hero-panel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.hp-hero-panel-dots span {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--hp-line);
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
}

.hp-hero-panel-dots span.active {
    width: 20px;
    background: var(--hp-copper);
}

.hp-hero-panel-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 0 6px;
    font-size: 13px;
    color: var(--hp-ink-soft);
}

.hp-hero-panel-caption b {
    color: var(--hp-ink);
    font-weight: 600;
}

.hp-hero-panel-caption span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--hp-teal);
}

/* 首屏底部数据带 */
.hp-hero-stats {
    border-top: 1px solid var(--hp-line);
}

.hp-stats-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hp-stat {
    padding: 34px 28px 38px;
    border-left: 1px solid var(--hp-line);
    position: relative;
}

.hp-stat:first-child {
    border-left: none;
}

.hp-stat-num {
    font-family: var(--hp-serif);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    color: var(--hp-ink);
    line-height: 1;
    margin-bottom: 10px;
}

.hp-stat-num sup {
    font-size: 0.45em;
    color: var(--hp-copper);
    font-weight: 700;
    margin-left: 2px;
}

.hp-stat-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--hp-ink-soft);
}

/* ==========================================================================
   2. 通用章节头（编辑风编号）
   ========================================================================== */
.hp-section {
    padding: 96px 0;
}

.hp-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    margin-bottom: 52px;
}

.hp-section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3.5px;
    color: var(--hp-teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.hp-section-eyebrow::before,
.hp-section-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--hp-copper);
}

.hp-section-title {
    font-family: var(--hp-serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 900;
    color: var(--hp-ink);
    line-height: 1.25;
    margin: 0;
}

.hp-section-title small {
    display: block;
    font-family: var(--hp-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--hp-ink-soft);
    margin-top: 12px;
}

.hp-section-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--hp-ink);
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--hp-ink);
    transition: color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.hp-section-link i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.hp-section-link:hover {
    color: var(--hp-teal);
    border-color: var(--hp-teal);
}

.hp-section-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   3. 热销产品
   ========================================================================== */
.hp-hot {
    background: var(--hp-white);
    border-top: 1px solid var(--hp-line-soft);
    border-bottom: 1px solid var(--hp-line-soft);
}

.hp-hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.hp-hot-card {
    position: relative;
    background: var(--hp-white);
    border: 1px solid var(--hp-line);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* 顶部青色展开线 */
.hp-hot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hp-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.hp-hot-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 124, 123, 0.4);
    box-shadow: 0 20px 44px rgba(16, 38, 43, 0.10);
}

.hp-hot-card:hover::before {
    transform: scaleX(1);
}

/* 徽章：极简细边框样式 */
.hp-hot-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid var(--hp-line);
    border-radius: 2px;
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--hp-ink);
}

.hp-hot-badge i {
    font-size: 10px;
    color: var(--hp-copper);
}

.hp-hot-badge.is-teal i {
    color: var(--hp-teal);
}

.hp-hot-img {
    aspect-ratio: 4 / 3;
    background: var(--hp-paper-deep);
    overflow: hidden;
}

.hp-hot-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 22px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-hot-card:hover .hp-hot-img img {
    transform: scale(1.06);
}

.hp-hot-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--hp-line-soft);
}

.hp-hot-body h3 {
    font-family: var(--hp-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--hp-ink);
    margin: 0 0 10px;
    line-height: 1.35;
}

.hp-hot-body p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--hp-ink-soft);
    margin: 0 0 22px;
    flex: 1;
}

.hp-hot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--hp-teal);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.25s ease;
}

.hp-hot-link i {
    font-size: 11px;
}

.hp-hot-link:hover {
    color: var(--hp-teal-deep);
    gap: 14px;
}

/* ==========================================================================
   4. 核心业务领域（编号板块 + 滑块）
   ========================================================================== */
.hp-business {
    background: var(--hp-paper);
}

.hp-block {
    padding: 56px 0;
    border-top: 1px solid var(--hp-line);
}

.hp-block:first-of-type {
    border-top: none;
    padding-top: 8px;
}

.hp-block-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
}

.hp-block-num {
    font-family: var(--hp-serif);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(180, 118, 46, 0.65);
    letter-spacing: 2px;
}

.hp-block-title {
    font-family: var(--hp-serif);
    font-size: 27px;
    font-weight: 700;
    color: var(--hp-ink);
    margin: 0 0 6px;
    line-height: 1.3;
}

.hp-block-desc {
    font-size: 14px;
    color: var(--hp-ink-soft);
    margin: 0;
    letter-spacing: 0.5px;
}

/* 品类跳转入口 */
.hp-block-entry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--hp-ink-soft);
    text-decoration: none;
    padding: 9px 18px;
    border: 1px solid var(--hp-line);
    border-radius: 2px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.hp-block-entry i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.hp-block-entry:hover {
    color: #fff;
    background: var(--hp-ink);
    border-color: var(--hp-ink);
}

.hp-block-entry:hover i {
    transform: translateX(3px);
}

/* ---- 滑块（保持 JS 结构，覆盖外观） ---- */
.hp-slider {
    position: relative;
    padding: 0;
    overflow: hidden; /* 必须裁切横向轮播轨道 */
}

.hp-slider .products-container {
    gap: 25px; /* 必须与 main.js 中硬编码的间距一致 */
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 覆盖共享样式中的产品卡片外观 */
.hp-slider .product-item {
    flex: 0 0 calc(25% - 18.75px);
    min-width: calc(25% - 18.75px);
    background: var(--hp-white);
    border: 1px solid var(--hp-line);
    border-radius: 3px;
    padding: 0 0 24px;
    text-align: left;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-slider .product-item::before {
    display: none; /* 移除共享样式的渐变顶线 */
}

.hp-slider .product-item:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 124, 123, 0.45);
    box-shadow: 0 16px 36px rgba(16, 38, 43, 0.09);
    background: var(--hp-white);
}

.hp-slider .product-image {
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 2px 2px 0 0;
    background: var(--hp-paper-deep);
    box-shadow: none;
    border-bottom: 1px solid var(--hp-line-soft);
    min-width: 0; /* 抵消 style.css 中 .product-image 的 min-width:400px，防止图片框超出卡片右侧被裁切，导致图片视觉上偏右 */
}

.hp-slider .product-image::before {
    display: none;
}

.hp-slider .product-image img {
    object-fit: contain;
    object-position: center center;
    padding: 16px;
}

.hp-slider .product-item:hover .product-image {
    transform: none;
    box-shadow: none;
}

.hp-slider .product-item:hover .product-image img {
    transform: scale(1.05);
}

.hp-slider .product-item h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--hp-ink);
    line-height: 1.45;
    margin: 20px 20px 8px;
    text-align: left;
    transition: color 0.25s ease;
}

.hp-slider .product-item:hover h4 {
    color: var(--hp-teal);
}

.hp-slider .product-title-link {
    color: inherit !important;
    text-decoration: none !important;
}

.hp-slider .product-item p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--hp-ink-soft);
    margin: 0 20px;
    text-align: left;
}

.hp-slider .product-item:hover p {
    color: var(--hp-ink-soft);
}

/* 服务类条目（图标卡片，替代 emoji） */
.hp-slider .product-item .product-icon {
    font-size: 34px;
    width: 64px;
    height: 64px;
    margin: 26px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hp-line);
    border-radius: 50%;
    color: var(--hp-teal);
    background: rgba(14, 124, 123, 0.05);
    transition: all 0.3s ease;
}

.hp-slider .product-item:hover .product-icon {
    transform: none;
    background: var(--hp-teal);
    color: #fff;
    border-color: var(--hp-teal);
}

/* 滑块按钮：幽灵圆钮 */
.hp-slider .slider-controls {
    top: 42%;
}

.hp-slider .slider-btn {
    width: 44px;
    height: 44px;
    background: var(--hp-white);
    color: var(--hp-ink);
    border: 1px solid var(--hp-line);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(16, 38, 43, 0.10);
    transition: all 0.25s ease;
}

.hp-slider .slider-btn:hover {
    background: var(--hp-ink);
    color: #fff;
    border-color: var(--hp-ink);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(16, 38, 43, 0.18);
}

.hp-slider .slider-btn:disabled {
    background: var(--hp-white);
    color: rgba(16, 38, 43, 0.25);
    border-color: var(--hp-line-soft);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================================================
   5. 技术咨询服务与数据库（核心业务 04 板块，与上方编号板块同风格）
   ========================================================================== */
.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hp-service-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-line);
    border-radius: 3px;
    padding: 42px 36px 44px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: var(--hp-copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 118, 46, 0.45);
    box-shadow: 0 16px 36px rgba(16, 38, 43, 0.09);
}

.hp-service-card:hover::before {
    transform: scaleX(1);
}

.hp-service-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--hp-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--hp-teal);
    background: var(--hp-paper);
    margin-bottom: 26px;
    transition: all 0.3s ease;
}

.hp-service-card:hover .hp-service-icon {
    background: var(--hp-teal);
    border-color: var(--hp-teal);
    color: #fff;
}

.hp-service-image {
    margin: -42px -36px 0;
    height: 190px;
    background: var(--hp-white);
    border-bottom: 1px solid var(--hp-line);
    border-radius: 3px 3px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform 0.4s ease;
}

.hp-service-card:hover .hp-service-image img {
    transform: scale(1.05);
}

.hp-service-card .hp-service-icon {
    margin-top: -28px;
    position: relative;
    z-index: 1;
    background: var(--hp-white);
}

.hp-service-card h4 {
    font-family: var(--hp-serif);
    font-size: 21px;
    font-weight: 700;
    color: var(--hp-ink);
    margin: 0 0 12px;
    line-height: 1.4;
}

.hp-service-card h4 span {
    display: block;
    font-family: var(--hp-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--hp-copper);
    margin-bottom: 8px;
}

.hp-service-card p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--hp-ink-soft);
    margin: 0 0 26px;
    flex: 1;
}

.hp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    letter-spacing: 2px;
    color: var(--hp-ink);
    font-weight: 600;
    transition: gap 0.25s ease, color 0.25s ease;
}

.hp-service-link i {
    font-size: 11px;
}

.hp-service-card:hover .hp-service-link {
    gap: 14px;
    color: var(--hp-copper);
}

/* ==========================================================================
   6. 响应式
   ========================================================================== */
@media (max-width: 1200px) {
    .hp-hero-grid {
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .hp-hero {
        padding-top: 72px;
    }

    .hp-hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
        padding-bottom: 64px;
    }

    .hp-hero-lead {
        max-width: 100%;
    }

    .hp-hero-panel {
        max-width: 560px;
    }

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

    .hp-slider .product-item {
        flex: 0 0 calc(50% - 12.5px);
        min-width: calc(50% - 12.5px);
    }

    .hp-services-grid {
        grid-template-columns: 1fr;
    }

    .hp-block-head {
        grid-template-columns: auto 1fr;
    }

    .hp-block-entry {
        grid-column: 2;
        justify-self: start;
    }
}

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

    .hp-hero {
        padding-top: 56px;
    }

    .hp-hero-title {
        font-size: clamp(32px, 8vw, 42px);
    }

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

    .hp-stat {
        padding: 24px 20px 26px;
    }

    .hp-stat:nth-child(3) {
        border-left: none;
    }

    .hp-stat:nth-child(n + 3) {
        border-top: 1px solid var(--hp-line);
    }

    .hp-section-head {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-bottom: 36px;
    }

    .hp-hot-grid {
        grid-template-columns: 1fr;
    }

    .hp-block {
        padding: 40px 0;
    }

    .hp-block-num {
        font-size: 40px;
    }

    .hp-block-title {
        font-size: 22px;
    }

    .hp-slider .product-item {
        flex: 0 0 calc(100% - 25px);
        min-width: calc(100% - 25px);
    }

    .hp-slider .slider-btn {
        width: 38px;
        height: 38px;
    }

    .hp-service-card {
        padding: 32px 26px 36px;
    }

    .hp-service-image {
        margin: -32px -26px 0;
        height: 170px;
    }
}
