/* ==============================================
   P站 | 每一笔，都是次元入口
   设计系统 v1.0 —「墨染纸境」
   ============================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    background: #FDF6EC;
    color: #2E2A28;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 18%, rgba(255,90,95,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 88% 15%, rgba(0,178,174,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 85%, rgba(247,201,72,0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: rgba(255,90,95,0.18);
    color: #2E2A28;
}

:focus-visible {
    outline: 3px solid rgba(255,90,95,0.45);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F5EBDF;
}

/* ========== 导航 ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253,246,236,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46,42,40,0.07);
    box-shadow: 0 4px 30px rgba(46,42,40,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    color: #2E2A28;
    letter-spacing: -0.5px;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px 4px 14px 4px;
    background: linear-gradient(135deg, #FF5A5F, #FF8A7A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,90,95,0.35);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.logo:hover .logo-icon::after {
    opacity: 1;
}

.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: rgba(46,42,40,0.65);
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF5A5F, #FF8A7A);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.main-nav a:hover {
    color: #FF5A5F;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    background: linear-gradient(135deg, #FF5A5F, #FF8A7A);
    box-shadow: 0 4px 14px rgba(255,90,95,0.3);
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(255,90,95,0.4);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2E2A28;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ========== Hero ========== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background:
        radial-gradient(ellipse at 85% 25%, rgba(0,178,174,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 8% 70%, rgba(255,90,95,0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 90%, rgba(247,201,72,0.05) 0%, transparent 60%),
        linear-gradient(180deg, #FEF9F2 0%, #FDF6EC 100%);
}

.hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px dashed rgba(255,90,95,0.25);
    animation: heroSpin 40s linear infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(0,178,174,0.3);
    animation: heroSpin 25s linear infinite reverse;
    pointer-events: none;
}

@keyframes heroSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(255,90,95,0.1), rgba(247,201,72,0.08));
    color: #FF5A5F;
    border: 1px solid rgba(255,90,95,0.18);
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #2E2A28;
}

.hero h1 .text-accent {
    background: linear-gradient(120deg, #FF5A5F 10%, #FF8A7A 50%, #FFB347 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.08rem;
    opacity: 0.62;
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    max-width: 480px;
    min-width: 360px;
    border-radius: 24px 8px 24px 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow:
        0 20px 60px rgba(46,42,40,0.12),
        0 4px 16px rgba(255,90,95,0.08);
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46,42,40,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF5A5F, #FF8A7A);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,90,95,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,90,95,0.45);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(46,42,40,0.2);
    color: #2E2A28;
}

.btn-outline:hover {
    border-color: #FF5A5F;
    color: #FF5A5F;
    background: rgba(255,90,95,0.04);
    transform: translateY(-2px);
}

/* ========== 标签/标题 ========== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 14px;
    color: #FF5A5F;
    text-transform: uppercase;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #FF5A5F, transparent);
    border-radius: 2px;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #2E2A28;
}

.section-desc {
    max-width: 600px;
    opacity: 0.58;
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ========== 卡片网格 ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    border-radius: 24px 8px 24px 8px;
    padding: 28px 24px;
    border: 1px solid rgba(46,42,40,0.05);
    background: #FFFDF8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(46,42,40,0.03);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF5A5F, #FFD166, #00B2AE);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,90,95,0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46,42,40,0.1);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover::after {
    transform: scale(2);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px 4px 16px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(255,90,95,0.12), rgba(255,90,95,0.04));
    transition: transform 0.4s ease;
}

.category-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2E2A28;
}

.category-card p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: #FF5A5F;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s;
}

.card-link:hover {
    gap: 10px;
}

/* ========== 特性块 ========== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image {
    border-radius: 24px 8px 24px 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 40px rgba(46,42,40,0.08);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.feature-image:hover {
    transform: rotate(0deg);
}

.feature-image::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, rgba(255,90,95,0.15), rgba(0,178,174,0.15));
    border-radius: 30px;
    z-index: -1;
    transition: inset 0.4s ease;
}

.feature-image:hover::before {
    inset: -24px;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h3 {
    font-size: 1.7rem;
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.3;
    color: #2E2A28;
}

.feature-text p {
    opacity: 0.6;
    line-height: 1.75;
    margin-bottom: 8px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(46,42,40,0.8);
}

.feature-list li::before {
    content: '✦';
    font-weight: 700;
    color: #FF5A5F;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ========== 数据条 ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 36px 20px;
    border-radius: 24px 8px 24px 8px;
    border: 1px solid rgba(46,42,40,0.05);
    background: #FFFDF8;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(46,42,40,0.03);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,90,95,0.04);
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46,42,40,0.1);
}

.stat-item:hover::before {
    transform: scale(2.5);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #FF5A5F;
    background: linear-gradient(135deg, #FF5A5F, #FF8A7A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.58;
    margin-top: 8px;
    font-weight: 500;
}

/* ========== 内容墙 ========== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.content-wall-item {
    border-radius: 24px 8px 24px 8px;
    overflow: hidden;
    border: 1px solid rgba(46,42,40,0.05);
    background: #FFFDF8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(46,42,40,0.03);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46,42,40,0.12);
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover img {
    transform: scale(1.06);
}

.content-wall-body {
    padding: 20px 22px;
}

.content-wall-body h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: #2E2A28;
}

.content-wall-body p {
    font-size: 0.84rem;
    opacity: 0.55;
    line-height: 1.6;
}

.content-wall-body .card-link {
    margin-top: 12px;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(46,42,40,0.07);
    border-radius: 16px 4px 16px 4px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #FFFDF8;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(46,42,40,0.02);
}

.faq-item:hover {
    border-color: rgba(255,90,95,0.25);
    box-shadow: 0 8px 24px rgba(46,42,40,0.06);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #2E2A28;
    user-select: none;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #FF5A5F;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 22px;
    display: none;
    opacity: 0.65;
    font-size: 0.92rem;
    line-height: 1.75;
    border-top: 1px dashed rgba(46,42,40,0.08);
    margin-top: -4px;
    padding-top: 14px;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 0.65; transform: translateY(0); }
}

/* ========== CTA横幅 ========== */
.cta-banner {
    padding: 72px 48px;
    text-align: center;
    border-radius: 24px 8px 24px 8px;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF8A7A 45%, #FFB347 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255,90,95,0.35);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 35%);
    animation: ctaShimmer 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 20px) rotate(5deg); }
    66% { transform: translate(20px, -15px) rotate(-3deg); }
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    opacity: 0.92;
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #FF5A5F;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ========== 页脚 ========== */
.site-footer {
    padding: 64px 0 28px;
    background: #FFFDF8;
    border-top: 1px solid rgba(46,42,40,0.06);
    color: #2E2A28;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF5A5F, #FFD166, #00B2AE, #FF5A5F);
    background-size: 200% 100%;
    animation: footerGradient 8s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: #2E2A28;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-size: 0.89rem;
    opacity: 0.55;
    max-width: 300px;
    line-height: 1.7;
}

.footer-col h4 {
    color: #2E2A28;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: #FF5A5F;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 5px 0;
}

.footer-col ul a {
    color: rgba(46,42,40,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul a:hover {
    color: #FF5A5F;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(46,42,40,0.08);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
    color: #2E2A28;
}

/* ========== 工具类 ========== */
.text-accent {
    background: linear-gradient(120deg, #FF5A5F, #FFB347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.58;
    line-height: 1.75;
    font-size: 0.98rem;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .hero {
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-image {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(253,246,236,0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        box-shadow: 0 24px 50px rgba(46,42,40,0.12);
        border-radius: 0 0 20px 20px;
        gap: 20px;
        align-items: flex-start;
    }

    .main-nav.open a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .main-nav.open .nav-cta {
        align-self: stretch;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        min-width: 0;
        transform: none;
    }

    .hero-image:hover {
        transform: scale(1.02);
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-banner {
        padding: 48px 24px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section {
        padding: 56px 0;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .cta-banner {
        border-radius: 20px 4px 20px 4px;
        padding: 40px 20px;
    }
}