:root {
    --primary-color: #6c5ce7;
    --primary-light: #a29bfe;
    --primary-dark: #5849c4;
    --secondary-color: #fd79a8;
    --accent-color: #00cec9;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --text-lightest: #b2bec3;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-secondary: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    --shadow-sm: 0 4px 15px rgba(108, 92, 231, 0.1);
    --shadow-md: 0 8px 30px rgba(108, 92, 231, 0.15);
    --shadow-lg: 0 15px 50px rgba(108, 92, 231, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108, 92, 231, 0.05);
}

.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e8f4ff 50%, #f8f9ff 100%);
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    animation: fadeInUp 0.8s ease;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text-lightest), transparent);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 300px;
    height: 300px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(108, 92, 231, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Platforms Section */
.platforms {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.platforms-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff5f8 100%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.platform-icon i {
    font-size: 26px;
}

.platform-card:nth-child(1) .platform-icon i { color: #333; }
.platform-card:nth-child(2) .platform-icon i { color: #3ddc84; }
.platform-card:nth-child(3) .platform-icon i { color: #00a4ef; }
.platform-card:nth-child(4) .platform-icon i { color: #333; }

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.platform-desc {
    font-size: 13px;
    color: var(--text-light);
}

.platform-arrow {
    color: var(--text-lightest);
    transition: var(--transition);
}

.platform-card:hover .platform-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(108, 92, 231, 0.05);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.review-avatar i {
    font-size: 20px;
    color: white;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.review-stars i {
    font-size: 12px;
    color: #ffc107;
}

.review-author {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.review-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    background: white;
    top: -200px;
    right: -100px;
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #1a1a2e;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-name {
    font-size: 24px;
    font-weight: 700;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-icp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-icp a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-icp a:hover {
    color: var(--primary-color);
}

/* Preview Section - Device Showcase */
.devices-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin: 60px 0;
    padding: 20px 0;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.device-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device-screen {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #333;
}

.device-pc .device-screen {
    width: 480px;
    height: 320px;
    border-radius: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-tablet .device-screen {
    width: 220px;
    height: 300px;
    border-radius: 18px;
    border: 4px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-phone .device-screen {
    width: 110px;
    height: 220px;
    border-radius: 16px;
    border: 3px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.device-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    gap: 8px;
}

.device-placeholder i {
    font-size: 28px;
}

.device-placeholder p {
    font-size: 11px;
    margin: 0;
    opacity: 0.7;
}

.device-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 10px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
    .devices-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .device-pc, .device-tablet, .device-phone {
        transform: scale(0.85);
    }
    
    .device-pc .device-screen {
        width: 320px;
        height: 200px;
    }
}

/* Preview Section Main */
.preview {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.preview .preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.preview .container {
    position: relative;
    z-index: 1;
}

.preview-screen {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.preview-screen-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #f8f9fc;
    border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}

.preview-screen-header .preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot-red { background: #ff5f57; }
.preview-dot-yellow { background: #febc2e; }
.preview-dot-green { background: #28c840; }

.preview-screen-content {
    position: relative;
    min-height: 450px;
    background: linear-gradient(135deg, #f8f9fc 0%, #e8f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.preview-image {
    max-width: 100%;
    max-height: 450px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    object-fit: contain;
}

.preview-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.preview-placeholder-content {
    text-align: center;
    color: var(--text-lightest);
}

.preview-placeholder-content i {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.preview-placeholder-content p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.preview-placeholder-content span {
    font-size: 12px;
    opacity: 0.7;
}

.preview-thumbs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.preview-thumb-item {
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.preview-thumb-item:hover .preview-thumb {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.preview-thumb-item.active .preview-thumb {
    border-color: var(--primary-color);
}

.preview-thumb {
    width: 120px;
    height: 75px;
    background: white;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-thumb-placeholder {
    color: var(--text-lightest);
}

.preview-thumb-placeholder i {
    font-size: 24px;
}

.preview-thumb-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.preview-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.preview-feature-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.preview-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.preview-feature-text p {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .preview-thumbs {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .preview-thumb {
        width: 100px;
        height: 65px;
    }
    
    .preview-features {
        gap: 30px;
    }
    
    .preview-feature {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        width: 220px;
        height: 220px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .platforms-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
}
