/* Sophon (SOPH) Enhanced Styles - Modern AI Theme */
/* 现代AI主题设计 */

:root {
    --sophon-primary: #6366f1;
    --sophon-secondary: #8b5cf6;
    --sophon-accent: #06d6a0;
    --sophon-gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --sophon-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --sophon-gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --sophon-dark: #1a1b23;
    --sophon-dark-secondary: #2d2e36;
    --sophon-light: #f8fafc;
    --sophon-white: #ffffff;
    --sophon-glow: rgba(99, 102, 241, 0.4);
    --sophon-text-primary: #1f2937;
    --sophon-text-secondary: #6b7280;
    --sophon-border: rgba(99, 102, 241, 0.1);
    --sophon-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --sophon-shadow-lg: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

/* 全局样式重置和优化 */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--sophon-text-primary);
    overflow-x: hidden;
}

/* Hero Section - 完全重新设计 */
.sophon-hero {
    background: var(--sophon-gradient-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 0;
}

.sophon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
    animation: heroGradient 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGradient {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.05) rotate(-1deg);
        opacity: 0.8;
    }
}

/* 添加动态粒子背景 */
.sophon-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(6, 214, 160, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    background-position: 0 0, 50px 50px, 25px 75px;
    animation: particleFloat 20s linear infinite;
    z-index: 1;
}

@keyframes particleFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-50px) translateY(-50px);
    }
}

.sophon-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sophon-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #06d6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--sophon-glow);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sophon-hero h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-weight: 400;
    opacity: 0.95;
}

.sophon-hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: #cbd5e0;
    opacity: 0.9;
}

/* Hero按钮样式优化 */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    border: 2px solid transparent;
}

.hero-cta .btn-primary {
    background: var(--sophon-gradient-accent);
    color: white;
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero统计样式 */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sophon-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* What is Sophon Section */
.what-is-sophon {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.what-is-sophon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.03) 2px, transparent 2px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px;
    z-index: 0;
}

.what-is-sophon .container {
    position: relative;
    z-index: 1;
}

.sophon-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--sophon-dark);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--sophon-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content > p {
    font-size: 1.25rem;
    color: var(--sophon-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Sophon Features Grid */
.sophon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    background: var(--sophon-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--sophon-border);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sophon-gradient-main);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sophon-shadow-lg);
    border-color: var(--sophon-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--sophon-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--sophon-text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Sophon Stats Card */
.intro-visual {
    position: sticky;
    top: 2rem;
}

.sophon-stats-card {
    background: var(--sophon-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--sophon-shadow);
    border: 1px solid var(--sophon-border);
    position: relative;
    overflow: hidden;
}

.sophon-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--sophon-gradient-main);
}

.sophon-stats-card h3 {
    font-size: 1.6rem;
    color: var(--sophon-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.stat-row:hover {
    background: rgba(99, 102, 241, 0.02);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--sophon-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-value {
    color: var(--sophon-primary);
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--sophon-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Use Cases Section */
.use-cases {
    padding: 8rem 0;
    background: var(--sophon-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sophon-gradient-main);
    opacity: 0.1;
    z-index: 0;
}

.use-cases .container {
    position: relative;
    z-index: 1;
}

.use-cases .section-title {
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sophon-gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--sophon-accent);
    box-shadow: 0 25px 50px rgba(6, 214, 160, 0.2);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
    animation: iconFloat 4s ease-in-out infinite;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.use-case-card p {
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Enhanced Exchange Cards */
.exchanges-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.exchanges-section .section-title {
    background: var(--sophon-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.exchanges-section .section-subtitle {
    text-align: center;
    color: var(--sophon-text-secondary);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.exchange-card {
    background: var(--sophon-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.exchange-card.featured {
    border-color: var(--sophon-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(139, 92, 246, 0.03));
    transform: scale(1.05);
}

.exchange-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--sophon-gradient-main);
}

.exchange-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sophon-shadow-lg);
}

.exchange-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Step Guide Enhanced */
.step-guide {
    padding: 8rem 0;
    background: var(--sophon-light);
}

.step-guide .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--sophon-dark);
}

.step-card {
    background: var(--sophon-white);
    margin-bottom: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--sophon-border);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sophon-shadow-lg);
}

/* Investment Section */
.investment-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.investment-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--sophon-dark);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.investment-card {
    background: var(--sophon-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid;
    position: relative;
}

.investment-card.positive {
    border-left-color: #10b981;
}

.investment-card.neutral {
    border-left-color: #f59e0b;
}

.investment-card.strategy {
    border-left-color: var(--sophon-primary);
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sophon-shadow-lg);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--sophon-white);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--sophon-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: var(--sophon-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--sophon-border);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--sophon-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--sophon-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--sophon-gradient-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    min-width: 220px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--sophon-primary);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* 响应式设计 - 移动端优化 */
@media (max-width: 1024px) {
    .sophon-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-visual {
        position: static;
    }
    
    .sophon-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .sophon-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .sophon-hero .container {
        padding: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .what-is-sophon,
    .use-cases,
    .exchanges-section,
    .step-guide,
    .investment-section,
    .faq-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .feature-item,
    .use-case-card,
    .investment-card,
    .exchange-card {
        padding: 2rem;
    }
    
    .sophon-stats-card {
        padding: 2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exchanges-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .sophon-hero {
        min-height: 70vh;
    }
    
    .sophon-hero .container {
        padding: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .feature-item,
    .use-case-card,
    .investment-card,
    .exchange-card,
    .faq-item,
    .step-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sophon-stats-card {
        padding: 1.5rem;
    }
    
    .stat-row {
        padding: 1rem 0;
    }
    
    .use-cases-grid,
    .exchanges-grid,
    .investment-grid,
    .faq-grid {
        gap: 1.5rem;
    }
    
    .what-is-sophon,
    .use-cases,
    .exchanges-section,
    .step-guide,
    .investment-section,
    .faq-section,
    .cta-section {
        padding: 3rem 0;
    }
}

/* 超小屏设备优化 */
@media (max-width: 360px) {
    .feature-item,
    .use-case-card,
    .investment-card,
    .exchange-card,
    .faq-item {
        padding: 1rem;
    }
    
    .sophon-stats-card {
        padding: 1rem;
    }
    
    .hero-cta .btn,
    .cta-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* 打印样式 */
@media print {
    .sophon-hero {
        background: var(--sophon-light);
        color: var(--sophon-dark);
        min-height: auto;
        padding: 2rem 0;
    }
    
    .sophon-hero::before,
    .sophon-hero::after,
    .what-is-sophon::before,
    .use-cases::before,
    .cta-section::before {
        display: none;
    }
    
    .use-cases {
        background: white;
        color: var(--sophon-dark);
    }
    
    .cta-section {
        background: var(--sophon-light);
        color: var(--sophon-dark);
    }
    
    .hero-cta,
    .cta-buttons {
        display: none;
    }
}

/* 高对比度模式 */
@media (prefers-contrast: high) {
    .sophon-hero {
        background: #000;
        color: #fff;
    }
    
    .feature-item,
    .use-case-card,
    .investment-card,
    .sophon-stats-card,
    .exchange-card,
    .faq-item {
        border: 3px solid #000;
        background: #fff;
        color: #000;
    }
    
    .use-cases {
        background: #000;
        color: #fff;
    }
    
    .btn {
        border-width: 3px;
    }
}

/* 减少动画模式 */
@media (prefers-reduced-motion: reduce) {
    .feature-icon,
    .use-case-icon {
        animation: none;
    }
    
    .sophon-hero::before,
    .sophon-hero::after {
        animation: none;
    }
    
    .feature-item:hover,
    .use-case-card:hover,
    .investment-card:hover,
    .exchange-card:hover,
    .faq-item:hover,
    .step-card:hover {
        transform: none;
    }
    
    .hero-cta .btn:hover,
    .cta-buttons .btn:hover {
        transform: none;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
} 