* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verycredit-primary: #007DFF;
    --verycredit-primary-dark: #0066CC;
    --verycredit-primary-light: #3399FF;
    --verycredit-secondary: #8b5cf6;
    --verycredit-accent: #06b6d4;
    --verycredit-success: #10b981;
    --verycredit-text-primary: #1f2937;
    --verycredit-text-secondary: #6b7280;
    --verycredit-bg-primary: #ffffff;
    --verycredit-bg-secondary: #f9fafb;
    --verycredit-bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --verycredit-bg-gradient-alt: linear-gradient(135deg, #007DFF 0%, #0066CC 100%);
    --verycredit-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --verycredit-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --verycredit-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --verycredit-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', 'Open Sans', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--verycredit-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.verycredit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.verycredit-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.verycredit-btn {
    display: inline-block;
    padding: 14px 32px;
    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;
    letter-spacing: 0.3px;
}

.verycredit-btn-primary {
    background: var(--verycredit-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 125, 255, 0.3);
}

.verycredit-btn-primary:hover {
    background: var(--verycredit-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 125, 255, 0.4);
}

.verycredit-btn-secondary {
    background: white;
    color: var(--verycredit-primary);
    border: 2px solid var(--verycredit-primary);
}

.verycredit-btn-secondary:hover {
    background: var(--verycredit-primary);
    color: white;
}

.verycredit-btn-ghost {
    background: transparent;
    color: var(--verycredit-primary);
    border: 2px solid rgba(0, 125, 255, 0.3);
}

.verycredit-btn-ghost:hover {
    background: rgba(0, 125, 255, 0.05);
    border-color: var(--verycredit-primary);
    color: var(--verycredit-primary);
}

.verycredit-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.verycredit-fade-in.verycredit-animate-in {
    opacity: 1;
}

.verycredit-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.verycredit-slide-up.verycredit-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.verycredit-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--verycredit-shadow-sm);
}

.verycredit-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.verycredit-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.verycredit-logo-img {
    width: 40px;
    height: 40px;
    display: block;
}

.verycredit-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--verycredit-text-primary);
    letter-spacing: -0.5px;
}

.verycredit-nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.verycredit-nav-link {
    color: var(--verycredit-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.verycredit-nav-link:hover {
    color: var(--verycredit-primary);
}

.verycredit-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verycredit-primary);
    transition: width 0.3s ease;
}

.verycredit-nav-link:hover::after {
    width: 100%;
}

.verycredit-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.verycredit-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--verycredit-text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.verycredit-mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--verycredit-shadow-lg);
    z-index: 999;
    padding: 20px;
}

.verycredit-mobile-menu.verycredit-active {
    display: block;
}

.verycredit-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.verycredit-footer {
    background: var(--verycredit-text-primary);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.verycredit-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.verycredit-footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.verycredit-footer-section p,
.verycredit-footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
}

.verycredit-footer-section a:hover {
    color: white;
}

.verycredit-footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.verycredit-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--verycredit-shadow-xl);
    z-index: 10000;
    padding: 20px;
}

.verycredit-cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.verycredit-cookie-text {
    flex: 1;
    color: var(--verycredit-text-primary);
}

.verycredit-cookie-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 968px) {
    .verycredit-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .verycredit-footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .verycredit-nav-links {
        display: none;
    }

    .verycredit-mobile-menu-toggle {
        display: flex;
    }

    .verycredit-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .verycredit-cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .verycredit-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .verycredit-footer-section:first-child {
        grid-column: 1;
    }
}

