/* ============================================
   jm天堂 设计系统 — 方寸之间，自有天堂
   Awwwards现代东方杂志风 · 暖纸色调
   ============================================ */

/* 基础重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background: #FBF6EF;
    color: #3D3A34;
    letter-spacing: 0.01em;
    line-height: 1.6;
    /* 纸纹理质感 */
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(226, 164, 120, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(79, 124, 172, 0.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

::selection {
    background: #E8725A;
    color: #FFF7EF;
}

a {
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    font-family: inherit;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1E7DB;
}
::-webkit-scrollbar-thumb {
    background: #D8A9A0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C9897D;
}

/* 核心布局 — 居中 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 96px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F4EEE5;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: rgba(232, 114, 90, 0.05);
    transform: rotate(20deg);
}

/* ========== 导航 — 固定顶部 ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 246, 239, 0.85);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(232, 114, 90, 0.18);
    transition: all 0.35s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 114, 90, 0.3) 30%, rgba(79, 124, 172, 0.3) 70%, transparent 100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.35rem;
    text-decoration: none;
    color: #3D3A34;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px 4px 12px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #E8725A, #D95A6C);
    color: #FFF7EF;
    box-shadow: 0 4px 12px rgba(232, 114, 90, 0.3);
    transform: rotate(-4deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(4deg) scale(1.05);
}

.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: #5C554B;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
    letter-spacing: 0.04em;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E8725A, #D95A6C);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: #E8725A;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 50px;
    color: #FFF7EF !important;
    font-weight: 600;
    background: linear-gradient(135deg, #E8725A, #D95A6C);
    box-shadow: 0 4px 14px rgba(232, 114, 90, 0.25);
    transition: all 0.3s ease !important;
    letter-spacing: 0.02em;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 114, 90, 0.35);
    color: #FFF7EF !important;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #3D3A34;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== 首页 Hero — 杂志式排版 ========== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #FBF6EF 0%, #F7EFE4 50%, #FBF6EF 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -8%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 90, 0.12) 0%, transparent 70%);
    animation: hero-float 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '天堂';
    position: absolute;
    bottom: 8%;
    right: 3%;
    font-size: 12vw;
    font-weight: 900;
    color: rgba(232, 114, 90, 0.04);
    line-height: 1;
    letter-spacing: -0.05em;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

@keyframes hero-float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(5deg); }
}

.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: rgba(79, 124, 172, 0.12);
    color: #4F7CAC;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(79, 124, 172, 0.2);
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #2E2A25;
    letter-spacing: -0.02em;
}

.hero h1 .hero-accent {
    display: inline-block;
    background: linear-gradient(135deg, #E8725A, #D95A6C);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
}

.hero h1 .hero-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(232, 114, 90, 0.4), transparent);
    border-radius: 4px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.7;
    max-width: 540px;
    margin-bottom: 40px;
    color: #5C554B;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(61, 58, 52, 0.12);
    transform: rotate(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(232, 114, 90, 0.15);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(232, 114, 90, 0.15);
}

.hero-image img {
    height: 100%;
    min-height: 400px;
}

/* ========== 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #E8725A, #D95A6C);
    color: #FFF7EF;
    box-shadow: 0 8px 20px rgba(232, 114, 90, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(232, 114, 90, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #4F7CAC;
    color: #4F7CAC;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(79, 124, 172, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 124, 172, 0.15);
}

.btn .btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========== 标签/标题 ========== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    color: #E8725A;
    text-transform: uppercase;
    position: relative;
    padding-left: 34px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 2px;
    background: #E8725A;
    border-radius: 2px;
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 18px;
    font-weight: 800;
    color: #2E2A25;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-desc {
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 48px;
    color: #5C554B;
    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 {
    border-radius: 18px 4px 18px 4px;
    padding: 32px 28px;
    border: 1px solid rgba(232, 114, 90, 0.12);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(61, 58, 52, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E8725A, #D95A6C, #4F7CAC);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.category-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 16px 36px rgba(61, 58, 52, 0.1);
    border-color: rgba(232, 114, 90, 0.25);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px 4px 16px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FBF6EF, #F1E7DB);
    border: 1px solid rgba(232, 114, 90, 0.15);
    transition: all 0.35s ease;
}

.category-card:hover .card-icon {
    transform: rotate(-6deg) scale(1.08);
    background: linear-gradient(135deg, #E8725A, #D95A6C);
    border-color: transparent;
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2E2A25;
}

.category-card p {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: #E8725A;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* ========== 特性块 ========== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.feature-image {
    border-radius: 24px 8px 24px 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(61, 58, 52, 0.12);
    border: 1px solid rgba(79, 124, 172, 0.15);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(79, 124, 172, 0.1));
    pointer-events: none;
}

.feature-image img {
    height: 100%;
    min-height: 420px;
    transition: transform 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2E2A25;
    line-height: 1.4;
}

.feature-text p {
    opacity: 0.7;
    margin-bottom: 24px;
    color: #5C554B;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #4A443C;
}

.feature-list li::before {
    content: '✦';
    font-weight: 700;
    color: #E8725A;
    font-size: 1rem;
    background: rgba(232, 114, 90, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========== 数据条 — 统计 ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 36px 24px;
    border-radius: 20px 6px 20px 6px;
    border: 1px solid rgba(232, 114, 90, 0.12);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(61, 58, 52, 0.04);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(232, 114, 90, 0.1);
    border-color: rgba(232, 114, 90, 0.25);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #E8725A, #D95A6C);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 8px;
    color: #5C554B;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* ========== 内容墙 — 瀑布卡片 ========== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 20px 6px 20px 6px;
    overflow: hidden;
    border: 1px solid rgba(61, 58, 52, 0.08);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(61, 58, 52, 0.04);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(61, 58, 52, 0.1);
    border-color: rgba(232, 114, 90, 0.2);
}

.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 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2E2A25;
}

.content-wall-body p {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.6;
    margin-bottom: 14px;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-row span {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(79, 124, 172, 0.08);
    color: #4F7CAC;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(61, 58, 52, 0.08);
    border-radius: 16px 4px 16px 4px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(232, 114, 90, 0.2);
    box-shadow: 0 4px 12px rgba(61, 58, 52, 0.05);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3D3A34;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.faq-item .faq-question::after {
    content: '＋';
    font-size: 1.2rem;
    color: #E8725A;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-item.open .faq-question::after {
    content: '－';
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    opacity: 0.7;
    color: #5C554B;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 0.7; transform: translateY(0); }
}

/* ========== CTA 横幅 ========== */
.cta-banner {
    padding: 72px 48px;
    text-align: center;
    border-radius: 28px 8px 28px 8px;
    background: linear-gradient(135deg, #4F7CAC, #3A5A7A);
    color: #FFF7EF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(79, 124, 172, 0.25);
}

.cta-banner::before {
    content: '✦';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    opacity: 0.06;
    transform: rotate(15deg);
}

.cta-banner h2 {
    color: #FFF7EF;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 247, 239, 0.8);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary {
    background: #FFF7EF;
    color: #4F7CAC;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ========== 页脚 ========== */
.site-footer {
    padding: 72px 0 32px;
    background: #F4EEE5;
    border-top: 1px solid rgba(232, 114, 90, 0.1);
    position: relative;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2E2A25;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.7;
    color: #5C554B;
    max-width: 300px;
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2E2A25;
    letter-spacing: 0.04em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #6B635A;
    transition: color 0.2s ease, padding-left 0.2s ease;
    padding-left: 0;
}

.footer-col ul a:hover {
    color: #E8725A;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(61, 58, 52, 0.08);
    margin-top: 56px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #8A8278;
    opacity: 0.8;
}

/* ========== 工具类 ========== */
.text-accent {
    color: #E8725A;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 56px;
    opacity: 0.7;
    color: #5C554B;
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* 补充装饰性组件 */
.cta-lite {
    padding: 64px 40px;
    text-align: center;
    border-radius: 24px 6px 24px 6px;
    background: rgba(79, 124, 172, 0.06);
    border: 1px solid rgba(79, 124, 172, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-lite h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-lite p {
    opacity: 0.7;
    max-width: 480px;
    margin: 0 auto 28px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .feature-block {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .section {
        padding: 72px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(251, 246, 239, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        border-bottom: 1px solid rgba(232, 114, 90, 0.15);
        box-shadow: 0 16px 40px rgba(61, 58, 52, 0.08);
    }
    
    .main-nav.open {
        display: flex;
        animation: navSlideDown 0.3s ease;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(61, 58, 52, 0.05);
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .main-nav .nav-cta {
        margin-top: 8px;
        width: 100%;
        text-align: center;
        padding: 14px !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    @keyframes navSlideDown {
        from { opacity: 0; transform: translateY(-12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .hero::after {
        font-size: 20vw;
    }
    
    .cta-banner {
        padding: 56px 28px;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .feature-image img {
        min-height: 280px;
    }
    
    .hero-image img {
        min-height: 280px;
    }
    
    .cta-banner {
        padding: 48px 20px;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
}