/* ========================================
   BOSS罗盘 官网样式 v2.0
   新增：组织诊断、团队测评、人才画像、招聘匹配
   ======================================== */

/* 基础变量 */
:root {
    --primary: #1a5fb4;
    --primary-dark: #0d3d7a;
    --primary-light: #3584e4;
    --secondary: #26a269;
    --accent: #e5a50a;
    --accent-orange: #f39c12;
    --dark: #1c1c1e;
    --gray-900: #2c2c2e;
    --gray-800: #3a3a3c;
    --gray-600: #636366;
    --gray-400: #8e8e93;
    --gray-200: #d1d1d6;
    --gray-100: #f2f2f7;
    --white: #ffffff;
    --success: #34c759;
    --warning: #ff9500;
    --danger: #ff3b30;

    /* 测评模块专用色 */
    --org-color: #1a5fb4;
    --team-color: #26a269;
    --talent-color: #3584e4;
    --recruit-color: #f39c12;
    --alignment-purple: #5856d6;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s ease;
}

/* 重置样式 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   导航栏
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26, 95, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 180, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

/* ========================================
   Hero 区域
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.2), rgba(53, 132, 228, 0.1));
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(38, 162, 105, 0.15), rgba(52, 199, 89, 0.1));
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(229, 165, 10, 0.15), rgba(255, 149, 0, 0.1));
    top: 50%;
    left: 30%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
}

.tag i {
    color: var(--primary);
}

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

/* Hero Stats */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.stat-card:hover {
    transform: translateX(10px);
}

.stat-card.accent {
    border-left-color: var(--secondary);
}

.stat-card.accent .stat-icon {
    background: linear-gradient(135deg, var(--secondary), #34c759);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-value span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* 滚动指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gray-400);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========================================
   核心价值主张
   ======================================== */
.value-prop {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1), rgba(53, 132, 228, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.value-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========================================
   Section 通用样式
   ======================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 95, 180, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
}

/* ========================================
   智能测评体系 - 核心新增
   ======================================== */
.assessment {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

/* 测评Hero卡片 */
.assessment-hero {
    margin-bottom: 60px;
}

.assessment-hero-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.status-badge {
    padding: 6px 12px;
    background: var(--accent-orange);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-card-title {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.hero-card-content {
    text-align: center;
}

.health-score {
    margin-bottom: 12px;
}

.score-value {
    font-size: 4rem;
    font-weight: 900;
}

.score-total {
    font-size: 1.5rem;
    opacity: 0.6;
}

.score-status {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 12px;
    background: rgba(52, 199, 89, 0.2);
    color: var(--success);
    border-radius: 50px;
    font-size: 0.85rem;
}

.hero-card-desc {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.coverage-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 28px;
    height: 28px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-left: -8px;
    border: 2px solid #1a1a2e;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-left: -8px;
    border: 2px solid #1a1a2e;
}

/* 测评模块卡片 */
.assessment-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.module-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    position: relative;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.module-card[data-module="org"]::before {
    background: var(--org-color);
}

.module-card[data-module="team"]::before {
    background: var(--team-color);
}

.module-card[data-module="talent"]::before {
    background: var(--talent-color);
}

.module-card[data-module="recruit"]::before {
    background: var(--recruit-color);
}

.module-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.module-icon.org {
    background: linear-gradient(135deg, var(--org-color), #3584e4);
}

.module-icon.team {
    background: linear-gradient(135deg, var(--team-color), #34c759);
}

.module-icon.talent {
    background: linear-gradient(135deg, var(--talent-color), #60a5fa);
}

.module-icon.recruit {
    background: linear-gradient(135deg, var(--recruit-color), #fbbf24);
}

.module-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.module-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.module-detail {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.module-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.module-tags span {
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.module-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.module-link:hover {
    gap: 10px;
}

.module-preview {
    width: 140px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.module-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 健康度指示器 */
.health-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.health-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.health-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.health-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #34c759);
    border-radius: 4px;
    transition: width 1s ease;
}

.health-value {
    font-weight: 700;
    color: var(--secondary);
}

/* 冰山视觉 */
.iceberg-visual {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.iceberg-top,
.iceberg-bottom {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.iceberg-top {
    background: rgba(53, 132, 228, 0.1);
    color: var(--talent-color);
}

.iceberg-bottom {
    background: rgba(53, 132, 228, 0.2);
    color: var(--primary-dark);
}

/* 匹配预览 */
.match-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.match-label {
    color: var(--gray-600);
}

.match-value {
    font-weight: 600;
    color: var(--dark);
}

.match-value.highlight {
    color: var(--recruit-color);
}

/* ========================================
   管理认知对齐
   ======================================== */
.alignment {
    background: linear-gradient(135deg, var(--alignment-purple), #7c3aed);
    color: var(--white);
}

.alignment-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.alignment-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--dark);
}

.alignment-header {
    margin-bottom: 30px;
}

.alignment-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--alignment-purple);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.alignment-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.alignment-header p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.alignment-compare {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.compare-side {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.side-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    display: block;
}

.type-badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.type-badge.estj {
    background: rgba(243, 156, 18, 0.1);
    color: var(--accent-orange);
}

.type-badge.isfj {
    background: rgba(38, 162, 105, 0.1);
    color: var(--secondary);
}

.type-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.compare-arrow {
    font-size: 1.5rem;
    color: var(--danger);
}

.alignment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alignment-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.alignment-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alignment-feature .feature-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.alignment-feature .feature-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
}

.alignment-feature .highlight {
    color: var(--accent);
    font-weight: 600;
}

/* 数据对比 */
.data-comparison {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.comparison-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    align-items: center;
    text-align: left;
}

.comparison-item.highlight-row {
    grid-template-columns: 60px auto 1fr;
}

.item-label {
    font-weight: 600;
}

.warning-badge {
    padding: 4px 10px;
    background: var(--danger);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar {
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.boss-bar {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.staff-bar {
    background: linear-gradient(90deg, var(--secondary), #34c759);
}

.bar span {
    white-space: nowrap;
}

/* ========================================
   招聘匹配结果
   ======================================== */
.recruit-result {
    background: var(--white);
}

.recruit-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.recruit-result-card {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.result-score {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-circle circle {
    fill: none;
    stroke-width: 10;
    cx: 50;
    cy: 50;
    r: 45;
}

.score-circle .bg {
    stroke: var(--gray-200);
}

.score-circle .progress {
    stroke: var(--accent-orange);
    stroke-linecap: round;
    stroke-dasharray: 283;
    transition: stroke-dashoffset 1s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.score-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.score-status {
    font-size: 1.1rem;
    font-weight: 700;
}

.score-status.perfect {
    color: var(--secondary);
}

.result-detail {
    line-height: 1.8;
}

.result-summary {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.result-personality {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.result-detail .highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.recruit-insights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.insight-card.interview {
    border-left: 4px solid var(--primary);
}

.insight-card.onboard {
    border-left: 4px solid var(--secondary);
}

.insight-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.insight-card.onboard .insight-icon {
    color: var(--secondary);
}

.insight-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.insight-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   痛点区域
   ======================================== */
.pain-points {
    background: var(--gray-100);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pain-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(255, 149, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--danger);
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.pain-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.solution-intro {
    text-align: center;
}

.solution-arrow {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

.solution-intro h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   核心功能
   ======================================== */
.features {
    background: var(--white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.feature-right .feature-visual {
    order: -1;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1), rgba(53, 132, 228, 0.05));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-slogan {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-800);
}

.feature-list li i {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* 对比框 */
.compare-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compare-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.compare-label {
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-item.bad .compare-label {
    background: rgba(255, 59, 48, 0.1);
    color: var(--danger);
}

.compare-item.good .compare-label {
    background: rgba(52, 199, 89, 0.1);
    color: var(--success);
}

.compare-content {
    padding: 20px;
}

.compare-content .q {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.compare-content .a {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.compare-content .result {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--gray-200);
    color: var(--success);
    font-weight: 600;
}

/* 画像卡片 */
.profile-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
}

.profile-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.profile-header i {
    font-size: 1.5rem;
}

.profile-items {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-item .label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.profile-item .value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.profile-item .value.warning {
    color: var(--danger);
    font-size: 0.9rem;
}

.profile-footer {
    padding: 16px 24px;
    background: var(--gray-100);
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-footer i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 维度表格 */
.dimension-table {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
}

.dimension-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.dimension-row:last-child {
    border-bottom: none;
}

.dim-name {
    font-weight: 600;
    color: var(--primary);
}

.dim-example {
    color: var(--gray-600);
}

.dim-value {
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
   顾问体系
   ======================================== */
.advisors {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.mode-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mode-card:hover,
.mode-card.featured {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.mode-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(229, 165, 10, 0.2);
}

.mode-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.mode-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.mode-scene {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.mode-feature {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* 顾问角色 */
.advisor-roles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.advisor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.advisor-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.advisor-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.advisor-icon.finance {
    background: linear-gradient(135deg, #f7dc6f, #f39c12);
}

.advisor-icon.hr {
    background: linear-gradient(135deg, #82e0aa, #27ae60);
}

.advisor-icon.legal {
    background: linear-gradient(135deg, #85c1e9, #3498db);
}

.advisor-icon.strategy {
    background: linear-gradient(135deg, #d7bde2, #9b59b6);
}

.advisor-icon.ops {
    background: linear-gradient(135deg, #f5b7b1, #e74c3c);
}

.advisor-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.advisor-card p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ========================================
   管理工具箱
   ======================================== */
.tools {
    background: var(--gray-100);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1), rgba(53, 132, 228, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.tool-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.tool-func {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.tool-pain {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

/* ========================================
   名人堂
   ======================================== */
.hall-of-fame {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--white);
}

.fame-content {
    max-width: 900px;
    margin: 0 auto;
}

.fame-intro {
    text-align: center;
    margin-bottom: 50px;
}

.fame-intro p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.8;
}

.fame-demo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 50px;
}

.fame-chat {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fame-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fame-question i {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fame-question p {
    background: var(--primary);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    max-width: 80%;
}

.fame-answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fame-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8b0000, #dc143c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fame-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    max-width: 80%;
}

.fame-name {
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.fame-text p {
    opacity: 0.9;
    line-height: 1.7;
}

.fame-figures {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.figure-item {
    text-align: center;
}

.figure-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.figure-avatar.ma {
    background: linear-gradient(135deg, #ff6b00, #ff9500);
}

.figure-avatar.ren {
    background: linear-gradient(135deg, #8b0000, #dc143c);
}

.figure-avatar.zhang {
    background: linear-gradient(135deg, #0066ff, #00aaff);
}

.figure-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.figure-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   总结区域
   ======================================== */
.summary {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    text-align: center;
}

.summary-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.summary-tagline {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 40px;
}

.summary-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-800);
}

.summary-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ========================================
   CTA 区域 - 全新设计
   ======================================== */
.cta {
    position: relative;
    background: linear-gradient(135deg, #0c1426 0%, #1a365d 50%, #0f4c75 100%);
    overflow: hidden;
    padding: 100px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.4), rgba(53, 132, 228, 0.2));
    top: -200px;
    right: -100px;
    animation: float-slow 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.3), rgba(26, 95, 180, 0.2));
    bottom: -150px;
    left: -100px;
    animation: float-slow 12s ease-in-out infinite reverse;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.cta-particles {
    position: absolute;
    inset: 0;
}

.cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 8s ease-in-out infinite;
}

.cta-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.cta-particles span:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 1.5s;
}

.cta-particles span:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 3s;
}

.cta-particles span:nth-child(4) {
    left: 75%;
    top: 70%;
    animation-delay: 4.5s;
}

.cta-particles span:nth-child(5) {
    left: 90%;
    top: 40%;
    animation-delay: 6s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-content {
    color: var(--white);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(229, 165, 10, 0.3), rgba(243, 156, 18, 0.2));
    border: 1px solid rgba(229, 165, 10, 0.5);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(229, 165, 10, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(229, 165, 10, 0.4);
    }
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--success);
    font-size: 1.1rem;
}

/* 小程序码卡片 */
.cta-qrcode {
    text-align: center;
}

.qrcode-card {
    position: relative;
    width: 200px;
    height: 240px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 24px 24px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.qrcode-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.qrcode-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(53, 132, 228, 0.5), rgba(88, 86, 214, 0.5), rgba(38, 162, 105, 0.5));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.qrcode-card:hover .qrcode-glow {
    opacity: 1;
}

.qrcode-card img {
    width: 152px;
    height: 152px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--white);
    padding: 4px;
}

.qrcode-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.qrcode-label i {
    color: #07c160;
    font-size: 1.2rem;
}

.qrcode-hint {
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* ========================================
   页脚
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

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

    .assessment-modules {
        grid-template-columns: 1fr;
    }

    .module-card {
        grid-template-columns: auto 1fr;
    }

    .module-preview {
        display: none;
    }

    .alignment-showcase {
        grid-template-columns: 1fr;
    }

    .recruit-showcase {
        grid-template-columns: 1fr;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block.feature-right .feature-visual {
        order: 0;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .mode-cards {
        grid-template-columns: 1fr;
    }

    .advisor-roles {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .fame-figures {
        gap: 40px;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-qrcode {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

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

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    .summary-features {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .fame-figures {
        flex-direction: column;
        gap: 30px;
    }

    .dimension-table {
        overflow-x: auto;
    }

    .dimension-row {
        grid-template-columns: 60px 1fr;
    }

    .dim-value {
        grid-column: span 2;
    }

    .alignment-compare {
        flex-direction: column;
    }

    .compare-arrow {
        transform: rotate(90deg);
    }

    .comparison-item {
        grid-template-columns: 50px 1fr;
    }

    .comparison-item.highlight-row {
        grid-template-columns: 50px 1fr;
    }

    .warning-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .profile-items {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.35rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .qrcode-card {
        width: 180px;
        height: 220px;
        padding: 20px 20px 14px;
    }

    .qrcode-card img {
        width: 130px;
        height: 130px;
    }

    .assessment-hero-card {
        padding: 24px;
    }

    .score-value {
        font-size: 3rem;
    }

    .module-card {
        padding: 20px;
    }
}