/*
 * 冠侣体育软件 - 企业官网样式
 * 参考美图秀秀官网风格
 */

:root {
    --mt-primary: #7B42FF;
    --mt-secondary: #EC4899;
    --mt-purple-1: #6366F1;
    --mt-purple-2: #9333EA;
    --mt-purple-3: #7B42FF;
    --mt-pink-1: #EC4899;
    --mt-pink-2: #F472B6;
    --mt-dark: #0F0A1E;
    --mt-gray-100: #F9FAFB;
    --mt-gray-200: #F3F4F6;
    --mt-gray-600: #6B7280;
    --mt-gray-900: #1F2937;
    --gradient-primary: linear-gradient(135deg, var(--mt-purple-3) 0%, var(--mt-pink-1) 100%);
    --gradient-hero: linear-gradient(135deg, #3B1E54 0%, #1F1040 50%, #5A2070 100%);
    --gradient-card: linear-gradient(135deg, rgba(123, 66, 255, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    --text-primary: var(--mt-gray-900);
    --text-secondary: var(--mt-gray-600);
    --bg-light: var(--mt-gray-100);
    --white: #ffffff;
    --dark-bg: var(--mt-dark);
    --border-color: #E5E7EB;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-btn: 9999px;
    --box-shadow: 0 4px 24px rgba(123, 66, 255, 0.08);
    --box-shadow-hover: 0 12px 40px rgba(123, 66, 255, 0.15);
    --box-shadow-btn: 0 4px 20px rgba(123, 66, 255, 0.35);
    --box-shadow-btn-hover: 0 8px 30px rgba(123, 66, 255, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --fs-hero: 3.5rem;
    --fs-hero-mobile: 2.5rem;
    --fs-h2: 2.2rem;
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;
    --lh-tight: 1.2;
    --lh-normal: 1.6;
    --lh-relaxed: 1.75;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 120px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: var(--lh-tight);
    letter-spacing: -0.01em;
}

.container {
    width: 100%;
    max-width: 1357px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    box-sizing: border-box;
}

.header-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header-new.scrolled {
    background: rgba(15, 10, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: var(--space-sm) 0;
}

.header-inner-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1357px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
    box-sizing: border-box;
}

.logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.logo-new:hover {
    opacity: 0.9;
}

.logo-new img {
    height: 36px;
    width: auto;
}

.nav-links-new {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link-new {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-small);
    transition: var(--transition-fast);
    padding: 10px 20px;
    border-radius: var(--border-radius-btn);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-link-new:hover,
.nav-link-new.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.nav-link-new.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
}

.hero-section-new {
    width: 100%;
    min-height: 600px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: #9333EA;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: #EC4899;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.hero-decoration-3 {
    width: 200px;
    height: 200px;
    background: #7B42FF;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

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

.hero-layout-new {
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 400px;
}

.hero-text-new {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title-new {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-subtitle-new {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    color: rgba(224, 212, 240, 0.85);
    margin-bottom: var(--space-xl);
    line-height: 1.4;
}

.hero-buttons-new {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.btn-hero-primary-new {
    background: var(--white);
    color: var(--mt-primary);
    padding: 16px 48px;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-visual-new {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-mockup-new {
    width: 100%;
    max-width: 560px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    border: none;
    outline: none;
    background: transparent;
}

.hero-mockup-new .mockup-inner {
    width: 100%;
    aspect-ratio: 4/3;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: 0 0 80px rgba(123, 66, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-mockup-new .mockup-inner .mockup-apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    width: 100%;
}

.hero-mockup-new .mockup-inner .mockup-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.hero-mockup-new .mockup-inner .mockup-app-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.hero-mockup-new .mockup-inner .mockup-app-item .app-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(123, 66, 255, 0.3);
}

.hero-mockup-new .mockup-inner .mockup-app-item .app-icon i {
    font-size: 24px;
    color: #fff;
}

.hero-mockup-new .mockup-inner .mockup-app-item span {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

.divider-section {
    width: 100%;
    height: 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.products-section-new {
    width: 100%;
    padding: var(--space-4xl) 0 var(--space-5xl) 0;
    background: var(--white);
}

.section-header-new {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title-new {
    font-size: var(--fs-h2);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    margin-top: -10px;
    flex-wrap: wrap;
}

.product-tab {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    padding: 10px 24px;
    border-radius: var(--border-radius-btn);
    font-weight: 500;
    font-size: var(--fs-small);
    border: 1px solid rgba(30, 64, 175, 0.15);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-tab:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e3a8a;
    border-color: rgba(30, 64, 175, 0.25);
}

.product-tab.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
    color: var(--white);
    border-color: #2563eb;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: 20px;
}

.product-card-new {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card-new:nth-child(2) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.product-card-new:nth-child(3) {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
}

.product-card-new:nth-child(4) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.product-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
    opacity: 1;
}

.product-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.15);
}

.free-trial-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: var(--space-xs) 14px;
    border-radius: var(--border-radius-btn);
    font-size: var(--fs-xs);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-8px);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.product-card-new:hover .free-trial-badge {
    opacity: 1;
    transform: translateY(0);
}

.product-icon-wrapper-new {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    background: rgba(124, 58, 237, 0.08);
    transition: var(--transition);
}

.product-card-new:hover .product-icon-wrapper-new {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.product-icon-wrapper-new i {
    font-size: 1.8rem;
    color: #7c3aed;
    transition: var(--transition);
}

.product-card-new:hover .product-icon-wrapper-new i {
    color: var(--white);
}

.product-title-new {
    font-size: var(--fs-h3);
    color: #1e293b;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
}

.product-desc-new {
    color: #475569;
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
    font-size: 13px;
    text-align: center;
}

.product-btn-new {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--fs-small);
    letter-spacing: 0.02em;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(30, 64, 175, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.product-btn-new:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e3a8a;
    border-color: rgba(30, 64, 175, 0.35);
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.15);
    gap: 12px;
}

.product-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-new:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-placeholder::before {
    content: '\f016';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 40px;
    color: rgba(124, 58, 237, 0.2);
}

.product-card-glow {
    display: none;
}

.product-card-content {
    padding: 20px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card-date {
    font-size: 12px;
    color: #94a3b8;
}

.cta-section-new {
    width: 100%;
    padding: 16px 0 8px 0;
    margin-top: -56px;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
}

.section-subtitle-new {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.testimonials-section-new {
    width: 100%;
    padding: 60px 0 var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 50%, #fdf2ff 100%);
    position: relative;
    overflow: hidden;
    min-height: 900px;
}

.container-full {
    width: 100%;
    padding: 0;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
}

.testimonials-section-new::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 66, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section-new::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-new.centered {
    text-align: center;
    margin-bottom: 48px;
    margin-top: -57px;
    padding: 20px 20px 0 20px;
    position: relative;
    z-index: 10;
}

.wordcloud-wrapper {
    position: relative;
    height: 660px;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.wordcloud-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(240, 244, 255, 1) 0%, rgba(240, 244, 255, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.wordcloud-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(253, 242, 255, 1) 0%, rgba(253, 242, 255, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.wordcloud-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: scrollWordCloudVertical 80s linear infinite;
}

.wordcloud-wrapper:hover .wordcloud-track {
    animation-play-state: paused;
}

@keyframes scrollWordCloudVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.wordcloud-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 24px;
    flex-shrink: 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.wordcloud-card {
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.wordcloud-card::before {
    content: '"';
    position: absolute;
    top: -12px;
    left: 12px;
    font-size: 80px;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.wordcloud-card:hover {
    transform: scale(1.08) translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(123, 66, 255, 0.25);
    z-index: 100;
}

/* 5种不同大小的卡片 */
.wordcloud-size-xs {
    width: 260px;
    min-height: 130px;
}
.wordcloud-size-sm {
    width: 320px;
    min-height: 160px;
}
.wordcloud-size-md {
    width: 380px;
    min-height: 190px;
}
.wordcloud-size-lg {
    width: 440px;
    min-height: 220px;
}
.wordcloud-size-xl {
    width: 500px;
    min-height: 260px;
}

/* 不同颜色主题 */
.wordcloud-color-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.12);
}
.wordcloud-color-2 {
    background: linear-gradient(135deg, #ffffff 0%, #fdf2ff 100%);
    border: 1px solid rgba(236, 72, 153, 0.12);
}
.wordcloud-color-3 {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 1px solid rgba(16, 185, 129, 0.12);
}
.wordcloud-color-4 {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border: 1px solid rgba(249, 115, 22, 0.12);
}
.wordcloud-color-5 {
    background: linear-gradient(135deg, #ffffff 0%, #ecfeff 100%);
    border: 1px solid rgba(6, 182, 212, 0.12);
}
.wordcloud-color-6 {
    background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
    border: 1px solid rgba(234, 179, 8, 0.12);
}

.wordcloud-card-inner {
    position: relative;
    z-index: 1;
}

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

.wordcloud-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 3px 12px rgba(124, 58, 237, 0.3);
}

.wordcloud-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wordcloud-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.wordcloud-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.wordcloud-size-xl .wordcloud-title {
    font-size: 18px;
}

.wordcloud-size-xs .wordcloud-title {
    font-size: 14px;
}

.wordcloud-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.wordcloud-size-xs .wordcloud-text {
    font-size: 13px;
}

.wordcloud-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 14px;
    display: inline-block;
}

.wordcloud-color-1 .wordcloud-badge {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}
.wordcloud-color-2 .wordcloud-badge {
    background: rgba(236, 72, 153, 0.08);
    color: #db2777;
}
.wordcloud-color-3 .wordcloud-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
}
.wordcloud-color-4 .wordcloud-badge {
    background: rgba(249, 115, 22, 0.08);
    color: #ea580c;
}
.wordcloud-color-5 .wordcloud-badge {
    background: rgba(6, 182, 212, 0.08);
    color: #0891b2;
}
.wordcloud-color-6 .wordcloud-badge {
    background: rgba(234, 179, 8, 0.08);
    color: #ca8a04;
}

@media (max-width: 1600px) {
    .wordcloud-size-xl { width: 420px; min-height: 230px; }
    .wordcloud-size-lg { width: 380px; min-height: 200px; }
    .wordcloud-flow { gap: 20px; width: 100%; max-width: 1400px; }
}

@media (max-width: 1200px) {
    .wordcloud-wrapper { height: 600px; }
    .wordcloud-size-xl { width: 360px; min-height: 200px; }
    .wordcloud-size-lg { width: 320px; min-height: 180px; }
    .wordcloud-size-md { width: 300px; min-height: 160px; }
    .wordcloud-size-sm { width: 270px; min-height: 140px; }
    .wordcloud-size-xs { width: 230px; min-height: 120px; }
    .wordcloud-flow { gap: 18px; width: 100%; max-width: 1200px; }
}

@media (max-width: 768px) {
    .wordcloud-wrapper { height: 520px; }
    .wordcloud-size-xl { width: 300px; min-height: 180px; }
    .wordcloud-size-lg { width: 280px; min-height: 160px; }
    .wordcloud-size-md { width: 260px; min-height: 145px; }
    .wordcloud-size-sm { width: 240px; min-height: 130px; }
    .wordcloud-size-xs { width: 210px; min-height: 115px; }
    .wordcloud-flow { gap: 14px; width: 100%; max-width: 768px; }
    .wordcloud-card { padding: 16px 20px; }
}

@media (max-width: 480px) {
    .wordcloud-wrapper { height: 460px; }
    .wordcloud-size-xl { width: 260px; min-height: 160px; }
    .wordcloud-size-lg { width: 240px; min-height: 145px; }
    .wordcloud-size-md { width: 220px; min-height: 130px; }
    .wordcloud-size-sm { width: 200px; min-height: 120px; }
    .wordcloud-size-xs { width: 180px; min-height: 105px; }
    .wordcloud-flow { gap: 12px; width: 100%; max-width: 480px; }
    .wordcloud-card { padding: 14px 18px; }
}


.cta-title-new {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-subtitle-new {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    line-height: 1.5;
}

.cta-contacts-new {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 12px;
}

.cta-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    min-width: 120px;
}

.cta-contact-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-contact-item i {
    color: var(--mt-purple-3);
    font-size: 1.2em;
}

.cta-qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.cta-qr-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 6px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-qr-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-new {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4xl) 0 var(--space-2xl) 0;
    border-top: 1px solid rgba(123, 66, 255, 0.15);
}

.footer-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand-new h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.footer-brand-new p {
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--lh-relaxed);
    font-size: var(--fs-small);
}

.footer-column-new h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
    font-weight: 600;
}

.footer-links-new {
    list-style: none;
}

.footer-links-new li {
    margin-bottom: var(--space-md);
}

.footer-links-new a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--fs-small);
}

.footer-links-new a:hover {
    color: var(--mt-pink-2);
}

.footer-contact-new p {
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-small);
}

.footer-contact-new p i {
    color: var(--mt-pink-2);
    margin-right: var(--space-sm);
}

.footer-copyright-new {
    text-align: center;
    padding: 8px 0 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    background: var(--dark-bg);
    line-height: 1.4;
    margin-top: 8px;
}

.footer-copyright-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-copyright-new a:hover {
    color: var(--mt-pink-2);
}

.mobile-menu-toggle-new {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
}

.mobile-menu-toggle-new span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-menu-new {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 1001;
    padding: 80px var(--space-xl) var(--space-2xl) var(--space-xl);
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu-new.active {
    right: 0;
}

.mobile-menu-new .close-menu-new {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-new .close-menu-new:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-new ul {
    list-style: none;
}

.mobile-menu-new ul li {
    margin-bottom: var(--space-md);
}

.mobile-menu-new .nav-link-new {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    padding: var(--space-sm) 0;
}

.mobile-menu-overlay-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay-new.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    :root {
        --fs-hero: 2.5rem;
        --fs-h2: 1.8rem;
    }

    .hero-layout-new {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3xl);
    }

    .hero-text-new {
        max-width: 100%;
    }

    .hero-buttons-new {
        justify-content: center;
    }

    .hero-visual-new {
        width: 100%;
        max-width: 500px;
    }

    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content-new {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links-new {
        display: none;
    }

    .mobile-menu-toggle-new {
        display: flex;
    }

    .hero-section-new {
        min-height: auto;
        padding: 120px 0 var(--space-4xl) 0;
    }
}

@media (max-width: 640px) {
    :root {
        --fs-hero: 2rem;
        --fs-h2: 1.6rem;
    }

    .products-grid-new {
        grid-template-columns: 1fr;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
    }

    .cta-contacts-new {
        flex-direction: column;
        align-items: center;
    }

    .hero-section-new {
        padding: 100px 0 var(--space-3xl) 0;
    }

    .products-tabs {
        gap: var(--space-sm);
    }

    .product-tab {
        padding: 8px 18px;
        font-size: var(--fs-xs);
    }
}
