* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --amber: #f59e0b;
    --text: #f1f5f9;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.14);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-border-strong: rgba(255, 255, 255, 0.28);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    min-height: 100vh;
    background: transparent;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(139, 92, 246, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 30%, rgba(236, 72, 153, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(6, 182, 212, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 90%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #0f0f1a 0%, #1a1030 50%, #0f0f1a 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hidden {
    display: none !important;
}

.m-container {
    padding: 0 20px;
}

@media (min-width: 500px) {
    .m-container {
        max-width: 500px;
        margin: 0 auto;
        padding: 0 24px;
    }
    
    .m-navbar {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .m-navbar .m-nav-inner {
        padding: 0 24px;
    }
    
    .m-fab {
        max-width: 500px;
        margin: 0 auto;
    }
}

.m-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid var(--glass-border);
}

.m-navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), rgba(244, 114, 182, 0.5), transparent);
}

.m-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 14px;
    position: relative;
}

.m-logo-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.m-logo-link:active {
    opacity: 0.7;
}

.m-nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.m-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 17px;
}

.m-nav-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.m-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

.m-nav-btn:active {
    transform: scale(0.92);
    background: var(--glass-strong);
}

.m-nav-btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

.m-nav-btn-cta::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
}

.m-nav-btn-cta:active {
    opacity: 0.85;
}

.m-logo-icon {
    font-size: 22px;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.5));
}

.m-logo-text {
    background: linear-gradient(135deg, #a78bfa 0%, #f472b6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.m-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
}

.m-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.m-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.m-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.m-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.m-nav-menu {
    display: none;
    flex-direction: column;
    padding: 12px 16px 20px;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    gap: 2px;
    padding-bottom: calc(20px + var(--safe-bottom));
}

.m-nav-menu.active {
    display: flex;
}

.m-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: background 0.2s;
}

.m-nav-link-icon {
    font-size: 18px;
    width: 28px;
    text-align: center;
}

.m-nav-link:active {
    background: var(--glass);
    color: var(--primary);
}

.m-nav-cta {
    margin-top: 8px;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    text-align: center;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.m-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.m-btn-primary:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.m-btn-outline {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text);
    border: 1px solid var(--glass-border-strong);
}

.m-btn-outline:active {
    transform: scale(0.97);
}

.m-btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.m-btn-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.m-btn-white:active {
    transform: scale(0.97);
}

.m-hero {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

.m-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.m-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #a78bfa;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.m-hero-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: white;
}

.m-highlight {
    background: linear-gradient(135deg, #a78bfa, #f472b6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-hero-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.m-hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.m-hero-btns .m-btn {
    flex: 1;
    text-align: center;
}

.m-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px 12px;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.m-stat {
    text-align: center;
}

.m-stat-num {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.m-section {
    padding: 60px 0;
}

.m-section-head {
    text-align: center;
    margin-bottom: 32px;
}

.m-section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #a78bfa;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.m-section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.m-section-desc {
    font-size: 14px;
    color: var(--text-light);
}

.m-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.2s;
}

.m-feature-item:active {
    transform: scale(0.98);
}

.m-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.m-feature-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.m-feature-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.m-svg-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.m-cat-icon-img {
    width: 32px;
    height: 32px;
}

.m-featured-icon-img {
    width: 52px;
    height: 52px;
}

.m-grid-icon-img {
    width: 42px;
    height: 42px;
}

.m-contact-icon-img {
    width: 24px;
    height: 24px;
}

.m-tabs {
    margin-bottom: 20px;
}

.m-tab-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.m-tab-scroll::-webkit-scrollbar {
    display: none;
}

.m-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.m-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.m-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.m-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--glass);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.2s;
    cursor: pointer;
}

.m-cat-item:active {
    transform: scale(0.96);
    background: var(--glass-strong);
}

.m-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.m-cat-name {
    font-size: 13px;
    font-weight: 500;
    color: white;
    line-height: 1.3;
}

.m-featured {
    background: transparent;
}

.m-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.m-featured-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 16px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.m-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--pink), var(--cyan));
}

.m-featured-card:active {
    transform: scale(0.96);
}

.m-featured-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.m-featured-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-featured-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
}

.m-featured-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.m-featured-action {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.m-featured-action:active {
    opacity: 0.85;
}

.m-products {
    background: transparent;
}

.m-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.m-grid-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.m-grid-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.m-grid-card:active {
    transform: scale(0.96);
}

.m-grid-card:active::after {
    transform: scaleX(1);
}

.m-grid-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.m-grid-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 6px;
}

.m-grid-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
    line-height: 1.3;
}

.m-grid-desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.m-grid-actions {
    display: flex;
    gap: 6px;
}

.m-grid-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.m-grid-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
}

.m-grid-btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.m-grid-btn:active {
    opacity: 0.8;
}

.m-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.m-step {
    display: flex;
    gap: 16px;
    padding: 8px 0;
    position: relative;
}

.m-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 68px;
    bottom: -8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), rgba(139, 92, 246, 0.05));
}

.m-step-num {
    font-size: 12px;
    font-weight: 700;
    color: #c4b5fd;
    position: absolute;
    left: 0;
    top: 16px;
    background: rgba(15, 15, 26, 0.8);
    padding: 2px 6px;
    border-radius: 6px;
}

.m-step-icon {
    width: 48px;
    height: 48px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 8px;
}

.m-step-content {
    flex: 1;
    padding-top: 8px;
    padding-bottom: 16px;
}

.m-step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.m-step-content p {
    font-size: 13px;
    color: var(--text-light);
}

.m-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-faq-item {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.m-faq-item.active {
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25);
}

.m-faq-q {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: white;
}

.m-faq-toggle {
    font-size: 22px;
    color: #a78bfa;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.m-faq-item.active .m-faq-toggle {
    transform: rotate(45deg);
}

.m-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.m-faq-item.active .m-faq-a {
    max-height: 200px;
}

.m-faq-a p {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.m-cta {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.m-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(236, 72, 153, 0.4) 50%, rgba(6, 182, 212, 0.4) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

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

.m-cta h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.m-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.m-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.m-contact-card:active {
    transform: scale(0.98);
    background: var(--glass-strong);
}

.m-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.m-contact-icon .m-svg-icon {
    width: 28px;
    height: 28px;
}

.m-contact-info {
    flex: 1;
    min-width: 0;
}

.m-contact-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.m-contact-info p {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-contact-arrow {
    font-size: 22px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.m-footer {
    padding: 40px 0 30px;
    padding-bottom: calc(30px + var(--safe-bottom));
    background: rgba(15, 15, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.m-footer-top {
    text-align: center;
    margin-bottom: 24px;
}

.m-footer .m-logo-text {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-footer-desc {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 13px;
}

.m-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.m-footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

.m-footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.m-footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.m-fab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
    padding: 12px 16px;
    padding-bottom: calc(12px + var(--safe-bottom));
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0) 0%, rgba(15, 15, 26, 0.8) 30%);
}

.m-fab-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
    pointer-events: auto;
    transition: transform 0.2s;
}

.m-fab-btn:active {
    transform: scale(0.98);
}

.m-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
    pointer-events: none;
    white-space: nowrap;
}

.m-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.m-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.m-modal.show {
    opacity: 1;
    visibility: visible;
}

.m-modal-content {
    background: rgba(30, 30, 50, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border-strong);
    border-radius: 24px;
    padding: 28px 24px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.m-modal.show .m-modal-content {
    transform: scale(1);
}

.m-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.m-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.m-modal-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.m-modal-actions {
    display: flex;
    gap: 12px;
}

.m-modal-actions .m-btn {
    flex: 1;
}

@media (max-width: 400px) {
    .m-hero-title {
        font-size: 26px;
    }
    .m-section-title {
        font-size: 22px;
    }
    .m-stat-num {
        font-size: 18px;
    }
}
