* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 16px;
    --primary-color: #0066CC;
    --secondary-color: #00A86B;
    --accent-color: #FF6B35;
    --dark-color: #1A1A1A;
    --medium-color: #666666;
    --light-color: #F5F5F5;
    --white-color: #FFFFFF;
    --success-color: #00A86B;
    --warning-color: #FFB800;
    --error-color: #E63946;
    --info-color: #0066CC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.creditloop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.creditloop-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.creditloop-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.creditloop-logo {
    width: 180px;
    height: 60px;
    background-image: url('../img/logo-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    text-decoration: none;
}

.creditloop-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.creditloop-nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
}

.creditloop-nav-link:hover {
    color: var(--primary-color);
}

.creditloop-nav-link.creditloop-active {
    color: var(--primary-color);
}

.creditloop-nav-link.creditloop-active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.creditloop-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.creditloop-btn {
    display: inline-block;
    padding: 0 2rem;
    height: 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    line-height: 3rem;
}

.creditloop-btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.creditloop-btn-primary:hover {
    background: #0052A3;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.creditloop-btn-primary:active {
    transform: scale(0.98);
}

.creditloop-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.creditloop-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.02);
}

.creditloop-btn-large {
    padding: 0 2.5rem;
    height: 3.5rem;
    font-size: 1rem;
    line-height: 3.5rem;
}

.creditloop-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

.creditloop-hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0F8 100%);
    position: relative;
    overflow: hidden;
}

.creditloop-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.creditloop-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.creditloop-hero-text {
    animation: fadeInUp 0.8s ease;
}

.creditloop-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.creditloop-hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.creditloop-hero-description {
    font-size: 1.125rem;
    color: var(--medium-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.creditloop-hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.creditloop-hero-image {
    animation: fadeInRight 0.8s ease;
}

.creditloop-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.creditloop-features {
    padding: 6rem 0;
    background: var(--white-color);
}

.creditloop-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.creditloop-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-color);
}

.creditloop-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.creditloop-feature-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.creditloop-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
}

.creditloop-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-feature-description {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0F8 100%);
}

.creditloop-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.creditloop-process-step {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.creditloop-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-process-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 1.125rem;
}

.creditloop-process-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
}

.creditloop-process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-process-description {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.creditloop-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.creditloop-stat-card {
    text-align: center;
    padding: 2rem;
}

.creditloop-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.creditloop-stat-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.creditloop-stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.creditloop-faq-preview {
    padding: 6rem 0;
    background: var(--white-color);
}

.creditloop-faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.creditloop-faq-item {
    background: var(--white-color);
    border: 1px solid #E0E0E0;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.creditloop-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.creditloop-faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.creditloop-faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
}

.creditloop-faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.creditloop-faq-item.creditloop-active .creditloop-faq-question i {
    transform: rotate(180deg);
}

.creditloop-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.creditloop-faq-item.creditloop-active .creditloop-faq-answer {
    max-height: 500px;
}

.creditloop-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-faq-cta {
    text-align: center;
}

.creditloop-footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.creditloop-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.creditloop-footer-logo {
    width: 180px;
    height: 60px;
    background-image: url('../img/logo-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    margin-bottom: 1rem;
}

.creditloop-footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.creditloop-footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.creditloop-footer-links {
    list-style: none;
}

.creditloop-footer-links li {
    margin-bottom: 0.75rem;
}

.creditloop-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.creditloop-footer-links a:hover {
    color: var(--white-color);
}

.creditloop-footer-contact {
    list-style: none;
}

.creditloop-footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.creditloop-footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.creditloop-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.creditloop-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1001;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.creditloop-cookies-banner.creditloop-show {
    transform: translateY(0);
}

.creditloop-cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.creditloop-cookies-text {
    flex: 1;
    color: var(--white-color);
}

.creditloop-cookies-text p {
    margin: 0;
    line-height: 1.6;
}

.creditloop-cookies-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.creditloop-cookies-actions {
    display: flex;
    gap: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .creditloop-container {
        padding: 0 1rem;
    }

    .creditloop-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 0;
    }

    .creditloop-nav-menu.creditloop-active {
        display: flex;
    }

    .creditloop-nav-menu .creditloop-nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #E0E0E0;
    }

    .creditloop-nav-menu .creditloop-nav-link:last-child {
        border-bottom: none;
    }

    .creditloop-mobile-menu-toggle {
        display: block;
    }

    .creditloop-nav-actions {
        gap: 1rem;
    }

    .creditloop-nav-actions .creditloop-btn {
        display: none;
    }

    .creditloop-hero {
        padding: 4rem 0;
        margin-top: 70px;
    }

    .creditloop-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .creditloop-hero-title {
        font-size: 2rem;
    }

    .creditloop-hero-subtitle {
        font-size: 1.25rem;
    }

    .creditloop-hero-description {
        font-size: 1rem;
    }

    .creditloop-hero-cta {
        flex-direction: column;
    }

    .creditloop-hero-cta .creditloop-btn {
        width: 100%;
    }

    .creditloop-section-title {
        font-size: 1.75rem;
    }

    .creditloop-features,
    .creditloop-process,
    .creditloop-stats,
    .creditloop-faq-preview {
        padding: 4rem 0;
    }

    .creditloop-features-grid,
    .creditloop-process-steps,
    .creditloop-stats-grid {
        grid-template-columns: 1fr;
    }

    .creditloop-cookies-content {
        flex-direction: column;
        align-items: stretch;
    }

    .creditloop-cookies-actions {
        width: 100%;
    }

    .creditloop-cookies-actions .creditloop-btn {
        flex: 1;
    }
}
