/* ============================================
   C7娱乐 · 糖果解构主义设计系统
   Awwwards 获奖风格 · 禁止深色背景
   暖白基底 + 多色渐变 + 玻璃态组件 + 浮动装饰
   ============================================ */

/* 基础重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background: #FDF9F7;
    color: #2D2A3D;
    line-height: 1.6;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDF9F7;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    border-radius: 4px;
}

/* 选中文本样式 */
::selection {
    background: rgba(167, 139, 250, 0.3);
    color: #2D2A3D;
}

/* ========== 核心布局 ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F7F4F2;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 126, 126, 0.2), rgba(167, 139, 250, 0.2), transparent);
}

/* ========== 导航 — 玻璃态顶部 ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 249, 247, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: none;
    box-shadow: 0 1px 30px rgba(45, 42, 61, 0.06);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #FF7E7E 15%,
            #FDBA74 30%,
            #7DD3FC 50%,
            #A78BFA 70%,
            #86EFAC 85%,
            transparent 100%);
    opacity: 0.6;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    color: #2D2A3D;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 126, 126, 0.3);
}

.logo span:last-child {
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #5A5570;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF7E7E, #A78BFA);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: #2D2A3D;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #FF7E7E, #FDBA74) !important;
    box-shadow: 0 4px 20px rgba(255, 126, 126, 0.35);
    transition: all 0.3s ease !important;
    border: none !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 30px rgba(255, 126, 126, 0.45) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: transparent;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    border-radius: 4px;
    background: #2D2A3D;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== Hero — 渐变流体重叠 ========== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(255, 126, 126, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(125, 211, 252, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 126, 126, 0.12), transparent 70%);
    animation: floatBlob 15s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1), transparent 70%);
    animation: floatBlob 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -30px) scale(1.1);
    }
    100% {
        transform: translate(-20px, 40px) scale(0.95);
    }
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 126, 126, 0.15), rgba(167, 139, 250, 0.15));
    color: #A78BFA;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(167, 139, 250, 0.15);
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #2D2A3D 0%, #FF7E7E 40%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.65;
    max-width: 560px;
    margin-bottom: 36px;
    color: #5A5570;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(45, 42, 61, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ========== 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #FF7E7E, #FDBA74);
    box-shadow: 0 4px 25px rgba(255, 126, 126, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 126, 126, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid #D8D0E8;
    color: #5A5570;
}

.btn-outline:hover {
    border-color: #A78BFA;
    color: #A78BFA;
    background: rgba(167, 139, 250, 0.06);
    transform: translateY(-2px);
}

/* ========== 标签/标题 ========== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #2D2A3D;
    line-height: 1.2;
}

.section-desc {
    max-width: 600px;
    opacity: 0.65;
    margin-bottom: 48px;
    color: #5A5570;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========== 卡片网格 — 玻璃糖果 ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 20px;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(45, 42, 61, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF7E7E, #A78BFA, #7DD3FC);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 50px rgba(45, 42, 61, 0.1);
    border-color: rgba(167, 139, 250, 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(255, 126, 126, 0.12), rgba(167, 139, 250, 0.12));
    color: #A78BFA;
    transition: all 0.3s ease;
}

.category-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(255, 126, 126, 0.2), rgba(167, 139, 250, 0.2));
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2D2A3D;
}

.category-card p {
    font-size: 0.9rem;
    color: #5A5570;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    color: #A78BFA;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #FF7E7E;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ========== 特性块 — 错落布局 ========== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-block:nth-child(even) .feature-image {
    order: 2;
}

.feature-block:nth-child(even) .feature-text {
    order: 1;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 42, 61, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.5s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2D2A3D;
    letter-spacing: -0.3px;
}

.feature-text p {
    color: #5A5570;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #2D2A3D;
}

.feature-list li::before {
    content: '✦';
    font-weight: 700;
    color: #FF7E7E;
    font-size: 0.9rem;
}

/* ========== 数据条 — 彩色渐变数字 ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(45, 42, 61, 0.04);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(45, 42, 61, 0.08);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 8px;
    color: #5A5570;
    font-weight: 500;
}

/* ========== 内容墙 ========== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(215, 208, 232, 0.3);
    box-shadow: 0 4px 20px rgba(45, 42, 61, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 50px rgba(45, 42, 61, 0.1);
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-wall-item:hover img {
    transform: scale(1.05);
}

.content-wall-body {
    padding: 24px;
}

.content-wall-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2D2A3D;
}

.content-wall-body p {
    font-size: 0.9rem;
    color: #5A5570;
    opacity: 0.7;
    line-height: 1.6;
}

/* ========== FAQ — 圆润折叠 ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(215, 208, 232, 0.4);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: 0 4px 20px rgba(45, 42, 61, 0.04);
}

.faq-item .faq-question {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2D2A3D;
    transition: color 0.3s ease;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #A78BFA;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.open .faq-question {
    color: #A78BFA;
}

.faq-item .faq-answer {
    padding: 0 24px 18px;
    display: none;
    opacity: 0.7;
    color: #5A5570;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* ========== CTA横幅 — 渐变彩虹 ========== */
.cta-banner {
    padding: 64px 40px;
    text-align: center;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #FF7E7E, #A78BFA, #7DD3FC);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15), transparent 60%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 5%);
    }
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #A78BFA;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ========== 页脚 ========== */
.site-footer {
    padding: 64px 0 32px;
    background: #F7F4F2;
    border-top: 1px solid rgba(215, 208, 232, 0.3);
}

.site-footer .container {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #5A5570;
    opacity: 0.65;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2D2A3D;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #5A5570;
    opacity: 0.7;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #A78BFA;
    opacity: 1;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(215, 208, 232, 0.4);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: #5A5570;
    opacity: 0.6;
}

/* ========== 工具类 ========== */
.text-accent {
    background: linear-gradient(135deg, #FF7E7E, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.65;
    color: #5A5570;
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ========== 装饰浮动元素（全局） ========== */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.deco-circle-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 126, 126, 0.1), transparent);
    top: 10%;
    right: 5%;
    animation: floatBlob 12s ease-in-out infinite;
}

.deco-circle-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1), transparent);
    bottom: 15%;
    left: 8%;
    animation: floatBlob 14s ease-in-out infinite reverse;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .feature-block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-block:nth-child(even) .feature-image {
        order: 1;
    }

    .feature-block:nth-child(even) .feature-text {
        order: 2;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(253, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 32px;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(45, 42, 61, 0.08);
        border-bottom: 2px solid rgba(167, 139, 250, 0.15);
    }

    .main-nav.open a {
        padding: 12px 0;
        font-size: 1rem;
    }

    .main-nav.open .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .category-card {
        padding: 24px 20px;
    }

    .container {
        padding: 0 16px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}