:root {
    --primary: #00f0ff;
    --secondary: #6e00ff;
    --dark-bg: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0a0b5;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Light Theme Variables */
body.light-theme {
    --primary: #00b3c2;
    --secondary: #5a00d1;
    --dark-bg: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.08);
    --text-main: #1a1a24;
    --text-muted: #5a5a75;
}

body.light-theme .hero-text h1 {
    background: linear-gradient(to right, #1a1a24, #5a00d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .section-header h2 {
    background: linear-gradient(to right, #1a1a24, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .glass-card {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.6);
}

body.light-theme .about-text .section-title {
    background: linear-gradient(to right, #1a1a24, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .trust-card h3 {
    color: var(--text-main);
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

body.light-theme .btn-secondary {
    color: #1a1a24 !important;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

body.light-theme .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

body.light-theme .it-card {
    background: rgba(0, 0, 0, 0.02);
}

body.light-theme .it-card h4 {
    color: var(--text-main);
}

body.light-theme .it-card:hover {
    background: rgba(0, 179, 194, 0.05);
}

body.light-theme .tna-brands {
    color: var(--text-main);
}


body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: rgba(0, 0, 0, 0.03);
}

.theme-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.theme-btn:hover {
    transform: rotate(30deg);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.85);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Si el tema oscuro está activo y la imagen tiene texto oscuro, 
   se inivierte ligeramente o se le da brillo para que destaque */
body.dark-theme .logo-img {
    filter: brightness(0) invert(1);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-primary-small {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.btn-primary-small {
    padding: 0.5rem 1.2rem;
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--card-border);
    border-color: var(--text-muted);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(110,0,255,0.15) 0%, rgba(0,240,255,0.05) 50%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.mockup-card {
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    z-index: 0;
}

.mockup-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pulse-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 30px var(--primary);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(0, 240, 255, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* Login Box in Hero */
.login-box {
    text-align: left;
    width: 100%;
    max-width: 380px;
    padding: 1.5rem;
    background: transparent;
    border-radius: 12px;
}

.login-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 700;
}

#hero-login-form .form-group {
    margin-bottom: 1.5rem;
}

#hero-login-form label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

#hero-login-form input[type="text"],
#hero-login-form input[type="password"] {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    background-color: var(--bg-modifier);
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

#hero-login-form input[type="password"] {
    letter-spacing: 3px;
    font-size: 1.4rem;
}

#hero-login-form input[type="text"]:focus,
#hero-login-form input[type="password"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

#hero-login-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

#hero-login-form .checkbox-group input[type="checkbox"] {
    width: 1.3rem;
    height: 1.3rem;
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
}

#hero-login-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-block;
}

/* Animations Utilities */
.fade-in { opacity: 0; animation: fadeIn 1s forwards cubic-bezier(0.1, 0.8, 0.2, 1); }
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards cubic-bezier(0.1, 0.8, 0.2, 1); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* TNA Banner */
.tna-banner {
    padding: 2rem 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: rgba(255,255,255,0.01);
}

.tna-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.tna-flex p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tna-brands {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: #fff;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
}

.separator {
    color: var(--card-border);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
}

/* Services Section */
.services-section, .it-solutions-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.main-service-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.main-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.main-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.main-service-card h4 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.main-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(110,0,255,0.02) 0%, transparent 100%);
    border-top: 1px solid var(--card-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--text-main);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-num {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0,240,255,0.03), rgba(110,0,255,0.05));
    border: 1px solid var(--secondary);
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.trust-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* IT Solutions Grid */
.it-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.it-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.it-card:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.it-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.it-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.it-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact CTA Forms */
.contact-cta {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(110,0,255,0.05), rgba(0,240,255,0.03));
}

.contact-info-list p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.6rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #ffffff !important;
}

.social-icon.whatsapp { background-color: #25d366; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.email { background-color: #ea4335; }
.social-icon.phone { background-color: #64748b; }

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px dashed var(--text-muted);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-main);
}

.w-100 {
    width: 100%;
}

.form-status {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .contact-text {
        text-align: center;
        max-width: 100%;
    }
    .contact-info-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 650px;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2.5rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: left;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.support-type {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s;
}

.support-type:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

body.light-theme .support-type {
    background: rgba(0, 0, 0, 0.02);
}

body.light-theme .support-type:hover {
    background: rgba(0, 179, 194, 0.05);
}

.support-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 240, 255, 0.2));
}

.support-text h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.support-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
}

/* Scrollbar para el modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
}

/* Partners Strip */
.partners-strip {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
.partners-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
/* Partners Carousel */
.partners-slider {
    background: transparent;
    height: 50px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-slider::before,
.partners-slider::after {
    background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 15vh;
    z-index: 2;
}

.partners-slider::after { right: 0; top: 0; transform: rotateZ(180deg); }
.partners-slider::before { left: 0; top: 0; }

.partners-track {
    animation: scroll-partners 25s linear infinite;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 3.5rem;
    padding-left: 1.75rem;
}

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

.partners-track span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease;
    cursor: default;
    opacity: 0.8;
}

.partners-track span:hover {
    color: var(--text-main);
    opacity: 1;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.75rem)); }
}
.partner-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

/* Clients Section */
.clients-section {
    padding: 3rem 0;
    text-align: center;
}
.clients-title {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 600;
}
.clients-slider {
    background: transparent;
    height: 80px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-slider::before,
.clients-slider::after {
    background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 15vh;
    z-index: 2;
}

.clients-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.clients-slider::before {
    left: 0;
    top: 0;
}

.clients-slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 2rem;
    padding-left: 1rem;
}

.client-logo {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: default;
    white-space: nowrap;
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    transform: translateY(-3px);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

