﻿


:root {
    
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-card: #1c2b35;
    --bg-elevated: #252d3d;
    --bg-input: #131b2e;
    
    
    --accent-primary: #f87016;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #ec4899;
    --accent-success: #10b981;
    --accent-info: #06b6d4;
    
    
    --gradient-primary: linear-gradient(135deg, #f67216 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #6167f3 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
    --gradient-card: linear-gradient(145deg, #232b3e 0%, #1a2234 100%);
    
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    
    --shadow-raised: 8px 8px 20px rgba(0, 0, 0, 0.4), 
                     -4px -4px 12px rgba(252, 255, 255, 0.03);
    --shadow-raised-lg: 12px 12px 30px rgba(0, 0, 0, 0.5), 
                        -6px -6px 20px rgba(255, 255, 255, 0.03);
    --shadow-inset: inset 4px 4px 10px rgba(0, 0, 0, 0.4), 
                    inset -4px -4px 10px rgba(255, 255, 255, 0.02);
    --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(141, 92, 244, 0.3);
    
    
    --container-width: 1200px;
    --header-height: 83px;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-tertiary);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.ffc0-container-zf3f {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}


.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.ffc0-header-t153 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 9999;
    transition: all var(--transition-normal);
}

.ffc0-header-t153.scrolled {
    background: rgba(22, 33, 62, 0.98);
    box-shadow: var(--shadow-raised);
}

.ffc0-header-container-x102 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.ffc0-logo-nbdf {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ffc0-logo-nbdf img {
    height: 43px;
    width: auto;
}

.logo-slogan {
    width: 140px;
    height: 45px;
    background-image: url("images/logo_tips.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: logoGlow 2.5s infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 8px rgba(250, 117, 20, 0.4)); }
}


.ffc0-main-nav-i8aa {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ffc0-nav-list-a8a2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ffc0-nav-list-a8a2 li a {
    display: block;
    padding: 14px 24px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    background: transparent;
    transition: all var(--transition-normal);
}

.ffc0-nav-list-a8a2 li a:hover {
    color: var(--text-light);
    background: var(--bg-card);
    box-shadow: var(--shadow-raised);
}


.ffc0-header-actions-ue2d {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.ffc0-btn-contact-s4ef {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.ffc0-btn-contact-s4ef:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-lg), 0 0 40px rgba(249, 115, 22, 0.4);
    color: var(--text-light);
}


.ffc0-menu-toggle-vf29 {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-raised);
}

.ffc0-menu-toggle-vf29 span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.ffc0-menu-toggle-vf29.ffc0-active-w0a1 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ffc0-menu-toggle-vf29.ffc0-active-w0a1 span:nth-child(2) {
    opacity: 0;
}

.ffc0-menu-toggle-vf29.ffc0-active-w0a1 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.ffc0-btn-aa2e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.ffc0-btn-primary-h142 {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.ffc0-btn-primary-h142:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-lg), 0 0 40px rgba(249, 118, 23, 0.5);
    color: var(--text-light);
}

.ffc0-btn-primary-h142:active {
    transform: translateY(0);
    box-shadow: var(--shadow-inset);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-raised);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-raised), 0 0 20px rgba(249, 115, 22, 0.2);
}

.ffc0-btn-large-nd3d {
    padding: 18px 40px;
    font-size: 16px;
}


.ffc0-hero-v19a {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 117px 0 80px;
    background: var(--gradient-dark);
    overflow: hidden;
}


.ffc0-hero-v19a::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 602px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 118, 24, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.ffc0-hero-v19a::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.ffc0-hero-v19a .ffc0-container-zf3f {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ffc0-hero-content-n3f8 {
    max-width: 560px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-raised);
}

.ffc0-hero-title-d130 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 27px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.ffc0-hero-buttons-o225 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 27px 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised-lg);
    animation: cardFloat 6s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.card-icon {
    width: 64px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
}

.card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card-1 { top: 5%; left: 5%; }
.hero-card-2 { top: 35%; right: 0; animation-delay: -2s; }
.hero-card-3 { bottom: 10%; left: 15%; animation-delay: -4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


.ffc0-section-d36d {
    padding: 100px 0;
    position: relative;
}

.ffc0-section-header-v591 {
    text-align: center;
    margin-bottom: 59px;
}

.ffc0-section-badge-ka09 {
    display: inline-flex;
    align-items: center;


.ffc0-features-section-bba6 {
    background: var(--bg-primary);
}

.ffc0-features-grid-uc6e {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ffc0-feature-card-b1f1 {
    padding: 36px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.ffc0-feature-card-b1f1:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.ffc0-feature-icon-pd31 {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-normal);
}

.ffc0-feature-icon-pd31 i {
    font-size: 35px;
    color: var(--accent-primary);
}

.ffc0-feature-card-b1f1:hover .ffc0-feature-icon-pd31 {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transform: scale(1.1);
}

.ffc0-feature-card-b1f1:hover .ffc0-feature-icon-pd31 i {
    color: var(--text-light);
}

.ffc0-feature-card-b1f1 h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ffc0-feature-card-b1f1 p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
    gap: 8px;
    padding: 9px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-raised);
}

.ffc0-section-title-vf81 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.ffc0-section-desc-rfff {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.section-services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.service-icon {
    width: 82px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-normal);
}

.service-icon img {
    width: 47px;
    height: 45px;
    object-fit: contain;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.section-stats {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.ffc0-stats-grid-e41e {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 35px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow-purple);
}

.stat-icon {
    width: 100px;
    height: 103px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ffc0-stat-value-se3f {
    font-size: 39px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ffc0-stat-label-v75d {
    font-size: 16px;
    color: var(--text-secondary);
}


.section-news {
    background: var(--bg-primary);
}

.ffc0-news-grid-t30c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.news-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-thumb img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 8px 14px;
    background: var(--bg-card);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
}

.news-body {
    padding: 24px;
}

.news-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-title a {
    color: var(--text-primary);
}

.news-title a:hover {
    color: var(--accent-primary);
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.news-more svg {
    transition: transform var(--transition-fast);
}

.news-more:hover svg {
    transform: translateX(4px);
}


.section-partners {
    background: var(--bg-dark);
    padding: 80px 0;
}

.ffc0-partners-grid-k48b {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
}

.ffc0-partner-item-a0cf {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 103px;
    padding: 17px;
    background: var(--bg-card);
    border: 2px solid rgba(250, 118, 20, 0.2);
    border-radius: 20px;
    transition: all var(--transition-normal);
    box-shadow: 5px 5px 15px rgba(1, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.05);
}

.ffc0-partner-item-a0cf:hover {
    border-color: #f97316;
    box-shadow: 5px 5px 20px rgba(249, 115, 22, 0.4), -5px -5px 20px rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.ffc0-partner-item-a0cf img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.ffc0-partner-item-a0cf:hover img {
    opacity: 1;
    filter: brightness(1.4);
}


.section-cta {
    position: relative;
    padding: 119px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 499px;
    height: 502px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.ffc0-cta-content-m847 {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 702px;
    margin: 0 auto;
    padding: 60px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-raised-lg);
}

.ffc0-cta-content-m847 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ffc0-cta-content-m847 p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.ffc0-cta-buttons-b926 {
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.cta-feature {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-success);
}


.ffc0-footer-db7d {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 83px;
}

.ffc0-footer-grid-i2f6 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.ffc0-footer-brand-s6c1 {
    max-width: 318px;
}

.ffc0-footer-logo-r1f5 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ffc0-footer-logo-r1f5 img {
    height: 40px;
}

.ffc0-footer-logo-r1f5 span {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
}

.ffc0-footer-brand-s6c1 p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 19px;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.ffc0-footer-links-sae2 h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.ffc0-footer-links-sae2 ul li {
    margin-bottom: 14px;
}

.ffc0-footer-links-sae2 ul li a,
.ffc0-footer-links-sae2 ul li span {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.ffc0-footer-links-sae2 ul li a:hover {
    color: var(--accent-primary);
}

.ffc0-footer-bottom-l5d1 {
    padding: 21px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.ffc0-footer-bottom-l5d1 p {
    font-size: 12px;
    color: var(--text-muted);
}


.page-banner {
    position: relative;
    padding: 140px 0 60px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 397px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.page-banner .ffc0-container-zf3f {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb .sep {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

.ffc0-page-title-o2cf {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ffc0-page-desc-k4bf {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}


.section-list {
    background: var(--bg-primary);
    padding: 60px 0 100px;
}

.list-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.list-main {
    min-width: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.article-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.article-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-input);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-thumb img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 9px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
}

.article-content {
    padding: 24px;
}

.article-meta {
    margin-bottom: 9px;
}

.meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-title a {
    color: var(--text-primary);
}

.article-title a:hover {
    color: var(--accent-primary);
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.article-link svg {
    transition: transform var(--transition-fast);
}

.article-link:hover svg {
    transform: translateX(4px);
}


.ffc0-pagination-y00e {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 41px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-fast);
}

.page-num:hover,
.page-num.ffc0-active-w0a1 {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.list-sidebar,
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 31px;
    box-shadow: var(--shadow-raised);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.title-icon {
    font-size: 19px;
}


.hot-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hot-item {
    transition: transform var(--transition-fast);
}

.hot-item:hover {
    transform: translateX(5px);
}

.hot-link {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hot-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.hot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-info {
    flex: 1;
    min-width: 0;
}

.hot-info h4 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.hot-date {
    font-size: 13px;
    color: var(--text-muted);
}


.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 13px;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.tag-item:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.widget-contact {
    background: var(--gradient-primary);
    border: none;
    text-align: center;
}

.widget-contact .widget-title {
    border-bottom-color: rgba(252, 255, 252, 0.2);
    justify-content: center;
    color: var(--text-light);
}

.widget-contact .title-icon {
    color: var(--text-light);
}

.widget-contact p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 50px;
    margin-top: 16px;
    transition: all var(--transition-fast);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    transform: translateY(-2px);
}


.section-article {
    background: var(--bg-primary);
    padding: 40px 0 100px;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-detail {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 49px;
    box-shadow: var(--shadow-raised);
}

.article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.article-detail .article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-detail .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.meta-item svg {
    color: var(--text-muted);
}

.meta-item a {
    color: var(--accent-primary);
}


.article-summary {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-input);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 32px;
    box-shadow: var(--shadow-inset);
}

.summary-icon {
    font-size: 27px;
    flex-shrink: 0;
}

.summary-content {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.summary-content strong {
    color: var(--text-primary);
}


.ffc0-article-body-i803 {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-primary);
}

.ffc0-article-body-i803 h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
    color: var(--text-primary);
}

.ffc0-article-body-i803 h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: var(--text-primary);
}

.ffc0-article-body-i803 h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

.ffc0-article-body-i803 p {
    margin: 18px 0;
    color: var(--text-secondary);
}

.ffc0-article-body-i803 img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--radius-sm);
    margin: 28px auto !important;
    display: block !important;
    box-shadow: var(--shadow-raised);
}

.ffc0-article-body-i803 p img,
.ffc0-detail-content-zbb7 p img {
    margin-left: auto !important;
    margin-right: auto !important;
}

.ffc0-article-body-i803 p:has(img),
.ffc0-detail-content-zbb7 p:has(img) {
    text-align: center;
}

.ffc0-article-body-i803 ul,
.ffc0-article-body-i803 ol {
    margin: 15px 0;
    padding-left: 31px;
}

.ffc0-article-body-i803 li {
    margin: 10px 0;
    color: var(--text-secondary);
}

.ffc0-article-body-i803 ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 8px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.ffc0-article-body-i803 blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    background: var(--bg-input);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
    box-shadow: var(--shadow-inset);
}

.ffc0-article-body-i803 strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.ffc0-article-body-i803 a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.ffc0-article-body-i803 table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.ffc0-article-body-i803 table th {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 13px 18px;
    text-align: left;
    font-weight: 600;
}

.ffc0-article-body-i803 table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.ffc0-article-body-i803 table tr:hover {
    background: var(--bg-elevated);
}


.article-footer {
    margin-top: 48px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.article-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-raised);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.tags-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.tag-link {
    display: inline-block;
    padding: 11px 18px;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 13px;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.related-articles {
    margin-top: 47px;
}

.ffc0-related-title-n755 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 29px;
    color: var(--text-primary);
}

.ffc0-related-grid-z1d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-card {
    display: flex;
    gap: 16px;
    padding: 13px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 77px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.related-date {
    font-size: 13px;
    color: var(--text-muted);
}


.widget-author {
    text-align: center;
}

.author-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-primary);
    padding: 4px;
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: var(--bg-card);
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 9px;
    color: var(--text-primary);
}

.author-bio {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.author-follow {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transition: all var(--transition-fast);
}

.author-follow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised-lg), 0 0 30px rgba(247, 118, 21, 0.4);
    color: var(--text-light);
}


@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    
    .ffc0-features-grid-uc6e {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    
    .ffc0-partners-grid-k48b {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .ffc0-stats-grid-e41e {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ffc0-news-grid-t30c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ffc0-hero-v19a .ffc0-container-zf3f {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ffc0-hero-content-n3f8 {
        max-width: 100%;
    }
    
    .ffc0-hero-buttons-o225 {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .list-wrapper,
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .list-sidebar,
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
    
    .ffc0-footer-grid-i2f6 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .ffc0-partners-grid-k48b {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ffc0-partner-item-a0cf {
        height: 83px;
        padding: 16px;
    }
    
    .ffc0-container-zf3f {
        padding: 0 16px;
    }
    
    .logo-slogan {
        width: 98px;
        height: 32px;
    }
    
    
    .ffc0-main-nav-i8aa {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 23px;
        box-shadow: var(--shadow-raised-lg);
        z-index: 9998;
    }
    
    .ffc0-main-nav-i8aa.ffc0-active-w0a1 {
        display: block;
    }
    
    .ffc0-nav-list-a8a2 {
        flex-direction: column;
        gap: 0;
    }
    
    .ffc0-nav-list-a8a2 li {
        width: 100%;
    }
    
    .ffc0-nav-list-a8a2 li a {
        display: block;
        padding: 13px 20px;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .ffc0-nav-list-a8a2 li:last-child a {
        border-bottom: none;
    }
    
    .ffc0-btn-contact-s4ef {
        display: none;
    }
    
    .ffc0-menu-toggle-vf29 {
        display: flex !important;
    }
    
    
    .ffc0-hero-v19a {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .ffc0-hero-title-d130 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .ffc0-hero-buttons-o225 {
        flex-direction: column;
        align-items: stretch;
    }
    
    
    .ffc0-section-d36d {
        padding: 60px 0;
    }
    
    .ffc0-section-title-vf81 {
        font-size: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    
    
    .ffc0-features-grid-uc6e {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    }
    
    .ffc0-stats-grid-e41e {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 23px 16px;
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
    }
    
    .ffc0-stat-value-se3f {
        font-size: 33px;
    }
    
    .ffc0-news-grid-t30c {
        grid-template-columns: 1fr;
    }
    
    .ffc0-cta-content-m847 {
        padding: 37px 24px;
    }
    
    .ffc0-cta-content-m847 h2 {
        font-size: 24px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    
    .ffc0-page-title-o2cf {
        font-size: 26px;
    }
    
    
    .section-list {
        padding: 30px 0 60px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .list-sidebar {
        display: none;
    }
    
    
    .ffc0-pagination-y00e {
        gap: 6px;
        padding: 0 8px;
    }
    
    .page-num {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-detail {
        padding: 26px 20px;
    }
    
    .article-detail .article-title {
        font-size: 24px;
    }
    
    .article-detail .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .ffc0-related-grid-z1d2 {
        grid-template-columns: 1fr;
    }
    
    
    .ffc0-footer-grid-i2f6 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ffc0-footer-brand-s6c1 {
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    .ffc0-hero-title-d130 {
        font-size: 28px;
    }
    
    .ffc0-section-title-vf81 {
        font-size: 22px;
    }
    
    .article-detail .article-title {
        font-size: 23px;
    }
    
    .ffc0-page-title-o2cf {
        font-size: 24px;
    }
    
    .ffc0-cta-content-m847 h2 {
        font-size: 22px;
    }
    
    .ffc0-stats-grid-e41e {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .ffc0-stat-value-se3f {
        font-size: 28px;
    }
}

/* === disguise mutation rules === */
[class*="ffc0-ghost-"]{display:none!important;position:absolute;width:0;height:0;overflow:hidden;clip:rect(0,0,0,0);border:0;padding:0;margin:0}
[class*="ffc0-wrapper-"]{display:contents}
/* === end mutation rules === */


/* ========================================
   未来主义餐饮风格覆盖样式
   ======================================== */

/* === 设计令牌（Design Tokens）=== */
:root {
  --color-primary: #00D4FF;
  --color-primary-hover: #00AACC;
  --color-accent: #7B61FF;
  --color-accent-hover: #5A3FD6;
  --bg-page: #070B14;
  --bg-surface: #0D1526;
  --bg-surface-raised: #111E35;
  --border-subtle: rgba(0, 212, 255, 0.15);
  --border-glow: rgba(0, 212, 255, 0.45);
  --text-main: #E8F4FF;
  --text-secondary: #7A9BBF;
  --text-muted: #3D5470;
  --text-inverse: #070B14;
  --metal-light: #C8D8E8;
  --metal-mid: #4A6080;
  --metal-dark: #1A2A3A;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
  --font-family: "Rajdhani", "Orbitron", "Inter", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 20px;
  --font-size-h2: 36px;
  --font-size-hero: 64px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --letter-spacing-wide: 0.12em;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 0 24px rgba(0, 212, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 0 40px rgba(0, 212, 255, 0.25), 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow-primary: 0 0 20px rgba(0, 212, 255, 0.6);
  --shadow-glow-accent: 0 0 20px rgba(123, 97, 255, 0.6);
  --gradient-hero: linear-gradient(135deg, #070B14 0%, #0D1E3A 50%, #070B14 100%);
  --gradient-metal: linear-gradient(180deg, #C8D8E8 0%, #4A6080 50%, #1A2A3A 100%);
  --gradient-primary: linear-gradient(90deg, #00D4FF 0%, #7B61FF 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(0,212,255,0.4), rgba(123,97,255,0.1));
}

body {
  font-family: var(--font-family);
  background: var(--bg-page);
  color: var(--text-main);
}

.ffc0-header-t153 {
  background: rgba(7, 11, 20, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}
.ffc0-header-t153.scrolled {
  background: rgba(13, 21, 38, 0.98);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}
.ffc0-logo-text-b944 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ffc0-nav-list-a8a2 li a {
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.ffc0-nav-list-a8a2 li a:hover {
  color: var(--color-primary);
  border-color: var(--border-subtle);
  box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.1);
}
.ffc0-btn-contact-s4ef {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-primary);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--text-inverse);
}
.ffc0-btn-contact-s4ef:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
  transform: translateY(-2px);
  color: var(--text-inverse);
}

/* Hero */
.ai-hero-future {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.ai-hero-grid-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.3;
}
.ai-hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.ai-glow-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.ai-glow-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.ai-hero-badge {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  color: var(--color-primary);
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.ai-badge-dot {
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: ai-pulse 2s infinite;
}
@keyframes ai-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}
.ai-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: var(--font-size-hero);
  font-weight: 900;
  letter-spacing: var(--letter-spacing-wide);
  line-height: 1.1;
}
.ai-gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-hero-desc {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  line-height: 1.8;
}
.ffc0-hero-v19a .ffc0-container-zf3f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ai-hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-hero-dish-frame {
  position: relative;
  width: 380px; height: 380px;
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
}
.ai-hero-dish-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) hue-rotate(10deg) brightness(0.9);
}
.ai-hero-dish-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 97, 255, 0.1));
  pointer-events: none;
}
.ai-floating-card {
  position: absolute;
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: ai-cardFloat 4s ease-in-out infinite;
}
.ai-float-card-1 { top: 10%; left: 0; }
.ai-float-card-2 { bottom: 15%; right: 0; animation-delay: -2s; }
@keyframes ai-cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.ai-float-card-icon {
  width: 50px; height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow-primary);
}
.ai-float-card-val {
  display: block;
  font-size: 24px; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Orbitron", sans-serif;
}
.ai-float-card-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Buttons */
.ai-btn-primary {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  box-shadow: var(--shadow-glow-primary);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.2s ease;
}
.ai-btn-primary:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
  transform: translateY(-2px);
  color: var(--text-inverse);
}
.ffc0-btn-primary-h142 {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  border: none;
  box-shadow: var(--shadow-glow-primary);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  font-weight: 700;
}
.ffc0-btn-primary-h142:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
  transform: translateY(-2px);
  color: var(--text-inverse);
}

/* Section */
.ai-section-header { text-align: center; }
.ai-section-badge {
  display: inline-flex;
  padding: 9px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
  margin-bottom: 15px;
}
.ffc0-section-title-vf81 {
  font-family: "Orbitron", sans-serif;
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--text-main);
}
.ffc0-section-desc-rfff {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
}
.ffc0-section-badge-ka09 {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
  padding: 9px 24px;
}

/* Features */
.ai-section-features { background: var(--bg-page); }
.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}
.ai-feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.ai-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
  background: var(--bg-surface-raised);
}
.ai-feature-icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--spacing-sm);
  background: linear-gradient(135deg, var(--bg-surface-raised), var(--metal-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.ai-feature-icon i { font-size: 36px; color: var(--color-primary); }
.ai-feature-card:hover .ai-feature-icon {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-primary);
  transform: scale(1.1);
}
.ai-feature-card:hover .ai-feature-icon i { color: var(--text-inverse); }
.ai-feature-card h3 {
  font-size: 18px; font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-main);
}
.ai-feature-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Menu */
.ai-menu-section {
  background: var(--bg-surface);
  padding: var(--spacing-xl) 0;
}
.ai-menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}
.ai-menu-tab {
  padding: 12px 28px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}
.ai-menu-tab:hover,
.ai-tab-active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow-primary);
}
.ai-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.ai-menu-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.ai-menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
}
.ai-menu-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ai-menu-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) hue-rotate(10deg);
  transition: transform 0.5s ease;
}
.ai-menu-card:hover .ai-menu-img-wrap img { transform: scale(1.1); }
.ai-menu-img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 11, 20, 0.8) 100%);
  pointer-events: none;
}
.ai-menu-tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 6px 14px;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  font-size: 12px; font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-primary);
}
.ai-menu-info { padding: var(--spacing-md); }
.ai-menu-name {
  font-size: 20px; font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-main);
}
.ai-menu-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}
.ai-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-menu-price {
  font-size: 24px; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Orbitron", sans-serif;
}
.ai-menu-badge {
  padding: 4px 12px;
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 11px; font-weight: 600;
  border-radius: var(--radius-pill);
}

/* Brand Story */
.ai-brand-section {
  background: var(--bg-page);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}
.ai-brand-skew-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-surface) 0%, transparent 100%);
  transform: skewY(-3deg);
  pointer-events: none;
  opacity: 0.3;
}
.ai-brand-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.ai-brand-visual { position: relative; }
.ai-brand-img-frame {
  position: relative;
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}
.ai-brand-img-frame img {
  width: 100%; height: auto;
  display: block;
  filter: saturate(0.8) hue-rotate(10deg);
}
.ai-brand-img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 97, 255, 0.05));
  pointer-events: none;
}
.ai-brand-metal-deco {
  position: absolute;
  background: var(--gradient-metal);
  opacity: 0.5;
}
.ai-metal-deco-1 {
  width: 4px; height: 100px;
  top: -20px; left: -20px;
  transform: rotate(45deg);
}
.ai-metal-deco-2 {
  width: 100px; height: 4px;
  bottom: -20px; right: -20px;
  transform: rotate(45deg);
}
.ai-brand-title {
  font-family: "Orbitron", sans-serif;
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--spacing-md);
  color: var(--text-main);
}
.ai-brand-text {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}
.ai-text-highlight { color: var(--color-primary); font-weight: 600; }
.ai-brand-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}
.ai-brand-stat {
  text-align: center;
  padding: var(--spacing-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.ai-brand-stat-num {
  display: block;
  font-size: 32px; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Orbitron", sans-serif;
  margin-bottom: var(--spacing-xs);
}
.ai-brand-stat-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Stats */
.ai-stats-section { background: var(--bg-surface); }
.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}
.ai-stat-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
}
.ai-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
}
.ai-stat-icon-ring {
  width: 80px; height: 80px;
  margin: 0 auto var(--spacing-sm);
  border: 3px solid var(--border-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--color-primary);
  box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}
.ai-stat-card:hover .ai-stat-icon-ring {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-primary);
}
.ai-stat-card:hover .ai-stat-icon-ring i { color: var(--text-inverse); }
.ai-stat-value {
  font-size: 48px; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Orbitron", sans-serif;
  margin-bottom: var(--spacing-xs);
}
.ai-stat-label {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

/* News */
.ai-news-section { background: var(--bg-page); }
.ai-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.ai-news-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.ai-news-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
}
.ai-news-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ai-news-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) hue-rotate(10deg);
  transition: transform 0.5s ease;
}
.ai-news-card:hover .ai-news-img-wrap img { transform: scale(1.1); }
.ai-news-img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 11, 20, 0.7) 100%);
  pointer-events: none;
}
.ai-news-date {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 14px;
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12px; font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.ai-news-content { padding: var(--spacing-md); }
.ai-news-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  font-size: 11px; font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}
.ai-news-title {
  font-size: 18px; font-weight: 600;
  margin-bottom: var(--spacing-xs);
  line-height: 1.5;
}
.ai-news-title a { color: var(--text-main); transition: color 0.3s ease; }
.ai-news-title a:hover { color: var(--color-primary); }
.ai-news-excerpt {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}
.ai-news-meta {
  display: flex;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Reviews */
.ai-reviews-section {
  background: var(--bg-surface);
  padding: var(--spacing-xl) 0;
}
.ai-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.ai-review-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.ai-review-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
}
.ai-review-quote {
  font-size: 80px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  line-height: 0.5;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  display: block;
}
.ai-review-text {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}
.ai-review-author {
  display: flex; align-items: center;
  gap: var(--spacing-sm);
}
.ai-review-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-glow);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}
.ai-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ai-review-info { flex: 1; }
.ai-review-name {
  display: block;
  font-size: var(--font-size-base); font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}
.ai-review-role {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}
.ai-review-stars {
  display: flex; gap: 4px;
  font-size: 14px;
  color: #FFB800;
  margin-left: auto;
}

/* Partners */
.ai-partners-section { background: var(--bg-page); }
.ai-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-md);
}
.ai-partner-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm);
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.ai-partner-item:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.ai-partner-item img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.ai-partner-item:hover img { opacity: 1; filter: brightness(1.4); }

/* CTA */
.ai-cta-section {
  background: var(--bg-surface);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}
.ai-cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  pointer-events: none;
}
.ai-cta-content {
  position: relative; z-index: 1;
  background: var(--bg-page);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-hover);
  clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
  max-width: 760px;
  margin: 0 auto;
}
.ai-cta-deco-line {
  width: 100px; height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-primary);
}
.ai-cta-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--spacing-sm);
  color: var(--text-main);
}
.ai-cta-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}
.ai-cta-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
}
.ai-cta-features span {
  display: flex; align-items: center;
  gap: var(--spacing-xs);
}

/* Footer */
.ai-footer {
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.ai-footer-top-deco {
  width: 100%; height: 2px;
  background: var(--gradient-primary);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}
.ai-footer-logo span {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-footer-brand p { color: var(--text-secondary); line-height: 1.8; }
.ai-footer-social {
  display: flex; gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}
.ai-social-link {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 18px;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.ai-social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-3px);
}
.ai-footer-links h4 {
  font-size: 16px; font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.05em;
}
.ai-footer-links ul li { margin-bottom: 10px; }
.ai-footer-links ul li a,
.ai-footer-links ul li span {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}
.ai-footer-links ul li a:hover { color: var(--color-primary); }
.ai-footer-bottom {
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.ai-footer-bottom p { font-size: 13px; color: var(--text-muted); }
.ai-back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-inverse);
  font-size: 20px;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  box-shadow: var(--shadow-glow-primary);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
.ai-back-top.show { opacity: 1; visibility: visible; }
.ai-back-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .ai-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-brand-layout { grid-template-columns: 1fr; }
  .ai-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-news-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-reviews-grid { grid-template-columns: 1fr; }
  .ai-partners-grid { grid-template-columns: repeat(3, 1fr); }
  .ai-hero-visual { display: none; }
  .ffc0-hero-v19a .ffc0-container-zf3f { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --font-size-hero: 36px;
    --font-size-h2: 28px;
    --spacing-xl: 48px;
    --spacing-lg: 24px;
  }
  .ai-features-grid,
  .ai-menu-grid,
  .ai-stats-grid,
  .ai-news-grid { grid-template-columns: 1fr; gap: var(--spacing-sm); }
  .ai-menu-tabs { flex-wrap: wrap; }
  .ai-brand-stats-row { grid-template-columns: 1fr; }
  .ai-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-cta-features { flex-direction: column; gap: var(--spacing-sm); }
}

@media (max-width: 480px) {
  :root {
    --font-size-hero: 32px;
    --font-size-h2: 24px;
  }
  .ai-feature-card, .ai-menu-card, .ai-stat-card,
  .ai-news-card, .ai-review-card { clip-path: none; }
  .ai-btn-primary { clip-path: none; }
}
