/**
 * EvalShare Homepage V2 - Resume.io Style
 * 简洁、专业、现代的着陆页设计
 * 
 * @version 2.0.0
 */

/* ==================== Variables & Base ==================== */
.homepage-v2 {
    --es-primary: #FF6B35;
    --es-primary-dark: #E55A2B;
    --es-primary-light: #FFF0EB;
    --es-secondary: #1A1A2E;
    --es-text: #1a1a2e;
    --es-text-secondary: #5a5a7a;
    --es-text-muted: #8a8aa0;
    --es-bg: #ffffff;
    --es-bg-secondary: #f8f9fc;
    --es-bg-tertiary: #f0f2f5;
    --es-border: #e8eaf0;
    --es-success: #10b981;
    --es-warning: #f59e0b;
    --es-radius-sm: 8px;
    --es-radius-md: 12px;
    --es-radius-lg: 16px;
    --es-radius-xl: 24px;
    --es-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --es-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --es-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --es-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--es-text);
    line-height: 1.6;
}

.homepage-v2 * {
    box-sizing: border-box;
}

.es-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.es-container--narrow {
    max-width: 800px;
}

/* ==================== Typography ==================== */
.es-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.es-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--es-primary-light);
    color: var(--es-primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.es-section-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--es-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.es-section-desc {
    font-size: 18px;
    color: var(--es-text-secondary);
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(135deg, var(--es-primary) 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Buttons ==================== */
.es-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--es-radius-md);
    cursor: pointer;
    transition: var(--es-transition);
}

.es-btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.es-btn--primary {
    background: var(--es-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.es-btn--primary:hover {
    background: var(--es-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.es-btn--secondary {
    background: var(--es-bg-secondary);
    color: var(--es-text);
    border: 1px solid var(--es-border);
}

.es-btn--secondary:hover {
    background: var(--es-bg-tertiary);
    border-color: var(--es-text-muted);
}

.es-btn--outline {
    background: transparent;
    color: var(--es-text);
    border: 1.5px solid var(--es-border);
}

.es-btn--outline:hover {
    border-color: var(--es-primary);
    color: var(--es-primary);
}

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

.es-btn--white:hover {
    background: var(--es-bg-secondary);
}

.es-btn--full {
    width: 100%;
}

.es-btn svg {
    flex-shrink: 0;
}

/* ==================== Hero Section ==================== */
.es-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--es-bg-secondary) 0%, var(--es-bg) 100%);
}

.es-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.es-hero__badge {
    margin-bottom: 20px;
}

.es-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    color: var(--es-primary-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: var(--es-shadow-sm);
    border: 1px solid var(--es-primary-light);
}

.es-hero__title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--es-text);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.es-hero__subtitle {
    font-size: 18px;
    color: var(--es-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.es-hero__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.es-hero__note {
    font-size: 14px;
    color: var(--es-text-muted);
    margin-bottom: 40px;
}

.es-hero__stats {
    display: flex;
    gap: 40px;
}

.es-stat {
    display: flex;
    flex-direction: column;
}

.es-stat strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--es-text);
    line-height: 1;
}

.es-stat span {
    font-size: 14px;
    color: var(--es-text-muted);
    margin-top: 4px;
}

/* Hero Visual - Resume Preview */
.es-hero__visual {
    position: relative;
}

.es-resume-preview {
    position: relative;
    perspective: 1000px;
}

.es-resume-preview__browser {
    background: white;
    border-radius: var(--es-radius-lg);
    box-shadow: var(--es-shadow-lg);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.es-resume-preview:hover .es-resume-preview__browser {
    transform: rotateY(-2deg) rotateX(1deg);
}

.es-resume-preview__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f5f5f7;
    border-bottom: 1px solid #e0e0e0;
}

.es-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.es-dot--red { background: #ff5f57; }
.es-dot--yellow { background: #febc2e; }
.es-dot--green { background: #28c840; }

.es-resume-preview__url {
    margin-left: 8px;
    font-size: 13px;
    color: #8a8aa0;
}

.es-resume-preview__body {
    padding: 28px 32px;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a2e;
    line-height: 1.4;
}

/* 简历头部 */
.es-resume-preview__header-section {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--es-primary);
}

.es-resume-preview__name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.es-resume-preview__title {
    font-size: 14px;
    color: var(--es-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.es-resume-preview__contact {
    font-size: 11px;
    color: #5a5a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.es-resume-preview__dot {
    color: #c0c0c0;
    margin: 0 2px;
}

/* 简历区块 */
.es-resume-preview__section {
    margin-bottom: 18px;
}

.es-resume-preview__label {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

/* 技能标签 */
.es-resume-preview__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.es-resume-preview__skill-tag {
    font-size: 11px;
    padding: 3px 10px;
    background: #f0f2f5;
    border-radius: 4px;
    color: #4a4a5a;
    font-weight: 500;
}

/* 工作经历 */
.es-resume-preview__job {
    margin-bottom: 12px;
}

.es-resume-preview__job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    margin-bottom: 2px;
}

.es-resume-preview__job-header strong {
    font-weight: 600;
    color: #1a1a2e;
}

.es-resume-preview__date {
    font-size: 10px;
    color: #8a8aa0;
    font-style: italic;
}

.es-resume-preview__company {
    font-size: 11px;
    color: #5a5a7a;
    margin-bottom: 4px;
}

.es-resume-preview__tech {
    font-size: 10px;
    color: var(--es-primary);
    font-weight: 500;
}

.es-resume-preview__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.es-resume-preview__bullets li {
    font-size: 11px;
    color: #4a4a5a;
    padding: 2px 0;
    padding-left: 12px;
    position: relative;
    line-height: 1.4;
}

.es-resume-preview__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--es-primary);
    font-weight: bold;
}

/* 教育 */
.es-resume-preview__edu {
    margin-bottom: 8px;
}

.es-resume-preview__edu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    margin-bottom: 2px;
}

.es-resume-preview__edu-header strong {
    font-weight: 600;
    color: #1a1a2e;
}

.es-resume-preview__degree {
    font-size: 11px;
    color: #5a5a7a;
}

/* Floating Cards */
.es-floating-card {
    position: absolute;
    background: white;
    border-radius: var(--es-radius-md);
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.es-floating-card--ats {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.es-floating-card--score {
    bottom: 60px;
    left: -40px;
    animation-delay: 1.5s;
}

.es-floating-card__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.es-floating-card__score {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--es-primary), var(--es-primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.es-floating-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.es-floating-card__desc {
    font-size: 11px;
    color: #8a8aa0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== Trust Section ==================== */
.es-trust {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--es-border);
}

.es-trust__title {
    text-align: center;
    font-size: 15px;
    color: var(--es-text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.es-trust__tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.es-trust__tag {
    padding: 8px 18px;
    background: var(--es-bg-secondary);
    color: var(--es-text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid var(--es-border);
}

/* ==================== Templates Section ==================== */
.es-templates {
    padding: 100px 0;
    background: var(--es-bg);
}

.es-templates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.es-template-card {
    background: white;
    border-radius: var(--es-radius-lg);
    overflow: hidden;
    box-shadow: var(--es-shadow-sm);
    border: 1px solid var(--es-border);
    transition: var(--es-transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.es-template-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--es-shadow-lg);
    border-color: var(--es-primary);
}

.es-template-card__preview {
    padding: 20px;
    background: var(--es-bg-secondary);
    border-bottom: 1px solid var(--es-border);
    height: 340px;
    overflow: hidden;
}

.es-template-card__preview--dark {
    background: #1a1a2e;
}

/* 真实简历预览样式 */
.es-template-resume {
    background: white;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 8px;
    line-height: 1.4;
    color: #1a1a2e;
    transform: scale(0.95);
    transform-origin: top center;
}

/* 模板1：现代简约 */
.es-template-resume--modern {
    text-align: center;
}

.es-template-resume--modern .es-resume-header {
    border-bottom: 2px solid #2563eb;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.es-template-resume--modern .es-resume-name {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 1px;
    margin: 0;
}

.es-template-resume--modern .es-resume-title {
    font-size: 9px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 4px 0;
}

.es-template-resume--modern .es-resume-contact {
    font-size: 7px;
    color: #666;
}

.es-template-resume--modern .es-resume-section {
    margin-bottom: 10px;
    text-align: left;
}

.es-template-resume--modern .es-resume-section-title {
    font-size: 8px;
    font-weight: 700;
    color: #2563eb;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.es-template-resume--modern .es-resume-text {
    font-size: 7px;
    color: #444;
    margin: 0;
}

.es-template-resume--modern .es-resume-job {
    margin-bottom: 8px;
}

.es-template-resume--modern .es-resume-job-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
}

.es-template-resume--modern .es-resume-company {
    font-size: 7px;
    color: #666;
    font-style: italic;
}

.es-template-resume--modern .es-resume-bullets {
    margin: 4px 0 0 0;
    padding-left: 10px;
}

.es-template-resume--modern .es-resume-bullets li {
    font-size: 7px;
    color: #444;
    margin-bottom: 2px;
}

.es-template-resume--modern .es-resume-edu {
    margin-bottom: 6px;
}

.es-template-resume--modern .es-resume-edu-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
}

.es-template-resume--modern .es-resume-degree {
    font-size: 7px;
    color: #666;
}

.es-template-resume--modern .es-resume-skills {
    font-size: 7px;
    color: #444;
}

/* 模板2：经典专业（绿色侧边栏） */
.es-template-resume--classic {
    display: flex;
    padding: 0;
    height: 300px;
}

.es-template-resume--classic .es-resume-sidebar {
    width: 32%;
    background: #065f46;
    color: white;
    padding: 12px 10px;
}

.es-template-resume--classic .es-resume-profile {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.es-template-resume--classic .es-resume-sidebar-name {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.es-template-resume--classic .es-resume-sidebar-title {
    font-size: 7px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.es-template-resume--classic .es-resume-sidebar-section {
    margin-bottom: 10px;
}

.es-template-resume--classic .es-resume-sidebar-section h4 {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.9);
}

.es-template-resume--classic .es-resume-sidebar-section p {
    font-size: 7px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin: 0;
}

.es-template-resume--classic .es-resume-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.es-template-resume--classic .es-resume-sidebar-list li {
    font-size: 7px;
    color: rgba(255,255,255,0.9);
    padding: 2px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.es-template-resume--classic .es-resume-main {
    flex: 1;
    padding: 12px;
    background: white;
}

.es-template-resume--classic .es-resume-main-section {
    margin-bottom: 10px;
}

.es-template-resume--classic .es-resume-main-title {
    font-size: 9px;
    font-weight: 700;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2px;
    margin-bottom: 6px;
}

.es-template-resume--classic .es-resume-main-section p {
    font-size: 7px;
    color: #444;
    margin: 0;
}

.es-template-resume--classic .es-resume-main-job {
    margin-bottom: 8px;
}

.es-template-resume--classic .es-resume-main-job-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
}

.es-template-resume--classic .es-resume-main-date {
    font-size: 7px;
    color: #888;
    font-style: italic;
}

.es-template-resume--classic .es-resume-main-job ul {
    margin: 3px 0 0 0;
    padding-left: 10px;
}

.es-template-resume--classic .es-resume-main-job li {
    font-size: 7px;
    color: #444;
    margin-bottom: 1px;
}

.es-template-resume--classic .es-resume-main-edu strong {
    font-size: 8px;
    color: #1a1a2e;
}

.es-template-resume--classic .es-resume-main-edu span {
    font-size: 7px;
    color: #666;
    display: block;
}

/* 模板3：创意双栏 */
.es-template-resume--creative {
    padding: 14px;
}

.es-template-resume--creative .es-resume-creative-header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.es-template-resume--creative .es-resume-creative-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.es-template-resume--creative .es-resume-creative-title {
    font-size: 10px;
    color: #7c3aed;
    font-weight: 600;
    margin: 4px 0;
}

.es-template-resume--creative .es-resume-creative-contact {
    font-size: 7px;
    color: #666;
}

.es-template-resume--creative .es-resume-creative-body {
    display: flex;
    gap: 12px;
}

.es-template-resume--creative .es-resume-creative-left {
    width: 35%;
}

.es-template-resume--creative .es-resume-creative-right {
    flex: 1;
}

.es-template-resume--creative .es-resume-creative-section {
    margin-bottom: 10px;
}

.es-template-resume--creative .es-resume-creative-section-title {
    font-size: 8px;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.es-template-resume--creative .es-resume-creative-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.es-template-resume--creative .es-resume-creative-skills span {
    font-size: 7px;
    padding: 2px 6px;
    background: #f3f0ff;
    color: #7c3aed;
    border-radius: 3px;
}

.es-template-resume--creative .es-resume-creative-edu strong {
    font-size: 8px;
    color: #1a1a2e;
}

.es-template-resume--creative .es-resume-creative-edu span {
    font-size: 7px;
    color: #666;
    display: block;
}

.es-template-resume--creative .es-resume-creative-date {
    font-size: 7px;
    color: #888;
}

.es-template-resume--creative .es-resume-creative-job {
    margin-bottom: 8px;
}

.es-template-resume--creative .es-resume-creative-job-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
}

.es-template-resume--creative .es-resume-creative-job ul {
    margin: 3px 0 0 0;
    padding-left: 10px;
}

.es-template-resume--creative .es-resume-creative-job li {
    font-size: 7px;
    color: #444;
}

.es-template-resume--creative .es-resume-creative-project strong {
    font-size: 8px;
    color: #1a1a2e;
}

.es-template-resume--creative .es-resume-creative-project span {
    font-size: 7px;
    color: #7c3aed;
}

.es-template-resume--creative .es-resume-creative-project p {
    font-size: 7px;
    color: #666;
    margin: 2px 0 0 0;
}

.es-template-card__block {
    height: 20px;
    background: var(--es-bg-tertiary);
    border-radius: 3px;
    margin-bottom: 8px;
}

.es-template-card__name-large {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.es-template-card__info-section {
    padding: 20px;
}

.es-template-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--es-text);
    margin-bottom: 6px;
}

.es-template-card__desc {
    font-size: 14px;
    color: var(--es-text-secondary);
    margin-bottom: 12px;
}

.es-template-card__badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--es-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
}

.es-templates__action {
    text-align: center;
}

/* ==================== Features Section ==================== */
.es-features {
    padding: 100px 0;
    background: var(--es-bg-secondary);
}

.es-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.es-feature {
    background: white;
    padding: 32px;
    border-radius: var(--es-radius-lg);
    border: 1px solid var(--es-border);
    transition: var(--es-transition);
}

.es-feature:hover {
    box-shadow: var(--es-shadow-md);
    transform: translateY(-4px);
}

.es-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--es-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.es-feature__icon svg {
    width: 26px;
    height: 26px;
}

.es-feature__icon--orange {
    background: var(--es-primary-light);
    color: var(--es-primary);
}

.es-feature__icon--blue {
    background: #dbeafe;
    color: #2563eb;
}

.es-feature__icon--purple {
    background: #f3e8ff;
    color: #9333ea;
}

.es-feature__icon--green {
    background: #d1fae5;
    color: #059669;
}

.es-feature__icon--pink {
    background: #fce7f3;
    color: #db2777;
}

.es-feature__icon--teal {
    background: #ccfbf1;
    color: #0d9488;
}

.es-feature__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--es-text);
    margin-bottom: 10px;
}

.es-feature__desc {
    font-size: 15px;
    color: var(--es-text-secondary);
    line-height: 1.6;
}

/* ==================== Process Section ==================== */
.es-process {
    padding: 100px 0;
    background: white;
}

.es-process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.es-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    position: relative;
}

.es-step__number {
    font-size: 13px;
    font-weight: 700;
    color: var(--es-primary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.es-step__icon {
    width: 64px;
    height: 64px;
    background: var(--es-bg-secondary);
    border: 2px solid var(--es-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--es-text-secondary);
    transition: var(--es-transition);
}

.es-step:hover .es-step__icon {
    border-color: var(--es-primary);
    color: var(--es-primary);
    background: var(--es-primary-light);
}

.es-step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--es-text);
    margin-bottom: 10px;
}

.es-step__desc {
    font-size: 14px;
    color: var(--es-text-secondary);
    line-height: 1.6;
}

.es-step__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--es-border), var(--es-primary-light));
    margin-top: 80px;
    flex-shrink: 0;
}

.es-process__cta {
    text-align: center;
}

/* ==================== ATS Highlight Section ==================== */
.es-ats-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--es-secondary) 0%, #2d2d44 100%);
    color: white;
}

.es-ats-highlight .es-eyebrow {
    background: rgba(255, 107, 53, 0.2);
    color: #ffad8c;
    border-color: rgba(255, 107, 53, 0.3);
}

.es-ats-highlight__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.es-ats-highlight__title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.es-ats-highlight__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.es-ats-highlight__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.es-ats-highlight__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.es-ats-highlight__list svg {
    color: var(--es-primary);
    flex-shrink: 0;
}

/* ATS Card Visual */
.es-ats-card {
    background: white;
    border-radius: var(--es-radius-lg);
    overflow: hidden;
    box-shadow: var(--es-shadow-lg);
}

.es-ats-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--es-bg-secondary);
    border-bottom: 1px solid var(--es-border);
}

.es-ats-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--es-text);
}

.es-ats-card__score {
    font-size: 18px;
    font-weight: 800;
    color: var(--es-primary);
}

.es-ats-card__body {
    padding: 24px;
}

.es-ats-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.es-ats-check__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.es-ats-check__icon--success {
    background: var(--es-success);
    color: white;
}

.es-ats-check__icon--warning {
    background: var(--es-warning);
    color: white;
}

.es-ats-check__text {
    flex: 1;
    font-size: 14px;
    color: var(--es-text);
}

.es-ats-check__status {
    font-size: 13px;
    font-weight: 600;
    color: var(--es-text-secondary);
}

.es-ats-card__tip {
    background: var(--es-primary-light);
    padding: 14px;
    border-radius: var(--es-radius-sm);
    font-size: 13px;
    color: var(--es-text-secondary);
    margin-top: 8px;
}

.es-ats-card__tip strong {
    color: var(--es-primary-dark);
}

/* ==================== Testimonials Section ==================== */
/* 样式已移至 home-modern.css 中定义 */

/* ==================== Pricing Section ==================== */
.es-pricing {
    padding: 100px 0;
    background: white;
}

.es-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.es-pricing-card {
    background: white;
    border-radius: var(--es-radius-lg);
    padding: 32px;
    border: 2px solid var(--es-border);
    position: relative;
    transition: var(--es-transition);
}

.es-pricing-card:hover {
    box-shadow: var(--es-shadow-md);
}

.es-pricing-card--featured {
    border-color: var(--es-primary);
    box-shadow: 0 0 0 4px var(--es-primary-light);
}

.es-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--es-primary);
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
}

.es-pricing-card__header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--es-border);
}

.es-pricing-card__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--es-text);
    margin-bottom: 6px;
}

.es-pricing-card__description {
    font-size: 14px;
    color: var(--es-text-muted);
    margin-bottom: 16px;
}

.es-pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.es-pricing-card__amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--es-text);
}

.es-pricing-card__period {
    font-size: 15px;
    color: var(--es-text-muted);
}

.es-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.es-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--es-text-secondary);
    border-bottom: 1px solid var(--es-bg-tertiary);
}

.es-pricing-card__features li:last-child {
    border-bottom: none;
}

.es-pricing-card__features svg {
    color: var(--es-success);
    flex-shrink: 0;
}

/* ==================== FAQ Section ==================== */
.es-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--es-bg-secondary) 0%, var(--es-white) 100%);
}

/* FAQ Grid Layout */
.es-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* FAQ Category Card */
.es-faq__category {
    background: white;
    border-radius: var(--es-radius-lg);
    border: 1px solid var(--es-border);
    overflow: hidden;
    box-shadow: var(--es-shadow-sm);
    transition: var(--es-transition);
}

.es-faq__category:hover {
    box-shadow: var(--es-shadow-md);
    transform: translateY(-2px);
}

.es-faq__category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--es-bg-secondary) 0%, var(--es-white) 100%);
    border-bottom: 1px solid var(--es-border);
}

.es-faq__icon {
    width: 44px;
    height: 44px;
    background: var(--es-primary-light);
    color: var(--es-primary);
    border-radius: var(--es-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.es-faq__icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.es-faq__icon.purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.es-faq__icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.es-faq__icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.es-faq__icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.es-faq__category-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--es-text);
}

.es-faq__category .es-faq__list {
    padding: 8px;
}

.es-faq__category .es-faq__item {
    border: none;
    border-bottom: 1px solid var(--es-border);
    border-radius: 0;
}

.es-faq__category .es-faq__item:last-child {
    border-bottom: none;
}

.es-faq__question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--es-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: var(--es-transition);
}

.es-faq__question:hover {
    color: var(--es-primary);
}

.es-faq__question span {
    flex: 1;
}

.es-faq__question svg {
    color: var(--es-text-muted);
    transition: var(--es-transition);
    flex-shrink: 0;
}

.es-faq__item.active .es-faq__question {
    color: var(--es-primary);
}

.es-faq__item.active .es-faq__question svg {
    transform: rotate(45deg);
    color: var(--es-primary);
}

.es-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.es-faq__item.active .es-faq__answer {
    max-height: 400px;
}

.es-faq__answer p {
    padding: 0 20px 16px;
    margin: 0;
    font-size: 14px;
    color: var(--es-text-secondary);
    line-height: 1.7;
}

.es-faq__answer strong {
    color: var(--es-primary);
    font-weight: 600;
}

/* FAQ Footer */
.es-faq__footer {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--es-radius-lg);
    border: 1px solid var(--es-border);
}

.es-faq__footer p {
    font-size: 16px;
    color: var(--es-text-secondary);
    margin-bottom: 16px;
}

/* ==================== Final CTA Section ==================== */
.es-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--es-primary) 0%, var(--es-primary-dark) 100%);
}

.es-final-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.es-final-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.es-final-cta__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.es-final-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.es-final-cta__note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .es-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .es-hero__visual {
        order: -1;
    }
    
    .es-resume-preview {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .es-floating-card--score {
        left: 0;
    }
    
    .es-templates__grid,
    .es-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .es-ats-highlight__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .es-ats-highlight__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .es-container {
        padding: 0 20px;
    }
    
    .es-section-header {
        margin-bottom: 48px;
    }
    
    .es-hero {
        padding: 60px 0 40px;
    }
    
    .es-hero__actions {
        flex-direction: column;
    }
    
    .es-hero__actions .es-btn {
        width: 100%;
    }
    
    .es-hero__stats {
        gap: 24px;
    }
    
    .es-stat strong {
        font-size: 22px;
    }
    
    .es-resume-preview__browser {
        transform: none;
    }
    
    .es-floating-card {
        display: none;
    }
    
    .es-templates__grid,
    .es-features__grid,
    .es-pricing__grid {
        grid-template-columns: 1fr;
    }
    
    /* 移动端评价轮播显示控制 */
    .es-testimonials__carousel {
        display: none !important;
    }
    
    .es-testimonials__mobile {
        display: block !important;
    }
    
    .es-testimonial {
        width: 100%;
    }
    
    .es-process__steps {
        flex-direction: column;
        align-items: center;
    }
    
    .es-step__connector {
        display: none;
    }
    
    .es-step {
        max-width: 320px;
    }
    
    .es-home-block {
        padding: 64px 0;
    }
    
    .es-final-cta__actions {
        flex-direction: column;
    }
    
    .es-final-cta__actions .es-btn {
        width: 100%;
    }
}

/* 桌面端/移动端显示控制 */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Animation classes (Disabled for content sections) */
.es-fade-in {
    /* 动画已禁用 - 核心功能、使用流程、价格方案、常见问题不使用动画 */
    opacity: 1;
    transform: none;
}

/* ==================== Templates Real Preview - Resume.io Style ==================== */
.es-templates-real {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.es-templates-real__header {
    text-align: center;
    margin-bottom: 50px;
}

.es-templates-real__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--es-text);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.es-templates-real__subtitle {
    font-size: 18px;
    color: var(--es-text-secondary);
    margin: 0;
}

/* Grid Layout */
.es-templates-real__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.es-templates-real__item {
    position: relative;
}

.es-templates-real__item.featured {
    transform: translateY(-10px);
}

.es-templates-real__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Resume Preview Container */
.es-templates-real__preview {
    position: relative;
    aspect-ratio: 3/4;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.es-templates-real__link:hover .es-templates-real__preview {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Hover Overlay */
.es-templates-real__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.es-templates-real__link:hover .es-templates-real__overlay {
    opacity: 1;
}

.es-templates-real__use-btn {
    padding: 14px 28px;
    background: #fff;
    color: var(--es-text);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.es-templates-real__link:hover .es-templates-real__use-btn {
    transform: translateY(0);
}

/* Template Info */
.es-templates-real__info {
    padding: 20px 0;
}

.es-templates-real__info-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.es-templates-real__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--es-text);
    margin: 0;
}

.es-templates-real__name-cn {
    font-size: 14px;
    color: var(--es-text-muted);
}

.es-templates-real__desc {
    font-size: 14px;
    color: var(--es-text-secondary);
    margin: 0 0 12px;
}

.es-templates-real__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.es-templates-real__users {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--es-text-muted);
}

.es-templates-real__badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.es-templates-real__footer {
    text-align: center;
}

/* ==================== Real Resume Preview - Modern ==================== */
.rp-modern {
    height: 100%;
    padding: 24px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 10px;
    color: #1a1a2e;
    overflow: hidden;
}

.rp-modern__header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2563eb;
}

.rp-modern__name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #1e293b;
    margin: 0;
}

.rp-modern__title {
    font-size: 11px;
    color: #2563eb;
    font-weight: 600;
    margin: 4px 0;
}

.rp-modern__contact {
    font-size: 8px;
    color: #64748b;
    margin: 0;
}

.rp-modern__section {
    margin-bottom: 14px;
}

.rp-modern__section-title {
    font-size: 10px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}

.rp-modern__job {
    margin-bottom: 10px;
}

.rp-modern__job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 9px;
    margin-bottom: 2px;
}

.rp-modern__job-header strong {
    font-weight: 600;
}

.rp-modern__job-header span {
    color: #64748b;
    font-size: 8px;
}

.rp-modern__company {
    font-size: 8px;
    color: #475569;
    font-style: italic;
    margin-bottom: 4px;
}

.rp-modern__job ul {
    margin: 0;
    padding-left: 12px;
}

.rp-modern__job li {
    font-size: 8px;
    color: #475569;
    margin-bottom: 2px;
    line-height: 1.3;
}

.rp-modern__edu {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.rp-modern__edu strong {
    font-size: 9px;
}

.rp-modern__edu span {
    font-size: 8px;
    color: #64748b;
}

.rp-modern__skills {
    font-size: 8px;
    color: #475569;
    line-height: 1.5;
}

/* ==================== Real Resume Preview - Professional ==================== */
.rp-professional {
    height: 100%;
    display: flex;
    font-family: Georgia, serif;
    font-size: 9px;
    overflow: hidden;
}

.rp-professional__sidebar {
    width: 35%;
    background: #0f766e;
    color: #fff;
    padding: 20px 14px;
}

.rp-professional__profile {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.rp-professional__name {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.rp-professional__title {
    font-size: 8px;
    margin: 6px 0 0;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.rp-professional__sidebar-section {
    margin-bottom: 14px;
}

.rp-professional__sidebar-section h5 {
    font-size: 9px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rp-professional__sidebar-section p {
    font-size: 8px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.rp-professional__sidebar-section ul {
    margin: 0;
    padding-left: 12px;
}

.rp-professional__sidebar-section li {
    font-size: 8px;
    margin-bottom: 3px;
    opacity: 0.9;
}

.rp-professional__main {
    flex: 1;
    padding: 20px 16px;
    background: #fff;
}

.rp-professional__section {
    margin-bottom: 14px;
}

.rp-professional__section-title {
    font-size: 10px;
    font-weight: 700;
    color: #0f766e;
    text-transform: uppercase;
    margin: 0 0 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}

.rp-professional__section p {
    font-size: 9px;
    color: #475569;
    line-height: 1.4;
    margin: 0;
}

.rp-professional__job {
    margin-bottom: 10px;
}

.rp-professional__job-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 9px;
    margin-bottom: 2px;
}

.rp-professional__job-title strong {
    color: #1e293b;
}

.rp-professional__job-title span {
    font-size: 8px;
    color: #0f766e;
    font-weight: 600;
}

.rp-professional__job-date {
    font-size: 8px;
    color: #64748b;
    margin: 0 0 4px;
    font-style: italic;
}

.rp-professional__job ul {
    margin: 0;
    padding-left: 12px;
}

.rp-professional__job li {
    font-size: 8px;
    color: #475569;
    line-height: 1.3;
}

/* ==================== Real Resume Preview - Creative ==================== */
.rp-creative {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    font-size: 9px;
    color: #1e293b;
    overflow: hidden;
}

.rp-creative__header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    padding: 20px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rp-creative__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.rp-creative__title {
    font-size: 10px;
    margin: 4px 0 0;
    opacity: 0.9;
}

.rp-creative__header-right {
    text-align: right;
    font-size: 8px;
    opacity: 0.9;
    line-height: 1.5;
}

.rp-creative__header-right p {
    margin: 0;
}

.rp-creative__body {
    display: flex;
    height: calc(100% - 80px);
}

.rp-creative__left {
    width: 32%;
    background: #f8f7fc;
    padding: 16px;
}

.rp-creative__right {
    flex: 1;
    padding: 16px;
}

.rp-creative__section {
    margin-bottom: 14px;
}

.rp-creative__section-title {
    font-size: 10px;
    font-weight: 700;
    color: #7c3aed;
    margin: 0 0 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid #7c3aed;
}

.rp-creative__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.rp-creative__skills span {
    background: #7c3aed;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 8px;
}

.rp-creative__date {
    font-size: 8px;
    color: #64748b;
    font-style: italic;
}

.rp-creative__job-title {
    font-size: 9px;
    color: #475569;
    margin: 0 0 4px;
}

.rp-creative__job-title strong {
    color: #1e293b;
}

.rp-creative__job ul {
    margin: 0;
    padding-left: 10px;
}

.rp-creative__job li {
    font-size: 8px;
    color: #475569;
    margin-bottom: 2px;
    line-height: 1.3;
}

.rp-creative__project p {
    margin: 0;
    font-size: 8px;
    color: #475569;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .es-templates-real__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .es-templates-real {
        padding: 60px 0;
    }
    
    .es-templates-real__title {
        font-size: 32px;
    }
    
    .es-templates-real__grid {
        grid-template-columns: 1fr;
    }
    
    .es-templates-real__item.featured {
        transform: none;
    }
    
    .es-templates-real__preview {
        aspect-ratio: 3/4;
        max-width: 320px;
        margin: 0 auto;
    }
}
