/* 全局重置与变量 - 所有class以hermes开头 */
:root {
    --hermes-orange: #F37021;
    --hermes-orange-dark: #D45A0F;
    --hermes-orange-light: #FFF4ED;
    --hermes-orange-50: #FFF7ED;
    --hermes-orange-100: #FFEDD5;
    --hermes-orange-200: #FED7AA;
    --hermes-gold: #D4A053;
    --hermes-gold-light: #F5E6CC;
    --hermes-bg: #ffffff;
    --hermes-bg-soft: #FAFAFA;
    --hermes-bg-card: #F9F9FB;
    --hermes-surface: #FFFFFF;
    --hermes-text: #1a1a2e;
    --hermes-text-2: #666;
    --hermes-text-3: #8B8DA3;
    --hermes-border: #E8E8EF;
    --hermes-border-2: #F0F0F5;
    --hermes-shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
    --hermes-shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.03);
    --hermes-shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --hermes-shadow-orange: 0 8px 30px rgba(243,112,33,0.2);
    --hermes-radius: 16px;
    --hermes-radius-lg: 24px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family:pingfang SC,helvetica neue,arial,hiragino sans gb,microsoft yahei ui,microsoft yahei,simsun,sans-serif!important;
    background: var(--hermes-bg);
    color: var(--hermes-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(243,112,33,0.15); color: var(--hermes-text); }

/* 粒子画布与光晕 */
#hermesParticlesCanvas {
    position: fixed; top:0; left:0; width:100%; height:100%;
    z-index: 0; pointer-events: none;
}
.hermes-mouse-glow {
    position: fixed; width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,112,33,0.05) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
    transform: translate(-50%,-50%);
    transition: left 0.15s ease-out, top 0.15s ease-out;
}
.hermes-z-content { position: relative; z-index: 2; }

/* 容器最大宽度 1350px */
.hermes-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 段落、标题全局 */
.hermes-section { padding-top: 90px; position: relative; }
@media (max-width: 768px) {
    .hermes-section { padding-top: 50px; }
}

/* 大标题组 - 全部居中，已去掉英文标签 */
.hermes-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.hermes-section-title {
    font-size: clamp(28px, 4vw, 30px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--hermes-text);
}
.hermes-section-desc {
    font-size: 14px;
    color: var(--hermes-text-2);
    margin: 0 auto;
    line-height: 1.6;
}

/* 卡片通用样式 */
.hermes-card {
    background: var(--hermes-surface);
    border: 1px solid var(--hermes-border);
    border-radius: var(--hermes-radius);
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.1);
    position: relative;
    height: 100%;
}
.hermes-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(243,112,33,0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.hermes-card:hover {
    box-shadow: var(--hermes-shadow-lg);
    transform: translateY(-4px);
}
.hermes-card:hover::before { opacity: 1; }

/* 按钮 */
.hermes-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #00b277, #038a5d);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--hermes-shadow-orange);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.hermes-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(243,112,33,0.3);
    text-decoration: none;
    color: #fff;
}
.hermes-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 52px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #00b277;
    color: var(--hermes-text);
    cursor: pointer;
    transition: all 0.3s;
}
.hermes-btn-outline:hover {
    border-color: var(--hermes-orange);
    color: var(--hermes-orange);
    box-shadow: var(--hermes-shadow-md);
    text-decoration: none;
}

/* Hero 区域 */
.hermes-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 20px;
    position: relative;
    overflow: hidden;
    background:url("images/hermes-bg-yw.png") top center no-repeat, linear-gradient(180deg,#fff3f7 0%,#ffffff 100%);
}
.hermes-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--hermes-orange);
    background: var(--hermes-orange-light);
    border: 1px solid var(--hermes-orange-200);
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
}
.hermes-hero-title {
    font-size: clamp(34px, 5.5vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
}
.hermes-gradient-text {
    background: linear-gradient(135deg, #ffb91d, #ff5a12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 10px;
}
.hermes-hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--hermes-text-2);
    max-width: 1040px;
    line-height: 1.7;
    margin: 0 auto 22px;
}
.hermes-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.hermes-hero-tag {
    font-size: 13px;
    color: var(--hermes-text-2);
    border: 1px solid var(--hermes-border);
    padding: 7px 16px;
    border-radius: 999px;
    transition: all 0.3s;
}
.hermes-hero-tag:hover {
    border-color: var(--hermes-orange-200);
    background: var(--hermes-orange-50);
    color: var(--hermes-orange);
    transform: translateY(-1px);
}
@keyframes hermesScrollAnim {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* 统计卡片 */
.hermes-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 80px 0 0;
}


.hermes-stat {
    padding: 28px 70px;
    text-align: center;
    border: 1px solid var(--hermes-border);
    border-radius: var(--hermes-radius);
    transition: all 0.35s;
    height: 100%;
}
.hermes-stat:hover {
    border-color: var(--hermes-orange-200);
    box-shadow: var(--hermes-shadow-md);
    transform: translateY(-3px);
}
.hermes-stat-number {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--hermes-orange), var(--hermes-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hermes-stat-label {
    font-size: 14px;
    color: var(--hermes-text-3);
    margin-top: 4px;
}
/* 公式区域 */
.hermes-formula {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 40px 0;
}
.hermes-formula-item {
    background: var(--hermes-surface);
    border: 1px solid var(--hermes-border);
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
}
.hermes-formula-op {
    font-size: 18px;
    font-weight: 700;
    color: var(--hermes-text-3);
}

/* 痛点和优势卡片 */
.hermes-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 36px;
    margin-bottom: 50px;
}
.hermes-pain-card {
    padding: 22px;
    text-align: center;
}
.hermes-pain-card h3{font-size:16px;font-weight:700;}
.hermes-pain-card p{font-size:14px;color: #666}
.hermes-pain-icon {
    width: 26px;
    height: 26px;
    border-radius: 100px;
    background: var(--hermes-orange-light);
    border: 1px solid var(--hermes-orange-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #e14e2e;
    margin: 0 auto 12px;
}

/* plus双卡片 */
.hermes-plus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 28px;
}
.hermes-plus-card {
    padding: 28px;
}
.hermes-plus-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hermes-plus-list {
    list-style: none;
    padding: 0;
}
.hermes-plus-list li {
    font-size: 14px;
    color: var(--hermes-text-2);
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
}
.hermes-plus-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hermes-orange);
}

/* 对比表 */
.hermes-compare-wrap {
    overflow-x: auto;
    margin-top: 36px;
}
.hermes-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    min-width: 580px;
    background: var(--hermes-surface);
    border: 1px solid var(--hermes-border);
    border-radius: var(--hermes-radius);
    overflow: hidden;
}
.hermes-compare-table thead th {
    background: var(--hermes-bg-card);
    padding: 24px 16px;
    font-weight: 700;
    text-align: left;
    border-bottom: 2px solid var(--hermes-border);
}
.hermes-compare-table tbody td {
    padding: 23px 16px;
    border-bottom: 1px solid var(--hermes-border-2);
    color: var(--hermes-text-2);
}
.hermes-check-mark {
    background: var(--hermes-orange-50);
    color: #00b277 !important;
    font-weight: 700;
    text-align: center;
}

/* 定价区域独立背景色全屏 */
.hermes-pricing-section {
    background: #fff7f9 url("images/hermes-bg2.png") bottom right no-repeat;
    padding: 90px 0;
    margin-top: 90px;
}
.hermes-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.hermes-pricing-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.hermes-pricing-card.featured {
    border-color: var(--hermes-orange);
    box-shadow: var(--hermes-shadow-orange);
}
.hermes-pricing-card.featured::after {
    content: '推荐';
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 800;
    background: var(--hermes-orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
}
.hermes-pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
    flex: 1;
    margin-top: 20px;
}
.hermes-pricing-list li {
    font-size: 14px;
    color: var(--hermes-text-2);
    padding: 9px 0;
    border-bottom: 1px solid var(--hermes-border-2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hermes-price {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

/* 模型标签 */
.hermes-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.hermes-model-card {
    background: var(--hermes-surface);
    border: 1px solid var(--hermes-border);
    border-radius: 14px;
    padding: 18px;
}
.hermes-model-card p{font-size: 14px;color: #666;margin-top: 10px}
.hermes-api-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.hermes-api-tag {
    font-size: 14px;
    color: var(--hermes-text-2);
    background: var(--hermes-bg-card);
    border: 1px solid var(--hermes-border);
    padding: 5px 14px;
    border-radius: 999px;
}

/* 场景 */
.hermes-scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.hermes-scene-card {
    padding: 24px;
}
.hermes-scene-card h3{font-size: 18px !important;font-weight: 700;}
.hermes-scene-card h3 span{
    width: 37px;
    height: 37px;
    border-radius: 9px;
    flex-shrink: 0;
    display: inline-block;
    line-height: 37px;
    text-align: center;
    background: #fff4ed;
}
.hermes-scene-card ul { list-style: none; padding-left: 0; margin-top: 10px; }
.hermes-scene-card li { font-size: 13px; color: var(--hermes-text-2); padding: 5px 0; position: relative; padding-left: 20px; }
.hermes-scene-card li::before { content: '✓'; position: absolute; left: 0; color: var(--hermes-orange); font-size: 12px; }

/* 步骤 */
.hermes-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.hermes-step-card {
    padding: 28px 20px;
    text-align: center;
}
.hermes-step-card h3{font-size: 18px;font-weight: 600}
.hermes-step-card p{font-size: 14px;color: #666}
.hermes-step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hermes-orange), var(--hermes-orange-dark));
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(243,112,33,0.2);
}

/* 交付清单 */
.hermes-checklist {
    margin-top: 40px;
}
.hermes-checklist h3{font-size: 18px;color: #333;font-weight: 700;;text-align: center}
.hermes-checklist ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.hermes-checklist li {
    font-size: 13px;
    color: var(--hermes-text-2);
    padding: 8px 10px;
    gap: 10px;
    border: 1px solid var(--hermes-border);
    text-align: center;
    border-radius: 100px;
}

/* FAQ - 恢复原始hover样式（保持原有边框与展开效果，无额外颜色变化） */
.hermes-faq-item {
    border: 1px solid var(--hermes-border);
    border-radius: var(--hermes-radius);
    margin-bottom: 12px;
    background: var(--hermes-surface);
    transition: all 0.3s ease;
    overflow: hidden;
}
.hermes-faq-item:hover {
    border-color: var(--hermes-orange-200);
    box-shadow: var(--hermes-shadow-sm);
}
.hermes-faq-question {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    gap: 16px;
    user-select: none;
}
.hermes-faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--hermes-bg-card);
    border: 1px solid var(--hermes-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 11px;
    color: var(--hermes-text-3);
}
.hermes-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.hermes-faq-item:hover .hermes-faq-answer,
.hermes-faq-item.open .hermes-faq-answer {
    max-height: 500px;
}
.hermes-faq-item:hover .hermes-faq-arrow,
.hermes-faq-item.open .hermes-faq-arrow {
    transform: rotate(180deg);
    background: var(--hermes-orange);
    border-color: var(--hermes-orange);
    color: #fff;
}
.hermes-faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--hermes-text-2);
    line-height: 1.8;
}

/* 信任区 */
.hermes-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.hermes-trust-card-horizontal {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
}

.hermes-trust-left {
    flex-shrink: 0;
}
.hermes-pain-icon1{
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--hermes-orange-light);
    border: 1px solid var(--hermes-orange-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #e14e2e;
    margin: 0 auto 12px;
}

.hermes-trust-right {
    flex: 1;
}

.hermes-trust-right h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--hermes-text);
}

.hermes-trust-right p {
    font-size: 13px;
    color: var(--hermes-text-3);
    line-height: 1.5;
    margin: 0;
}

/* 保持原有卡片内图标样式不变，但微调边距 */
.hermes-trust-card-horizontal .hermes-pain-icon {
    margin-bottom: 0;
}

/* 移动端适配：小屏幕时改为垂直布局 */
@media (max-width: 640px) {
    .hermes-trust-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    .hermes-trust-right {
        text-align: center;
    }
}

/* CTA横幅 */
.hermes-cta-banner {
    margin-top: 60px;
    margin-bottom: 90px;
    padding: 86px 40px;
    border-radius: var(--hermes-radius-lg);
    background:#fff4ed url("images/hermes-bg1.png") bottom center no-repeat;
    border: 1px solid var(--hermes-orange-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hermes-cta-banner h2{font-size: 30px;color: #000;font-weight: 700}
.hermes-cta-banner p{font-size: 14px;color: #333;margin-bottom: 30px}

/* 辅助类 */
.hermes-d-flex { display: flex; }
.hermes-gap-3 { gap: 16px; }
.hermes-justify-center { justify-content: center; }
.hermes-flex-wrap { flex-wrap: wrap; }

@media (max-width: 768px) {
    .hermes-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px}
    .hermes-stat {
        padding: 18px 20px !important;
    }
    .hermes-stat-number{font-size: 24px !important;}
    .hermes-hero{padding: 60px 20px 20px 20px}
    .hermes-step-grid { grid-template-columns: repeat(2, 1fr); }
    .hermes-section-title{font-size: 24px}
    .hermes-formula{margin: 20px 0;}
    .hermes-pricing-section{margin-top: 40px;padding: 40px 0;}
    .hermes-checklist ul{grid-template-columns: repeat(2, 1fr);
        gap: 10px;}
    .hermes-faq-question{font-size: 14px}
    .hermes-trust-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .hermes-cta-banner{padding: 40px 0px;margin-bottom: 50px}
    .hermes-cta-banner h2{font-size: 20px}
    .hermes-section-header{margin-bottom: 30px}
    .hermes-model-card{padding: 10px 20px}
}
@media (max-width: 480px) {
    .hermes-step-grid { grid-template-columns: 1fr; }
}
