/* ============================================
   ZFrete Landing Page - Design Limpo e Moderno
   ============================================ */

:root {
    --primary: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #3B82F6;
    --secondary: #FF6600;
    --accent: #8B5CF6;
    
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   Header Moderno e Elegante
   ============================================ */

.header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-new.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.04);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.nav-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-new:hover {
    transform: translateY(-1px);
}

.logo-img-new {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-new:hover .logo-img-new {
    transform: scale(1.05);
}

.logo-text-new {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066CC 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    transition: all 0.3s ease;
}

.nav-menu-new {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Desktop: esconder elementos mobile, mostrar desktop */
.mobile-menu-header,
.mobile-menu-links,
.mobile-menu-actions,
.mobile-nav-link,
.mobile-btn-partner,
.mobile-btn-login,
.mobile-close-btn {
    display: none !important;
}

/* Desktop: garantir que links desktop apareçam */
.nav-link-new:not(.mobile-nav-link) {
    display: inline-block;
}

.btn-new:not(.mobile-btn-partner):not(.mobile-btn-login) {
    display: inline-flex;
}

.nav-link-new {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link-new::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link-new:hover {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.06);
}

.nav-link-new:hover::before {
    width: calc(100% - 32px);
}

.nav-link-partner {
    color: var(--primary);
    font-weight: 600;
    background: rgba(0, 102, 204, 0.08);
}

.nav-link-partner:hover {
    background: rgba(0, 102, 204, 0.12);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    transform: scale(1.05);
}

.mobile-close-btn {
    display: none;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Buttons
   ============================================ */

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary-new {
    background: linear-gradient(135deg, var(--primary) 0%, #0052A3 100%);
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    background: linear-gradient(135deg, #0052A3 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 102, 204, 0.4);
}

.btn-secondary-new {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary-new:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.btn-outline-new {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-new:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-large-new {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-block-new {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Hero
   ============================================ */

.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0066CC 100%);
    z-index: -1;
}

.hero-bg-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title-new {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-white);
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-new {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions-new {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-stats-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-new {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-divider-new {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: 100px 0;
}

.section-header-new {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-new {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-description-new {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   Features
   ============================================ */

.features-new {
    background: var(--bg-light);
}

.steps-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-new {
    text-align: center;
}

.step-number-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 36px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-title-new {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-text-new {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

.features-grid-new {
    background: var(--bg-white);
}

.features-list-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item-new {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.feature-item-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon-new {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    color: var(--text-white);
    margin-bottom: 20px;
}

.feature-title-new {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-text-new {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   Pricing
   ============================================ */

.pricing-new {
    background: var(--bg-light);
}

.pricing-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.pricing-card-new {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    transition: all 0.2s ease;
    position: relative;
}

.pricing-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured-new {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.pricing-badge-new {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--secondary);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-title-new {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.pricing-price-new {
    text-align: center;
    margin-bottom: 32px;
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

.pricing-features-new {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features-new li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 15px;
}

.pricing-features-new li svg {
    color: #10B981;
    flex-shrink: 0;
}

.pricing-info-new {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    max-width: 800px;
    margin: 0 auto;
}

.info-icon-new {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.info-content-new h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-content-new p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   CTA
   ============================================ */

.cta-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0066CC 100%);
    color: var(--text-white);
    padding: 100px 0;
}

.cta-content-new {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-new {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-description-new {
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.footer-new {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 32px;
}

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

.footer-logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img-new {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo-text-new {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.footer-description-new {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

.footer-title-new {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links-new {
    list-style: none;
}

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

.footer-links-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-links-new a:hover {
    color: var(--text-white);
}

.footer-bottom-new {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .steps-new {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu-new {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        max-height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15), -8px 0 48px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        justify-content: flex-start;
    }

    .nav-menu-new.active {
        right: 0;
    }
    
    /* Overlay para fechar menu mobile */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .mobile-close-btn {
        display: flex !important;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        border: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        color: #475569;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-close-btn:hover {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: white;
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }
    
    .mobile-close-btn:active {
        transform: scale(0.95) rotate(90deg);
    }
    
    .mobile-close-btn svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.5;
    }
    
    /* Mostrar elementos mobile apenas no mobile - usar !important para sobrescrever desktop */
    .mobile-menu-header,
    .mobile-menu-links,
    .mobile-menu-actions {
        display: flex !important;
    }
    
    .mobile-nav-link,
    .mobile-btn-partner,
    .mobile-btn-login {
        display: flex !important;
    }
    
    .mobile-close-btn {
        display: flex !important;
    }
    
    /* Esconder links desktop no mobile */
    .nav-link-new:not(.mobile-nav-link),
    .btn-new:not(.mobile-btn-partner):not(.mobile-btn-login) {
        display: none !important;
    }
    
    /* Header do menu mobile */
    .mobile-menu-header {
        padding: 16px 20px 14px;
        border-bottom: 2px solid #e2e8f0;
        margin-top: 16px;
        flex-shrink: 0;
        flex-direction: column;
    }
    
    .mobile-menu-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
        background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Links do menu mobile */
    .mobile-menu-links {
        padding: 12px 16px 16px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-radius: 12px;
        background: #ffffff;
        border: 1.5px solid #e2e8f0;
        text-decoration: none;
        color: #475569;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-nav-link svg {
        flex-shrink: 0;
        color: #64748b;
        transition: all 0.25s ease;
    }
    
    .mobile-nav-link span {
        flex: 1;
    }
    
    .mobile-nav-link:hover {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border-color: #0066CC;
        color: #0066CC;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    }
    
    .mobile-nav-link:hover svg {
        color: #0066CC;
        transform: scale(1.1);
    }
    
    .mobile-nav-link:active {
        transform: translateX(2px) scale(0.98);
    }
    
    /* Ações do menu mobile */
    .mobile-menu-actions {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
        border-top: 2px solid #e2e8f0;
        background: linear-gradient(180deg, transparent 0%, #f8fafc 100%);
        flex-shrink: 0;
        padding-bottom: 20px;
    }
    
    .mobile-btn-partner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        border-radius: 14px;
        background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3),
                    0 2px 8px rgba(0, 102, 204, 0.2);
        border: none;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-btn-partner::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .mobile-btn-partner:hover::before {
        left: 100%;
    }
    
    .mobile-btn-partner svg {
        flex-shrink: 0;
        stroke-width: 2.5;
    }
    
    .mobile-btn-partner:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4),
                    0 4px 12px rgba(0, 102, 204, 0.3);
        background: linear-gradient(135deg, #0052a3 0%, #0066CC 100%);
    }
    
    .mobile-btn-partner:active {
        transform: translateY(0) scale(0.98);
    }
    
    .mobile-btn-login {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        border-radius: 14px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        color: #0066CC;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                    0 2px 8px rgba(0, 0, 0, 0.04),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9);
        border: 2px solid #0066CC;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-btn-login::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(0, 102, 204, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }
    
    .mobile-btn-login:hover::after {
        width: 300px;
        height: 300px;
    }
    
    .mobile-btn-login svg {
        flex-shrink: 0;
        stroke-width: 2.5;
        position: relative;
        z-index: 1;
    }
    
    .mobile-btn-login span {
        position: relative;
        z-index: 1;
    }
    
    .mobile-btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2),
                    0 4px 12px rgba(0, 102, 204, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9);
        border-color: #0052a3;
        color: #0052a3;
    }
    
    .mobile-btn-login:active {
        transform: translateY(0) scale(0.98);
    }

    .nav-link-new {
        width: 100%;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        margin-bottom: 4px;
    }
    
    .nav-link-new::before {
        display: none;
    }
    
    .nav-link-new:hover {
        background: rgba(0, 102, 204, 0.08);
        padding-left: 20px;
    }
    
    .nav-link-partner {
        background: rgba(0, 102, 204, 0.12);
    }
    
    .nav-link-partner:hover {
        background: rgba(0, 102, 204, 0.16);
    }

    .btn-new {
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .logo-img-new {
        width: 48px;
        height: 48px;
    }
    
    .logo-text-new {
        font-size: 24px;
    }

    .logo-img-new {
        width: 56px;
        height: 56px;
    }

    .logo-text-new {
        font-size: 24px;
    }

    section {
        padding: 80px 0;
    }

    .hero-new {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-actions-new {
        flex-direction: column;
    }

    .hero-stats-new {
        gap: 24px;
    }

    .stat-divider-new {
        display: none;
    }

    .features-list-new,
    .pricing-cards-new {
        grid-template-columns: 1fr;
    }

    .pricing-info-new {
        flex-direction: column;
        padding: 24px;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 36px;
    }

    .section-title-new {
        font-size: 28px;
    }

    .feature-item-new,
    .pricing-card-new {
        padding: 24px;
    }
}
