/* ===== 海角平台 - 海角天涯·海洋蓝绿主题 ===== */
:root {
    --ocean-deep: #0A3D62;
    --ocean-mid: #0E668B;
    --ocean-teal: #1289A7;
    --sea-turquoise: #17C0B8;
    --sea-mint: #55E6C1;
    --sea-foam: #C8F7F0;
    --sky-blue: #74B9FF;
    --sky-clear: #E8F6FF;
    --sand-light: #FAFBFC;
    --sunset-orange: #F8B500;
    --coral-pink: #FF6B81;
    --white-wave: #FFFFFF;
    --text-deep: #0A2E4B;
    --text-ocean: #154360;
    --text-mid: #2E607B;
    --text-light: #7FADC4;
    --border-ocean: rgba(23, 192, 184, 0.25);
    --shadow-ocean: rgba(10, 61, 98, 0.18);
    --shadow-teal: rgba(23, 192, 184, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    background: var(--sand-light);
    color: var(--text-ocean);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* 海浪背景 */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(23, 192, 184, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 10% 85%, rgba(116, 185, 255, 0.18) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== 灯塔+海浪Logo ===== */
.hj-light {
    width: 46px;
    height: 52px;
    position: relative;
    display: inline-block;
}
.hj-light::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 38px;
    background:
        linear-gradient(180deg,
            var(--sunset-orange) 0 10px,
            var(--ocean-teal) 10px 18px,
            var(--sunset-orange) 18px 26px,
            var(--ocean-teal) 26px 38px);
    clip-path: polygon(30% 0, 70% 0, 100% 100%, 0% 100%);
}
.hj-light::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 14px;
    background: var(--ocean-deep);
    border-radius: 4px 4px 0 0;
    box-shadow:
        -26px 2px 0 -6px var(--sunset-orange),
        26px 2px 0 -6px var(--sunset-orange);
}
.hj-wave {
    position: absolute;
    bottom: -6px;
    left: -4px;
    right: -4px;
    height: 8px;
    background:
        radial-gradient(circle at 25% 0, transparent 0 4px, var(--sea-turquoise) 5px 7px, transparent 8px),
        radial-gradient(circle at 75% 0, transparent 0 4px, var(--sky-blue) 5px 7px, transparent 8px);
    background-size: 14px 8px;
}

/* ===== 顶部 ===== */
.hj-header {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, var(--ocean-teal) 100%);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow-ocean);
}
.hj-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 60%, rgba(85, 230, 193, 0.18) 0%, transparent 30%);
    pointer-events: none;
}
.hj-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hj-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hj-logo-text { color: var(--white-wave); }
.hj-logo-text .brand {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.hj-logo-text .brand .hj-tm {
    color: var(--sunset-orange);
}
.hj-logo-text .tagline {
    font-size: 11px;
    letter-spacing: 3px;
    opacity: 0.85;
    text-transform: uppercase;
    margin-top: 2px;
    color: var(--sea-mint);
}
.hj-user-btns { display: flex; gap: 12px; }
.hj-btn-login, .hj-btn-vip {
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.hj-btn-login {
    background: rgba(255,255,255,0.12);
    color: var(--sea-foam);
    border: 1px solid rgba(85, 230, 193, 0.35);
    backdrop-filter: blur(8px);
}
.hj-btn-login:hover { background: rgba(255,255,255,0.25); }
.hj-btn-vip {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--coral-pink) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(248, 181, 0, 0.4);
}
.hj-btn-vip:hover { transform: translateY(-2px); }

/* ===== 导航 ===== */
.hj-nav {
    background: var(--white-wave);
    border-bottom: 2px solid var(--sea-turquoise);
    box-shadow: 0 2px 10px rgba(14, 102, 139, 0.08);
    position: sticky;
    top: 82px;
    z-index: 99;
}
.hj-nav ul {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.hj-nav a {
    padding: 8px 22px;
    border-radius: 20px;
    color: var(--text-ocean);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    position: relative;
}
.hj-nav a:hover {
    background: var(--sea-foam);
    color: var(--ocean-teal);
}
.hj-nav a.active {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--shadow-teal);
}

/* ===== Hero 海浪 ===== */
.hj-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(85, 230, 193, 0.35) 0%, transparent 55%),
        radial-gradient(circle at 20% 70%, rgba(116, 185, 255, 0.4) 0%, transparent 55%),
        linear-gradient(180deg, var(--skyclear) 0%, #D6F3FF 100%);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
/* 波浪 */
.hj-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background:
        radial-gradient(ellipse 80% 60px at 15% 100%, var(--sea-foam) 60%, transparent 62%),
        radial-gradient(ellipse 60% 50px at 50% 100%, rgba(85, 230, 193, 0.5) 60%, transparent 62%),
        radial-gradient(ellipse 90% 65px at 85% 100%, var(--sea-foam) 60%, transparent 62%);
    opacity: 0.9;
}
.hj-hero::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 8%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    box-shadow:
        40px 50px 0 -4px var(--sea-turquoise),
        100px 30px 0 -6px var(--sky-blue),
        -60px 70px 0 -2px var(--sunset-orange),
        80px 100px 0 -5px var(--coral-pink);
    opacity: 0.7;
    animation: float-bubble 6s ease-in-out infinite;
}
@keyframes float-bubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hj-hero-content { text-align: center; position: relative; z-index: 2; }
.hj-hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(23, 192, 184, 0.35);
    border-radius: 24px;
    color: var(--ocean-teal);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 26px;
    box-shadow: 0 4px 14px var(--shadow-teal);
}
.hj-hero-title {
    font-size: 78px;
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 50%, var(--sea-turquoise) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 2px;
    filter: drop-shadow(0 4px 18px var(--shadow-teal));
}
.hj-hero-title .hj-dot {
    display: inline-block;
    background: linear-gradient(180deg, var(--sunset-orange), var(--coral-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hj-hero-sub {
    font-size: 19px;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.hj-hero-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hj-btn {
    padding: 14px 36px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}
.hj-btn-primary {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    color: #fff;
    box-shadow: 0 8px 22px var(--shadow-teal);
}
.hj-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--shadow-teal);
}
.hj-btn-ghost {
    background: rgba(255,255,255,0.85);
    color: var(--ocean-teal);
    border: 2px solid var(--sea-turquoise);
}
.hj-btn-ghost:hover {
    background: #fff;
    border-color: var(--ocean-teal);
}

/* ===== 数据 ===== */
.hj-stats {
    padding: 50px 0;
    background: var(--white-wave);
    border-bottom: 1px solid var(--border-ocean);
}
.hj-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.hj-stat {
    padding: 26px 16px;
    background: linear-gradient(160deg, var(--skyclear) 0%, var(--sea-foam) 100%);
    border-radius: 18px;
    border: 1px solid var(--border-ocean);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.hj-stat::after {
    content: "🌊";
    position: absolute;
    font-size: 50px;
    opacity: 0.08;
    right: -6px;
    bottom: -10px;
}
.hj-stat:hover { transform: translateY(-4px); }
.hj-stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--ocean-teal);
    margin-bottom: 8px;
}
.hj-stat-label {
    color: var(--text-mid);
    font-size: 14px;
}

/* ===== 通用区块 ===== */
.hj-section { padding: 80px 0; }
.hj-section-head { text-align: center; margin-bottom: 50px; }
.hj-section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-deep);
    margin-bottom: 14px;
}
.hj-section-title span {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hj-section-sub {
    color: var(--text-mid);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 卡片网格 ===== */
.hj-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hj-card {
    background: var(--white-wave);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-ocean);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14, 102, 139, 0.06);
    position: relative;
}
.hj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px var(--shadow-ocean);
    border-color: var(--sea-turquoise);
}
.hj-card-thumb {
    height: 158px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sea-turquoise) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}
.hj-card-thumb::after {
    content: "▶";
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.85);
    color: var(--ocean-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding-left: 3px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.hj-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--coral-pink);
    color: #fff;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
}
.hj-card-body { padding: 16px 18px; }
.hj-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 8px;
    line-height: 1.4;
}
.hj-card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 12px;
}
.hj-card-meta .views::before { content: "👀 "; }

/* ===== 特性 ===== */
.hj-features {
    background: linear-gradient(180deg, #F0FBFF 0%, var(--white-wave) 100%);
}
.hj-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hj-feat {
    background: var(--white-wave);
    padding: 38px 28px;
    border-radius: 20px;
    border: 1px solid var(--border-ocean);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.hj-feat::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--sea-foam) 0%, transparent 70%);
    opacity: 0.8;
}
.hj-feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px var(--shadow-ocean);
    border-color: var(--sea-turquoise);
}
.hj-feat-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 8px 20px var(--shadow-teal);
    position: relative;
    z-index: 1;
}
.hj-feat-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.hj-feat-desc {
    color: var(--text-mid);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* ===== CTA ===== */
.hj-cta {
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-teal) 60%, var(--sea-turquoise) 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hj-cta::before {
    content: "🌊";
    position: absolute;
    font-size: 220px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hj-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.hj-cta p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: var(--sea-foam);
}
.hj-cta .hj-btn-ghost {
    background: #fff;
    color: var(--ocean-teal);
    border: none;
    position: relative;
    z-index: 1;
}

/* ===== 页脚 ===== */
.hj-footer {
    background: var(--ocean-deep);
    color: #A3CFDE;
    padding: 60px 0 24px;
}
.hj-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.hj-footer-brand .brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--sea-mint);
    margin-bottom: 12px;
}
.hj-footer-brand .brand .hj-tm {
    color: var(--sunset-orange);
}
.hj-footer-brand p {
    font-size: 13px;
    line-height: 1.9;
    color: #87B3C9;
}
.hj-footer-col h4 {
    color: var(--sea-foam);
    font-size: 15px;
    margin-bottom: 16px;
}
.hj-footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
}
.hj-footer-col ul li a:hover { color: var(--sea-mint); }
.hj-footer-bottom {
    border-top: 1px solid rgba(85, 230, 193, 0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #5F8AA3;
}

/* ===== 页面横幅 ===== */
.hj-page-banner {
    background:
        radial-gradient(circle at 20% 30%, rgba(85, 230, 193, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(116, 185, 255, 0.4) 0%, transparent 55%),
        linear-gradient(135deg, var(--skyclear) 0%, #D6F3FF 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hj-page-banner::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background:
        radial-gradient(ellipse 50% 50px at 30% 100%, var(--white-wave) 60%, transparent 62%),
        radial-gradient(ellipse 60% 45px at 70% 100%, var(--sea-foam) 60%, transparent 62%);
}
.hj-page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--sea-turquoise) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.hj-page-banner p {
    color: var(--text-mid);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hj-breadcrumb {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}
.hj-breadcrumb a:hover { color: var(--ocean-teal); }

/* ===== 关于页 ===== */
.hj-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hj-about-visual {
    height: 380px;
    background:
        radial-gradient(circle at 30% 40%, var(--sea-foam) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(248, 181, 0, 0.4) 0%, transparent 55%),
        linear-gradient(135deg, var(--sky-blue) 0%, var(--sea-turquoise) 60%, var(--ocean-teal) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 130px;
    box-shadow: 0 16px 40px var(--shadow-ocean);
    position: relative;
    overflow: hidden;
}
.hj-about-visual::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 40px;
    left: 40px;
    filter: blur(20px);
}
.hj-about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-deep);
    margin-bottom: 20px;
}
.hj-about-text p {
    color: var(--text-ocean);
    margin-bottom: 16px;
    font-size: 15px;
}
.hj-about-list { list-style: none; margin-top: 20px; }
.hj-about-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-ocean);
}
.hj-about-list li::before {
    content: "🌊";
    position: absolute;
    left: 0;
    font-size: 16px;
}

.hj-timeline {
    margin-top: 50px;
    position: relative;
    padding-left: 30px;
}
.hj-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sea-turquoise) 0%, var(--sky-blue) 100%);
}
.hj-tl-item {
    position: relative;
    padding: 14px 0 24px 26px;
}
.hj-tl-item::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 22px;
    width: 18px;
    height: 18px;
    background: var(--sea-turquoise);
    border-radius: 50%;
    border: 4px solid var(--white-wave);
    box-shadow: 0 0 0 2px var(--sea-turquoise);
}
.hj-tl-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--ocean-teal);
    margin-bottom: 4px;
}
.hj-tl-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 6px;
}
.hj-tl-desc {
    color: var(--text-mid);
    font-size: 14px;
}

/* ===== 分类 ===== */
.hj-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hj-tab {
    padding: 8px 22px;
    background: var(--white-wave);
    border: 1px solid var(--border-ocean);
    border-radius: 22px;
    color: var(--text-ocean);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.hj-tab.active, .hj-tab:hover {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    color: #fff;
    border-color: transparent;
}

/* ===== 会员方案 ===== */
.hj-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hj-price-card {
    background: var(--white-wave);
    border-radius: 22px;
    padding: 38px 28px;
    border: 2px solid var(--border-ocean);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.hj-price-card:hover {
    border-color: var(--sea-turquoise);
    transform: translateY(-4px);
}
.hj-price-card.featured {
    border-color: var(--sea-turquoise);
    box-shadow: 0 16px 36px var(--shadow-ocean);
    transform: scale(1.04);
}
.hj-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--coral-pink) 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.35);
}
.hj-price-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 14px;
}
.hj-price-num {
    font-size: 44px;
    font-weight: 900;
    color: var(--ocean-teal);
    margin-bottom: 4px;
}
.hj-price-num small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}
.hj-price-desc {
    color: var(--text-mid);
    font-size: 13px;
    margin-bottom: 24px;
}
.hj-price-list {
    list-style: none;
    text-align: left;
    margin-bottom: 26px;
}
.hj-price-list li {
    padding: 8px 0 8px 26px;
    position: relative;
    color: var(--text-ocean);
    font-size: 14px;
    border-bottom: 1px dashed var(--border-ocean);
}
.hj-price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sea-turquoise);
    font-weight: 800;
}
.hj-price-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    color: #fff;
    font-weight: 700;
    transition: all 0.25s ease;
}
.hj-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px var(--shadow-teal);
}

/* ===== 榜单 ===== */
.hj-rank-list { display: grid; gap: 18px; }
.hj-rank-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 22px;
    align-items: center;
    background: var(--white-wave);
    padding: 20px 26px;
    border-radius: 16px;
    border: 1px solid var(--border-ocean);
    transition: all 0.3s ease;
}
.hj-rank-item:hover {
    transform: translateX(8px);
    border-color: var(--sea-turquoise);
    box-shadow: 0 8px 22px var(--shadow-ocean);
}
.hj-rank-num {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ocean-teal), var(--sea-turquoise));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.hj-rank-item:nth-child(1) .hj-rank-num {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--coral-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hj-rank-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 6px;
}
.hj-rank-meta {
    color: var(--text-light);
    font-size: 13px;
}
.hj-rank-score { text-align: right; }
.hj-rank-score .num {
    font-size: 24px;
    font-weight: 800;
    color: var(--ocean-teal);
}
.hj-rank-score .label {
    font-size: 11px;
    color: var(--text-light);
}

/* ===== 新闻 ===== */
.hj-news-list { display: grid; gap: 24px; }
.hj-news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 26px;
    background: var(--white-wave);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid var(--border-ocean);
    transition: all 0.3s ease;
}
.hj-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px var(--shadow-ocean);
    border-color: var(--sea-turquoise);
}
.hj-news-date {
    text-align: center;
    padding: 16px 10px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sea-turquoise) 100%);
    border-radius: 14px;
    color: #fff;
}
.hj-news-date .day {
    font-size: 32px;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.hj-news-date .month {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
}
.hj-news-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 8px;
}
.hj-news-title:hover { color: var(--ocean-teal); }
.hj-news-excerpt {
    color: var(--text-ocean);
    font-size: 14px;
    margin-bottom: 10px;
}
.hj-news-tags { display: flex; gap: 8px; }
.hj-news-tags span {
    background: var(--sea-foam);
    color: var(--ocean-teal);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ===== 联系 ===== */
.hj-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}
.hj-contact-info {
    background:
        radial-gradient(circle at 80% 20%, rgba(248, 181, 0, 0.25) 0%, transparent 55%),
        linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    color: #fff;
    padding: 40px 32px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px var(--shadow-teal);
}
.hj-contact-info::before {
    content: "🏝️";
    position: absolute;
    font-size: 200px;
    opacity: 0.12;
    bottom: -50px;
    right: -40px;
}
.hj-contact-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.hj-contact-info p {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
.hj-contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.25);
    position: relative;
    z-index: 1;
}
.hj-contact-line .ico { font-size: 22px; }
.hj-contact-line .label { font-size: 12px; opacity: 0.85; }
.hj-contact-line .val {
    font-size: 15px;
    font-weight: 600;
    color: var(--sea-foam);
}

.hj-contact-form {
    background: var(--white-wave);
    padding: 38px 32px;
    border-radius: 22px;
    border: 1px solid var(--border-ocean);
    box-shadow: 0 8px 22px rgba(14, 102, 139, 0.08);
}
.hj-form-group { margin-bottom: 20px; }
.hj-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-deep);
    font-size: 14px;
}
.hj-form-group input, .hj-form-group textarea, .hj-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-ocean);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: var(--skyclear);
    color: var(--text-deep);
    transition: all 0.25s ease;
}
.hj-form-group input:focus, .hj-form-group textarea:focus, .hj-form-group select:focus {
    outline: none;
    border-color: var(--sea-turquoise);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 192, 184, 0.15);
}
.hj-form-group textarea { resize: vertical; min-height: 120px; }
.hj-form-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-turquoise) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hj-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px var(--shadow-teal);
}

/* ===== FAQ ===== */
.hj-faq-grid {
    display: grid;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}
.hj-faq-item {
    background: var(--white-wave);
    padding: 22px 26px;
    border-radius: 14px;
    border: 1px solid var(--border-ocean);
}
.hj-faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-deep);
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
}
.hj-faq-q::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: -2px;
    width: 22px;
    height: 22px;
    background: var(--sea-turquoise);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.hj-faq-a {
    color: var(--text-ocean);
    font-size: 14px;
    padding-left: 30px;
}

/* ===== 响应式 ===== */
@media (max-width: 980px) {
    .hj-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hj-card-grid { grid-template-columns: repeat(2, 1fr); }
    .hj-features-grid { grid-template-columns: 1fr; }
    .hj-pricing { grid-template-columns: 1fr; }
    .hj-price-card.featured { transform: none; }
    .hj-about { grid-template-columns: 1fr; }
    .hj-contact-grid { grid-template-columns: 1fr; }
    .hj-footer-grid { grid-template-columns: 1fr 1fr; }
    .hj-hero-title { font-size: 54px; }
    .hj-nav ul { flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .hj-card-grid { grid-template-columns: 1fr; }
    .hj-news-item { grid-template-columns: 1fr; }
    .hj-footer-grid { grid-template-columns: 1fr; }
    .hj-section-title { font-size: 28px; }
    .hj-hero-title { font-size: 40px; }
}
