/* wykaoyan.com - 糖心国产传媒vlog 主样式文件 */
/* 全新传媒风格设计 2025-10-10 */

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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --text-light: #f0f0f0;
    --text-dark: #0f3460;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--card-bg);
    overflow-x: hidden;
}

.wykaoyan-container-2m7k5w {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.wykaoyan-header-5n8w4k {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    animation: headerSlide 0.6s ease;
}

@keyframes headerSlide {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.wykaoyan-header-5n8w4k .wykaoyan-container-2m7k5w {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.wykaoyan-logo-9w4n2k h1 {
    font-size: 22px;
    font-weight: 700;
}

.wykaoyan-logo-9w4n2k h1 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wykaoyan-logo-9w4n2k h1 a:hover {
    filter: brightness(1.2);
}

.wykaoyan-nav-4k7m3w {
    display: flex;
    gap: 35px;
}

.wykaoyan-nav-4k7m3w a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.wykaoyan-nav-4k7m3w a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    transform: translateX(-50%);
}

.wykaoyan-nav-4k7m3w a:hover::before,
.wykaoyan-nav-4k7m3w a.wykaoyan-active-8n5k2m::before {
    width: 100%;
}

.wykaoyan-nav-4k7m3w a:hover {
    color: var(--primary-color);
}

.wykaoyan-menu-btn-3w9k5m {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.wykaoyan-menu-btn-3w9k5m span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.wykaoyan-hero-6k2m8w {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.wykaoyan-hero-video-bg-7w3n4k {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wykaoyan-hero-video-bg-7w3n4k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.wykaoyan-hero-overlay-5m9k2w {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.wykaoyan-hero-content-4n8k3w {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
    max-width: 900px;
    margin: 0 auto;
}

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

.wykaoyan-hero-title-9k4m7w {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.wykaoyan-hero-subtitle-2w6k9m {
    font-size: 26px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.4s backwards;
    font-weight: 300;
}

.wykaoyan-hero-desc-5k3m8w {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.wykaoyan-hero-btns-7n4k2w {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.wykaoyan-btn-primary-3w8k5m,
.wykaoyan-btn-outline-6k2m9w,
.wykaoyan-btn-white-7k2m9w {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

.wykaoyan-btn-primary-3w8k5m {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.wykaoyan-btn-primary-3w8k5m:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.wykaoyan-btn-outline-6k2m9w {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.wykaoyan-btn-outline-6k2m9w:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.wykaoyan-btn-white-7k2m9w {
    background: var(--card-bg);
    color: var(--dark-bg);
}

.wykaoyan-btn-white-7k2m9w:hover {
    background: var(--text-light);
    transform: translateY(-3px);
}

.wykaoyan-scroll-hint-8m3k5w {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.wykaoyan-scroll-arrow-4w7k2n {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 25px;
    position: relative;
}

.wykaoyan-scroll-arrow-4w7k2n::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--text-light);
    border-radius: 3px;
    animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Common */
section {
    padding: 100px 0;
}

.wykaoyan-section-header-7k4m2w {
    text-align: center;
    margin-bottom: 60px;
}

.wykaoyan-section-tag-5w9k3m {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wykaoyan-section-title-3n8k4w {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wykaoyan-section-desc-6k2m7w {
    font-size: 18px;
    color: #666;
}

.wykaoyan-light-text-8w3k5m .wykaoyan-section-title-3n8k4w,
.wykaoyan-light-text-8w3k5m .wykaoyan-section-desc-6k2m7w {
    color: var(--text-light);
}

/* Intro Section */
.wykaoyan-intro-section-9w5k3m {
    background: var(--card-bg);
}

.wykaoyan-intro-grid-4m7k9w {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wykaoyan-intro-img-wrap-8k3n5w {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.wykaoyan-intro-img-wrap-8k3n5w img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.wykaoyan-intro-img-wrap-8k3n5w:hover img {
    transform: scale(1.05);
}

.wykaoyan-img-float-text-2w9k4m {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.wykaoyan-intro-content-5w8k3m h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.wykaoyan-intro-content-5w8k3m p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.wykaoyan-link-arrow-9k4m2w {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.wykaoyan-link-arrow-9k4m2w:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Features Section */
.wykaoyan-features-section-3k7m5w {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.wykaoyan-features-grid-2m9k4w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.wykaoyan-feature-card-6k3m8w {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.wykaoyan-feature-card-6k3m8w:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}

.wykaoyan-feature-icon-5w7k2m {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

.wykaoyan-feature-icon-5w7k2m img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wykaoyan-feature-card-6k3m8w h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.wykaoyan-feature-card-6k3m8w p {
    color: rgba(240, 240, 240, 0.8);
    line-height: 1.6;
}

/* Services Section */
.wykaoyan-services-section-7k4m9w {
    background: var(--card-bg);
}

.wykaoyan-services-grid-5m8k3w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.wykaoyan-service-item-9k2m6w {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.wykaoyan-service-item-9k2m6w:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.wykaoyan-service-item-9k2m6w img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.wykaoyan-service-content-4w7k3m {
    padding: 30px;
}

.wykaoyan-service-content-4w7k3m h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wykaoyan-service-content-4w7k3m p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.wykaoyan-service-link-8k3m5w {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.wykaoyan-service-link-8k3m5w:hover {
    color: var(--secondary-color);
}

/* Works Section */
.wykaoyan-works-section-6k9m3w {
    background: #f8f9fa;
}

.wykaoyan-works-grid-4m8k2w {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.wykaoyan-work-card-7k3m9w {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.wykaoyan-work-card-7k3m9w:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wykaoyan-work-img-wrap-5w8k4m {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wykaoyan-work-img-wrap-5w8k4m img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wykaoyan-work-card-7k3m9w:hover .wykaoyan-work-img-wrap-5w8k4m img {
    transform: scale(1.1);
}

.wykaoyan-work-overlay-2m9k6w {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
}

.wykaoyan-work-card-7k3m9w:hover .wykaoyan-work-overlay-2m9k6w {
    opacity: 1;
}

.wykaoyan-work-overlay-2m9k6w h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.wykaoyan-work-info-8k4m3w {
    padding: 25px;
}

.wykaoyan-work-tag-9w3k5m {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.wykaoyan-work-info-8k4m3w h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.wykaoyan-work-info-8k4m3w p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.wykaoyan-work-date-6k2m8w {
    display: inline-block;
    font-size: 12px;
    color: #999;
}

.wykaoyan-works-more-5k3m7w {
    text-align: center;
}

/* Stats Section */
.wykaoyan-stats-section-3k8m5w {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 80px 0;
}

.wykaoyan-stats-grid-7m4k2w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.wykaoyan-stat-card-9k5m3w {
    text-align: center;
}

.wykaoyan-stat-number-6w2k8m {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.wykaoyan-stat-label-4m7k9w {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.9;
}

/* News Section */
.wykaoyan-news-section-5k7m4w {
    background: var(--card-bg);
}

.wykaoyan-news-grid-8k3m6w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.wykaoyan-news-card-4m9k2w {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.wykaoyan-news-card-4m9k2w:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wykaoyan-news-card-4m9k2w img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.wykaoyan-news-content-7w5k3m {
    padding: 30px;
}

.wykaoyan-news-date-2k8m9w {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.wykaoyan-news-content-7w5k3m h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wykaoyan-news-content-7w5k3m p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.wykaoyan-news-link-5k3m8w {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.wykaoyan-news-link-5k3m8w:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.wykaoyan-cta-section-6k4m8w {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9));
    text-align: center;
    padding: 100px 0;
}

.wykaoyan-cta-content-9w3k5m {
    color: var(--text-light);
}

.wykaoyan-cta-content-9w3k5m h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.wykaoyan-cta-content-9w3k5m p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.wykaoyan-cta-btns-4k7m2w {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.wykaoyan-footer-8k5m3w {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 70px 0 30px;
}

.wykaoyan-footer-grid-3m9k4w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.wykaoyan-footer-col-6k2m8w h3 {
    font-size: 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wykaoyan-footer-col-6k2m8w h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.wykaoyan-footer-col-6k2m8w p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 15px;
}

.wykaoyan-footer-col-6k2m8w ul {
    list-style: none;
}

.wykaoyan-footer-col-6k2m8w ul li {
    margin-bottom: 12px;
}

.wykaoyan-footer-col-6k2m8w ul li a {
    color: rgba(240, 240, 240, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.wykaoyan-footer-col-6k2m8w ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.wykaoyan-footer-btn-5w9k3m {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 10px;
}

.wykaoyan-footer-btn-5w9k3m:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.wykaoyan-footer-bottom-7k3m6w {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(240, 240, 240, 0.1);
    opacity: 0.7;
}

.wykaoyan-footer-bottom-7k3m6w p {
    margin: 8px 0;
    font-size: 14px;
}

/* Page Banner */
.wykaoyan-page-banner-5k9m3w {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.wykaoyan-banner-overlay-7w4k2m {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.wykaoyan-page-banner-5k9m3w h2 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.wykaoyan-page-banner-5k9m3w p {
    font-size: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Page Content */
.wykaoyan-page-content-8k3m7w {
    padding: 80px 0;
    background: var(--card-bg);
}

.wykaoyan-content-wrapper-4m9k2w {
    max-width: 1000px;
    margin: 0 auto;
}

.wykaoyan-main-content-6k2m8w h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.wykaoyan-main-content-6k2m8w p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.wykaoyan-content-cards-5k7m3w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.wykaoyan-content-card-9w4k2m {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.wykaoyan-content-card-9w4k2m:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wykaoyan-content-card-9w4k2m img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.wykaoyan-content-card-9w4k2m h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wykaoyan-content-card-9w4k2m p {
    color: #666;
    line-height: 1.6;
}

.wykaoyan-additional-section-7k3m9w {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.wykaoyan-additional-section-7k3m9w h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .wykaoyan-nav-4k7m3w {
        display: none;
    }

    .wykaoyan-menu-btn-3w9k5m {
        display: flex;
    }

    .wykaoyan-hero-title-9k4m7w {
        font-size: 36px;
    }

    .wykaoyan-hero-subtitle-2w6k9m {
        font-size: 20px;
    }

    .wykaoyan-hero-btns-7n4k2w {
        flex-direction: column;
        align-items: center;
    }

    .wykaoyan-intro-grid-4m7k9w {
        grid-template-columns: 1fr;
    }

    .wykaoyan-section-title-3n8k4w {
        font-size: 32px;
    }

    .wykaoyan-cta-content-9w3k5m h2 {
        font-size: 32px;
    }

    .wykaoyan-cta-btns-4k7m2w {
        flex-direction: column;
        align-items: center;
    }
}
