﻿


:root {
    
    --bg-primary: #1a1930;
    --bg-secondary: #14243f;
    --bg-card: #1f2937;
    --bg-elevated: #252d3d;
    --bg-input: #131b2e;
    
    
    --accent-primary: #fc7414;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #ed469b;
    --accent-success: #10b981;
    --accent-info: #06b8d2;
    
    
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #8e5cf7 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
    --gradient-card: linear-gradient(145deg, #232b3e 0%, #1a2234 100%);
    
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(252, 254, 253, 0.12);
    
    
    --shadow-raised: 8px 8px 20px rgba(0, 0, 0, 0.4), 
                     -4px -4px 12px rgba(255, 255, 255, 0.03);
    --shadow-raised-lg: 12px 12px 30px rgba(0, 0, 0, 0.5), 
                        -6px -6px 20px rgba(255, 253, 255, 0.03);
    --shadow-inset: inset 4px 4px 10px rgba(0, 0, 0, 0.4), 
                    inset -4px -4px 10px rgba(255, 255, 255, 0.02);
    --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
    
    
    --container-width: 1200px;
    --header-height: 77px;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-tertiary);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.ic38-container-g260 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}


.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.ic38-header-scdd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(24, 24, 49, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 9999;
    transition: all var(--transition-normal);
}

.ic38-header-scdd.scrolled {
    background: rgba(21, 31, 61, 0.98);
    box-shadow: var(--shadow-raised);
}

.ic38-header-container-uc4a {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.ic38-logo-cef7 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ic38-logo-cef7 img {
    height: 42px;
    width: auto;
}

.logo-slogan {
    width: 140px;
    height: 45px;
    background-image: url("images/logo_tips.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: logoGlow 2.5s infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 8px rgba(250, 113, 21, 0.4)); }
}


.ic38-main-nav-x73d {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ic38-nav-list-a02b {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ic38-nav-list-a02b li a {
    display: block;
    padding: 14px 24px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 18px;
    border-radius: var(--radius);
    background: transparent;
    transition: all var(--transition-normal);
}

.ic38-nav-list-a02b li a:hover {
    color: var(--text-light);
    background: var(--bg-card);
    box-shadow: var(--shadow-raised);
}


.ic38-header-actions-i245 {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.ic38-btn-contact-c2af {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.ic38-btn-contact-c2af:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-lg), 0 0 40px rgba(249, 115, 22, 0.4);
    color: var(--text-light);
}


.ic38-menu-toggle-u440 {
    display: none;
    width: 44px;
    height: 47px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-raised);
}

.ic38-menu-toggle-u440 span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.ic38-menu-toggle-u440.ic38-active-q8c0 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ic38-menu-toggle-u440.ic38-active-q8c0 span:nth-child(2) {
    opacity: 0;
}

.ic38-menu-toggle-u440.ic38-active-q8c0 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.ic38-btn-jf9d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 19px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.ic38-btn-primary-m491 {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.ic38-btn-primary-m491:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-lg), 0 0 40px rgba(247, 118, 19, 0.5);
    color: var(--text-light);
}

.ic38-btn-primary-m491:active {
    transform: translateY(0);
    box-shadow: var(--shadow-inset);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-raised);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-raised), 0 0 20px rgba(249, 118, 19, 0.2);
}

.ic38-btn-large-i20e {
    padding: 20px 40px;
    font-size: 18px;
}


.ic38-hero-ue36 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    overflow: hidden;
}


.ic38-hero-ue36::before {
    content: '';
    position: absolute;
    width: 601px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 117, 19, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.ic38-hero-ue36::after {
    content: '';
    position: absolute;
    width: 501px;
    height: 499px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.ic38-hero-ue36 .ic38-container-g260 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ic38-hero-content-i201 {
    max-width: 561px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 23px;
    box-shadow: var(--shadow-raised);
}

.ic38-hero-title-y874 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 38px;
}

.ic38-hero-buttons-d1e7 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 31px 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised-lg);
    animation: cardFloat 6s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.card-icon {
    width: 64px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
}

.card-icon img {
    width: 42px;
    height: 40px;
    object-fit: contain;
}

.card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.card-value {
    font-size: 29px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card-1 { top: 5%; left: 5%; }
.hero-card-2 { top: 35%; right: 0; animation-delay: -2s; }
.hero-card-3 { bottom: 10%; left: 15%; animation-delay: -4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


.ic38-section-pd1c {
    padding: 97px 0;
    position: relative;
}

.ic38-section-header-td67 {
    text-align: center;
    margin-bottom: 60px;
}

.ic38-section-badge-k01e {
    display: inline-flex;
    align-items: center;


.ic38-features-section-c49a {
    background: var(--bg-primary);
}

.ic38-features-grid-r92f {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ic38-feature-card-o004 {
    padding: 38px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.ic38-feature-card-o004:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.ic38-feature-icon-b7ef {
    width: 80px;
    height: 79px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-normal);
}

.ic38-feature-icon-b7ef i {
    font-size: 36px;
    color: var(--accent-primary);
}

.ic38-feature-card-o004:hover .ic38-feature-icon-b7ef {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transform: scale(1.1);
}

.ic38-feature-card-o004:hover .ic38-feature-icon-b7ef i {
    color: var(--text-light);
}

.ic38-feature-card-o004 h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 11px;
    color: var(--text-primary);
}

.ic38-feature-card-o004 p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}
    gap: 8px;
    padding: 11px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 17px;
    box-shadow: var(--shadow-raised);
}

.ic38-section-title-f12b {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.ic38-section-desc-e4a3 {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.section-services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.service-icon {
    width: 79px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-normal);
}

.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 11px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.section-stats {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.ic38-stats-grid-z1e5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow-purple);
}

.stat-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ic38-stat-value-d3ce {
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.ic38-stat-label-w048 {
    font-size: 17px;
    color: var(--text-secondary);
}


.section-news {
    background: var(--bg-primary);
}

.ic38-news-grid-k4ff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.news-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-thumb img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 3px 14px;
    background: var(--bg-card);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
}

.news-body {
    padding: 21px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-title a {
    color: var(--text-primary);
}

.news-title a:hover {
    color: var(--accent-primary);
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.news-more svg {
    transition: transform var(--transition-fast);
}

.news-more:hover svg {
    transform: translateX(4px);
}


.section-partners {
    background: var(--bg-dark);
    padding: 80px 0;
}

.ic38-partners-grid-gc01 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
}

.ic38-partner-item-rdc7 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 17px;
    background: var(--bg-card);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    transition: all var(--transition-normal);
    box-shadow: 5px 5px 15px rgba(1, 3, 1, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.05);
}

.ic38-partner-item-rdc7:hover {
    border-color: #f97316;
    box-shadow: 5px 5px 20px rgba(249, 115, 22, 0.4), -5px -5px 20px rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.ic38-partner-item-rdc7 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.ic38-partner-item-rdc7:hover img {
    opacity: 1;
    filter: brightness(1.4);
}


.section-cta {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 117, 22, 0.1) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.ic38-cta-content-n9f6 {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 63px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-raised-lg);
}

.ic38-cta-content-n9f6 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 13px;
    color: var(--text-primary);
}

.ic38-cta-content-n9f6 p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.ic38-cta-buttons-b9ce {
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.cta-feature {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-success);
}


.ic38-footer-t914 {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.ic38-footer-grid-a46f {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 59px;
}

.ic38-footer-brand-i24c {
    max-width: 321px;
}

.ic38-footer-logo-vff6 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
}

.ic38-footer-logo-vff6 img {
    height: 40px;
}

.ic38-footer-logo-vff6 span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.ic38-footer-brand-i24c p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 20px;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.ic38-footer-links-d7ca h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.ic38-footer-links-d7ca ul li {
    margin-bottom: 14px;
}

.ic38-footer-links-d7ca ul li a,
.ic38-footer-links-d7ca ul li span {
    font-size: 17px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.ic38-footer-links-d7ca ul li a:hover {
    color: var(--accent-primary);
}

.ic38-footer-bottom-z3b6 {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.ic38-footer-bottom-z3b6 p {
    font-size: 14px;
    color: var(--text-muted);
}


.page-banner {
    position: relative;
    padding: 143px 0 60px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 112, 20, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.page-banner .ic38-container-g260 {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb .sep {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

.ic38-page-title-zd97 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ic38-page-desc-b1ce {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 703px;
    line-height: 1.7;
}


.section-list {
    background: var(--bg-primary);
    padding: 60px 0 100px;
}

.list-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.list-main {
    min-width: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.article-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.article-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-input);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-thumb img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 13px;
    padding: 9px 14px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
}

.article-content {
    padding: 24px;
}

.article-meta {
    margin-bottom: 12px;
}

.meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-title a {
    color: var(--text-primary);
}

.article-title a:hover {
    color: var(--accent-primary);
}

.article-excerpt {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
}

.article-link svg {
    transition: transform var(--transition-fast);
}

.article-link:hover svg {
    transform: translateX(4px);
}


.ic38-pagination-p58f {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-fast);
}

.page-num:hover,
.page-num.ic38-active-q8c0 {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.list-sidebar,
.article-sidebar {
    position: sticky;
    top: 102px;
}

.sidebar-widget {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 29px;
    margin-bottom: 27px;
    box-shadow: var(--shadow-raised);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.title-icon {
    font-size: 20px;
}


.hot-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hot-item {
    transition: transform var(--transition-fast);
}

.hot-item:hover {
    transform: translateX(5px);
}

.hot-link {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hot-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 73px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.hot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-info {
    flex: 1;
    min-width: 0;
}

.hot-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.hot-date {
    font-size: 13px;
    color: var(--text-muted);
}


.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 7px 18px;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.tag-item:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.widget-contact {
    background: var(--gradient-primary);
    border: none;
    text-align: center;
}

.widget-contact .widget-title {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    justify-content: center;
    color: var(--text-light);
}

.widget-contact .title-icon {
    color: var(--text-light);
}

.widget-contact p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 50px;
    margin-top: 18px;
    transition: all var(--transition-fast);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    transform: translateY(-2px);
}


.section-article {
    background: var(--bg-primary);
    padding: 41px 0 100px;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-detail {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 46px;
    box-shadow: var(--shadow-raised);
}

.article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.article-detail .article-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-detail .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-item svg {
    color: var(--text-muted);
}

.meta-item a {
    color: var(--accent-primary);
}


.article-summary {
    display: flex;
    gap: 16px;
    padding: 27px;
    background: var(--bg-input);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 32px;
    box-shadow: var(--shadow-inset);
}

.summary-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.summary-content {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.summary-content strong {
    color: var(--text-primary);
}


.ic38-article-body-f5c9 {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-primary);
}

.ic38-article-body-f5c9 h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
    color: var(--text-primary);
}

.ic38-article-body-f5c9 h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 37px 0 16px;
    color: var(--text-primary);
}

.ic38-article-body-f5c9 h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 29px 0 12px;
    color: var(--text-primary);
}

.ic38-article-body-f5c9 p {
    margin: 18px 0;
    color: var(--text-secondary);
}

.ic38-article-body-f5c9 img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--radius-sm);
    margin: 30px auto !important;
    display: block !important;
    box-shadow: var(--shadow-raised);
}

.ic38-article-body-f5c9 p img,
.ic38-detail-content-q05f p img {
    margin-left: auto !important;
    margin-right: auto !important;
}

.ic38-article-body-f5c9 p:has(img),
.ic38-detail-content-q05f p:has(img) {
    text-align: center;
}

.ic38-article-body-f5c9 ul,
.ic38-article-body-f5c9 ol {
    margin: 18px 0;
    padding-left: 27px;
}

.ic38-article-body-f5c9 li {
    margin: 12px 0;
    color: var(--text-secondary);
}

.ic38-article-body-f5c9 ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.ic38-article-body-f5c9 blockquote {
    margin: 26px 0;
    padding: 27px 28px;
    background: var(--bg-input);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
    box-shadow: var(--shadow-inset);
}

.ic38-article-body-f5c9 strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.ic38-article-body-f5c9 a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.ic38-article-body-f5c9 table {
    width: 100%;
    border-collapse: collapse;
    margin: 29px 0;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.ic38-article-body-f5c9 table th {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
}

.ic38-article-body-f5c9 table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.ic38-article-body-f5c9 table tr:hover {
    background: var(--bg-elevated);
}


.article-footer {
    margin-top: 46px;
    padding-top: 33px;
    border-top: 1px solid var(--border-color);
}

.article-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-raised);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.tags-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.tag-link {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.related-articles {
    margin-top: 48px;
}

.ic38-related-title-hb69 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 27px;
    color: var(--text-primary);
}

.ic38-related-grid-tfc7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-card {
    display: flex;
    gap: 16px;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.related-date {
    font-size: 16px;
    color: var(--text-muted);
}


.widget-author {
    text-align: center;
}

.author-avatar {
    width: 91px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-primary);
    padding: 4px;
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: var(--bg-card);
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.author-bio {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.author-follow {
    display: inline-block;
    padding: 7px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transition: all var(--transition-fast);
}

.author-follow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised-lg), 0 0 30px rgba(249, 115, 22, 0.4);
    color: var(--text-light);
}


@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    
    .ic38-features-grid-r92f {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    
    .ic38-partners-grid-gc01 {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .ic38-stats-grid-z1e5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ic38-news-grid-k4ff {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ic38-hero-ue36 .ic38-container-g260 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ic38-hero-content-i201 {
        max-width: 100%;
    }
    
    .ic38-hero-buttons-d1e7 {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .list-wrapper,
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .list-sidebar,
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
    
    .ic38-footer-grid-a46f {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


@media (max-width: 765px) {
    :root {
        --header-height: 71px;
    }
    
    .ic38-partners-grid-gc01 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ic38-partner-item-rdc7 {
        height: 80px;
        padding: 16px;
    }
    
    .ic38-container-g260 {
        padding: 0 16px;
    }
    
    .logo-slogan {
        width: 100px;
        height: 31px;
    }
    
    
    .ic38-main-nav-x73d {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 22px;
        box-shadow: var(--shadow-raised-lg);
        z-index: 9998;
    }
    
    .ic38-main-nav-x73d.ic38-active-q8c0 {
        display: block;
    }
    
    .ic38-nav-list-a02b {
        flex-direction: column;
        gap: 0;
    }
    
    .ic38-nav-list-a02b li {
        width: 100%;
    }
    
    .ic38-nav-list-a02b li a {
        display: block;
        padding: 16px 20px;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .ic38-nav-list-a02b li:last-child a {
        border-bottom: none;
    }
    
    .ic38-btn-contact-c2af {
        display: none;
    }
    
    .ic38-menu-toggle-u440 {
        display: flex !important;
    }
    
    
    .ic38-hero-ue36 {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .ic38-hero-title-y874 {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .ic38-hero-buttons-d1e7 {
        flex-direction: column;
        align-items: stretch;
    }
    
    
    .ic38-section-pd1c {
        padding: 63px 0;
    }
    
    .ic38-section-title-f12b {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    
    
    .ic38-features-grid-r92f {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    }
    
    .ic38-stats-grid-z1e5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 26px 16px;
    }
    
    .stat-icon {
        width: 81px;
        height: 80px;
    }
    
    .ic38-stat-value-d3ce {
        font-size: 32px;
    }
    
    .ic38-news-grid-k4ff {
        grid-template-columns: 1fr;
    }
    
    .ic38-cta-content-n9f6 {
        padding: 42px 24px;
    }
    
    .ic38-cta-content-n9f6 h2 {
        font-size: 24px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    
    .ic38-page-title-zd97 {
        font-size: 28px;
    }
    
    
    .section-list {
        padding: 30px 0 60px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .list-sidebar {
        display: none;
    }
    
    
    .ic38-pagination-p58f {
        gap: 6px;
        padding: 0 8px;
    }
    
    .page-num {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-detail {
        padding: 31px 20px;
    }
    
    .article-detail .article-title {
        font-size: 27px;
    }
    
    .article-detail .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .ic38-related-grid-tfc7 {
        grid-template-columns: 1fr;
    }
    
    
    .ic38-footer-grid-a46f {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ic38-footer-brand-i24c {
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    .ic38-hero-title-y874 {
        font-size: 28px;
    }
    
    .ic38-section-title-f12b {
        font-size: 21px;
    }
    
    .article-detail .article-title {
        font-size: 19px;
    }
    
    .ic38-page-title-zd97 {
        font-size: 24px;
    }
    
    .ic38-cta-content-n9f6 h2 {
        font-size: 22px;
    }
    
    .ic38-stats-grid-z1e5 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .ic38-stat-value-d3ce {
        font-size: 30px;
    }
}

/* === disguise mutation rules === */
[class*="ic38-ghost-"]{display:none!important;position:absolute;width:0;height:0;overflow:hidden;clip:rect(0,0,0,0);border:0;padding:0;margin:0}
[class*="ic38-wrapper-"]{display:contents}
/* === end mutation rules === */

/* ========================================
   🎨 手绘插画风美妆网站 - 新增样式覆盖
   ======================================== */

/* 设计令牌 Design Tokens */
:root {
  /* 品牌色 - 手绘美妆风格 */
  --color-primary: #FF6B9D;        /* 玫瑰粉 - 主色 */
  --color-primary-hover: #FF4785;  /* 深玫瑰粉 - Hover */
  --color-secondary: #FFD93D;      /* 蜡笔黄 - 强调色 */
  --color-accent: #A8E6CF;         /* 薄荷绿 - 辅助色 */
  --color-accent-purple: #C9B1FF;  /* 薰衣草紫 - 辅助色 */

  /* 中性色 - 纸张感温暖色调 */
  --bg-page: #FFFDF7;              /* 米白底 - 模拟手绘纸张感 */
  --bg-card: #FFFFFF;
  --bg-sketch: #FFF8EE;            /* 卡片暖底色 */
  --text-main: #2D2013;            /* 深棕黑 - 主文本 */
  --text-sub: #8B6F5E;             /* 暖棕灰 - 次文本 */
  --text-light: #C4A882;           /* 浅棕 - 占位/标签 */
  --border-sketch: #2D2013;        /* 手绘描边色（深棕） */

  /* 间距（8px 规律） */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  /* 字体 */
  --font-display: 'Caveat', 'Ma Shan Zheng', cursive;   /* 手写风标题字体 */
  --font-body: 'Nunito', 'ZCOOL KuaiLe', sans-serif;    /* 活泼圆润正文字体 */
  --font-size-base: 16px;
  --font-size-lg: 20px;
  --font-size-h2: 32px;
  --font-size-hero: 56px;

  /* 圆角 - 故意不规则，用多个值模拟手绘感 */
  --radius-blob: 60% 40% 55% 45% / 45% 55% 40% 60%;   /* 有机形状 */
  --radius-card: 12px 6px 14px 8px;                     /* 不对称圆角 */
  --radius-btn: 8px 4px 10px 6px;                       /* 按钮不对称圆角 */
  --radius-tag: 50px;

  /* 阴影 - 模拟蜡笔手绘投影（实色偏移阴影） */
  --shadow-card: 4px 4px 0px var(--border-sketch);      /* 手绘硬阴影 */
  --shadow-hover: 6px 6px 0px var(--color-primary);     /* Hover 彩色阴影 */
  --shadow-btn: 3px 3px 0px var(--border-sketch);
  --shadow-btn-hover: 5px 5px 0px var(--border-sketch);
}

/* 全局覆盖 - 纸张底色与纹理 */
body {
  background: var(--bg-page) url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuOSIgbnVtT2N0YXZlcz0iNCIgLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+') repeat;
  color: var(--text-main);
  font-family: var(--font-body);
}

/* Header 手绘风格覆盖 */
.ic38-header-scdd {
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 2px solid var(--border-sketch);
  box-shadow: 3px 3px 0px rgba(45, 32, 19, 0.1);
}

.ic38-header-scdd.scrolled {
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 4px 4px 0px rgba(45, 32, 19, 0.15);
}

.ic38-logo-text-gcf0 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 24px;
}

.ic38-nav-list-a02b li a {
  font-family: var(--font-body);
  color: var(--text-main);
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ic38-nav-list-a02b li a:hover {
  background: var(--color-accent);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.ic38-btn-contact-c2af {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  font-family: var(--font-display);
  font-size: 18px;
}

.ic38-btn-contact-c2af:hover {
  background: var(--color-primary-hover);
  color: white;
  box-shadow: var(--shadow-btn-hover);
  transform: translate(-2px, -2px);
}

/* 按钮手绘风格覆盖 */
.ic38-btn-jf9d {
  font-family: var(--font-display);
  font-size: 20px;
}

.ic38-btn-primary-m491 {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  transition: all 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ic38-btn-primary-m491:hover {
  background: var(--color-primary-hover);
  color: white;
  box-shadow: var(--shadow-btn-hover);
  transform: translate(-2px, -2px);
}

.ai-btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-btn);
  box-shadow: 3px 3px 0px var(--color-accent-purple);
}

.ai-btn-secondary:hover {
  background: var(--bg-sketch);
  box-shadow: 5px 5px 0px var(--color-accent-purple);
  transform: translate(-2px, -2px);
}

/* Hero 区域手绘风格 */
.ai-hero-sketch {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-sketch) 100%);
  position: relative;
  overflow: visible;
}

.ai-hero-sketch::before,
.ai-hero-sketch::after {
  display: none;
}

/* Hero 装饰星星与爱心 */
.ai-deco-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.ai-star {
  position: absolute;
  width: 40px;
  height: 40px;
  animation: aiFloatStar 6s ease-in-out infinite;
}

.ai-star-1 { top: 10%; left: 8%; animation-delay: 0s; }
.ai-star-2 { top: 25%; right: 12%; width: 35px; height: 35px; animation-delay: -2s; }
.ai-star-3 { bottom: 20%; left: 15%; width: 28px; height: 28px; animation-delay: -4s; }
.ai-star-4 { top: 60%; right: 20%; width: 32px; height: 32px; animation-delay: -3s; }

.ai-heart {
  position: absolute;
  width: 38px;
  height: 38px;
  animation: aiFloatHeart 8s ease-in-out infinite;
}

.ai-heart-1 { top: 40%; left: 5%; animation-delay: -1s; }
.ai-heart-2 { bottom: 15%; right: 8%; width: 32px; height: 32px; animation-delay: -5s; }

.ai-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 1.5px solid var(--border-sketch);
}

.ai-dot-1 { top: 15%; left: 25%; background: var(--color-secondary); }
.ai-dot-2 { top: 70%; left: 10%; background: var(--color-primary); }
.ai-dot-3 { top: 35%; right: 15%; background: var(--color-accent-purple); }
.ai-dot-4 { bottom: 25%; right: 25%; background: var(--color-accent); }
.ai-dot-5 { top: 80%; left: 30%; background: var(--color-secondary); }

@keyframes aiFloatStar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes aiFloatHeart {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}

.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-tag);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 20px;
  box-shadow: 3px 3px 0px var(--border-sketch);
  font-family: var(--font-display);
}

.ic38-hero-title-y874 {
  font-family: var(--font-display);
  font-size: var(--font-size-hero);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 24px;
}

.ai-title-line1,
.ai-title-line3 {
  display: inline-block;
  transform: rotate(-1deg);
}

.ai-title-line2 {
  display: inline-block;
  transform: rotate(1deg);
}

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

.ic38-hero-description-bd98 {
  font-family: var(--font-body);
  color: var(--text-sub);
  line-height: 1.8;
}

/* Hero 插画区域 */
.ai-hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-hero-img {
  max-width: 100%;
  height: auto;
  border: 3px solid var(--border-sketch);
  border-radius: var(--radius-blob);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.ai-float-tag {
  position: absolute;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-main);
  font-weight: 600;
  animation: aiFloatTag 4s ease-in-out infinite;
}

.ai-float-tag-1 {
  top: 10%;
  left: -20px;
  background: var(--color-secondary);
  animation-delay: 0s;
}

.ai-float-tag-2 {
  top: 40%;
  right: -30px;
  background: var(--color-accent);
  animation-delay: -1.5s;
}

.ai-float-tag-3 {
  bottom: 15%;
  left: 10%;
  background: var(--color-accent-purple);
  color: white;
  animation-delay: -3s;
}

@keyframes aiFloatTag {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Section 通用手绘风格 */
.ic38-section-pd1c {
  background: var(--bg-page);
}

.ic38-section-badge-k01e {
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  color: var(--color-primary);
  border-radius: var(--radius-tag);
  box-shadow: 3px 3px 0px var(--border-sketch);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px;
}

.ic38-section-title-f12b,
.ai-sketch-title {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--text-main);
  font-weight: 700;
}

.ic38-section-desc-e4a3 {
  font-family: var(--font-body);
  color: var(--text-sub);
}

/* 品类导航区 */
.ai-category-section {
  background: var(--bg-sketch);
  position: relative;
}

.ai-category-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -24px;
  padding: 0 24px;
}

.ai-category-scroll::-webkit-scrollbar {
  display: none;
}

.ai-category-track {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
}

.ai-category-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-category-item:hover {
  transform: translateY(-5px);
}

.ai-category-circle {
  width: 120px;
  height: 120px;
  border: 3px solid var(--border-sketch);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-category-item:hover .ai-category-circle {
  box-shadow: var(--shadow-hover);
  transform: rotate(5deg);
}

.ai-circle-pink { background: var(--color-primary); }
.ai-circle-purple { background: var(--color-accent-purple); }
.ai-circle-mint { background: var(--color-accent); }
.ai-circle-yellow { background: var(--color-secondary); }

.ai-category-circle svg {
  width: 60px;
  height: 60px;
}

.ai-category-item span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

/* 产品卡片手绘风格 */
.ai-products-section {
  background: var(--bg-page);
}

.ai-product-grid {
  gap: 32px;
}

.ai-product-card {
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.ai-product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px) rotate(0.5deg);
}

.ai-product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 16px;
}

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

.ai-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: var(--color-secondary);
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-tag);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 2px 2px 0px var(--border-sketch);
  transform: rotate(-8deg);
}

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

.ai-feature-icon-b7ef {
  display: none;
}

.ai-product-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.ai-product-card p {
  font-family: var(--font-body);
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ai-product-price {
  margin-top: 12px;
}

.ai-price-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-secondary);
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-tag);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 2px 2px 0px var(--border-sketch);
}

/* 品牌故事区 */
.ai-brand-story-section {
  background: var(--color-accent);
  position: relative;
  padding: 80px 0;
}

.ai-wave-divider-top,
.ai-wave-divider-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.ai-wave-divider-top {
  top: 0;
}

.ai-wave-divider-top svg {
  width: 100%;
  height: 100%;
}

.ai-wave-divider-bottom {
  bottom: 0;
}

.ai-wave-divider-bottom svg {
  width: 100%;
  height: 100%;
}

.ai-brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-brand-story-text {
  max-width: 560px;
}

.ai-brand-quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-main);
  font-style: italic;
  margin: 24px 0;
  line-height: 1.4;
}

.ai-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ai-brand-tag {
  padding: 8px 18px;
  background: var(--bg-card);
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-tag);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 2px 2px 0px var(--border-sketch);
}

.ai-brand-story-img {
  position: relative;
}

.ai-brand-story-img img {
  width: 100%;
  height: auto;
  border: 3px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.ai-brand-deco-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--color-secondary);
  border: 3px solid var(--border-sketch);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: -1;
}

/* 统计卡片手绘风格 */
.ai-stats-section {
  background: var(--bg-sketch);
}

.ai-stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-stat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px) rotate(-1deg);
}

.ai-stat-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.ic38-stat-value-d3ce {
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ic38-stat-label-w048 {
  font-family: var(--font-body);
  color: var(--text-sub);
}

/* 资讯卡片手绘风格 */
.ai-news-section {
  background: var(--bg-page);
}

.ai-news-grid {
  gap: 32px;
}

.ai-news-card {
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
  position: relative;
}

.ai-news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px) rotate(0.5deg);
}

.ai-news-img-wrap {
  position: relative;
  border-bottom: 2px solid var(--border-sketch);
}

.ai-news-date {
  background: var(--color-secondary);
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  box-shadow: 2px 2px 0px var(--border-sketch);
  font-family: var(--font-display);
  font-weight: 600;
}

.ai-news-step-num {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 2px 2px 0px var(--border-sketch);
}

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

.ai-news-cat {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--border-sketch);
  box-shadow: 2px 2px 0px var(--border-sketch);
  font-family: var(--font-display);
}

.ai-news-title a {
  font-family: var(--font-display);
  color: var(--text-main);
  font-weight: 600;
}

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

.ai-news-meta {
  font-family: var(--font-body);
  color: var(--text-sub);
}

/* 用户评价区 */
.ai-reviews-section {
  background: var(--bg-sketch);
  padding: 80px 0;
}

.ai-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ai-review-card {
  padding: 24px;
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.ai-review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px) rotate(0deg) !important;
}

.ai-sticky-yellow {
  background: var(--color-secondary);
}

.ai-sticky-pink {
  background: #FFE5F0;
}

.ai-sticky-mint {
  background: var(--color-accent);
}

.ai-review-stars {
  font-size: 18px;
  color: var(--color-secondary);
  margin-bottom: 12px;
  filter: drop-shadow(1px 1px 0px var(--border-sketch));
}

.ai-sticky-yellow .ai-review-stars,
.ai-sticky-mint .ai-review-stars {
  color: var(--color-primary);
}

.ai-review-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ai-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.ai-review-avatar {
  font-size: 24px;
}

/* 合作伙伴手绘风格 */
.ai-partners-section {
  background: var(--bg-page);
}

.ai-partners-grid {
  gap: 24px;
}

.ai-partner-card {
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-partner-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px) rotate(-1deg);
}

/* CTA 区域手绘风格 */
.ai-cta-section {
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.ai-cta-section::before {
  display: none;
}

.ai-cta-deco-left,
.ai-cta-deco-right {
  position: absolute;
  width: 120px;
  height: 200px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.ai-cta-deco-left {
  left: 10%;
}

.ai-cta-deco-right {
  right: 10%;
}

.ai-cta-content {
  background: var(--bg-card);
  border: 3px solid var(--border-sketch);
  border-radius: var(--radius-card);
  box-shadow: 6px 6px 0px var(--border-sketch);
  position: relative;
  z-index: 1;
}

.ai-cta-crown {
  font-size: 48px;
  margin-bottom: 16px;
}

.ai-cta-content h2 {
  font-family: var(--font-display);
  color: var(--text-main);
}

.ai-cta-content p {
  font-family: var(--font-body);
  color: var(--text-sub);
}

.ai-cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ai-cta-features span {
  padding: 8px 18px;
  background: var(--bg-sketch);
  color: var(--text-main);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-tag);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 2px 2px 0px var(--border-sketch);
}

/* Footer 手绘风格 */
.ai-footer {
  background: var(--bg-sketch);
  border-top: 3px solid var(--border-sketch);
}

.ai-footer-wave {
  margin-bottom: 40px;
}

.ai-footer-wave svg {
  width: 100%;
  height: 50px;
}

.ic38-footer-logo-vff6 span {
  font-family: var(--font-display);
  color: var(--color-primary);
}

.ic38-footer-brand-i24c p {
  color: var(--text-sub);
}

.ai-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.ai-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-btn);
  color: var(--text-main);
  box-shadow: 2px 2px 0px var(--border-sketch);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-social-icon:hover {
  background: var(--color-primary);
  color: white;
  box-shadow: 4px 4px 0px var(--border-sketch);
  transform: translate(-2px, -2px) rotate(-5deg);
}

.ic38-footer-links-d7ca h4 {
  font-family: var(--font-display);
  color: var(--text-main);
  font-size: 20px;
}

.ic38-footer-links-d7ca ul li a,
.ic38-footer-links-d7ca ul li span {
  font-family: var(--font-body);
  color: var(--text-sub);
}

.ic38-footer-links-d7ca ul li a:hover {
  color: var(--color-primary);
}

.ai-footer-bottom {
  border-top: 2px solid var(--border-sketch);
}

.ai-footer-bottom p {
  font-family: var(--font-body);
  color: var(--text-sub);
}

/* 回到顶部手绘风格 */
.ai-back-to-top {
  background: var(--color-primary);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-back-to-top svg {
  width: 24px;
  height: 24px;
  color: white;
}

.ai-back-to-top:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translate(-2px, -2px) rotate(-5deg);
}

/* 响应式 - 移动端适配 */
@media (max-width: 1024px) {
  .ai-hero-illustration {
    display: none;
  }

  .ai-brand-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .ai-cta-deco-left,
  .ai-cta-deco-right {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-hero: 32px;
    --font-size-h2: 24px;
  }

  .ic38-hero-title-y874 {
    font-size: 32px;
  }

  .ai-category-circle {
    width: 100px;
    height: 100px;
  }

  .ai-category-circle svg {
    width: 48px;
    height: 48px;
  }

  .ai-category-item span {
    font-size: 16px;
  }

  .ai-product-grid,
  .ai-news-grid {
    grid-template-columns: 1fr !important;
  }

  .ai-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ai-brand-story-img {
    order: -1;
  }

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

@media (max-width: 480px) {
  .ai-float-tag {
    display: none;
  }

  .ai-hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .ic38-section-badge-k01e {
    font-size: 14px;
    padding: 8px 18px;
  }
}
