* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: #ffffff;
    overflow-x: hidden;
}

.creditcheckup-container {
    max-width: 100%;
    overflow-x: hidden;
}

.creditcheckup-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.creditcheckup-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.creditcheckup-logo {
    display: flex;
    align-items: center;
    img{
        width: 60px;
        height: 60px;
    }
    span{
        font-size: 22px;
        margin-left: 16px;
    }
}

.creditcheckup-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.creditcheckup-nav-link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.creditcheckup-nav-link:hover,
.creditcheckup-nav-link.active {
    color: #23A6C2;
}

.creditcheckup-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #23A6C2, #1a8ba3);
    border-radius: 1px;
}

.creditcheckup-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.creditcheckup-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #0f172a;
    border-radius: 1px;
    transition: 0.3s;
}

.creditcheckup-main {
    margin-top: 80px;
}

.creditcheckup-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.creditcheckup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(35, 166, 194, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 139, 163, 0.06) 0%, transparent 50%);
}

.creditcheckup-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.creditcheckup-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 32px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #23A6C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creditcheckup-hero-subtitle {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.creditcheckup-story {
    padding: 140px 40px;
    background: white;
}

.creditcheckup-story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.creditcheckup-section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 48px;
    position: relative;
    letter-spacing: -0.02em;
}

.creditcheckup-story .creditcheckup-section-title {
    text-align: left;
    margin-bottom: 32px;
}

.creditcheckup-story-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.creditcheckup-story-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.creditcheckup-mission {
    padding: 140px 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.creditcheckup-mission-container {
    max-width: 1400px;
    margin: 0 auto;
}

.creditcheckup-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 100px;
}

.creditcheckup-mission-card {
    background: white;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.creditcheckup-mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.creditcheckup-mission-card img {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
}

.creditcheckup-mission-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.creditcheckup-mission-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}

.creditcheckup-team {
    padding: 140px 40px;
    background: white;
}

.creditcheckup-team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.creditcheckup-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 100px;
}

.creditcheckup-team-member {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.creditcheckup-team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.creditcheckup-team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.creditcheckup-team-member h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 32px 32px 16px;
    letter-spacing: -0.01em;
}

.creditcheckup-team-member p {
    color: #475569;
    margin: 0 32px 32px;
    line-height: 1.7;
    font-size: 16px;
}

.creditcheckup-stats {
    padding: 140px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.creditcheckup-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(35, 166, 194, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 139, 163, 0.12) 0%, transparent 50%);
}

.creditcheckup-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.creditcheckup-stat-item h3 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #23A6C2, #1a8ba3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.creditcheckup-stat-item p {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.creditcheckup-contact {
    padding: 140px 40px;
    background: white;
}

.creditcheckup-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.creditcheckup-contact-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.creditcheckup-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.creditcheckup-contact-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.creditcheckup-contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #23A6C2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.creditcheckup-contact-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}

.creditcheckup-btn {
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.creditcheckup-btn-primary {
    background: linear-gradient(135deg, #23A6C2, #1a8ba3);
    color: white;
    box-shadow: 0 8px 32px rgba(35, 166, 194, 0.3);
}

.creditcheckup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(35, 166, 194, 0.4);
}

.creditcheckup-footer {
    background: #0f172a;
    color: white;
    padding: 100px 40px 50px;
}

.creditcheckup-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.creditcheckup-footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #23A6C2;
    letter-spacing: -0.01em;
}

.creditcheckup-footer-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin: 16px 0;
    font-size: 15px;
}

.creditcheckup-footer-section ul {
    list-style: none;
}

.creditcheckup-footer-section ul li {
    margin-bottom: 16px;
}

.creditcheckup-footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.creditcheckup-footer-section ul li a:hover {
    color: #23A6C2;
}

.creditcheckup-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.creditcheckup-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    color: white;
    padding: 32px 40px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.creditcheckup-cookies-banner.show {
    transform: translateY(0);
}

.creditcheckup-cookies-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.creditcheckup-cookies-buttons {
    display: flex;
    gap: 16px;
}

.creditcheckup-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.creditcheckup-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .creditcheckup-hero-title {
        font-size: 3.5rem;
    }
    
    .creditcheckup-story-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .creditcheckup-section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .creditcheckup-nav-container {
        padding: 0 24px;
    }
    
    .creditcheckup-nav-menu {
        display: none;
    }
    
    .creditcheckup-nav-toggle {
        display: flex;
    }
    
    .creditcheckup-hero {
        padding: 100px 24px 80px;
    }
    
    .creditcheckup-hero-title {
        font-size: 3rem;
    }
    
    .creditcheckup-story {
        padding: 100px 24px;
    }
    
    .creditcheckup-mission {
        padding: 100px 24px;
    }
    
    .creditcheckup-team {
        padding: 100px 24px;
    }
    
    .creditcheckup-stats {
        padding: 100px 24px;
    }
    
    .creditcheckup-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .creditcheckup-contact {
        padding: 100px 24px;
    }
    
    .creditcheckup-footer {
        padding: 80px 24px 40px;
    }
    
    .creditcheckup-cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .creditcheckup-cookies-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .creditcheckup-hero-title {
        font-size: 2.5rem;
    }
    
    .creditcheckup-section-title {
        font-size: 2.5rem;
    }
    
    .creditcheckup-stats-container {
        grid-template-columns: 1fr;
    }
    
    .creditcheckup-stat-item h3 {
        font-size: 3rem;
    }
} 