/* ==========================================
   每日吃瓜 —「西瓜波普」设计系统
   ========================================== */

:root {
    --melon: #FF5E7E;
    --melon-light: #FF8FA3;
    --melon-dark: #E84B6A;
    --mint: #2EC4B6;
    --mint-light: #7BE0CE;
    --sunny: #FFD93D;
    --cream: #FFF8F0;
    --mint-bg: #F2FFFB;
    --pink-bg: #FFF0F3;
    --ink: #2D3142;
    --gray: #6B6B76;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

/* ==========================================
   基础重置
   ========================================== */
*, *::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-color: var(--cream);
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 217, 61, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 70%, rgba(46, 196, 182, 0.06) 0%, transparent 30%);
    color: var(--ink);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--mint-bg);
    background-image:
        radial-gradient(circle at 90% 20%, rgba(255, 94, 126, 0.06) 0%, transparent 30%);
}

/* ==========================================
   导航 — 固定顶部
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px dashed rgba(255, 217, 61, 0.7);
    transition: box-shadow 0.3s ease;
}

.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: 900;
    font-size: 1.35rem;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: -0.02em;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--melon-light), var(--melon) 65%, var(--mint) 66%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(255, 94, 126, 0.35);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    top: 5px;
    left: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--melon), var(--sunny));
    transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover {
    color: var(--melon);
}

.main-nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 26px;
    border-radius: 40px;
    color: #fff !important;
    font-weight: 700;
    background: linear-gradient(135deg, var(--melon), var(--melon-light));
    box-shadow: 0 4px 16px rgba(255, 94, 126, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(255, 94, 126, 0.45);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: var(--cream);
    border: 2px solid var(--mel);
    border-color: var(--melon);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.2s;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--melon);
    border-radius: 4px;
    transition: 0.2s;
}

/* ==========================================
   首页 Hero
   ========================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 94, 126, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 15% 90%, rgba(46, 196, 182, 0.12) 0%, transparent 30%),
        linear-gradient(180deg, var(--cream) 0%, #FFFDFA 100%);
    border-bottom: 6px solid var(--sunny);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle at 50% 0%, var(--mint-light) 8px, transparent 9px);
    background-size: 24px 20px;
    background-repeat: repeat-x;
    opacity: 0.4;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content {
    flex: 1;
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
    background: var(--sunny);
    color: var(--ink);
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
    position: relative;
}

.hero-eyebrow::before {
    content: '🍉 ';
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--ink);
}

.hero h1 .accent {
    color: var(--melon);
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, var(--sunny), transparent);
    border-radius: 8px;
    z-index: -1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow:
        0 20px 48px rgba(255, 94, 126, 0.2),
        0 0 0 3px var(--sunny);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
    max-width: 480px;
    position: relative;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image::before {
    content: '🍉';
    position: absolute;
    top: -18px;
    right: -12px;
    font-size: 3.5rem;
    transform: rotate(15deg);
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

/* ==========================================
   按钮
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--melon), var(--melon-light));
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 94, 126, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(255, 94, 126, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mint);
    color: var(--mint);
}

.btn-outline:hover {
    background: var(--mint);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(46, 196, 182, 0.3);
}

/* ==========================================
   标签 / 标题
   ========================================== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 14px;
    color: var(--melon);
    text-transform: uppercase;
    background: var(--pink-bg);
    padding: 5px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 94, 126, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 10px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--melon), var(--sunny));
}

.section-desc {
    max-width: 600px;
    color: var(--gray);
    margin-bottom: 48px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================
   卡片网格
   ========================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.category-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 2px solid #F5EDE6;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 4px 16px rgba(45, 49, 66, 0.04);
}

.category-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    width: 40px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--melon), var(--sunny));
    transition: width 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 20px 40px rgba(255, 94, 126, 0.14);
    border-color: rgba(255, 94, 126, 0.2);
}

.category-card:hover::before {
    width: 70px;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--pink-bg), #fff);
    border: 1px solid rgba(255, 94, 126, 0.15);
}

.category-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, var(--mint-bg), #fff);
    border-color: rgba(46, 196, 182, 0.2);
}

.category-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), #fff);
    border-color: rgba(255, 217, 61, 0.3);
}

.card-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--melon);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.card-link:hover {
    gap: 10px;
}

.card-link::after {
    content: '→';
}

/* ==========================================
   特性块
   ========================================== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image {
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 16px 40px rgba(46, 196, 182, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.35s ease;
    position: relative;
}

.feature-image:hover {
    transform: rotate(0deg);
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 94, 126, 0.08), transparent 50%);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.feature-text {
    padding: 0 10px;
}

.feature-text .section-label {
    margin-bottom: 10px;
}

.feature-text .section-title {
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.98rem;
    border-bottom: 1px dashed rgba(45, 49, 66, 0.08);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mint);
    color: #fff;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================
   数据条
   ========================================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    background: #fff;
    padding: 36px 20px;
    border-radius: 24px;
    border: 2px solid #F0EAE3;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--melon), var(--sunny), var(--mint));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(45, 49, 66, 0.08);
    border-color: rgba(255, 94, 126, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--melon);
    background: linear-gradient(135deg, var(--melon), var(--melon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) .stat-number {
    background: linear-gradient(135deg, var(--mint), #1E9C90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #FF9F1C, #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(4) .stat-number {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ==========================================
   内容墙
   ========================================== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.content-wall-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #F0EAE3;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.content-wall-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 48px rgba(255, 94, 126, 0.12);
    border-color: rgba(255, 94, 126, 0.2);
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.content-wall-item:hover img {
    transform: scale(1.04);
}

.content-wall-body {
    padding: 20px;
}

.content-wall-body .content-wall-meta {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.content-wall-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.content-wall-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 2px solid #F0EAE3;
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 94, 126, 0.25);
    box-shadow: 0 8px 20px rgba(45, 49, 66, 0.04);
}

.faq-item.open {
    border-color: rgba(255, 94, 126, 0.35);
    box-shadow: 0 12px 28px rgba(255, 94, 126, 0.1);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--ink);
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--melon);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   CTA 横幅
   ========================================== */
.cta-banner {
    padding: 64px 48px;
    text-align: center;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--melon) 0%, #FF7B98 50%, var(--mint) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(255, 94, 126, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-banner::after {
    content: '🍉';
    position: absolute;
    bottom: -20px;
    left: 24px;
    font-size: 6rem;
    transform: rotate(-20deg);
    opacity: 0.25;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0 auto 32px;
    opacity: 0.9;
    font-size: 1.05rem;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--melon);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   页脚
   ========================================== */
.site-footer {
    padding: 64px 0 32px;
    background: var(--mint-bg);
    border-top: 4px solid var(--mint);
    background-image:
        radial-gradient(circle at 10% 90%, rgba(255, 217, 61, 0.1) 0%, transparent 30%);
}

.site-footer .container {
    max-width: 1200px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ink);
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 3px;
    border-radius: 4px;
    background: var(--melon);
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--melon);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(46, 196, 182, 0.25);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--mint);
    text-decoration: none;
    font-weight: 600;
}

/* ==========================================
   工具类
   ========================================== */
.text-accent {
    color: var(--melon);
    font-weight: 800;
}

.text-center {
    text-align: center;
}

section.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

section.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ==========================================
   响应式
   ========================================== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-text {
        text-align: center;
        padding: 0;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 24px auto 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-header {
        background: rgba(255, 248, 240, 0.96);
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 248, 240, 0.98);
        padding: 20px 24px;
        box-shadow: 0 16px 40px rgba(45, 49, 66, 0.1);
        border-bottom: 3px solid var(--sunny);
        gap: 16px;
        align-items: flex-start;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 8px 0;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 64px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .cta-banner {
        padding: 48px 24px;
        border-radius: 24px;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        border-radius: 20px;
        margin: 0;
    }

    .hero-image img {
        min-height: 220px;
    }

    .stat-item {
        padding: 28px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }
}