/* ================================================
   蜜桃传媒 · Peachverse Design System
   A juicy, playful, premium aesthetic
   ================================================ */

/* 基础重置 */
*, *::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: #FFF9F5;
    color: #2D1B17;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FFF9F5;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6B5E, #FFB199);
    border-radius: 10px;
    border: 2px solid #FFF9F5;
}
::selection {
    background: #FF6B5E;
    color: #fff;
}

/* 核心布局 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #FFF0EB;
}

.section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 176, 149, 0.08), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ===== 导航 ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 245, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 176, 149, 0.18);
    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: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: #2D1B17;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}
.logo:hover {
    opacity: 0.85;
}

.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, #FF6B5E, #FFB199);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 94, 0.3);
    position: relative;
    overflow: hidden;
}
.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-80%) translateY(-80%) rotate(25deg); }
    100% { transform: translateX(80%) translateY(80%) rotate(25deg); }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: #5C4B46;
    padding: 10px 14px;
    border-radius: 20px;
    transition: all 0.25s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #FF6B5E, #FFB199);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 20px;
}

.main-nav a:hover {
    background: rgba(255, 176, 149, 0.15);
    color: #FF6B5E;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 24px !important;
    color: #fff !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #FF6B5E, #FF8F75) !important;
    box-shadow: 0 4px 16px rgba(255, 107, 94, 0.3);
    transition: all 0.3s ease !important;
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(255, 107, 94, 0.4);
    background: linear-gradient(135deg, #FF5E4D, #FF7A5C) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #2D1B17;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FFF9F5 0%, #FFEFE9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 176, 149, 0.25), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '🍑';
    position: absolute;
    bottom: 60px;
    right: 80px;
    font-size: 10rem;
    opacity: 0.08;
    transform: rotate(15deg);
    pointer-events: none;
    animation: float-peach 6s ease-in-out infinite;
}

@keyframes float-peach {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #FFF0EB, #FFE3DC);
    color: #FF6B5E;
    border: 1px solid rgba(255, 107, 94, 0.15);
    box-shadow: 0 2px 12px rgba(255, 107, 94, 0.1);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #2D1B17;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, #FF6B5E, #FFB199);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: #6B5650;
    opacity: 0.8;
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    border-radius: 32px 32px 32px 8px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(255, 107, 94, 0.18),
        0 0 0 6px rgba(255, 255, 255, 0.6);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
    position: relative;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.01);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #FF6B5E, #FF8F75);
    box-shadow: 0 6px 24px rgba(255, 107, 94, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 107, 94, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 107, 94, 0.4);
    color: #FF6B5E;
}
.btn-outline:hover {
    border-color: #FF6B5E;
    background: rgba(255, 107, 94, 0.06);
    transform: translateY(-3px);
}

/* ===== 标签/标题 ===== */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    color: #FF6B5E;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B5E, #FFB199);
    box-shadow: 0 0 8px rgba(255, 107, 94, 0.4);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #2D1B17;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-desc {
    max-width: 600px;
    color: #6B5650;
    opacity: 0.75;
    margin-bottom: 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== 卡片网格 ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 20px;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 176, 149, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B5E, #FFB199);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 94, 0.12);
    border-color: rgba(255, 107, 94, 0.3);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FFF0EB, #FFE3DC);
    box-shadow: 0 4px 12px rgba(255, 107, 94, 0.1);
}

.category-card:hover .card-icon {
    background: linear-gradient(135deg, #FF6B5E, #FFB199);
    color: #fff;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: #FF6B5E;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 8px;
}

/* ===== 特性块 ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image {
    border-radius: 24px 24px 24px 8px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(255, 107, 94, 0.15);
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC145, #FFB199);
    opacity: 0.3;
    z-index: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text {
    padding: 20px 0;
}

.feature-text .section-label {
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #4A3B36;
    border-bottom: 1px dashed rgba(255, 176, 149, 0.25);
}

.feature-list li::before {
    content: '✓';
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B5E, #FFB199);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

/* ===== 数据条 ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 36px 24px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 176, 149, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #FF6B5E, #FFB199);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B5E, #FF8F75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.88rem;
    color: #8B7B74;
    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: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 176, 149, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-wall-item:hover {
    transform: translateY(-6px) rotate(0.5deg);
    box-shadow: 0 16px 40px rgba(255, 107, 94, 0.12);
    border-color: rgba(255, 107, 94, 0.25);
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s 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;
    color: #2D1B17;
    margin-bottom: 8px;
}

.content-wall-body p {
    font-size: 0.88rem;
    color: #8B7B74;
    line-height: 1.6;
}

.content-wall-body .card-link {
    margin-top: 14px;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 176, 149, 0.2);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 94, 0.4);
}

.faq-item .faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: #2D1B17;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FFF9F5, #fff);
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B5E;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: #6B5650;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 176, 149, 0.2);
}

.faq-item.open .faq-answer {
    display: block;
    padding-top: 16px;
}

/* ===== CTA横幅 ===== */
.cta-banner {
    padding: 72px 40px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #FF6B5E, #FF8F75, #FFB199);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 94, 0.3);
}

.cta-banner::before {
    content: '🍑';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 4rem;
    opacity: 0.2;
    transform: rotate(-20deg);
}

.cta-banner::after {
    content: '🍑';
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 5rem;
    opacity: 0.15;
    transform: rotate(15deg);
}

.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #FF6B5E;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ===== 页脚 ===== */
.site-footer {
    padding: 64px 0 28px;
    background: linear-gradient(180deg, #FFF0EB, #FFE8E1);
    border-radius: 40px 40px 0 0;
    margin-top: 40px;
    position: relative;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: #8B7B74;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2D1B17;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    color: #8B7B74;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
    color: #FF6B5E;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 94, 0.15);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #A08B84;
}

.footer-bottom a {
    color: #FF6B5E;
    text-decoration: none;
}

/* ===== 工具类 ===== */
.text-accent {
    color: #FF6B5E;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B5E, #FF8F75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    color: #8B7B74;
    opacity: 0.75;
    line-height: 1.8;
    font-size: 1.02rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ===== 额外装饰 ===== */
section .container::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 176, 149, 0.15), transparent);
    pointer-events: none;
}

/* 为Hero区域增加额外的装饰形状 */
.hero-extra-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 94, 0.08), rgba(255, 176, 149, 0.04));
    pointer-events: none;
    z-index: 1;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 动画：淡入上移 */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .category-card, .stat-item, .content-wall-item, .feature-block {
    animation: fade-up 0.8s ease-out both;
}

.hero-content { animation-delay: 0.1s; }
.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }
.content-wall-item:nth-child(1) { animation-delay: 0.1s; }
.content-wall-item:nth-child(2) { animation-delay: 0.2s; }
.content-wall-item:nth-child(3) { animation-delay: 0.3s; }
.content-wall-item:nth-child(4) { animation-delay: 0.4s; }
.content-wall-item:nth-child(5) { animation-delay: 0.5s; }
.content-wall-item:nth-child(6) { animation-delay: 0.6s; }

/* CTA横幅内部装饰 */
.cta-banner .container::after {
    display: none;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        min-height: 80vh;
    }

    .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;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 249, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 176, 149, 0.2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        gap: 8px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        font-size: 1.05rem;
        padding: 12px 16px;
        text-align: center;
        width: 100%;
        border-radius: 14px;
    }

    .main-nav .nav-cta {
        text-align: center;
        width: 100%;
        padding: 14px 24px !important;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-image {
        margin-top: 40px;
        border-radius: 24px 24px 24px 8px;
    }

    .section {
        padding: 70px 0;
    }

    .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;
        gap: 12px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .stat-item {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .feature-block {
        gap: 30px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .section {
        padding: 56px 0;
    }

    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
        height: 64px;
    }

    .main-nav {
        top: 64px;
    }

    .cta-banner {
        border-radius: 20px;
        padding: 40px 20px;
    }
}