
:root {
    
    --primary-color: #0fb97f;
    --primary-light: #34d399;
    --primary-dark: #02966b;
    --primary-bg: rgba(16, 185, 129, 0.08);
    
    
    --accent-color: #8b5cf6;
    --accent-light: #a78bfa;
    
    
    --bg-body: #f0fdf4;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-muted: #f1f5f9;
    
    
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    
    --border-color: #e2e8f0;
    --border-light: #eef2f6;
    
    
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 1, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(3, 0, 1, 0.1);
    --shadow-primary: 0 4px 20px rgba(17, 184, 128, 0.25);
    
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    
    --header-height: 70px;
    --sidebar-width: 319px;
    --container-width: 1281px;
    
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', -apple-system, sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 15px;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}


.kc0b-container-k497 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.kc0b-layout-w2d7 {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 30px;
    padding-top: 33px;
}

.kc0b-main-content-k4c2 {
    min-width: 0;
}

.kc0b-sidebar-q40b {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}


.kc0b-header-o6d3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(252, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.kc0b-header-o6d3 .kc0b-container-k497 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.kc0b-logo-u2e0 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kc0b-logo-u2e0 img {
    height: 37px;
}

.kc0b-logo-text-b71d img {
    height: 20px;
    opacity: 0.8;
}


.kc0b-nav-list-x5b9 {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-muted);
    padding: 6px;
    border-radius: var(--radius-full);
}

.kc0b-nav-list-x5b9 li a {
    display: block;
    padding: 8px 20px;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.kc0b-nav-list-x5b9 li a:hover,
.kc0b-nav-list-x5b9 li a.active {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}


.kc0b-menu-toggle-z925 {
    display: none;
    width: 32px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.kc0b-menu-toggle-z925 span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}


.kc0b-main-n1ce {
    padding-top: var(--header-height);
    min-height: 100vh;
}


.kc0b-banner-q231 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #6ee7b7 100%);
    border-radius: var(--radius-xl);
    padding: 59px 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.kc0b-banner-q231::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.kc0b-banner-q231::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.kc0b-banner-content-u48b {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.kc0b-banner-tag-g272 {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.kc0b-banner-title-xd38 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.kc0b-banner-desc-k6fa {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 27px;
    line-height: 1.7;
}

.kc0b-banner-btn-q036 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--bg-white);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.kc0b-banner-btn-q036:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}


.kc0b-section-n30b {
    margin-bottom: 42px;
}

.kc0b-section-header-sa35 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.kc0b-section-title-i8f0 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.kc0b-section-title-i8f0 i {
    width: 33px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 15px;
}

.kc0b-section-more-s6f6 {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--bg-white);
    color: var(--text-muted);
    font-size: 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.kc0b-section-more-s6f6:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}


.kc0b-article-grid-nba3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.article-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-muted);
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-tag {
    position: absolute;
    top: 13px;
    left: 14px;
    padding: 5px 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.article-card-body {
    padding: 20px;
}

.article-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-title a {
    color: inherit;
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}


.kc0b-article-list-jbc0 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.article-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.article-item-image {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-muted);
}

.article-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-item:hover .article-item-image img {
    transform: scale(1.05);
}

.article-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.article-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.article-item-title a {
    color: inherit;
}

.article-item-title a:hover {
    color: var(--primary-color);
}

.article-item-desc {
    flex: 1;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.article-item-tag {
    padding: 4px 12px;
    background: var(--primary-bg);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.article-item-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-item-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}


.kc0b-sidebar-widget-o008 {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.kc0b-sidebar-title-e857 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-muted);
}

.kc0b-sidebar-title-e857 i {
    color: var(--primary-color);
}


.kc0b-hot-list-ic66 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hot-item {
    display: flex;
    gap: 14px;
}

.hot-item-rank {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.hot-item-rank.top {
    background: var(--primary-color);
    color: #fff;
}

.hot-item-content {
    flex: 1;
    min-width: 0;
}

.hot-item-title {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-item-title a {
    color: inherit;
}

.hot-item-title a:hover {
    color: var(--primary-color);
}

.hot-item-meta {
    font-size: 12px;
    color: var(--text-muted);
}


.kc0b-tag-cloud-ge74 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kc0b-tag-cloud-ge74 a {
    padding: 6px 14px;
    background: var(--bg-muted);
    color: var(--text-body);
    font-size: 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.kc0b-tag-cloud-ge74 a:hover {
    background: var(--primary-color);
    color: #fff;
}


.kc0b-service-grid-g6dd {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kc0b-service-card-t323 {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 33px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.kc0b-service-card-t323:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-light);
}

.kc0b-service-icon-u4fd {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: var(--radius-lg);
}

.kc0b-service-icon-u4fd img {
    width: 38px;
    height: 41px;
}

.kc0b-service-title-rbe8 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 11px;
}

.kc0b-service-desc-ac59 {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}


.kc0b-detail-wrap-i21d {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-bottom: 31px;
}

.kc0b-detail-header-f3b4 {
    padding: 37px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid var(--border-light);
}

.kc0b-detail-title-m6df {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.kc0b-detail-meta-e8f7 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.kc0b-detail-meta-e8f7 span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kc0b-detail-meta-e8f7 a {
    color: var(--primary-color);
}

.kc0b-detail-content-db2b {
    padding: 40px;
}

.kc0b-detail-content-db2b p {
    margin-bottom: 1.5em;
    line-height: 1.9;
}

.kc0b-detail-content-db2b img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.kc0b-detail-content-db2b h2, .kc0b-detail-content-db2b h3 {
    color: var(--text-dark);
    margin: 1.8em 0 1em;
    font-weight: 600;
}

.kc0b-detail-content-db2b blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}


.kc0b-detail-tags-m6df {
    padding: 24px 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.kc0b-detail-tags-label-p994 {
    font-size: 14px;
    color: var(--text-muted);
}

.kc0b-detail-tags-m6df a {
    padding: 4px 14px;
    background: var(--bg-white);
    color: var(--text-body);
    font-size: 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.kc0b-detail-tags-m6df a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


.kc0b-detail-nav-i26c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.kc0b-detail-nav-item-h9c3 {
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.kc0b-detail-nav-item-h9c3:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.kc0b-detail-nav-item-h9c3.kc0b-next-jba6 {
    text-align: right;
}

.kc0b-detail-nav-label-m2aa {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.kc0b-detail-nav-item-h9c3.kc0b-next-jba6 .kc0b-detail-nav-label-m2aa {
    justify-content: flex-end;
}

.kc0b-detail-nav-title-n193 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kc0b-detail-nav-item-h9c3:hover .kc0b-detail-nav-title-n193 {
    color: var(--primary-color);
}

.kc0b-detail-nav-empty-w058 {
    background: var(--bg-light);
}

.kc0b-detail-nav-empty-w058 .kc0b-detail-nav-title-n193 {
    color: var(--text-muted);
}


.kc0b-related-section-p586 {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-light);
}

.kc0b-related-title-ee5a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.kc0b-related-title-ee5a i {
    color: var(--primary-color);
}

.kc0b-related-grid-u0d1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    padding: 18px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.related-item:hover {
    background: var(--bg-muted);
}

.related-item-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-item-title a {
    color: inherit;
}

.related-item-title a:hover {
    color: var(--primary-color);
}

.related-item-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
}


.kc0b-category-header-j30f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 31px;
    text-align: center;
    color: #fff;
}

.kc0b-category-title-j31d {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.kc0b-category-desc-u469 {
    font-size: 1rem;
    opacity: 0.9;
}


.kc0b-pagination-u4c5 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 37px;
}

.kc0b-pagination-u4c5 a,
.kc0b-pagination-u4c5 span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 43px;
    padding: 0 14px;
    background: var(--bg-white);
    color: var(--text-body);
    font-size: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.kc0b-pagination-u4c5 a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.kc0b-pagination-u4c5 .active {
    background: var(--primary-color);
    color: #fefdff;
    border-color: var(--primary-color);
}


.kc0b-footer-oa99 {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.kc0b-footer-grid-y836 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 43px;
}

.kc0b-footer-brand-r9b0 p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 17px;
}

.kc0b-footer-title-c24c {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 19px;
}

.kc0b-footer-links-k499 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kc0b-footer-links-k499 a {
    font-size: 12px;
    color: var(--text-muted);
}

.kc0b-footer-links-k499 a:hover {
    color: var(--primary-color);
}

.kc0b-footer-bottom-hb35 {
    text-align: center;
    padding-top: 31px;
    border-top: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-muted);
}


@media (max-width: 1024px) {
    .kc0b-layout-w2d7 {
        grid-template-columns: 1fr;
    }
    
    .kc0b-sidebar-q40b {
        display: none;
    }
    
    .kc0b-service-grid-g6dd {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kc0b-footer-grid-y836 {
        grid-template-columns: 1fr 1fr;
    }
    
    .kc0b-related-grid-u0d1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 765px) {
    :root {
        --header-height: 60px;
    }
    
    .kc0b-nav-list-x5b9 {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 19px;
        border-radius: 0;
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }
    
    .kc0b-nav-list-x5b9.active {
        display: flex;
    }
    
    .kc0b-menu-toggle-z925 {
        display: flex;
    }
    
    .kc0b-banner-q231 {
        padding: 43px 24px;
        border-radius: var(--radius-lg);
    }
    
    .kc0b-banner-title-xd38 {
        font-size: 1.6rem;
    }
    
    .kc0b-banner-desc-k6fa {
        font-size: 0.95rem;
    }
    
    .kc0b-article-grid-nba3 {
        grid-template-columns: 1fr;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-item-image {
        width: 100%;
        height: 180px;
    }
    
    .kc0b-service-grid-g6dd {
        grid-template-columns: 1fr;
    }
    
    .kc0b-detail-header-f3b4,
    .kc0b-detail-content-db2b {
        padding: 22px;
    }
    
    .kc0b-detail-title-m6df {
        font-size: 1.4rem;
    }
    
    .kc0b-detail-nav-i26c {
        grid-template-columns: 1fr;
    }
    
    .kc0b-detail-nav-item-h9c3.kc0b-next-jba6 {
        text-align: left;
    }
    
    .kc0b-detail-nav-item-h9c3.kc0b-next-jba6 .kc0b-detail-nav-label-m2aa {
        justify-content: flex-start;
    }
    
    .kc0b-related-grid-u0d1 {
        grid-template-columns: 1fr;
    }
    
    .kc0b-footer-grid-y836 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .kc0b-category-header-j30f {
        padding: 32px 20px;
        border-radius: var(--radius-lg);
    }
    
    .kc0b-category-title-j31d {
        font-size: 1.5rem;
    }
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}


::selection {
    background: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   AI SAAS TRANSFORMATION STYLES - APPENDED
   Theme: Future Tech Blue / Professional B2B
   ========================================================================== */

:root {
    --ai-primary: #3b82f6;
    --ai-primary-hover: #2563eb;
    --ai-dark-bg: #0f172a;
    --ai-card-bg: rgba(255, 255, 255, 0.95);
    --ai-text-main: #334155;
    --ai-text-light: #94a3b8;
    --ai-border: rgba(226, 232, 240, 0.8);
    --ai-radius: 12px;
}

/* Layout Overrides */
.ai-saas-main {
    padding-top: var(--header-height);
    background-color: #f8fafc;
    min-height: 100vh;
}

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

.ai-section {
    padding: 80px 0;
}

.ai-bg-light {
    background-color: #f1f5f9;
}

/* 1. Hero Section */
.ai-hero-wrapper {
    position: relative;
    min-height: 650px;
    background-color: var(--ai-dark-bg);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}

.ai-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, #1e40af 0%, transparent 40%),
                radial-gradient(circle at bottom left, #0f172a 0%, #1e293b 100%);
    z-index: 1;
}

.ai-hero-wrapper .ai-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.ai-hero-content {
    max-width: 600px;
}

.ai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ai-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ai-text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-hero-desc {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    line-height: 1.6;
}

.ai-hero-actions {
    display: flex;
    gap: 16px;
}

.ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    cursor: pointer;
}

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

.ai-btn-primary:hover {
    background: var(--ai-primary-hover);
    transform: translateY(-2px);
}

.ai-btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    gap: 8px;
}

.ai-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Swiper Hero */
.ai-hero-swiper {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.ai-hero-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.ai-card-image-wrapper {
    width: 100%;
    height: 100%;
}

.ai-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #374151, #4b5563);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,0.2);
}

.ai-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.ai-card-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #60a5fa;
    font-weight: 700;
}

/* 2. Trust Bar */
.ai-trust-bar {
    border-bottom: 1px solid #e2e8f0;
    background: white;
    padding: 30px 0;
}

.ai-trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.ai-logo-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.ai-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #475569;
}

/* 3. Feature Grid */
.ai-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ai-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.ai-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.ai-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.ai-feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.ai-feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai-feature-icon-box.icon-blue { background: #eff6ff; }
.ai-feature-icon-box.icon-purple { background: #f5f3ff; }
.ai-feature-icon-box.icon-green { background: #f0fdf4; }
.ai-feature-icon-box.icon-orange { background: #fff7ed; }

.ai-feature-icon-box img {
    width: 32px;
    height: 32px;
}

.ai-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.ai-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

/* 4. Stats Section */
.ai-stats-bg {
    background: #0f172a;
    color: white;
}

.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.ai-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 8px;
}

.ai-stat-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* 5. Insights */
.ai-section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.ai-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ai-insight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.ai-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.ai-insight-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ai-insight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-insight-placeholder {
    width: 100%;
    height: 100%;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.ai-insight-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.ai-insight-content {
    padding: 24px;
}

.ai-insight-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.ai-insight-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ai-insight-title a { color: inherit; }
.ai-insight-title a:hover { color: var(--ai-primary); }

.ai-insight-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ai-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ai-primary);
}

/* 6. CTA Box */
.ai-cta-wrapper {
    padding: 80px 0;
    background: white;
}

.ai-cta-box {
    background: linear-gradient(120deg, #2563eb, #1d4ed8);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
}

.ai-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.ai-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.ai-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.ai-btn-primary-inverse {
    background: white;
    color: #1d4ed8;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
}

.ai-btn-outline-inverse {
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ai-hero-wrapper .ai-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    
    .ai-hero-title {
        font-size: 2.5rem;
    }
    
    .ai-hero-swiper {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .ai-stats-grid,
    .ai-insights-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-logo-grid {
        gap: 30px;
    }
    
    .ai-feature-grid {
        grid-template-columns: 1fr;
    }
}
