/* ===== VARIABLES CSS ===== */
:root {
    /* Colores principales */
    --primary-dark: #0A1428;
    --dark-blue: #1A2332;
    --navy-blue: #243447;
    --primary-cyan: #00D4AA;
    --secondary-teal: #1DE9B6;
    --accent-purple: #8E24AA;
    
    /* Colores de texto */
    --white: #FFFFFF;
    --light-gray: #B0BEC5;
    --dark-gray: #37474F;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00D4AA 0%, #1DE9B6 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    
    /* Tipografía */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espaciado */
    --container-padding: 2rem;
    --section-padding: 6rem 0;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ===== UTILIDADES ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--section-padding) var(--container-padding);
}

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

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--dark-gray);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/toyosa-sa/image/upload/v1758206028/production/plataforma-toyota/web/assets/images/campa%C3%B1as/cobros-usdt/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.4) 0%, rgba(26, 35, 50, 0.3) 50%, rgba(36, 52, 71, 0.4) 100%),
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(142, 36, 170, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-text {
    z-index: 4;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.2);
    border: 1px solid var(--primary-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 3rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.3);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

/* Iconos flotantes removidos para diseño más limpio */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-date {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05), rgba(142, 36, 170, 0.05));
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.section-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: rgba(26, 35, 50, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 170, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-description {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-demo {
    background: rgba(10, 20, 40, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.network-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.network-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 35, 50, 0.8);
    border: 1px solid var(--dark-gray);
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.network-option:hover {
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 170, 0.1);
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-dark);
}

.confirmation-list {
    text-align: left;
}

.confirmation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.check-icon {
    color: var(--primary-cyan);
    font-weight: bold;
}

.payment-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-bottom: 1rem;
}

.payment-button:hover {
    transform: scale(1.05);
}

.success-message {
    color: var(--primary-cyan);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== NETWORKS SECTION ===== */
.networks-section {
    background: 
        linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 50%, var(--primary-dark) 100%),
        radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    position: relative;
    z-index: 10;
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.network-card {
    background: rgba(26, 35, 50, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.network-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 170, 0.1);
}

.network-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.network-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 35, 50, 0.8);
    border: 2px solid var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.polygon-icon {
    color: #8247E5;
    border-color: #8247E5;
}

.solana-icon {
    color: #9945FF;
    border-color: #9945FF;
}

.bnb-icon {
    color: #F3BA2F;
    border-color: #F3BA2F;
}

.tron-icon {
    color: #FF060A;
    border-color: #FF060A;
}

.ethereum-icon {
    color: #627EEA;
    border-color: #627EEA;
}

.network-card:hover .network-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.network-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.network-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(10, 20, 40, 0.6);
    border-radius: 0.75rem;
    border: 1px solid var(--dark-gray);
}

.feature-label {
    color: var(--light-gray);
    font-weight: 500;
}

.feature-value {
    color: var(--primary-cyan);
    font-weight: 700;
}

.network-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-glow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.network-card:hover .network-glow {
    opacity: 0.3;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05), rgba(142, 36, 170, 0.05));
    position: relative;
    z-index: 10;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.partner-card {
    background: rgba(26, 35, 50, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    background: rgba(0, 212, 170, 0.1);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: color var(--transition-normal);
}

.partner-card:hover .partner-name {
    color: var(--primary-cyan);
}

.partner-role {
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.partner-description {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}
/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/toyosa-sa/image/upload/v1758206027/production/plataforma-toyota/web/assets/images/campa%C3%B1as/cobros-usdt/banner2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.7) 0%, rgba(26, 35, 50, 0.6) 50%, rgba(36, 52, 71, 0.7) 100%),
        radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(142, 36, 170, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-display);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.cta-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.4);
}

.cta-arrow {
    font-size: 1.3rem;
    transition: transform var(--transition-normal);
}

.cta-primary:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-secondary:hover {
    background: var(--primary-cyan);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.3);
}

/* ===== FOOTER ===== */
.main-footer {
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%),
        radial-gradient(circle at 50% 100%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    border-top: 1px solid rgba(0, 212, 170, 0.3);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem var(--container-padding) 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-main-logo {
    text-align: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.footer-main-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-company {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-display);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--primary-cyan);
    font-weight: 600;
    opacity: 0.8;
}

.footer-partners {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.footer-partner-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-normal);
}

.footer-partner:hover {
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

.footer-partner:hover .footer-partner-icon {
    transform: scale(1.2) rotate(10deg);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    margin: 1rem 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-tech {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-powered {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-tech-highlight {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== EFECTOS DE PARTÍCULAS ===== */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#particleCanvas {
    width: 100%;
    height: 100%;
}

/* ===== CURSOR PERSONALIZADO ===== */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: var(--secondary-teal);
}

.hero-subtitle {
    margin-bottom: 0px;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-background {
        background-position: center center;
        background-size: cover;
    }
    
    .hero-overlay {
        background: 
            linear-gradient(135deg, rgba(10, 20, 40, 0.5) 0%, rgba(26, 35, 50, 0.4) 50%, rgba(36, 52, 71, 0.5) 100%),
            radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .networks-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 4rem 0;
    }
    
    .hero-background {
        background-position: center center;
        background-size: cover;
    }
    
    .hero-overlay {
        background: 
            linear-gradient(135deg, rgba(10, 20, 40, 0.6) 0%, rgba(26, 35, 50, 0.5) 50%, rgba(36, 52, 71, 0.6) 100%),
            radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
    }
    
    .cta-background {
        background-position: center center;
        background-size: cover;
    }
    
    .cta-overlay {
        background: 
            linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(26, 35, 50, 0.7) 50%, rgba(36, 52, 71, 0.8) 100%),
            radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        justify-content: center;
    }
    
    /* Iconos flotantes ya removidos */
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .networks-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 0.5fr));
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-brand-text {
        align-items: center;
    }
    
    .footer-partners {
        gap: 2rem;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
@media (max-width: 721px) {
    .process-section, .networks-section, .partners-section {
        padding-right: 5%;
        padding-left: 5%;
    }
}

@media (max-width: 480px) {
    .networks-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 0.5fr));
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .network-card {
        padding: 1.5rem;
    }
    
    .partner-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-partners {
        grid-template-columns: repeat(auto-fit, minmax(150px, 0.5fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .process-section, .networks-section, .partners-section {
        padding-right: 5%;
        padding-left: 5%;
    }
    .network-name {
    margin-bottom: 0px;
    height: 16px;
    display: flex;
    }
}
