/* ==============================================
   吃瓜网 · 瓜田见真章
   设计系统 · 西瓜杂志风
   暖白底色 × 西瓜红绿撞色 × 有机圆角
   ============================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
    background: #FFFAF3;
    background-image: radial-gradient(rgba(46, 139, 87, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    color: #2B2A26;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #E85D75;
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FFF5F0;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFB3C0, #2E8B57);
    border-radius: 8px;
}

/* ===== 核心布局 ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
    position: relative;
}

.section:nth-child(even) {
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 201, 77, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 5% 90%, rgba(232, 93, 117, 0.05) 0%, transparent 30%),
        #F0FFF4;
}

/* ===== 导航 ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 250, 243, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(46, 139, 87, 0.10);
}

.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: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: #2B2A26;
    letter-spacing: -0.01em;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FF8A80 0%, #E85D75 55%, #2E8B57 56%, #2E8B57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 93, 117, 0.30);
    border: 2px solid #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: #5A5A5A;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, #E85D75, #FFC94D, #2E8B57);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
    color: #E85D75;
}
.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 9px 24px;
    border-radius: 40px;
    color: #fff !important;
    font-weight: 700;
    background: linear-gradient(135deg, #E85D75, #FF6B6B);
    box-shadow: 0 4px 14px rgba(232, 93, 117, 0.30);
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta::after {
    display: none;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 93, 117, 0.40);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #F0FFF4;
    border: 1px solid rgba(46, 139, 87, 0.15);
    border-radius: 14px;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #2E8B57;
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 22%, rgba(232, 93, 117, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 88% 60%, rgba(46, 139, 87, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 70% 15%, rgba(255, 201, 77, 0.12) 0%, transparent 25%),
        linear-gradient(180deg, #FFF9F3 0%, #FFFAF3 100%);
}

.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 680px;
    animation: heroFadeUp 0.9s ease-out both;
}

@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.80rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    background: #FFE8E8;
    color: #E85D75;
    border: 1px solid rgba(232, 93, 117, 0.18);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    background: linear-gradient(120deg, #E85D75 20%, #FF6B6B 45%, #2E8B57 85%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero h1::after {
    content: '';
    display: block;
    width: 110px;
    height: 6px;
    margin-top: 20px;
    border-radius: 6px;
    background: linear-gradient(90deg, #E85D75, #FFC94D, #2E8B57);
    box-shadow: 0 2px 8px rgba(255, 201, 77, 0.4);
}

.hero p {
    font-size: 1.12rem;
    opacity: 0.75;
    max-width: 540px;
    margin-bottom: 36px;
    color: #4A4A4A;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.hero-image {
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(46, 139, 87, 0.14);
    border: 6px solid #fff;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.05);
}

/* ===== 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #E85D75, #FF6B6B);
    color: #fff;
    box-shadow: 0 6px 18px rgba(232, 93, 117, 0.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 93, 117, 0.40);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #2E8B57;
    color: #2E8B57;
}

.btn-outline:hover {
    background: rgba(46, 139, 87, 0.08);
    border-color: #2E8B57;
    transform: translateY(-2px);
}

/* ===== 标签/标题 ===== */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #E85D75;
    padding-left: 24px;
    position: relative;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E85D75, #FF6B6B);
    box-shadow: 0 2px 6px rgba(232, 93, 117, 0.3);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #2B2A26;
}

.section-desc {
    max-width: 620px;
    opacity: 0.75;
    margin-bottom: 48px;
    font-size: 1.05rem;
    color: #5A5A5A;
    line-height: 1.8;
}

/* ===== 卡片网格 ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 28px;
    padding: 34px 30px;
    border: 1px solid rgba(46, 139, 87, 0.10);
    background: #fff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.category-card::before {
    content: '';
    position: absolute;
    top: -48px;
    right: -48px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 201, 77, 0.18) 0%, transparent 70%);
    transition: transform 0.4s;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E85D75, #FFC94D, #2E8B57);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 93, 117, 0.22);
    box-shadow: 0 16px 40px rgba(46, 139, 87, 0.08);
}

.category-card:hover::before {
    transform: scale(1.4);
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-card:nth-child(odd) {
    background: linear-gradient(180deg, #fff 0%, #FFF9F3 100%);
}

.category-card:nth-child(even) {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FFF4 100%);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFE8E8, #FFF0E8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: #E85D75;
    border: 1px solid rgba(232, 93, 117, 0.10);
    box-shadow: 0 4px 12px rgba(232, 93, 117, 0.08);
}

.category-card:nth-child(even) .card-icon {
    background: linear-gradient(135deg, #E8F5E9, #F0FFF4);
    color: #2E8B57;
    border-color: rgba(46, 139, 87, 0.10);
}

.card-link {
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    color: #E85D75;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    transition: gap 0.25s;
}

.card-link:hover {
    gap: 12px;
}

/* ===== 特性块 ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: 44% 56% 52% 48% / 48% 44% 56% 52%;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(46, 139, 87, 0.12);
    border: 6px solid #fff;
    position: relative;
    transition: transform 0.4s ease;
}

.feature-image:hover {
    transform: scale(1.01) rotate(1deg);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.05);
}

.feature-text {
    padding: 8px 0;
}

.feature-text .section-title {
    margin-bottom: 18px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: #4A4A4A;
}

.feature-list li::before {
    content: '✓';
    font-weight: 900;
    color: #2E8B57;
    background: #E8F5E9;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===== 数据条 ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(46, 139, 87, 0.10);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.025);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #E85D75, #FFC94D);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.06) 0%, transparent 70%);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 139, 87, 0.08);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #2E8B57;
    line-height: 1.2;
}

.stat-item:nth-child(even) .stat-number {
    color: #E85D75;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    color: #5A5A5A;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== 内容墙 ===== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(46, 139, 87, 0.10);
    background: #fff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46, 139, 87, 0.08);
    border-color: rgba(232, 93, 117, 0.18);
}

.content-wall-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.content-wall-item:hover img {
    transform: scale(1.04);
}

.content-wall-body {
    padding: 24px;
}

.content-wall-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2B2A26;
    line-height: 1.4;
}

.content-wall-body p {
    font-size: 0.88rem;
    color: #7A7A7A;
    opacity: 0.75;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(46, 139, 87, 0.12);
    border-radius: 22px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: rgba(46, 139, 87, 0.28);
}

.faq-item.open {
    border-color: rgba(232, 93, 117, 0.28);
    box-shadow: 0 8px 32px rgba(232, 93, 117, 0.08);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #2B2A26;
    position: relative;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #E85D75;
    transition: transform 0.35s ease;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 22px;
    display: none;
    opacity: 0.75;
    color: #5A5A5A;
    font-size: 0.92rem;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
    animation: faqIn 0.4s ease;
}

@keyframes faqIn {
    0% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 0.75; transform: translateY(0); }
}

/* ===== CTA ===== */
.cta-banner {
    padding: 80px 32px;
    text-align: center;
    border-radius: 48px;
    background: linear-gradient(135deg, #E85D75 0%, #FF6B6B 60%, #F04A6E 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(232, 93, 117, 0.22);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 201, 77, 0.18);
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #E85D75;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* ===== 页脚 ===== */
.site-footer {
    padding: 64px 0 28px;
    background:
        radial-gradient(circle at 90% 10%, rgba(46, 139, 87, 0.10) 0%, transparent 35%),
        #F0FFF4;
    border-top: 3px solid rgba(46, 139, 87, 0.25);
    border-radius: 48px 48px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    opacity: 0.65;
    max-width: 270px;
    font-size: 0.90rem;
    line-height: 1.7;
    color: #4A6A5A;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2E8B57;
    margin-bottom: 16px;
}

.footer-col a {
    color: #5A7A6A;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 0.90rem;
    transition: all 0.2s;
}

.footer-col a:hover {
    color: #E85D75;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(46, 139, 87, 0.15);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: #8A9A8A;
}

/* ===== 工具类 ===== */
.text-accent {
    color: #E85D75;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 620px;
    margin: 0 auto 48px;
    opacity: 0.75;
    text-align: center;
    color: #5A5A5A;
    line-height: 1.8;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 0.9fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 64px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 420px;
        margin: 0 auto;
        border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-text {
        text-align: center;
    }

    .feature-list {
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .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(255, 250, 243, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        gap: 16px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(46, 139, 87, 0.12);
    }

    .main-nav.open a {
        display: block;
        padding: 12px 8px;
        font-size: 1rem;
    }

    .nav-cta {
        text-align: center;
    }

    .cta-banner {
        padding: 60px 24px;
        border-radius: 36px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .stat-item {
        padding: 28px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col h4 {
        margin-bottom: 10px;
    }

    .category-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .feature-image {
        border-radius: 32px;
    }

    .cta-banner {
        padding: 48px 20px;
        border-radius: 28px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .site-footer {
        border-radius: 32px 32px 0 0;
    }
}