```css
/* ============================================================
   jm天堂 · 步入精妙，如临天堂
   设计风格：云端漫游 / 梦幻光晕 / 柔和漫画网点
   域名：jmtiantang.hn.cn
   ============================================================ */

/* ---------- 基础重置 ---------- */
*, *::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: #F7F4F1;
    color: #2E2A3E;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: linear-gradient(135deg, rgba(139,125,232,0.28), rgba(245,168,184,0.28));
    color: #2E2A3E;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(139,125,232,0.45);
    outline-offset: 2px;
    border-radius: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F7F4F1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D5CDF6, #F5D5DE);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C4B8F7, #F0C0D0);
}

/* ---------- 核心布局 ---------- */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

.section { 
    padding: 80px 0; 
    position: relative;
    scroll-margin-top: 80px;
}

.section:nth-child(even) { 
    background: 
        radial-gradient(circle at 100% 0%, rgba(245,168,184,0.08) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(139,125,232,0.07) 0%, transparent 30%),
        #F9F6F2;
}

/* ---------- 导航 · 固定顶部 ---------- */
.site-header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    background: rgba(255,255,255,0.88); 
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid rgba(139,125,232,0.1);
    box-shadow: 0 1px 30px rgba(46,42,62,0.04);
}

.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: #2E2A3E;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.82;
}

.logo-icon { 
    width: 38px; 
    height: 38px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.1rem;
    background: linear-gradient(135deg, #8B7DE8 0%, #F5A8B8 100%);
    box-shadow: 
        0 4px 12px rgba(139,125,232,0.35),
        0 0 0 4px rgba(255,255,255,0.6);
}

.main-nav { 
    display: flex; 
    align-items: center; 
    gap: 28px; 
    list-style: none; 
}

.main-nav a { 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 500; 
    transition: color 0.3s ease;
    color: #5A5670;
    position: relative;
    padding: 4px 0;
}

.main-nav a:hover {
    color: #6B5BD0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #8B7DE8, #F5A8B8);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta { 
    padding: 10px 22px; 
    border-radius: 100px; 
    color: #fff !important; 
    font-weight: 600;
    background: linear-gradient(135deg, #8B7DE8 0%, #6C5CE7 100%);
    box-shadow: 0 4px 16px rgba(139,125,232,0.3);
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,125,232,0.42);
    color: #fff !important;
}

.menu-toggle { 
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(139,125,232,0.1);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(139,125,232,0.18);
}

.menu-toggle::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #6B5BD0;
    box-shadow: 0 6px 0 #6B5BD0;
}

.menu-toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #6B5BD0;
    top: calc(50% + 6px);
    left: 50%;
    transform: translateX(-50%);
}

/* ---------- Hero ---------- */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(175deg, #EEE9F8 0%, #F7F4F1 60%, #FDF2F4 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(closest-side, rgba(245,168,184,0.22), transparent);
    border-radius: 50%;
    animation: floatBlob 18s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 45%;
    height: 45%;
    background: radial-gradient(closest-side, rgba(139,125,232,0.18), transparent);
    border-radius: 50%;
    animation: floatBlob 22s ease-in-out infinite reverse;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero-content { 
    max-width: 580px;
    flex: 1;
}

.hero-eyebrow { 
    display: inline-block; 
    font-size: 0.85rem; 
    font-weight: 600; 
    padding: 6px 18px; 
    border-radius: 100px; 
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(139,125,232,0.14), rgba(245,168,184,0.14));
    color: #6B5BD0;
    border: 1px solid rgba(139,125,232,0.16);
    letter-spacing: 0.05em;
}

.hero h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    line-height: 1.15; 
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #2E2A3E 0%, #6B5BD0 55%, #E77B9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p { 
    font-size: 1.1rem; 
    color: #6A6578;
    max-width: 520px; 
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap;
}

.hero-image { 
    flex: 1;
    max-width: 460px;
    border-radius: 28px; 
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 24px 70px rgba(139,125,232,0.2),
        0 2px 12px rgba(46,42,62,0.06);
    background: linear-gradient(135deg, #E8E0F8 0%, #FFE3EA 100%);
    aspect-ratio: 4 / 3;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image::before {
    content: '☁︎';
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.4rem;
    opacity: 0.45;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.6), transparent);
    z-index: 2;
}

.hero-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(139,125,232,0.28);
}

.hero-image img { 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-image:hover img {
    transform: scale(1.04);
}

/* ---------- 按钮 ---------- */
.btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 14px 32px; 
    border-radius: 100px; 
    font-weight: 600; 
    font-size: 0.95rem;
    cursor: pointer; 
    border: none; 
    text-decoration: none; 
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    font-family: inherit;
    line-height: 1.4;
}

.btn-primary { 
    color: #fff;
    background: linear-gradient(135deg, #8B7DE8 0%, #6C5CE7 100%);
    box-shadow: 0 6px 20px rgba(139,125,232,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139,125,232,0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline { 
    background: rgba(255,255,255,0.85); 
    border: 1.5px solid rgba(139,125,232,0.35);
    color: #6B5BD0;
}

.btn-outline:hover {
    background: rgba(139,125,232,0.08);
    border-color: rgba(139,125,232,0.6);
    transform: translateY(-3px);
}

/* ---------- 标签/标题 ---------- */
.section-label { 
    display: inline-block; 
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 3px; 
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #8B7DE8;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #8B7DE8, #F5A8B8);
    transform: translateY(-50%);
}

.section-title { 
    font-size: clamp(1.9rem, 3.2vw, 2.5rem); 
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #2E2A3E;
}

.section-desc { 
    max-width: 600px; 
    color: #6A6578;
    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 { 
    border-radius: 24px; 
    padding: 32px 28px; 
    border: 1px solid rgba(139,125,232,0.1);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 20px rgba(46,42,62,0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,125,232,0.12), transparent 70%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,168,184,0.1), transparent 70%);
    transition: transform 0.5s ease 0.05s;
    pointer-events: none;
}

.category-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 16px 44px rgba(139,125,232,0.14);
    border-color: rgba(139,125,232,0.25);
}

.category-card:hover::before {
    transform: scale(1.6);
}

.category-card:hover::after {
    transform: scale(1.4);
}

.card-icon { 
    width: 52px; 
    height: 52px; 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
    font-size: 1.4rem;
    background: linear-gradient(135deg, #F0ECF9 0%, #FFE3EA 100%);
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

.card-link { 
    font-weight: 600; 
    font-size: 0.85rem; 
    text-decoration: none;
    color: #8B7DE8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
}

.card-link:hover {
    gap: 10px;
    color: #6B5BD0;
}

/* ---------- 特性块 ---------- */
.feature-block { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 64px; 
    align-items: center; 
}

.feature-image { 
    border-radius: 28px; 
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(46,42,62,0.08);
    background: linear-gradient(135deg, #E8E0F8 0%, #DDF2EA 100%);
    aspect-ratio: 4 / 3;
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(139,125,232,0.2), transparent 70%);
    z-index: 1;
}

.feature-image img { 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text { 
    padding: 20px 0;
}

.feature-text .section-label {
    margin-bottom: 16px;
}

.feature-text .section-title {
    margin-bottom: 20px;
}

.feature-text .section-desc {
    margin-bottom: 24px;
}

.feature-list { 
    list-style: none; 
    margin-top: 8px;
}

.feature-list li { 
    padding: 8px 0; 
    display: flex; 
    align-items: center; 
    gap: 12px;
    font-size: 0.98rem;
    color: #4A4658;
}

.feature-list li::before { 
    content: '✓'; 
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    background: linear-gradient(135deg, rgba(139,125,232,0.14), rgba(108,196,161,0.14));
    color: #5BAF8D;
    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: 24px; 
    border: 1px solid rgba(139,125,232,0.1);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 20px rgba(46,42,62,0.03);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #8B7DE8, #F5A8B8, #6CC4A1);
    transition: width 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(139,125,232,0.12);
}

.stat-item:hover::after {
    width: 80px;
}

.stat-number { 
    font-size: 2.4rem; 
    font-weight: 800;
    background: linear-gradient(135deg, #8B7DE8 0%, #E77B9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: block;
}

.stat-label { 
    font-size: 0.9rem; 
    color: #8A8598;
    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(139,125,232,0.1);
    background: #fff;
    box-shadow: 0 2px 16px rgba(46,42,62,0.03);
    transition: all 0.35s ease;
}

.content-wall-item:hover { 
    transform: translateY(-6px) rotate(0.5deg); 
    box-shadow: 0 16px 44px rgba(139,125,232,0.16);
}

.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.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.content-wall-body p {
    font-size: 0.88rem;
    color: #8A8598;
    line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-list { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item { 
    border: 1px solid rgba(139,125,232,0.12); 
    border-radius: 20px; 
    margin-bottom: 14px; 
    overflow: hidden; 
    cursor: pointer;
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139,125,232,0.3);
    box-shadow: 0 4px 20px rgba(139,125,232,0.08);
}

.faq-item.open {
    border-color: rgba(139,125,232,0.35);
    box-shadow: 0 8px 30px rgba(139,125,232,0.1);
}

.faq-item .faq-question { 
    padding: 20px 24px; 
    font-weight: 600; 
    display: flex; 
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-item .faq-question::after {
    content: '＋';
    font-size: 1.4rem;
    font-weight: 300;
    color: #8B7DE8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer { 
    padding: 0 24px 20px; 
    display: none; 
    color: #6A6578; 
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-item.open .faq-answer { 
    display: block; 
    animation: fadeInUp 0.3s ease;
}

/* ---------- CTA横幅 ---------- */
.cta-banner { 
    padding: 72px 48px; 
    text-align: center; 
    border-radius: 32px; 
    color: #fff;
    background: linear-gradient(135deg, #8B7DE8 0%, #B19ED8 50%, #F5A8B8 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(139,125,232,0.35);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.15), transparent);
    animation: float 10s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.12), transparent);
    animation: float 14s ease-in-out infinite reverse;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    max-width: 420px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-banner .btn-primary { 
    background: #fff;
    color: #8B7DE8;
    box-shadow: 0 4px 20px rgba(46,42,62,0.12);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(46,42,62,0.18);
}

/* ---------- 页脚 ---------- */
.site-footer { 
    padding: 72px 0 32px; 
    background: #F0ECF9;
    border-top: 1px solid rgba(139,125,232,0.12);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B7DE8, #F5A8B8, #6CC4A1);
    opacity: 0.6;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 48px; 
}

.footer-brand {
    font-size: 0.95rem;
    color: #6A6578;
    line-height: 1.7;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 260px;
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2E2A3E;
    letter-spacing: 0.02em;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #6A6578;
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.25s ease;
}

.footer-col a:hover {
    color: #6B5BD0;
    padding-left: 6px;
    opacity: 1;
}

.footer-bottom { 
    border-top: 1px solid rgba(139,125,232,0.15); 
    margin-top: 48px; 
    padding-top: 24px; 
    text-align: center; 
    font-size: 0.85rem;
    color: #8A8598;
}

/* ---------- 工具类 ---------- */
.text-accent { 
    background: linear-gradient(135deg, #8B7DE8 0%, #E77B9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.text-center { 
    text-align: center; 
}

.seo-description { 
    max-width: 600px; 
    margin: 0 auto 48px; 
    color: #6A6578; 
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
}

.mt-0 { 
    margin-top: 0; 
}

.mb-0 { 
    margin-bottom: 0; 
}

/* ---------- 动画 ---------- */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-14px) rotate(2deg); 
    }
}

@keyframes floatBlob {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-28px) scale(1.06); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }
    
    .hero-image {
        max-width: 400px;
    }

    .feature-block {
        gap: 40px;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section { 
        padding: 60px 0; 
    }

    .feature-block { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }

    .feature-image {
        order: -1;
    }

    .stats-bar { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 16px; 
    }

    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 36px; 
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .main-nav { 
        display: none; 
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: 24px;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-shadow: 0 20px 60px rgba(46,42,62,0.16);
        border: 1px solid rgba(139,125,232,0.12);
        list-style: none;
        z-index: 999;
    }

    .main-nav a {
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 1rem;
        color: #2E2A3E;
        transition: all 0.2s ease;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        background: rgba(139,125,232,0.08);
        color: #6B5BD0;
    }

    .nav-cta {
        margin-top: 8px;
        text-align: center;
        color: #fff !important;
        background: linear-gradient(135deg, #8B7DE8 0%, #6C5CE7 100%);
    }

    .nav-cta:hover {
        background: linear-gradient(135deg, #7A6BD8 0%, #5A4CD7 100%);
        color: #fff !important;
    }

    .main-nav.open { 
        display: flex; 
    }

    .menu-toggle { 
        display: flex; 
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .cta-banner {
        padding: 56px 28px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar { 
        grid-template-columns: 1fr; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
    }

    .footer-brand {
        grid-column: auto;
    }
    
    .hero-buttons { 
        flex-direction: column; 
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .cta-banner {
        padding: 44px 20px;
    }
}