/* ==================== Commercial Homepage Styles ==================== */

/* Fix for fixed header - minimal spacing */
.commercial-homepage {
    padding-top: 24px;
}

:root {
    --ch-primary: #0a0a0a;
    --ch-secondary: #6b7280;
    --ch-accent: #ea580c;
    --ch-accent-2: #f97316;
    --ch-success: #10b981;
    --ch-warning: #f59e0b;
    --ch-error: #ef4444;
    --ch-white: #ffffff;
    --ch-gray-50: #f9fafb;
    --ch-gray-100: #f3f4f6;
    --ch-gray-200: #e5e7eb;
    --ch-gray-300: #d1d5db;
    --ch-gray-400: #9ca3af;
    --ch-gray-500: #6b7280;
    --ch-gray-600: #4b5563;
    --ch-gray-700: #374151;
    --ch-gray-800: #1f2937;
    --ch-gray-900: #111827;

    --ch-radius-sm: 8px;
    --ch-radius-md: 12px;
    --ch-radius-lg: 16px;
    --ch-radius-xl: 20px;
    --ch-radius-2xl: 28px;
    --ch-radius-full: 9999px;

    --ch-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --ch-shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --ch-shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --ch-shadow-xl: 0 20px 48px rgba(0,0,0,0.12);
    --ch-shadow-2xl: 0 30px 60px rgba(0,0,0,0.16);
    --ch-shadow-glow: 0 0 40px rgba(234, 88, 12, 0.25);
}

/* Container */
.ch-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Announcement Bar ==================== */
.ch-announcement {
    position: relative;
    background: linear-gradient(90deg, #4c1d95 0%, #5b21b6 50%, #4c1d95 100%);
    padding: 14px 0;
    overflow: hidden;
}

.ch-announcement-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ch-announcement-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ch-announcement-badge {
    padding: 4px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--ch-radius-full);
    color: var(--ch-white);
    font-size: 12px;
    font-weight: 600;
}

.ch-announcement-text {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
}

.ch-announcement-highlight {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.ch-announcement-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.ch-announcement-date svg {
    opacity: 0.8;
}

/* ==================== Section Styles ==================== */
.ch-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(234, 88, 12, 0.1);
    color: var(--ch-accent);
    border-radius: var(--ch-radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

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

.ch-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ch-primary);
    margin-bottom: 12px;
}

.ch-section-desc {
    font-size: 18px;
    color: var(--ch-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.ch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--ch-radius-lg);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.ch-btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: var(--ch-white);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ch-btn-primary:hover {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.ch-btn-primary:active {
    transform: translateY(0) translateZ(0);
}

.ch-btn-outline {
    background: transparent;
    color: #c2410c;
    border: 2px solid #ea580c;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ch-btn-outline:hover {
    border-color: #c2410c;
    background: rgba(234, 88, 12, 0.08);
}

.ch-btn-outline:active {
    transform: translateY(0) translateZ(0);
}

.ch-btn-white {
    background: var(--ch-white);
    color: var(--ch-primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.ch-btn-white:hover {
    background: var(--ch-gray-100);
    transform: translateY(-2px);
}

.ch-btn-white:active {
    transform: translateY(0);
}

.ch-btn-outline-white {
    background: transparent;
    color: var(--ch-white);
    border: 2px solid rgba(255,255,255,0.5);
}

.ch-btn-outline-white:hover {
    border-color: var(--ch-white);
    background: rgba(255,255,255,0.1);
}

.ch-btn-outline-white:active {
    transform: translateY(0);
}

.ch-btn-xl {
    padding: 18px 36px;
    font-size: 17px;
}

.ch-btn-full {
    width: 100%;
    box-sizing: border-box;
}

/* ==================== Hero Section ==================== */
.ch-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: 40px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.ch-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ch-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(234, 88, 12, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 88, 12, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
}

.ch-hero-glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}

.ch-hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    filter: blur(80px);
}

.ch-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ch-hero-content {
    position: relative;
    z-index: 2;
    grid-column: 1;
}

.ch-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--ch-white);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--ch-gray-700);
    margin-bottom: 24px;
    box-shadow: var(--ch-shadow-sm);
}

.ch-badge-pulse {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--ch-accent), var(--ch-accent-2));
    border-radius: 50%;
    animation: chPulse 2s ease-in-out infinite;
}

@keyframes chPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.ch-hero-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ch-primary);
    margin-bottom: 16px;
}

.ch-gradient-text {
    background: linear-gradient(135deg, var(--ch-accent) 0%, var(--ch-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ch-hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ch-gray-600);
    margin-bottom: 20px;
}

.ch-hero-subtitle strong {
    color: var(--ch-primary);
}

.ch-hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--ch-gray-200);
    border-bottom: 1px solid var(--ch-gray-200);
    margin-bottom: 32px;
}

.ch-trust-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ch-trust-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--ch-accent);
}

.ch-trust-label {
    font-size: 13px;
    color: var(--ch-gray-500);
}

.ch-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--ch-gray-300);
}

.ch-hero-form {
    background: var(--ch-white);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    padding: 16px;
    box-shadow: var(--ch-shadow-lg);
    margin-bottom: 16px;
}

.ch-form-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.ch-form-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ch-primary);
}

.ch-form-subtitle {
    font-size: 13px;
    color: var(--ch-gray-500);
}

.ch-form-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.ch-fsp-avatars {
    display: flex;
}

.ch-fsp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-white);
    font-size: 12px;
    font-weight: 600;
    margin-left: -8px;
    border: 2px solid var(--ch-white);
}

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

.ch-fsp-more {
    background: var(--ch-gray-200);
    color: var(--ch-gray-600);
    font-size: 11px;
}

.ch-fsp-text {
    font-size: 13px;
    color: var(--ch-gray-500);
}

/* Trust Banner with Marquee */
.ch-trust-inline {
    margin-top: 16px;
}

.ch-trust-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.08), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(234, 88, 12, 0.12);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 500;
    color: #9a3412;
}

.ch-trust-inline-badge svg {
    color: #f59e0b;
    flex-shrink: 0;
}

/* Hero Visual */
.ch-hero-visual {
    position: sticky;
    top: 100px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    grid-column: 2;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

.ch-dashboard-showcase {
    position: relative;
    background: var(--ch-white);
    border-radius: var(--ch-radius-2xl);
    box-shadow: var(--ch-shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.5s ease;
    min-height: 450px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.ch-dashboard-showcase:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.ch-ds-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--ch-gray-100);
    border-bottom: 1px solid var(--ch-gray-200);
}

.ch-ds-dots {
    display: flex;
    gap: 8px;
}

.ch-dot-red { width: 12px; height: 12px; background: #ef4444; border-radius: 50%; }
.ch-dot-yellow { width: 12px; height: 12px; background: #f59e0b; border-radius: 50%; }
.ch-dot-green { width: 12px; height: 12px; background: #10b981; border-radius: 50%; }

.ch-ds-title {
    font-size: 13px;
    color: var(--ch-gray-500);
    font-weight: 500;
}

.ch-ds-body {
    padding: 24px;
}

.ch-ds-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ch-gray-100);
    margin-bottom: 20px;
}

.ch-ds-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.ch-ds-info {
    flex: 1;
}

.ch-ds-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--ch-primary);
}

.ch-ds-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.ch-ds-role {
    color: var(--ch-gray-500);
}

.ch-ds-divider {
    color: var(--ch-gray-300);
}

.ch-ds-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--ch-success);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 600;
}

.ch-ds-premium {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--ch-accent), var(--ch-accent-2));
    color: var(--ch-white);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 700;
}

.ch-ds-card {
    background: var(--ch-gray-50);
    border-radius: var(--ch-radius-lg);
    padding: 16px;
    margin-bottom: 16px;
}

.ch-ds-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ch-ds-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ch-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ch-ds-card-badge {
    padding: 4px 10px;
    border-radius: var(--ch-radius-full);
    font-size: 11px;
    font-weight: 600;
}

.ch-ds-card-badge.excellent {
    background: rgba(16, 185, 129, 0.1);
    color: var(--ch-success);
}

.ch-ds-card-link {
    font-size: 13px;
    color: var(--ch-accent);
    font-weight: 500;
    cursor: pointer;
}

.ch-ds-ats-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ch-ds-ats-ring {
    position: relative;
    flex-shrink: 0;
}

.ch-ds-ats-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-ds-ats-score {
    font-size: 28px;
    font-weight: 700;
    color: var(--ch-primary);
    line-height: 1;
}

.ch-ds-ats-percent {
    font-size: 14px;
    color: var(--ch-gray-500);
}

.ch-ds-ats-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ch-ds-ats-metric {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ch-ds-ams-label {
    font-size: 12px;
    color: var(--ch-gray-600);
    min-width: 50px;
}

.ch-ds-ams-bar {
    flex: 1;
    height: 6px;
    background: var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    overflow: hidden;
}

.ch-ds-ams-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ch-accent), var(--ch-accent-2));
    border-radius: inherit;
}

.ch-ds-ams-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--ch-primary);
    min-width: 35px;
    text-align: right;
}

.ch-ds-activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ch-ds-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ch-ds-activity-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ch-ds-ai-success { background: var(--ch-success); color: var(--ch-white); }
.ch-ds-ai-info { background: var(--ch-accent); color: var(--ch-white); }

.ch-ds-activity-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ch-ds-activity-text {
    font-size: 13px;
    color: var(--ch-gray-700);
}

.ch-ds-activity-time {
    font-size: 11px;
    color: var(--ch-gray-400);
}

/* Floating Stats */
.ch-float-stat {
    position: absolute;
    background: var(--ch-white);
    border-radius: var(--ch-radius-xl);
    padding: 14px 18px;
    box-shadow: var(--ch-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: chFloat 4s ease-in-out infinite;
}

.ch-fs-interviews {
    top: 100px;
    left: -40px;
}

.ch-fs-offers {
    bottom: 80px;
    right: -30px;
    animation-delay: 2s;
}

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

.ch-fs-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--ch-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-fs-blue { background: rgba(234, 88, 12, 0.1); color: var(--ch-accent); }
.ch-fs-gold { background: rgba(245, 158, 11, 0.1); color: var(--ch-warning); }

.ch-fs-content {
    display: flex;
    flex-direction: column;
}

.ch-fs-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--ch-primary);
}

.ch-fs-label {
    font-size: 11px;
    color: var(--ch-gray-500);
}

/* ==================== Proof Bar ==================== */
/* ==================== Problems Section ==================== */
.ch-problems {
    padding: 100px 0;
    background: var(--ch-white);
    position: relative;
    overflow: hidden;
}

.ch-problems-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fbbf24 100%);
}

/* Problem Stats */
.ch-problem-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.ch-ps-item {
    text-align: center;
}

.ch-ps-item .ch-ps-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--ch-accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.ch-ps-item .ch-ps-label {
    font-size: 14px;
    color: var(--ch-gray-600);
}

.ch-ps-divider {
    width: 1px;
    height: 50px;
    background: var(--ch-gray-200);
}

/* Problems Grid */
.ch-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.ch-problem-card {
    padding: 32px;
    background: var(--ch-white);
    border-radius: var(--ch-radius-2xl);
    border: 1px solid var(--ch-gray-100);
    transition: all 0.3s ease;
}

.ch-problem-card:hover {
    box-shadow: var(--ch-shadow-xl);
    transform: translateY(-4px);
    border-color: var(--ch-gray-200);
}

.ch-problem-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ch-problem-icon {
    width: 48px;
    height: 48px;
    background: var(--ch-gray-50);
    border-radius: var(--ch-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-pi-red { color: #ef4444; }
.ch-pi-orange { color: #f97316; }
.ch-pi-purple { color: #9333ea; }

.ch-problem-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 600;
}

.ch-pb-red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.ch-pb-orange { background: rgba(249, 115, 22, 0.1); color: #c2410c; }
.ch-pb-purple { background: rgba(147, 51, 234, 0.1); color: #7c3aed; }

.ch-problem-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ch-primary);
    margin-bottom: 12px;
}

.ch-problem-desc {
    font-size: 14px;
    color: var(--ch-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ch-problem-quote {
    padding: 16px;
    background: var(--ch-gray-50);
    border-radius: var(--ch-radius-lg);
    border-left: 3px solid var(--ch-accent);
}

.ch-pq-text {
    font-size: 13px;
    color: var(--ch-gray-700);
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.5;
}

.ch-pq-author {
    font-size: 12px;
    color: var(--ch-gray-500);
}

/* Comparison Banner */
.ch-comparison-banner {
    margin: 64px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.03), rgba(249, 115, 22, 0.03));
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-2xl);
    text-align: center;
}

.ch-comp-title-main {
    font-size: 20px;
    font-weight: 600;
    color: var(--ch-primary);
    margin-bottom: 32px;
}

.ch-comp-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.ch-comp-item {
    padding: 32px;
    border-radius: var(--ch-radius-xl);
    text-align: left;
}

.ch-comp-fail {
    background: var(--ch-white);
    border: 1px solid var(--ch-gray-200);
}

.ch-comp-success {
    background: var(--ch-white);
    border: 2px solid var(--ch-accent);
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.1);
}

.ch-comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ch-comp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-comp-fail .ch-comp-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ch-comp-success .ch-comp-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ch-comp-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ch-primary);
}

.ch-comp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ch-comp-list li {
    font-size: 14px;
    color: var(--ch-gray-600);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--ch-gray-100);
}

.ch-comp-list li:last-child {
    border-bottom: none;
}

.ch-comp-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 12px;
}

.ch-comp-success .ch-comp-list li::before {
    content: "✓";
    color: #10b981;
}

.ch-comp-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--ch-gray-100);
}

.ch-comp-rate {
    font-size: 24px;
    font-weight: 700;
}

.ch-comp-fail .ch-comp-rate {
    color: #ef4444;
}

.ch-comp-success .ch-comp-rate {
    color: #10b981;
}

.ch-comp-note {
    font-size: 13px;
    color: var(--ch-gray-500);
}

.ch-comp-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-comp-vs span {
    width: 48px;
    height: 48px;
    background: var(--ch-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--ch-gray-500);
}
}

.ch-comp-success .ch-comp-stat {
    color: #10b981;
}

.ch-comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-gray-400);
}

/* Problem Quote */
.ch-problem-quote {
    margin-top: 24px;
    padding: 20px;
    background: var(--ch-white);
    border-radius: var(--ch-radius-lg);
    border-left: 3px solid var(--ch-error);
}

.ch-pq-icon {
    margin-bottom: 12px;
    color: var(--ch-error);
}

.ch-pq-text {
    font-size: 15px;
    color: var(--ch-gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.ch-pq-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ch-pq-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-white);
    font-size: 14px;
    font-weight: 600;
}

.ch-pq-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ch-pq-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ch-primary);
}

.ch-pq-role {
    font-size: 12px;
    color: var(--ch-gray-500);
}

/* Problem Stat */
.ch-problem-stat {
    margin-top: 20px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--ch-radius-lg);
    text-align: center;
}

.ch-ps-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--ch-warning);
    margin-bottom: 4px;
}

.ch-ps-label {
    font-size: 13px;
    color: var(--ch-gray-600);
}

/* ==================== Scenarios ==================== */
.ch-scenarios {
    margin-top: 64px;
}

.ch-scenarios-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--ch-primary);
    text-align: center;
    margin-bottom: 32px;
}

.ch-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ch-scenario-card {
    padding: 24px;
    background: var(--ch-white);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    transition: all 0.3s ease;
}

.ch-scenario-card:hover {
    box-shadow: var(--ch-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--ch-gray-300);
}

.ch-scenario-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--ch-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ch-sci-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

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

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

.ch-scenario-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ch-primary);
    margin-bottom: 8px;
}

.ch-scenario-desc {
    font-size: 14px;
    color: var(--ch-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ch-scenario-stat {
    display: inline-block;
    padding: 6px 12px;
    background: var(--ch-gray-100);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--ch-gray-600);
}

.ch-scenario-stat {
    font-size: 14px;
    font-weight: 600;
    color: var(--ch-accent);
}

/* ==================== Impact Stats ==================== */
.ch-impact-stats {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ch-is-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--ch-white);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    box-shadow: var(--ch-shadow-sm);
}

.ch-is-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: var(--ch-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-accent);
    flex-shrink: 0;
}

.ch-is-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ch-is-number {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ch-accent), var(--ch-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ch-is-label {
    font-size: 14px;
    color: var(--ch-gray-600);
    line-height: 1.4;
}

/* ==================== Solutions Section ==================== */
.ch-solutions {
    padding: 100px 0;
    background: var(--ch-gray-50);
}

.ch-solutions-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ch-solution-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--ch-white);
    border: 2px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--ch-gray-600);
    cursor: pointer;
    transition: all 0.25s;
}

.ch-solution-tab:hover {
    border-color: var(--ch-gray-300);
    background: var(--ch-gray-50);
}

.ch-solution-tab.active {
    background: var(--ch-primary);
    border-color: var(--ch-primary);
    color: var(--ch-white);
}

.ch-tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-solutions-content {
    position: relative;
}

.ch-solution-panel {
    display: none;
}

.ch-solution-panel.active {
    display: block;
    animation: chFadeIn 0.4s ease;
}

@keyframes chFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ch-solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--ch-white);
    border-radius: var(--ch-radius-2xl);
    padding: 48px;
    box-shadow: var(--ch-shadow-lg);
}

.ch-solution-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ch-primary);
    margin-bottom: 16px;
}

.ch-solution-desc {
    font-size: 16px;
    color: var(--ch-gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.ch-solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.ch-sf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ch-sf-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--ch-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-success);
    flex-shrink: 0;
}

.ch-sf-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ch-sf-content strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--ch-primary);
}

.ch-sf-content span {
    font-size: 14px;
    color: var(--ch-gray-600);
}

/* Solution Badge & Stats */
.ch-solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(234, 88, 12, 0.15);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: #c2410c;
    margin-bottom: 16px;
}

.ch-solution-badge svg {
    color: #ea580c;
}

.ch-solution-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ch-gray-100);
}

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

.ch-ss-item strong {
    font-size: 28px;
    font-weight: 700;
    color: #ea580c;
}

.ch-ss-item span {
    font-size: 13px;
    color: var(--ch-gray-500);
}

.ch-sf-icon-orange {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

/* ATS Paste Box */
.ch-ats-paste-box {
    background: var(--ch-white);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    padding: 24px;
    box-shadow: var(--ch-shadow-md);
}

.ch-ats-paste-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ch-gray-700);
    margin-bottom: 16px;
}

.ch-ats-paste-header svg {
    color: #ea580c;
}

.ch-ats-paste-area {
    background: var(--ch-gray-50);
    border: 2px dashed var(--ch-gray-200);
    border-radius: var(--ch-radius-lg);
    padding: 20px;
    min-height: 200px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.ch-ats-paste-area:hover {
    border-color: rgba(234, 88, 12, 0.4);
    background: rgba(234, 88, 12, 0.02);
}

.ch-ats-paste-placeholder {
    pointer-events: none;
}

.ch-ats-ph-title {
    font-size: 13px;
    color: var(--ch-gray-400);
    margin-bottom: 8px;
}

.ch-ats-ph-content {
    font-size: 13px;
    color: var(--ch-gray-400);
    line-height: 1.7;
    font-family: monospace;
}

/* AI Demo */
.ch-ai-demo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ch-ai-card {
    background: var(--ch-gray-50);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    padding: 24px;
}

.ch-ai-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ch-ai-label-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ch-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ch-ai-badge {
    padding: 4px 10px;
    background: var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--ch-gray-600);
}

.ch-ai-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--ch-success);
}

.ch-ai-text {
    font-size: 15px;
    color: var(--ch-gray-700);
    line-height: 1.7;
}

.ch-ai-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ch-gray-400);
    padding: 8px 0;
}

.ch-ai-transform {
    font-size: 12px;
    font-weight: 600;
    color: var(--ch-gray-500);
    text-transform: uppercase;
}

.ch-ai-text-highlighted {
    font-size: 15px;
    color: var(--ch-gray-800);
    line-height: 1.8;
}

.ch-ai-highlight {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15), rgba(249, 115, 22, 0.15));
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--ch-accent);
}

/* ATS Demo */
.ch-ats-demo-large {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ch-ats-score-display {
    display: flex;
    justify-content: center;
}

.ch-ats-ring-large {
    position: relative;
}

.ch-ats-score-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ch-ats-big-score {
    font-size: 42px;
    font-weight: 700;
    color: var(--ch-primary);
    line-height: 1;
}

.ch-ats-score-label {
    font-size: 13px;
    color: var(--ch-gray-500);
}

.ch-ats-score-status {
    font-size: 12px;
    font-weight: 600;
    color: var(--ch-success);
    text-transform: uppercase;
}

.ch-ats-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ch-ats-bd-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ch-ats-bd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ch-ats-bd-label {
    font-size: 14px;
    color: var(--ch-gray-600);
}

.ch-ats-bd-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--ch-primary);
}

.ch-ats-bd-bar {
    height: 8px;
    background: var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    overflow: hidden;
}

.ch-ats-bd-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ch-accent), var(--ch-accent-2));
    border-radius: inherit;
}

/* Templates Preview */
.ch-templates-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ch-tp-card {
    position: relative;
    border-radius: var(--ch-radius-xl);
    overflow: hidden;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ch-tp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ch-shadow-lg);
}

.ch-tp-card.featured {
    transform: scale(1.05);
}

.ch-tp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--ch-white);
    color: var(--ch-primary);
    border-radius: var(--ch-radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ch-tp-mockup {
    background: rgba(255,255,255,0.95);
    border-radius: var(--ch-radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.ch-tp-line {
    height: 6px;
    background: var(--ch-gray-200);
    border-radius: 3px;
    margin-bottom: 8px;
}

.ch-tp-lines {
    margin-top: 12px;
}

.ch-tp-lines .ch-tp-line {
    height: 4px;
    margin-bottom: 6px;
}

.ch-tp-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ch-tp-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ch-white);
}

.ch-tp-users {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* Export Showcase */
.ch-export-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ch-es-formats {
    display: flex;
    gap: 20px;
}

.ch-es-format {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: var(--ch-gray-50);
    border-radius: var(--ch-radius-lg);
}

.ch-es-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: var(--ch-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-es-pdf { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.ch-es-doc { background: rgba(37, 99, 235, 0.1); color: #ea580c; }
.ch-es-txt { background: rgba(107, 114, 128, 0.1); color: #6b7280; }

.ch-es-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ch-primary);
    margin-bottom: 4px;
}

.ch-es-desc {
    font-size: 12px;
    color: var(--ch-gray-500);
}

.ch-es-preview {
    background: var(--ch-gray-50);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    padding: 20px;
}

.ch-es-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ch-es-file {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ch-gray-700);
}

.ch-es-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--ch-success);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 600;
}

.ch-es-progress {
    height: 6px;
    background: var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    overflow: hidden;
    margin-bottom: 16px;
}

.ch-es-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--ch-accent), var(--ch-accent-2));
    border-radius: inherit;
    animation: chProgress 2s ease infinite;
}

@keyframes chProgress {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ch-es-actions {
    display: flex;
    justify-content: center;
}

.ch-es-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--ch-primary);
    color: var(--ch-white);
    border: none;
    border-radius: var(--ch-radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ch-es-btn:hover {
    background: #000;
}

/* ==================== Pricing Section ==================== */
.ch-pricing-preview {
    padding: 100px 0;
    background: var(--ch-white);
}

.ch-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.ch-pricing-card {
    position: relative;
    background: var(--ch-gray-50);
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-2xl);
    padding: 32px;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.ch-pricing-card:hover {
    box-shadow: var(--ch-shadow-xl);
}

.ch-pc-featured {
    background: var(--ch-white);
    border: 2px solid var(--ch-accent);
    color: var(--ch-primary);
    box-shadow: var(--ch-shadow-glow);
    padding: 31px 30px;
}

.ch-pc-featured:hover {
    box-shadow: 0 0 60px rgba(234, 88, 12, 0.35);
}

.ch-pc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--ch-white);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 700;
}

.ch-pc-header {
    text-align: center;
    margin-bottom: 24px;
}

.ch-pc-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.ch-pc-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ch-pc-desc {
    font-size: 14px;
    opacity: 0.8;
}

.ch-pc-price {
    text-align: center;
    margin-bottom: 32px;
}

.ch-pc-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--ch-gray-700);
    vertical-align: top;
}

.ch-pc-amount {
    font-size: 48px;
    font-weight: 700;
}

.ch-pc-period {
    font-size: 16px;
    opacity: 0.7;
}

.ch-pc-save {
    display: block;
    font-size: 13px;
    color: var(--ch-gray-500);
    margin-top: 8px;
    font-weight: 500;
}

.ch-pc-featured .ch-pc-save {
    color: #16a34a;
}

.ch-pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.ch-pc-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--ch-gray-100);
}

.ch-pc-featured .ch-pc-feature {
    border-bottom-color: var(--ch-gray-100);
}

.ch-pc-feature.included {
    color: var(--ch-gray-700);
}

.ch-pc-featured .ch-pc-feature.included {
    color: var(--ch-gray-700);
}

.ch-pc-feature.not-included {
    color: var(--ch-gray-400);
}

.ch-pc-featured .ch-pc-feature.not-included {
    color: var(--ch-gray-300);
}

.ch-pc-feature svg {
    flex-shrink: 0;
}

.ch-pc-feature.included svg {
    color: var(--ch-success);
}

.ch-pc-feature.not-included svg {
    color: var(--ch-gray-400);
}

.ch-pc-note {
    text-align: center;
    font-size: 13px;
    color: var(--ch-gray-500);
    margin-top: 16px;
}

/* 企业版入口 */
.ch-pricing-enterprise {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 32px;
    margin-top: 32px;
}

.ch-pe-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ch-pe-icon {
    font-size: 32px;
}

.ch-pe-info h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ch-gray-900);
}

.ch-pe-info p {
    margin: 0;
    font-size: 14px;
    color: var(--ch-gray-500);
}

.ch-pricing-guarantee {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ch-pg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ch-gray-600);
}

.ch-pg-item svg {
    color: var(--ch-success);
}

/* ==================== Testimonials ==================== */
.ch-testimonials {
    padding: 100px 0;
    background: var(--ch-gray-50);
}

.ch-testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.ch-tc-large {
    grid-row: span 2;
    background: var(--ch-white);
    border-radius: var(--ch-radius-2xl);
    padding: 32px;
    box-shadow: var(--ch-shadow-md);
}

.ch-tc-card {
    background: var(--ch-white);
    border-radius: var(--ch-radius-xl);
    padding: 24px;
    box-shadow: var(--ch-shadow-sm);
    transition: all 0.3s;
}

.ch-tc-card:hover {
    box-shadow: var(--ch-shadow-lg);
    transform: translateY(-4px);
}

.ch-tc-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.ch-tc-content {
    font-size: 15px;
    color: var(--ch-gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ch-tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ch-tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-white);
    font-size: 16px;
    font-weight: 600;
}

.ch-tc-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ch-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ch-tc-info {
    display: flex;
    flex-direction: column;
}

.ch-tc-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ch-primary);
}

.ch-tc-role {
    font-size: 13px;
    color: var(--ch-gray-500);
}

.ch-tc-salary {
    font-size: 13px;
    color: var(--ch-success);
    font-weight: 600;
}

.ch-tc-companies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--ch-gray-100);
}

.ch-tc-companies-label {
    font-size: 13px;
    color: var(--ch-gray-500);
    width: 100%;
    margin-bottom: 4px;
}

.ch-tc-company-tag {
    padding: 6px 12px;
    background: var(--ch-gray-100);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--ch-gray-600);
}

/* Success Stats Bar */
.ch-success-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: var(--ch-radius-2xl);
    margin-bottom: 40px;
    border: 1px solid var(--ch-gray-200);
}

.ch-ss-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ch-ss-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ch-accent), var(--ch-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ch-ss-label {
    font-size: 14px;
    color: var(--ch-gray-600);
}

/* Testimonials Nav */
.ch-testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ch-tn-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--ch-white);
    border: 2px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--ch-gray-600);
    cursor: pointer;
    transition: all 0.25s;
}

.ch-tn-tab:hover {
    border-color: var(--ch-gray-300);
    background: var(--ch-gray-50);
}

.ch-tn-tab.active {
    background: var(--ch-primary);
    border-color: var(--ch-primary);
    color: var(--ch-white);
}

.ch-tn-tab svg {
    width: 18px;
    height: 18px;
}

/* Featured Card Styles */
.ch-tc-featured {
    position: relative;
    border: 2px solid var(--ch-accent);
    box-shadow: var(--ch-shadow-glow);
}

.ch-tc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--ch-accent), var(--ch-accent-2));
    color: var(--ch-white);
    border-radius: var(--ch-radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ch-tc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ch-tc-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--ch-radius-lg);
}

.ch-tr-label {
    font-size: 12px;
    color: var(--ch-gray-500);
    text-transform: uppercase;
}

.ch-tr-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ch-success);
}

.ch-tr-salary {
    font-size: 18px;
    font-weight: 700;
    color: var(--ch-primary);
}

/* Journey Timeline */
.ch-tc-journey {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
    padding: 20px;
    background: var(--ch-gray-50);
    border-radius: var(--ch-radius-lg);
}

.ch-tcj-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ch-tcj-icon {
    width: 32px;
    height: 32px;
    background: var(--ch-success);
    color: var(--ch-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ch-tcj-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ch-tcj-text {
    font-size: 14px;
    color: var(--ch-gray-700);
    font-weight: 500;
}

.ch-tcj-time {
    font-size: 13px;
    color: var(--ch-gray-500);
    font-weight: 600;
}

.ch-tc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Result Badge on Cards */
.ch-tc-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--ch-radius-full);
    margin-bottom: 12px;
}

.ch-tcr-label {
    font-size: 11px;
    color: var(--ch-gray-500);
    text-transform: uppercase;
}

.ch-tcr-company {
    font-size: 13px;
    font-weight: 700;
    color: var(--ch-success);
}

.ch-tc-category {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--ch-gray-200);
    border-radius: var(--ch-radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--ch-gray-600);
}

.ch-testimonials-cta {
    text-align: center;
    margin-top: 48px;
}

.ch-testimonials-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--ch-gray-500);
}

/* ==================== FAQ Enhanced ==================== */
.ch-faq-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ch-faq-nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--ch-white);
    border: 2px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--ch-gray-600);
    cursor: pointer;
    transition: all 0.25s;
}

.ch-faq-nav-tab:hover {
    border-color: var(--ch-gray-300);
    background: var(--ch-gray-50);
}

.ch-faq-nav-tab.active {
    background: var(--ch-primary);
    border-color: var(--ch-primary);
    color: var(--ch-white);
}

.ch-faq-content {
    position: relative;
}

.ch-faq-list-wrapper {
    display: none;
}

.ch-faq-list-wrapper.active {
    display: block;
    animation: chFadeIn 0.4s ease;
}

.ch-fq-icon {
    width: 36px;
    height: 36px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: var(--ch-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-accent);
    margin-right: 12px;
    flex-shrink: 0;
}

.ch-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ch-faq-item.active .ch-faq-answer {
    max-height: 600px;
}

.ch-fa-content {
    padding: 0 24px 24px 68px;
}

.ch-fa-content p {
    font-size: 15px;
    color: var(--ch-gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.ch-fa-content ul,
.ch-fa-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.ch-fa-content li {
    font-size: 15px;
    color: var(--ch-gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}

.ch-fa-content strong {
    color: var(--ch-primary);
}

/* FAQ CTA */
.ch-faq-cta {
    margin-top: 60px;
    padding: 80px 48px;
    background: linear-gradient(135deg, #7c2d12 0%, #9a3412 50%, #c2410c 100%);
    border: 2px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ch-faq-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ch-faq-cta-glow-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(234, 88, 12, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.ch-faq-cta-glow-2 {
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    filter: blur(60px);
}

.ch-faq-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ch-faq-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: var(--ch-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-faq-cta-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--ch-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.ch-faq-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ch-faq-cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ch-faq-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ch-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--ch-white);
}

.ch-faq-cta-feature svg {
    color: #10b981;
}

.ch-faq-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ch-btn-outline-light {
    background: transparent;
    color: var(--ch-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.ch-btn-outline-light:hover {
    border-color: var(--ch-white);
    background: rgba(255, 255, 255, 0.1);
}

.ch-btn-outline-light:active {
    transform: translateY(0);
}

.ch-faq-cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.ch-testimonials-more {
    text-align: center;
}

/* ==================== FAQ ==================== */
.ch-faq {
    padding: 100px 0;
    background: var(--ch-white);
}

.ch-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.ch-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ch-faq-item {
    border: 1px solid var(--ch-gray-200);
    border-radius: var(--ch-radius-xl);
    overflow: hidden;
}

.ch-faq-item.active {
    border-color: var(--ch-accent);
}

.ch-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--ch-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--ch-primary);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.ch-faq-question:hover {
    background: var(--ch-gray-50);
}

.ch-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ch-faq-item.active .ch-faq-answer {
    max-height: 300px;
}

.ch-faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--ch-gray-600);
    line-height: 1.7;
}

.ch-faq-more {
    text-align: center;
}

.ch-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ch-accent);
    text-decoration: none;
}

.ch-faq-link:hover {
    color: var(--ch-accent-2);
}

/* ==================== Final CTA ==================== */
.ch-final-cta {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

/* Background glow and grid removed - only card backgrounds kept */

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

.ch-cta-main {
    padding: 48px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--ch-radius-2xl);
    text-align: center;
}

.ch-cta-orange {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ch-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--ch-radius-full);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.ch-cta-badge svg {
    color: #fbbf24;
}

.ch-cta-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
    text-align: left;
    width: 100%;
    max-width: 380px;
}

.ch-cta-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.ch-cta-highlight svg {
    color: #86efac;
    flex-shrink: 0;
}

.ch-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ch-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ch-cta-stat strong {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.ch-cta-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.ch-cta-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.ch-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: var(--ch-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ch-cta-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ch-cta-orange .ch-cta-title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ch-cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ch-cta-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ch-cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.ch-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ch-cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ch-radius-full);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.ch-cta-benefit-icon {
    color: #10b981;
}

/* Support CTA */
.ch-cta-support {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--ch-radius-2xl);
    padding: 32px;
    display: flex;
}

.ch-cta-orange-light .ch-cta-support-title,
.ch-cta-orange-light .ch-cta-support-desc {
    color: #c2410c;
}

.ch-cta-orange-light .ch-cta-support-feature {
    background: rgba(249, 115, 22, 0.1);
    color: #c2410c;
}

.ch-cta-orange-light .ch-cta-support-feature svg {
    color: #ea580c;
}

.ch-cta-orange-light .ch-cta-support-note {
    color: #9a3412;
}

.ch-cta-orange-light .ch-cta-support-note svg {
    color: #ea580c;
}
    flex-direction: column;
}

.ch-cta-support-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ch-cta-support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: var(--ch-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-white);
}

.ch-cta-support-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ch-white);
    text-align: center;
    margin-bottom: 8px;
}

.ch-cta-support-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 24px;
}

.ch-cta-support-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ch-cta-support-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--ch-radius-md);
    font-size: 13px;
    color: var(--ch-white);
}

.ch-cta-support-feature svg {
    color: #10b981;
    flex-shrink: 0;
}

.ch-cta-support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ch-btn-md {
    padding: 12px 20px;
    font-size: 14px;
}

.ch-btn-ghost-light {
    background: transparent;
    color: var(--ch-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ch-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ch-white);
}

.ch-btn-ghost-white {
    background: transparent;
    color: #c2410c;
    border: 1.5px solid #ea580c;
}

.ch-btn-ghost-white:hover {
    background: rgba(234, 88, 12, 0.1);
}

.ch-cta-support-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
}

.ch-cta-support-note svg {
    color: #10b981;
}

/* New Quick Start Card Styles */
.ch-cta-support-header {
    text-align: center;
    margin-bottom: 24px;
}

.ch-cta-support-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--ch-radius-full);
    margin-bottom: 12px;
}

.ch-cta-orange-light .ch-cta-support-title {
    font-size: 24px;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 6px;
}

.ch-cta-orange-light .ch-cta-support-desc {
    font-size: 14px;
    color: #9a3412;
}

/* Steps */
.ch-cta-support-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ch-cta-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--ch-radius-lg);
    transition: all 0.2s ease;
}

.ch-cta-step:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateX(4px);
}

.ch-cta-step-num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ch-cta-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ch-cta-step-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #c2410c;
}

.ch-cta-step-text span {
    font-size: 12px;
    color: #9a3412;
}

/* Tags */
.ch-cta-support-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.ch-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.15);
    border-radius: var(--ch-radius-full);
    font-size: 11px;
    font-weight: 500;
    color: #c2410c;
}

.ch-cta-tag svg {
    color: #16a34a;
}

/* Actions - Horizontal Layout */
.ch-cta-support-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
}

.ch-cta-support-actions .ch-btn {
    flex: 1;
    justify-content: center;
}

.ch-btn-lg {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
}

.ch-btn-outline-orange {
    background: transparent;
    color: #ea580c;
    border: 1.5px solid #ea580c;
}

.ch-btn-outline-orange:hover {
    background: rgba(234, 88, 12, 0.08);
}

/* Trust Section */
.ch-cta-support-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

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

.ch-trust-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background: #fff;
}

.ch-trust-avatars img:first-child {
    margin-left: 0;
}

.ch-trust-more {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-trust-text {
    font-size: 13px;
    color: #9a3412;
}

.ch-trust-text strong {
    color: #c2410c;
    font-weight: 700;
}

/* Support Footer */
.ch-cta-support-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.ch-support-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9a3412;
}

.ch-support-item svg {
    color: #16a34a;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .ch-cta-support-actions {
        flex-direction: column;
    }

    .ch-cta-support-tags {
        gap: 6px;
    }

    .ch-cta-tag {
        font-size: 10px;
        padding: 4px 8px;
    }
}

.ch-cta-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ch-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ch-cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.ch-cta-benefit-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-success);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .ch-hero-layout,
    .ch-solution-layout,
    .ch-faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* 价格网格2列 */
    .ch-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 隐藏Hero右侧的Dashboard展示 */
    .ch-hero-visual {
        display: none !important;
    }

    /* 隐藏浮动统计 */
    .ch-float-stat {
        display: none !important;
    }

    /* 隐藏解决方案的Demo演示区 */
    .ch-solution-demo {
        display: none !important;
    }

    .ch-pricing-grid,
    .ch-problems-grid {
        grid-template-columns: 1fr;
    }

    .ch-pc-featured {
        box-shadow: var(--ch-shadow-glow);
    }

    .ch-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ch-tc-large {
        grid-row: auto;
    }

    .ch-success-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .ch-ss-item {
        flex: 1 1 40%;
    }

    .ch-solution-stats {
        gap: 24px;
    }

    .ch-ss-item strong {
        font-size: 24px;
    }

    .ch-ats-paste-box {
        padding: 20px;
    }

    .ch-comp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ch-comp-divider {
        transform: rotate(90deg);
    }

    .ch-testimonials-nav,
    .ch-faq-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .ch-tn-tab,
    .ch-faq-nav-tab {
        justify-content: center;
    }

    .ch-tc-featured .ch-tc-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }

    .ch-tc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ch-tc-journey {
        padding: 16px;
    }

    .ch-faq-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ch-faq-cta {
        padding: 60px 24px;
    }

    .ch-faq-cta-icon {
        width: 64px;
        height: 64px;
    }

    .ch-faq-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .ch-faq-cta-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ch-problem-stats {
        flex-direction: column;
        gap: 24px;
    }

    .ch-ps-divider {
        width: 60px;
        height: 1px;
    }

    .ch-problems-grid {
        grid-template-columns: 1fr;
    }

    .ch-comp-grid {
        grid-template-columns: 1fr;
    }

    .ch-comp-vs {
        display: none;
    }

    .ch-scenarios-grid {
        grid-template-columns: 1fr;
    }

    .ch-impact-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .commercial-homepage {
        padding-top: 24px;
    }

    /* 隐藏公告栏 */
    .ch-announcement {
        display: none !important;
    }

    .ch-announcement-inner {
        flex-direction: column;
        gap: 8px;
    }

    /* Hero区域简化 */
    .ch-hero {
        padding: 40px 0 60px;
    }

    .ch-hero-badge {
        display: none !important;
    }

    .ch-hero-title {
        font-size: 28px !important;
    }

    .ch-hero-subtitle {
        font-size: 15px !important;
    }

    /* 信任统计简化 */
    .ch-hero-trust-bar {
        display: none !important;
    }

    .ch-trust-divider {
        display: none;
    }

    .ch-hero-actions,
    .ch-cta-form {
        flex-direction: column;
        width: 100%;
    }

    /* 隐藏信任徽章 */
    .ch-trust-inline {
        display: none !important;
    }

    /* 社交证明简化 */
    .ch-form-social-proof {
        display: none !important;
    }

    /* 解决方案Tab简化 - 只显示图标 */
    .ch-solutions-nav {
        flex-wrap: wrap;
        gap: 8px;
    }

    .ch-solution-tab {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 12px 8px;
    }

    .ch-solution-tab span {
        font-size: 13px;
    }

    .ch-solution-tab .ch-tab-icon {
        width: 36px;
        height: 36px;
    }

    .ch-solution-tab .ch-tab-icon svg {
        width: 18px;
        height: 18px;
    }

    /* 解决方案面板简化 */
    .ch-solution-info {
        text-align: center;
    }

    .ch-solution-features {
        display: none !important;
    }

    /* 隐藏比较区域 */
    .ch-comp-section {
        display: none !important;
    }

    /* 隐藏影响统计 */
    .ch-impact-stats {
        display: none !important;
    }

    /* 隐藏场景展示 */
    .ch-scenarios {
        display: none !important;
    }

    .ch-cta-benefits {
        flex-direction: column;
        align-items: center;
    }

    .ch-success-stats {
        padding: 24px 16px;
    }

    .ch-ss-number {
        font-size: 24px;
    }

    .ch-ss-label {
        font-size: 13px;
    }

    /* 企业版入口移动端样式 */
    .ch-pricing-enterprise {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .ch-pe-content {
        flex-direction: column;
    }

    /* 问题卡片引用隐藏 */
    .ch-problem-quote {
        display: none !important;
    }

    /* 用户评价简化 */
    .ch-testimonials-nav {
        display: none !important;
    }

    .ch-tc-result {
        flex-wrap: wrap;
    }

    /* 用户旅程隐藏 */
    .ch-tc-journey {
        display: none !important;
    }

    .ch-fa-content {
        padding: 0 16px 16px 52px;
    }

    /* CTA区域简化 */
    .ch-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ch-cta-main {
        padding: 32px 24px;
    }

    .ch-cta-support {
        display: none !important;
    }

    .ch-cta-form {
        flex-direction: column;
    }

    .ch-cta-form .ch-btn {
        width: 100%;
    }

    .ch-cta-benefits {
        gap: 12px;
    }

    /* FAQ CTA功能隐藏 */
    .ch-faq-cta-features {
        display: none !important;
    }

    /* 定价区域简化 */
    .ch-pricing-grid {
        gap: 16px;
    }

    .ch-pc-card {
        padding: 20px;
    }

    .ch-pc-features {
        display: none !important;
    }

    /* 隐藏最终CTA的额外信息 */
    .ch-final-cta {
        padding: 60px 0;
    }
}

/* 超小屏幕额外优化 */
@media (max-width: 480px) {
    .ch-hero-title {
        font-size: 24px !important;
    }

    .ch-hero-subtitle {
        font-size: 14px !important;
    }

    .ch-section-title {
        font-size: 22px !important;
    }

    .ch-section-desc {
        font-size: 14px !important;
    }

    /* 隐藏问题统计 */
    .ch-problem-stats {
        display: none !important;
    }

    /* 隐藏用户头像 */
    .ch-tc-avatar {
        display: none !important;
    }

    .ch-tc-content {
        padding-left: 0;
    }

    /* 按钮全宽 */
    .ch-btn {
        width: 100%;
        justify-content: center;
    }

    .ch-btn-primary {
        padding: 14px 20px;
    }
}

/* Avatar image fixes */
.ch-fsp-avatar,
.ch-ds-avatar {
    object-fit: cover;
}
