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

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-slate: #f1f5f9;
    --border-light: #e2e8f0;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --border-width: 1px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.background-system-w8k5j {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.gradient-mesh-k9w5s {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, #fef3c7 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #ddd6fe 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, #fce7f3 0%, transparent 50%),
                radial-gradient(circle at 25% 75%, #dcfce7 0%, transparent 50%),
                linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mesh-blob-j4k8m {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.blob-primary-w3x7s {
    top: 15%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    animation-delay: 0s;
}

.blob-secondary-p8k5w {
    top: 60%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    animation-delay: -8s;
}

.blob-tertiary-m6j9x {
    bottom: 15%;
    left: 45%;
    width: 350px;
    height: 350px;
    background: var(--accent-gradient);
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(40px, -40px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-30px, 30px) rotate(180deg) scale(0.9); }
    75% { transform: translate(50px, 20px) rotate(270deg) scale(1.05); }
}

.site-header-j8k5m {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(24px) saturate(180%);
    background: var(--glass-bg);
    border-bottom: var(--border-width) solid var(--glass-border);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.header-container-w9k3s {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-area-m7j4k {
    display: flex;
    align-items: center;
}

.logo-container-k6w9s {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-icon-p8j3m {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-smooth);
}

.logo-icon-p8j3m:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-large);
}

.heart-icon-w5k7j {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.icon-shimmer-j9k4s {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text-k3w8m {
    display: flex;
    flex-direction: column;
}

.brand-name-j7k5s {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.brand-motto-w4k9j {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.navigation-menu-k8w5j {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    border: var(--border-width) solid var(--glass-border);
}

.nav-item-j6k9m {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-smooth);
    border-radius: var(--radius-md);
    white-space: nowrap;
}

.nav-item-j6k9m:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.nav-icon-p4k8j {
    font-size: 0.9rem;
}

.current-page-w7k3s {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.15);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.header-actions-w8k5j {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.try-btn-j7k3m {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    letter-spacing: 0.01em;
}

.try-btn-j7k3m:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-large);
}

.try-btn-j7k3m:active {
    transform: translateY(0) scale(0.98);
}

.hero-section-w9k5j {
    padding: 140px 0 100px;
    position: relative;
}

.section-container-w9k5j {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper-k9w5j {
    position: relative;
    z-index: 2;
}

.hero-content-j8k5m {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-w6k8s {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border: var(--border-width) solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6366f1;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.badge-icon-k9j5m {
    font-size: 1rem;
}

.hero-title-k7w3s {
    margin-bottom: 2rem;
}

.hero-title-k7w3s a {
    text-decoration: none;
    color: inherit;
}

.title-main-j9k5m {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.title-sub-w6k8j {
    display: block;
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.hero-description-k5w9j {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions-w8k5j {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.primary-btn-j7k3m,
.secondary-btn-k6w9s {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    border: var(--border-width) solid transparent;
}

.primary-btn-j7k3m {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-medium);
}

.primary-btn-j7k3m:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-large);
}

.secondary-btn-k6w9s {
    background: var(--glass-bg);
    color: var(--text-primary);
    border-color: var(--border-light);
    backdrop-filter: blur(12px);
}

.secondary-btn-k6w9s:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-stats-w8k5j {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item-k9j5m {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    border: var(--border-width) solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.stat-item-k9j5m:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stat-icon-j7k3s {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number-w6k9s {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label-k8w5j {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.section-spacing-w8k5j {
    padding: 100px 0;
}

.features-section-w8k5j {
    padding: 120px 0;
    position: relative;
}

.section-header-k7j3m {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-badge-w6k8s {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: var(--border-width) solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6366f1;
    backdrop-filter: blur(8px);
}

.section-title-j8k5m {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.section-subtitle-w6k9s {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.grid-responsive-k8w5j,
.features-grid-k8w5j {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-enhanced-w9k5j,
.feature-card-j7k3m {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    border: var(--border-width) solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.card-enhanced-w9k5j::before,
.feature-card-j7k3m::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.card-hover-effect-j8k5m:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.card-hover-effect-j8k5m:hover::before {
    opacity: 1;
}

.feature-header-k6w8s {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-w8k5j,
.api-icon-w8k5j {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-title-k9j5m,
.api-title-k9j5m {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-desc-j6k8m,
.api-desc-j6k8m {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats-w7k3j {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stat-highlight-k8w5j {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    border: var(--border-width) solid rgba(99, 102, 241, 0.2);
}

.api-endpoints-w7k3s {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.api-endpoints-w7k3s code {
    background: var(--bg-slate);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
    color: #6366f1;
    border: var(--border-width) solid var(--border-light);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.api-endpoints-w7k3s code:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.testimonials-section-w8k5j {
    padding: 120px 0;
    position: relative;
}

.overall-rating-k8w5j {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    border: var(--border-width) solid var(--glass-border);
    max-width: 300px;
}

.rating-display-j7k3m {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.rating-stars-w9k5s {
    font-size: 1.2rem;
}

.rating-score-k6w8j {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.rating-date-j9k5m {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-showcase-k8w5j {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-main-j7k3m {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(16px);
    border: var(--border-width) solid var(--glass-border);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote-k6w8j {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote-k6w8j::before {
    content: '"';
    font-size: 4rem;
    color: rgba(99, 102, 241, 0.2);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author-k7w3j {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar-j8k5m {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.author-info-k6w8j {
    flex: 1;
}

.author-name-j9k5m {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-position-w7k3s {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.author-company-k8w5j {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-metrics-j7k3m {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-item-w9k5s {
    text-align: center;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: var(--border-width) solid rgba(16, 185, 129, 0.2);
}

.metric-value-k6w8j {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #10b981;
}

.metric-label-j8k5m {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonials-sidebar-w7k3j {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mini-testimonial-k8w5j {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    border: var(--border-width) solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.mini-testimonial-k8w5j:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mini-rating-j9k5m {
    font-size: 0.8rem;
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.mini-quote-w6k8s {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.mini-author-k7j3m {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-avatar-j8k5s {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.mini-name-k6w8s {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.mini-role-j7k3m {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

.advantage-section-w9k5j,
.data-section-w9k5j {
    padding: 120px 0;
    background: rgba(248, 250, 252, 0.8);
}

.advantage-card-w6k9j,
.data-card-w7k3j {
    text-align: center;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border: var(--border-width) solid var(--border-light);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.advantage-card-w6k9j::after,
.data-card-w7k3j::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-smooth);
}

.advantage-card-w6k9j:hover::after,
.data-card-w7k3j:hover::after {
    opacity: 0.03;
}

.advantage-icon-k8w5j,
.data-icon-k6w8s {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.advantage-title-j7k3m,
.data-number-j8k5m {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.data-number-j8k5m {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-desc-k9j5m,
.data-label-w9k5j {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advantage-highlight-w8k5j {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    display: inline-block;
}

.highlight-text-k7j3m {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6366f1;
}

.data-grid-k8w5j {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.data-growth-k7j3m {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
    border: var(--border-width) solid rgba(16, 185, 129, 0.2);
}

.cta-section-w8k5j {
    padding: 120px 0;
    background: var(--text-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-w8k5j::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
}

.cta-content-k7j3m {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title-j8k5m {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle-k6w8j {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons-w8k5j {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary-j7k3m,
.cta-secondary-w6k9s {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    border: 2px solid transparent;
}

.cta-primary-j7k3m {
    background: white;
    color: var(--text-primary);
}

.cta-primary-j7k3m:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-secondary-w6k9s {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary-w6k9s:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-promise-k8w5j {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.promise-item-j9k5m {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.promise-icon-w7k3s {
    color: #10b981;
    font-size: 0.9rem;
}

.site-footer-k8w5j {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-container-j9k5m {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main-w7k3j {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-j6k9m {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-icon-w9k5j {
    font-size: 1.8rem;
}

.footer-title-k7j3s {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-mission-j9k5m {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-column-j8k5m {
    display: flex;
    flex-direction: column;
}

.column-title-w7k3j {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 0.02em;
}

.footer-list-k7j3m {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-j9k5s {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    padding: 0.25rem 0;
}

.footer-link-j9k5s:hover {
    color: white;
    transform: translateX(4px);
}

.footer-newsletter-w6k8s {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-desc-k9j5m {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form-j8k5m {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input-w7k3j {
    flex: 1;
    padding: 0.75rem 1rem;
    border: var(--border-width) solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
}

.newsletter-input-w7k3j:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-w7k3j::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn-k9w5s {
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.newsletter-btn-k9w5s:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.newsletter-note-w8k5j {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-bottom-w8k5j {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright-j7k3m {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.copyright-main-k9w5s {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.copyright-sub-j8k5m {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link-w7k3j {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 0.25rem 0.5rem;
}

.footer-legal-link-w7k3j:hover {
    color: white;
}

.scroll-to-top-w8k5j {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top-w8k5j.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top-w8k5j:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-large);
}

.scroll-icon-k7j3m {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.contact-info-w7k3s {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: var(--border-width) solid var(--border-light);
}

.contact-info-w7k3s p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.testimonial-rating-w8k5j {
    font-size: 0.9rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-text-k9j5m {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-w7k3s {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-k8w5j {
    font-size: 1.2rem;
}

.author-info-j9k5m h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.author-info-j9k5m p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.price-info-w7k3s {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1.5rem 0;
}

.price-number-k8w5j {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period-j9k5m {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonials-showcase-k8w5j {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main-w7k3j {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container-w9k3s {
        padding: 0 1rem;
        height: 70px;
    }
    
    .navigation-menu-k8w5j {
        display: none;
    }
    
    .hero-section-w9k5j {
        padding: 120px 0 80px;
    }
    
    .section-container-w9k5j {
        padding: 0 1rem;
    }
    
    .hero-actions-w8k5j {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-stats-w8k5j {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .grid-responsive-k8w5j,
    .features-grid-k8w5j,
    .data-grid-k8w5j {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-main-w7k3j {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-copyright-j7k3m {
        text-align: center;
    }
    
    .copyright-sub-j8k5m {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-spacing-w8k5j,
    .features-section-w8k5j,
    .advantage-section-w9k5j,
    .data-section-w9k5j,
    .cta-section-w8k5j {
        padding: 80px 0;
    }
    
    .cta-buttons-w8k5j {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scroll-to-top-w8k5j {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .card-enhanced-w9k5j,
    .feature-card-j7k3m,
    .testimonial-main-j7k3m {
        padding: 1.5rem;
    }
    
    .hero-stats-w8k5j {
        grid-template-columns: 1fr;
    }
    
    .stat-item-k9j5m {
        padding: 1rem;
    }
}

.page-transition-w8k5j {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

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

.homepage-root-k8w5j {
    scroll-behavior: smooth;
}

.homepage-container-j9k5m {
    min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}