:root {
    --verycredit-primary: #007DFF;
    --verycredit-primary-dark: #0066CC;
    --verycredit-primary-light: #3399FF;
    --verycredit-primary-ultra-light: #E6F2FF;
    --verycredit-text-primary: #1A1A1A;
    --verycredit-text-secondary: #666666;
    --verycredit-text-tertiary: #999999;
    --verycredit-bg-primary: #FFFFFF;
    --verycredit-bg-secondary: #FAFAFA;
    --verycredit-bg-tertiary: #F5F5F5;
    --verycredit-border: #E5E5E5;
    --verycredit-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --verycredit-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --verycredit-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --verycredit-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.verycredit-hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.verycredit-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 125, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.verycredit-hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 125, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.verycredit-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.verycredit-hero-content {
    max-width: 600px;
}

.verycredit-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--verycredit-primary-ultra-light);
    color: var(--verycredit-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.verycredit-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--verycredit-text-primary);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.verycredit-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

.verycredit-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.verycredit-hero-visual {
    position: relative;
}

.verycredit-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--verycredit-shadow-xl);
    display: block;
}

.verycredit-features-showcase {
    padding: 140px 0;
    background: var(--verycredit-bg-primary);
}

.verycredit-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.verycredit-section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--verycredit-primary-ultra-light);
    color: var(--verycredit-primary);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.verycredit-section-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--verycredit-text-primary);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.verycredit-section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
}

.verycredit-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.verycredit-feature-card {
    background: var(--verycredit-bg-primary);
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid var(--verycredit-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.verycredit-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--verycredit-primary) 0%, var(--verycredit-primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verycredit-feature-card:hover {
    border-color: var(--verycredit-primary);
    box-shadow: var(--verycredit-shadow-lg);
    transform: translateY(-4px);
}

.verycredit-feature-card:hover::before {
    transform: scaleX(1);
}

.verycredit-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--verycredit-primary-ultra-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.verycredit-feature-card:hover .verycredit-feature-icon-wrapper {
    background: var(--verycredit-primary);
    transform: scale(1.05);
}

.verycredit-feature-icon {
    font-size: 40px;
    line-height: 1;
    display: block;
    transition: transform 0.3s ease;
}

.verycredit-feature-card:hover .verycredit-feature-icon {
    transform: scale(1.1);
}

.verycredit-feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--verycredit-text-primary);
    line-height: 1.3;
}

.verycredit-feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
}

.verycredit-advantages {
    padding: 140px 0;
    background: var(--verycredit-bg-secondary);
}

.verycredit-advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.verycredit-advantages-visual {
    position: relative;
}

.verycredit-advantages-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--verycredit-shadow-xl);
    display: block;
}

.verycredit-advantages-text {
    max-width: 580px;
}

.verycredit-advantages-text .verycredit-section-label {
    margin-bottom: 20px;
}

.verycredit-advantages-text .verycredit-section-title {
    text-align: left;
    margin-bottom: 60px;
}

.verycredit-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.verycredit-advantage-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.verycredit-advantage-number {
    width: 48px;
    height: 48px;
    background: var(--verycredit-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.verycredit-advantage-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--verycredit-text-primary);
    line-height: 1.3;
}

.verycredit-advantage-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
}

.verycredit-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--verycredit-primary) 0%, var(--verycredit-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.verycredit-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.verycredit-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
}

.verycredit-stat-item {
    text-align: center;
    color: white;
}

.verycredit-stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -2px;
}

.verycredit-stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.verycredit-cta {
    padding: 140px 0;
    background: var(--verycredit-bg-primary);
}

.verycredit-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.verycredit-cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--verycredit-text-primary);
    letter-spacing: -1.5px;
}

.verycredit-cta-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
    margin-bottom: 48px;
}

.verycredit-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.verycredit-footer .verycredit-logo-text {
    color: white;
}

@media (max-width: 1200px) {
    .verycredit-hero-wrapper {
        gap: 60px;
    }

    .verycredit-hero-title {
        font-size: 56px;
    }

    .verycredit-advantages-content {
        gap: 80px;
    }
}

@media (max-width: 968px) {
    .verycredit-hero {
        padding: 120px 0 80px;
    }

    .verycredit-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .verycredit-hero-content {
        max-width: 100%;
    }

    .verycredit-hero-title {
        font-size: 48px;
    }

    .verycredit-hero-buttons {
        justify-content: center;
    }

    .verycredit-features-grid {
        grid-template-columns: 1fr;
    }

    .verycredit-advantages-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .verycredit-advantages-text .verycredit-section-title {
        text-align: center;
    }

    .verycredit-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .verycredit-hero {
        padding: 100px 0 60px;
    }

    .verycredit-hero-wrapper {
        padding: 0 20px;
    }

    .verycredit-hero-title {
        font-size: 36px;
    }

    .verycredit-hero-subtitle {
        font-size: 18px;
    }

    .verycredit-section-title {
        font-size: 36px;
    }

    .verycredit-section-desc {
        font-size: 16px;
    }

    .verycredit-features-showcase,
    .verycredit-advantages,
    .verycredit-cta {
        padding: 80px 0;
    }

    .verycredit-feature-card {
        padding: 32px 24px;
    }

    .verycredit-stat-number {
        font-size: 48px;
    }

    .verycredit-cta-content h2 {
        font-size: 36px;
    }

    .verycredit-stats-grid {
        grid-template-columns: 1fr;
    }
}
