/* ========== 首页样式 - Finance Company 现代不规则布局 ========== */

/* ========== 容器定义 ========== */
.zh_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Hero Section ========== */
.zh_hero {
    position: relative;
    min-height: 100vh;
    background: var(--zh-dark);
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
}

.zh_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.zh_hero_shape {
    position: absolute;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    opacity: 0.06;
}

.zh_hero_shape_1 {
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.zh_hero_shape_2 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.zh_hero_circle {
    position: absolute;
    border: 1px solid rgba(63, 88, 221, 0.12);
    border-radius: 50%;
}

.zh_hero_circle_1 {
    width: 450px;
    height: 450px;
    top: 15%;
    right: 15%;
}

.zh_hero_circle_2 {
    width: 280px;
    height: 280px;
    bottom: 15%;
    left: 8%;
}

.zh_hero_content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.zh_hero_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Hero 左侧主内容 */
.zh_hero_main {
    flex: 0 1 540px;
}

.zh_hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(63, 88, 221, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-primary-light);
    margin-bottom: 28px;
}

.zh_badge_dot {
    width: 8px;
    height: 8px;
    background: var(--zh-primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.zh_hero_title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--zh-white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.zh_hero_desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 36px;
}

.zh_hero_actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Trust Section */
.zh_hero_trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zh_trust_label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.zh_trust_avatars {
    display: flex;
    align-items: center;
}

.zh_trust_avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-white);
    margin-left: -8px;
    border: 2px solid var(--zh-dark);
}

.zh_trust_avatar:first-child {
    margin-left: 0;
}

.zh_trust_more {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left: -8px;
    border: 2px solid var(--zh-dark);
}

/* Hero 右侧卡片组 */
.zh_hero_cards {
    flex: 0 1 480px;
    position: relative;
    height: 480px;
}

.zh_stat_float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.zh_stat_float_1 {
    top: 30px;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}

.zh_stat_float_2 {
    bottom: 30px;
    right: 0;
    animation: float2 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.zh_stat_icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--zh-white);
}

.zh_stat_icon_alt {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.zh_stat_info {
    display: flex;
    flex-direction: column;
}

.zh_stat_num {
    font-size: 22px;
    font-weight: 800;
    color: var(--zh-dark-text);
    line-height: 1;
}

.zh_stat_text {
    font-size: 12px;
    color: var(--zh-text-light);
    margin-top: 4px;
}

/* Hero Card */
.zh_hero_card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 2;
}

.zh_hero_card:hover {
    transform: translate(-50%, -50%) translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.zh_hero_card_image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.zh_hero_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_hero_card:hover .zh_hero_card_image img {
    transform: scale(1.05);
}

.zh_hero_card_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--zh-white);
}

.zh_hero_card_body {
    padding: 22px;
}

.zh_hero_card_cat {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 10px;
}

.zh_hero_card_title {
    font-size: 17px;
    font-weight: 700;
    color: var(--zh-dark-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.zh_hero_card_meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--zh-text-light);
}

.zh_hero_card_meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========== Buttons ========== */
.zh_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-btn);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.zh_btn_primary {
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    color: var(--zh-white);
    box-shadow: 0 8px 25px rgba(63, 88, 221, 0.35);
}

.zh_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(63, 88, 221, 0.45);
    color: var(--zh-white);
}

.zh_btn_ghost {
    background: transparent;
    color: var(--zh-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.zh_btn_ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--zh-white);
}

.zh_btn_white {
    background: var(--zh-white);
    color: var(--zh-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.zh_btn_white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: var(--zh-primary);
}

.zh_btn_ghost_light {
    background: transparent;
    color: var(--zh-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.zh_btn_ghost_light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--zh-white);
}

.zh_btn_outline_lg {
    background: transparent;
    color: var(--zh-primary);
    border: 2px solid var(--zh-primary);
    padding: 16px 36px;
}

.zh_btn_outline_lg:hover {
    background: var(--zh-primary);
    color: var(--zh-white);
}

.zh_btn_dark {
    background: var(--zh-dark);
    color: var(--zh-white);
}

.zh_btn_dark:hover {
    background: #2a2f3d;
    color: var(--zh-white);
}

.zh_btn_outline_dark {
    background: transparent;
    border: 2px solid var(--zh-dark);
    color: var(--zh-dark);
}

.zh_btn_outline_dark:hover {
    background: var(--zh-dark);
    color: var(--zh-white);
}

/* ========== Section Styles ========== */
.zh_section_header {
    margin-bottom: 48px;
}

.zh_section_header_center {
    text-align: center;
}

.zh_section_badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 16px;
}

.zh_section_badge_light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--zh-white);
}

.zh_section_title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--zh-dark-text);
    line-height: 1.2;
    margin-bottom: 12px;
}

.zh_section_title_light {
    color: var(--zh-white);
}

.zh_section_desc {
    font-size: 16px;
    color: var(--zh-text-light);
    line-height: 1.7;
    max-width: 600px;
}

.zh_section_header_center .zh_section_desc {
    margin: 0 auto;
}

/* ========== Services Bento Grid ========== */
.zh_services {
    padding: 100px 0;
    background: var(--zh-white);
}

.zh_bento_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.zh_bento_card {
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    padding: 32px;
    box-shadow: var(--zh-shadow);
    transition: all 0.4s ease;
}

.zh_bento_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(63, 88, 221, 0.12);
}

.zh_bento_large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

.zh_bento_medium {
    grid-column: span 2;
}

.zh_bento_small {
    grid-column: span 1;
}

.zh_bento_primary {
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    color: var(--zh-white);
}

.zh_bento_primary h3,
.zh_bento_primary p {
    color: var(--zh-white);
}

.zh_bento_primary .zh_bento_icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--zh-white);
}

.zh_bento_cta {
    background: var(--zh-dark);
    color: var(--zh-white);
}

.zh_bento_cta h3,
.zh_bento_cta p {
    color: var(--zh-white);
}

.zh_bento_icon {
    width: 56px;
    height: 56px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--zh-primary);
    margin-bottom: 20px;
}

.zh_bento_card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--zh-dark-text);
    margin-bottom: 10px;
}

.zh_bento_card p {
    font-size: 14px;
    color: var(--zh-text-light);
    line-height: 1.7;
}

.zh_bento_visual {
    margin-top: 24px;
}

.zh_check_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zh_check_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--zh-dark-text);
}

.zh_check_item i {
    width: 20px;
    height: 20px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--zh-primary);
}

.zh_bento_stats {
    margin-top: 24px;
}

.zh_mini_stat {
    display: flex;
    flex-direction: column;
}

.zh_mini_num {
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-primary);
    line-height: 1;
}

.zh_mini_label {
    font-size: 13px;
    color: var(--zh-text-light);
    margin-top: 4px;
}

.zh_bento_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--zh-white);
    color: var(--zh-dark);
    border-radius: var(--zh-radius-btn);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.zh_bento_btn:hover {
    transform: translateX(5px);
    color: var(--zh-dark);
}

/* ========== Categories Section ========== */
.zh_categories {
    padding: 100px 0;
    background: var(--zh-gray-bg);
}

.zh_cat_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.zh_link_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.zh_link_more:hover {
    gap: 12px;
    color: var(--zh-primary-dark);
}

.zh_cat_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.zh_cat_card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    box-shadow: var(--zh-shadow);
    text-decoration: none;
    transition: all 0.4s ease;
}

.zh_cat_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(63, 88, 221, 0.12);
}

.zh_cat_card_featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
}

.zh_cat_card_featured .zh_cat_icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--zh-white);
}

.zh_cat_card_featured h3,
.zh_cat_card_featured span {
    color: var(--zh-white);
}

.zh_cat_card_featured .zh_cat_arrow {
    background: rgba(255, 255, 255, 0.2);
    color: var(--zh-white);
}

.zh_cat_icon {
    width: 56px;
    height: 56px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--zh-primary);
    flex-shrink: 0;
}

.zh_cat_content {
    flex: 1;
}

.zh_cat_content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zh-dark-text);
    margin-bottom: 4px;
}

.zh_cat_content span {
    font-size: 13px;
    color: var(--zh-text-light);
}

.zh_cat_arrow {
    width: 40px;
    height: 40px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--zh-primary);
    transition: all 0.3s ease;
}

.zh_cat_card:hover .zh_cat_arrow {
    background: var(--zh-primary);
    color: var(--zh-white);
    transform: translateX(5px);
}

.zh_cat_card_featured:hover .zh_cat_arrow {
    background: var(--zh-white);
    color: var(--zh-primary);
}

/* ========== Infos Section ========== */
.zh_infos {
    padding: 100px 0;
    background: var(--zh-white);
}

.zh_infos_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.zh_infos_tabs {
    display: flex;
    gap: 8px;
}

.zh_tab_btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(138, 138, 155, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--zh-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.zh_tab_btn:hover,
.zh_tab_btn.active {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: var(--zh-white);
}

.zh_infos_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zh_info_card {
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    box-shadow: var(--zh-shadow);
    overflow: hidden;
    transition: all 0.4s ease;
}

.zh_info_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(63, 88, 221, 0.12);
}

.zh_info_card_large {
    grid-column: span 2;
    grid-row: span 2;
}

.zh_info_card_large .zh_info_image {
    aspect-ratio: 16 / 10;
}

.zh_info_card_large .zh_info_title {
    font-size: 22px;
}

.zh_info_image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f8f9fa;
}

.zh_info_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
    transition: transform 0.5s ease;
}

.zh_info_card:hover .zh_info_image img {
    transform: scale(1.05);
}

.zh_info_hot {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--zh-white);
}

.zh_info_link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: var(--zh-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--zh-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.zh_info_card:hover .zh_info_link {
    opacity: 1;
    transform: translateY(0);
}

.zh_info_link:hover {
    background: var(--zh-primary);
    color: var(--zh-white);
}

.zh_info_body {
    padding: 24px;
}

.zh_info_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.zh_info_cat {
    padding: 4px 10px;
    background: rgba(63, 88, 221, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-primary);
}

.zh_info_date {
    font-size: 12px;
    color: var(--zh-text-light);
}

.zh_info_title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.zh_info_title a {
    color: var(--zh-dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_info_title a:hover {
    color: var(--zh-primary);
}

.zh_info_desc {
    font-size: 14px;
    color: var(--zh-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.zh_info_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(138, 138, 155, 0.1);
}

.zh_info_author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_author_avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--zh-white);
}

.zh_info_author span {
    font-size: 13px;
    color: var(--zh-dark-text);
    font-weight: 500;
}

.zh_info_views {
    font-size: 13px;
    color: var(--zh-text-light);
}

.zh_infos_action {
    text-align: center;
    margin-top: 48px;
}

/* ========== Process Section ========== */
.zh_process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
}

.zh_process_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zh_process_content {
    max-width: 500px;
}

.zh_process_desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.zh_steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.zh_step {
    display: flex;
    gap: 20px;
}

.zh_step_num {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--zh-white);
    flex-shrink: 0;
}

.zh_step_content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--zh-white);
    margin-bottom: 4px;
}

.zh_step_content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.zh_process_actions {
    display: flex;
    gap: 16px;
}

/* Process Visual */
.zh_process_visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zh_visual_card {
    width: 380px;
    background: var(--zh-white);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.zh_visual_header {
    padding: 12px 18px;
    background: var(--zh-gray-bg);
    border-bottom: 1px solid rgba(138, 138, 155, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_visual_dots {
    display: flex;
    gap: 6px;
}

.zh_visual_dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(138, 138, 155, 0.3);
}

.zh_visual_dots span:first-child {
    background: #ef4444;
}

.zh_visual_dots span:nth-child(2) {
    background: #f59e0b;
}

.zh_visual_dots span:nth-child(3) {
    background: #10b981;
}

.zh_visual_title {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-dark-text);
}

.zh_visual_body {
    padding: 24px;
}

.zh_visual_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zh_form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zh_form_row {
    display: flex;
    gap: 12px;
}

.zh_form_half {
    flex: 1;
}

.zh_form_label {
    font-size: 12px;
    font-weight: 600;
    color: var(--zh-text-light);
}

.zh_form_input {
    height: 38px;
    padding: 0 12px;
    background: var(--zh-gray-bg);
    border-radius: 8px;
    border: 1px solid rgba(138, 138, 155, 0.15);
    display: flex;
    align-items: center;
}

.zh_form_input span {
    font-size: 13px;
    color: var(--zh-dark-text);
}

.zh_form_select {
    height: 38px;
    padding: 0 12px;
    background: var(--zh-gray-bg);
    border-radius: 8px;
    border: 1px solid rgba(138, 138, 155, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zh_form_select span {
    font-size: 13px;
    color: var(--zh-dark-text);
}

.zh_form_select i {
    font-size: 10px;
    color: var(--zh-text-light);
}

.zh_form_textarea {
    height: 60px;
    padding: 10px 12px;
    background: var(--zh-gray-bg);
    border-radius: 8px;
    border: 1px solid rgba(138, 138, 155, 0.15);
}

.zh_form_textarea span {
    font-size: 13px;
    color: var(--zh-text-light);
    line-height: 1.5;
}

.zh_form_upload {
    display: flex;
    gap: 10px;
}

.zh_upload_item {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_upload_item i {
    font-size: 20px;
    color: var(--zh-primary);
}

.zh_upload_add {
    width: 56px;
    height: 56px;
    background: var(--zh-gray-bg);
    border: 2px dashed rgba(138, 138, 155, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_upload_add i {
    font-size: 16px;
    color: var(--zh-text-light);
}

.zh_form_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-white);
    cursor: pointer;
    margin-top: 4px;
}

.zh_visual_float {
    position: absolute;
    bottom: -15px;
    right: -15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float2 4s ease-in-out infinite;
}

.zh_visual_float i {
    font-size: 20px;
    color: #10b981;
}

.zh_visual_float span {
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-dark-text);
}

/* ========== CTA Section ========== */
.zh_cta {
    padding: 100px 0;
    background: var(--zh-gray-bg);
}

.zh_cta_card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--zh-white);
    border-radius: var(--zh-radius);
    box-shadow: var(--zh-shadow);
    overflow: hidden;
}

.zh_cta_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
}

.zh_cta_circle {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: 50%;
    opacity: 0.1;
}

.zh_cta_content {
    position: relative;
    z-index: 1;
}

.zh_cta_content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--zh-dark-text);
    margin-bottom: 12px;
}

.zh_cta_content p {
    font-size: 16px;
    color: var(--zh-text-light);
    margin-bottom: 28px;
}

.zh_cta_actions {
    display: flex;
    gap: 16px;
}

.zh_cta_stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
}

.zh_cta_stat {
    text-align: center;
}

.zh_cta_stat_num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-primary);
    line-height: 1;
}

.zh_cta_stat_label {
    font-size: 13px;
    color: var(--zh-text-light);
    margin-top: 6px;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .zh_container {
        max-width: 960px;
    }

    .zh_hero_flex {
        gap: 40px;
    }

    .zh_hero_main {
        flex: 0 1 480px;
    }

    .zh_hero_cards {
        flex: 0 1 400px;
        height: 420px;
    }

    .zh_hero_card {
        width: 280px;
    }

    .zh_bento_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_bento_large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .zh_cat_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_cat_card_featured {
        grid-column: span 2;
    }

    .zh_infos_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_info_card_large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .zh_info_card_large .zh_info_image {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .zh_container {
        max-width: 720px;
    }

    .zh_hero {
        margin-top: -80px;
        padding-top: 80px;
    }

    .zh_hero_content {
        min-height: auto;
        padding: 80px 0;
    }

    .zh_hero_flex {
        flex-direction: column;
        text-align: center;
    }

    .zh_hero_main {
        flex: none;
        max-width: 100%;
    }

    .zh_hero_actions {
        justify-content: center;
    }

    .zh_hero_trust {
        justify-content: center;
    }

    .zh_hero_cards {
        flex: none;
        max-width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .zh_hero_card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .zh_hero_card:hover {
        transform: translateY(-8px);
    }

    .zh_stat_float {
        display: none;
    }

    .zh_process_wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .zh_process_content {
        max-width: 100%;
    }

    .zh_steps {
        align-items: center;
    }

    .zh_step {
        max-width: 400px;
        text-align: left;
    }

    .zh_process_actions {
        justify-content: center;
    }

    .zh_process_visual {
        display: none;
    }

    .zh_cta_card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zh_cta_actions {
        justify-content: center;
    }

    .zh_cta_stats {
        justify-content: center;
    }

    .zh_infos_header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .zh_infos_tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .zh_container {
        max-width: 540px;
        padding: 0 20px;
    }

    .zh_hero {
        margin-top: -70px;
        padding-top: 70px;
    }

    .zh_hero_content {
        padding: 60px 0;
    }

    .zh_hero_title {
        font-size: 32px;
    }

    .zh_hero_actions {
        flex-direction: column;
    }

    .zh_btn {
        width: 100%;
    }

    .zh_services,
    .zh_categories,
    .zh_infos,
    .zh_process,
    .zh_cta {
        padding: 60px 0;
    }

    .zh_bento_grid {
        grid-template-columns: 1fr;
    }

    .zh_bento_large,
    .zh_bento_medium {
        grid-column: span 1;
    }

    .zh_cat_header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .zh_cat_grid {
        grid-template-columns: 1fr;
    }

    .zh_cat_card_featured {
        grid-column: span 1;
    }

    .zh_infos_grid {
        grid-template-columns: 1fr;
    }

    .zh_info_card_large {
        grid-column: span 1;
    }

    .zh_cta_card {
        padding: 40px 24px;
    }

    .zh_cta_stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .zh_container {
        padding: 0 16px;
    }

    .zh_hero_title {
        font-size: 28px;
    }

    .zh_hero_desc {
        font-size: 15px;
    }

    .zh_section_title {
        font-size: 24px;
    }

    .zh_bento_card {
        padding: 24px;
    }

    .zh_cat_card {
        padding: 20px;
    }

    .zh_info_body {
        padding: 20px;
    }

    .zh_cta_content h2 {
        font-size: 24px;
    }
}
