/* SPINX-INSPIRED DESIGN - Clean, Minimal, Professional */

:root {
    --background: #ffffff;
    --dark-bg: #0a0a0a;
    --foreground: #0a0a0a;
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #64748b;
    --accent: #84cc16;
    --tron: #ff0844;
    --bsc: #f0b90b;
    --eth: #627eea;
    --success: #10b981;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* CLEAN MINIMAL HEADER - SPINX Style */
.header {
    background: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 32px;
    color: var(--primary);
}

/* MENU TOGGLE BUTTON - SPINX Style */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-toggle:hover {
    background: #9adb1e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle i {
    font-size: 16px;
}

/* HEADER MENU */
.header-menu {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-menu.active {
    max-height: 600px;
    border-top: 3px solid #4a5568;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    color: var(--foreground);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    background: #f8fafc;
    color: #4a5568;
    border-left-color: #4a5568;
}

.menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.menu-item-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    font-weight: 600;
    margin: 8px 16px;
    border-radius: 10px;
    border-left: none !important;
}

.menu-item-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateX(4px);
}

.menu-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 12px 32px;
}

.menu-section-title {
    padding: 12px 32px 8px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CLEAN HERO - SPINX Style with Underline */
.hero {
    background: #ffffff;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #0a0a0a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.3px;
}

.hero-cta-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-cta-btn i {
    margin-right: 8px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #0a0a0a;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* CLEAN FILTERS - SPINX Style */
.filters {
    background: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #f0f0f0;
}

.filters .container {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 32px;
    background: #ffffff;
    color: #0a0a0a;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.filter-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background: #0a0a0a;
    color: #ffffff;
    border-color: #0a0a0a;
    box-shadow: var(--shadow-md);
}

/* COLORFUL SEARCH */
.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 16px 52px 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
    color: var(--foreground);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.search-box input::placeholder {
    color: #94a3b8;
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 18px;
}

/* PRODUCTS SECTION - SPINX Style */
.products {
    padding: 100px 40px;
    background: #fafafa;
}

.products .container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

/* CLEAN PRODUCT CARDS with Browser Mockup */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.product-card:hover {
    border-color: #d1d5db;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Browser Mockup for Product Image */
.product-image, .product-video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.product-card:hover .product-image,
.product-card:hover .product-video {
    transform: scale(1.02);
}

.product-video {
    background: #f3f4f6;
}

/* Product Content Area */
.product-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    font-size: 14px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li i {
    color: var(--success);
    font-size: 14px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 2px solid #f1f5f9;
}

.product-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.product-card[data-blockchain="tron"] .product-badge {
    background: var(--tron);
    box-shadow: 0 2px 8px rgba(255, 8, 68, 0.3);
}

.product-card[data-blockchain="bsc"] .product-badge {
    background: var(--bsc);
    color: var(--foreground);
    box-shadow: 0 2px 8px rgba(240, 185, 11, 0.3);
}

.product-card[data-blockchain="eth"] .product-badge {
    background: var(--eth);
    box-shadow: 0 2px 8px rgba(98, 126, 234, 0.3);
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.5px;
    line-height: 1.3;
    flex: 1;
}

.product-description {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.6;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* WHATSAPP BUTTON - GREEN */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 88vh;
    overflow-y: auto;
    margin: auto;
    padding: 0;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e5e7eb;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f3f4f6;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #0a0a0a;
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0a0a0a;
    letter-spacing: -1px;
    line-height: 1.2;
    padding: 40px 40px 0 40px;
}

.modal-body p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 0 40px;
}

/* MODAL SECTIONS - SPINX Style */
.modal-section {
    padding: 0 40px 32px 40px;
}

.modal-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.modal-section h3 i {
    font-size: 20px;
    color: var(--primary);
}

/* Modal Features List */
.modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
}

.modal-features li i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Modal Images Grid */
.modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.modal-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Modal Video */
.modal-video {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
}

/* Modal Actions */
.modal-actions {
    padding: 24px 40px 40px 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.modal-btn {
    flex: 1;
    min-width: 200px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.modal-btn-success {
    background: #10b981;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.modal-btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modal-btn-demo {
    background: #ffffff;
    color: #0a0a0a;
    border: 2px solid #e5e7eb;
}

.modal-btn-demo:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE */
/* MOBILE OPTIMIZED - SPINX Style */
@media (max-width: 768px) {
    .header-container {
        padding: 20px 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo i {
        font-size: 28px;
    }
    
    .menu-toggle {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 60px 20px 60px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .hero-title::after {
        height: 3px;
        bottom: -6px;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 10px;
    }

    .hero-stats {
        gap: 50px;
        margin-top: 60px;
        padding-top: 50px;
    }

    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 13px;
    }

    .filters {
        padding: 40px 20px;
    }

    .products {
        padding: 60px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content {
        padding: 0;
        border-radius: 12px;
        max-height: 92vh;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-body h2 {
        font-size: 32px;
        padding: 32px 24px 0 24px;
    }
    
    .modal-body p {
        padding: 0 24px;
    }
    
    .modal-section {
        padding: 0 24px 24px 24px;
    }
    
    .modal-actions {
        padding: 20px 24px 32px 24px;
        flex-direction: column;
    }
    
    .modal-btn {
        min-width: 100%;
    }
    
    .modal-images {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
    
    .menu-item {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .menu-divider {
        margin: 10px 20px;
    }
    
    .menu-section-title {
        padding: 10px 20px 6px;
        font-size: 12px;
    }
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
}

/* SELECTION */
::selection {
    background: #667eea;
    color: #ffffff;
}

/* PROFESSIONAL FOOTER */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 40px 0 0;
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo i {
    font-size: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.footer-links a i {
    font-size: 12px;
    color: #667eea;
}

.blockchain-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.blockchain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blockchain-badge.tron {
    background: rgba(255, 8, 68, 0.15);
    border: 1px solid rgba(255, 8, 68, 0.3);
    color: #ff385c;
}

.blockchain-badge.bsc {
    background: rgba(240, 185, 11, 0.15);
    border: 1px solid rgba(240, 185, 11, 0.3);
    color: #fcd535;
}

.blockchain-badge.eth {
    background: rgba(98, 126, 234, 0.15);
    border: 1px solid rgba(98, 126, 234, 0.3);
    color: #8c9eff;
}

.blockchain-badge i {
    font-size: 8px;
}

.footer-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-left strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #ffffff;
}

.footer-bottom-right span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* FOOTER RESPONSIVE */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-col:first-child {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}
