/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --primary: #2a5a4a;
            --primary-dark: #1d4036;
            --primary-light: #3d7765;
            --accent: #c9a87c;
            --accent-dark: #b08d5e;
            --accent-light: #eadbc5;
            --dark: #101d18;
            --dark-2: #182a23;
            --light: #faf7f2;
            --light-2: #f2ede5;
            --text: #2c2c2c;
            --text-light: #6b6b6b;
            --border: #e5ddd0;
            --shadow: 0 8px 30px rgba(16, 29, 24, 0.10);
            --shadow-lg: 0 16px 48px rgba(16, 29, 24, 0.14);
            --radius: 14px;
            --radius-lg: 24px;
            --radius-sm: 8px;
            --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.35, 1);
            --container-w: 1200px;
        }

        /* ===== Reset ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--light);
            -webkit-font-smoothing: antialiased;
        }
        a { color: inherit; text-decoration: none; transition: var(--transition); }
        img { max-width: 100%; height: auto; display: block; }
        button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
        ul, ol { list-style: none; }
        h1, h2, h3, h4, h5 { line-height: 1.3; font-weight: 700; }

        /* ===== 容器 ===== */
        .container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
        .section { padding: 100px 0; position: relative; }
        .section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
        .section-tag {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 50px;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .section-title { font-size: 40px; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.02em; }
        .section-subtitle { font-size: 16px; color: var(--text-light); line-height: 1.8; }

        /* ===== 导航 ===== */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(16, 29, 24, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }
        .header.scrolled { background: rgba(16, 29, 24, 0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .nav-logo {
            font-size: 19px;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .nav-logo i { color: var(--accent); font-size: 22px; }
        .nav-logo span { color: var(--accent); }
        .nav-links { display: flex; align-items: center; gap: 8px; }
        .nav-links a {
            color: rgba(255,255,255,0.8);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 50px;
            transition: var(--transition);
        }
        .nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(201, 168, 124, 0.3);
        }
        .nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201, 168, 124, 0.4); }

        /* ===== Hero 沉浸大图 ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: var(--dark);
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(16,29,24,0.72) 0%, rgba(16,29,24,0.55) 50%, rgba(16,29,24,0.85) 100%);
            z-index: 1;
        }
        .hero-inner { position: relative; z-index: 2; text-align: center; padding: 140px 24px 100px; width: 100%; }
        .hero-countdown {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 50px;
            margin-bottom: 32px;
        }
        .hero-countdown .label { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; }
        .hero-countdown .cd-time {
            background: var(--accent);
            color: #fff;
            font-weight: 800;
            font-size: 15px;
            padding: 4px 10px;
            border-radius: 8px;
            font-variant-numeric: tabular-nums;
        }
        .hero-countdown .cd-sep { color: rgba(255,255,255,0.6); font-weight: 700; }
        .hero-badge {
            display: inline-block;
            background: rgba(201,168,124,0.18);
            border: 1px solid var(--accent);
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 20px;
            border-radius: 50px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            max-width: 900px;
            margin: 0 auto 24px;
            letter-spacing: -0.02em;
        }
        .hero h1 span { color: var(--accent); }
        .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.85);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.9;
        }
        .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
        .btn-primary, .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 24px rgba(201,168,124,0.35); }
        .btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,124,0.45); }
        .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
        .btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,168,124,0.08); transform: translateY(-3px); }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
            padding: 32px 40px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(12px);
        }
        .hero-stat { text-align: center; }
        .hero-stat strong {
            display: block;
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .hero-stat span { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

        /* ===== 拼团玩法 ===== */
        .how-section { background: var(--light); }
        .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .how-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            overflow: hidden;
        }
        .how-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
        .how-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            opacity: 0;
            transition: var(--transition);
        }
        .how-card:hover::before { opacity: 1; }
        .how-num {
            position: absolute;
            top: 20px; right: 24px;
            font-size: 72px;
            font-weight: 800;
            color: rgba(16,29,24,0.04);
            line-height: 1;
        }
        .how-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .how-icon i { font-size: 32px; color: var(--accent-dark); }
        .how-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 14px; }
        .how-card p { font-size: 15px; color: var(--text-light); line-height: 1.8; }

        /* ===== 热门拼单 ===== */
        .matches-section { background: var(--dark); }
        .matches-section .section-title { color: #fff; }
        .matches-section .section-subtitle { color: rgba(255,255,255,0.65); }
        .matches-section .section-tag { background: rgba(201,168,124,0.15); color: var(--accent); }
        .match-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .match-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .match-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
        .match-cover { position: relative; height: 220px; overflow: hidden; }
        .match-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .match-card:hover .match-cover img { transform: scale(1.06); }
        .match-tag {
            position: absolute;
            top: 16px; left: 16px;
            background: var(--accent);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: 0.05em;
        }
        .match-body { padding: 28px; }
        .match-body h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; }
        .match-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
        .match-meta li { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-light); }
        .match-meta li i { color: var(--accent-dark); font-size: 14px; }
        .match-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px; }
        .match-price { font-size: 22px; font-weight: 800; color: var(--accent-dark); }
        .match-price small { font-size: 13px; font-weight: 500; color: var(--text-light); margin-left: 2px; }
        .match-join {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 50px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        .match-join:hover { background: var(--primary-dark); transform: translateY(-2px); }

        /* ===== 数据指标条 ===== */
        .data-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
            padding: 80px 0;
            position: relative;
        }
        .data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; text-align: center; }
        .data-item { position: relative; padding: 20px 0; }
        .data-item::after {
            content: "";
            position: absolute;
            right: -24px; top: 50%;
            transform: translateY(-50%);
            width: 1px; height: 60px;
            background: rgba(255,255,255,0.12);
        }
        .data-item:last-child::after { display: none; }
        .data-item strong {
            display: block;
            font-size: 52px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.1;
            margin-bottom: 8px;
            font-variant-numeric: tabular-nums;
        }
        .data-item span { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; }

        /* ===== 资讯区 ===== */
        .news-section { background: var(--light-2); }
        .news-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
        .news-list { display: flex; flex-direction: column; gap: 4px; }
        .news-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 16px;
            border-radius: var(--radius);
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .news-item:hover { background: #fff; box-shadow: var(--shadow); border-left-color: var(--accent); transform: translateX(4px); }
        .news-date {
            flex-shrink: 0;
            width: 56px;
            text-align: center;
            background: var(--primary);
            color: #fff;
            border-radius: var(--radius-sm);
            padding: 10px 0;
        }
        .news-date strong { display: block; font-size: 22px; line-height: 1; margin-bottom: 2px; }
        .news-date span { font-size: 12px; opacity: 0.8; }
        .news-item h3 { font-size: 16px; color: var(--dark); margin-bottom: 6px; line-height: 1.5; }
        .news-item h3 a:hover { color: var(--accent-dark); }
        .news-item p { font-size: 13px; color: var(--text-light); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-sidebar { display: flex; flex-direction: column; gap: 24px; }
        .side-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border);
        }
        .side-card h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }
        .side-card h3::after {
            content: "";
            position: absolute;
            bottom: 0; left: 0;
            width: 40px; height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        .topic-list li { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--border); }
        .topic-list li:last-child { border-bottom: none; }
        .topic-list a { font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 10px; }
        .topic-list a i { color: var(--accent); font-size: 14px; width: 20px; text-align: center; }
        .topic-list a:hover { color: var(--accent-dark); }
        .topic-list .count { font-size: 13px; color: var(--text-light); background: var(--light-2); padding: 2px 10px; border-radius: 20px; }
        .side-cover { margin-top: 16px; border-radius: var(--radius); overflow: hidden; position: relative; }
        .side-cover img { height: 200px; width: 100%; object-fit: cover; }
        .side-cover .side-cover-title {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(16,29,24,0.9));
            color: #fff;
            padding: 30px 16px 14px;
            font-size: 15px;
            font-weight: 600;
        }

        /* ===== 开团入口 CTA ===== */
        .join-section {
            position: relative;
            padding: 120px 0;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .join-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16,29,24,0.92) 0%, rgba(42,90,74,0.85) 100%);
        }
        .join-inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
        .join-inner h2 { font-size: 44px; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em; }
        .join-inner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.9; }
        .join-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
        .join-matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .matrix-item {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius);
            padding: 20px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            color: #fff;
        }
        .matrix-item:hover { background: rgba(255,255,255,0.16); transform: translateY(-4px); border-color: var(--accent); }
        .matrix-item i { font-size: 24px; color: var(--accent); }
        .matrix-item span { font-size: 14px; font-weight: 600; }

        /* ===== FAQ ===== */
        .faq-section { background: var(--light); }
        .faq-wrap { max-width: 860px; margin: 0 auto; }
        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover { box-shadow: var(--shadow); }
        .faq-q {
            padding: 22px 28px;
            font-size: 17px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            position: relative;
        }
        .faq-q::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent-dark);
            transition: transform 0.35s ease;
            flex-shrink: 0;
        }
        .faq-item.active .faq-q::after { transform: rotate(180deg); }
        .faq-a {
            padding: 0 28px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.85;
        }
        .faq-item.active .faq-a { padding: 0 28px 24px; max-height: 400px; }

        /* ===== 底部 CTA ===== */
        .bottom-cta { background: var(--primary-dark); position: relative; overflow: hidden; }
        .bottom-cta::before {
            content: "";
            position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(201,168,124,0.15) 0%, transparent 70%);
            top: -200px; right: -100px;
        }
        .bottom-cta .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
        .cta-text { flex: 1; min-width: 300px; }
        .cta-text h2 { font-size: 36px; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
        .cta-text p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 24px; }
        .cta-points { display: flex; flex-wrap: wrap; gap: 20px; }
        .cta-points li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; }
        .cta-points li i { color: var(--accent); font-size: 16px; }
        .cta-form {
            flex: 0 0 360px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            border-radius: var(--radius-lg);
            padding: 36px;
        }
        .cta-form h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
        .cta-form p { color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 20px; }
        .cta-form input, .cta-form select, .cta-form textarea {
            width: 100%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            color: #fff;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255,255,255,0.12);
        }
        .cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }
        .cta-form .btn-primary { width: 100%; justify-content: center; border: none; }
        .cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; display: flex; align-items: center; gap: 6px; justify-content: center; }
        .cta-note i { color: var(--accent); }

        /* ===== 页脚 ===== */
        .footer { background: var(--dark); padding: 80px 0 40px; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .footer-brand h3 { color: #fff; font-size: 22px; margin-bottom: 14px; }
        .footer-brand h3 span { color: var(--accent); }
        .footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; }
        .footer-links h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
        .footer-links ul li { margin-bottom: 10px; }
        .footer-links ul li a { color: rgba(255,255,255,0.55); font-size: 14px; }
        .footer-links ul li a:hover { color: var(--accent); padding-left: 4px; }
        .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; flex-wrap: wrap; gap: 12px; }
        .footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
        .footer-bottom .tech { color: rgba(255,255,255,0.25); font-size: 12px; }

        /* ===== 浮动按钮 ===== */
        .floating-btn {
            position: fixed;
            bottom: 32px; right: 32px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 8px 32px rgba(201,168,124,0.4);
            transition: var(--transition);
        }
        .floating-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,124,0.5); }
        .floating-btn i { font-size: 18px; }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .section { padding: 80px 0; }
            .section-title { font-size: 34px; }
            .hero h1 { font-size: 38px; }
            .match-grid { grid-template-columns: repeat(2, 1fr); }
            .how-grid { gap: 20px; }
            .data-item strong { font-size: 42px; }
            .news-layout { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .cta-form { flex-basis: 100%; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-inner { height: 60px; }
            .nav-logo { font-size: 16px; }
            .nav-cta { padding: 8px 18px; font-size: 13px; }
            .hero { min-height: auto; }
            .hero-inner { padding: 120px 20px 80px; }
            .hero h1 { font-size: 30px; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 16px; }
            .hero-stat strong { font-size: 30px; }
            .how-grid { grid-template-columns: 1fr; }
            .match-grid { grid-template-columns: 1fr; }
            .data-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .data-item::after { display: none; }
            .join-matrix { grid-template-columns: repeat(2, 1fr); }
            .bottom-cta .container { flex-direction: column; text-align: center; }
            .cta-points { justify-content: center; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .floating-btn { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 13px; }
        }
        @media (max-width: 520px) {
            .section { padding: 60px 0; }
            .section-title { font-size: 28px; }
            .hero h1 { font-size: 26px; }
            .hero-desc { font-size: 15px; }
            .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
            .hero-stats { grid-template-columns: 1fr 1fr; }
            .data-item strong { font-size: 36px; }
            .news-item { padding: 14px 10px; gap: 12px; }
            .news-date { width: 44px; }
            .news-date strong { font-size: 18px; }
            .join-inner h2 { font-size: 32px; }
            .cta-text h2 { font-size: 28px; }
            .cta-form { padding: 24px; }
            .floating-btn { right: 16px; bottom: 16px; }
        }
