/* Landing Styles based on Quixlab light system */
:root {
    --bg-main: #F3F3F9;
    --bg-card: #ffffff;
    --border-color: #eaeaea;
    --primary-color: #7571f9;
    --text-dark: #333333;
    --text-muted: #76838f;
}

body {
    background-color: var(--bg-main);
    color: #464a53;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-custom {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.brand-badge {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f7f7ff;
    color: #7571f9;
    border: 1px solid #d4d3fc;
}

.hero-section {
    padding: 70px 0 50px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #333333;
}

.hero-sub {
    font-size: clamp(15px, 2.5vw, 17px);
    color: #76838f;
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.stat-pill {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    gap: 20px;
    font-size: 13px;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: #495057;
    margin-bottom: 25px;
}

.stat-pill b { color: #7571f9; }

/* Карточки на главной */
.cab-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.cab-box:hover {
    transform: translateY(-3px);
    border-color: #7571f9;
    box-shadow: 0 8px 24px rgba(117, 113, 249, 0.12);
    color: inherit;
    text-decoration: none;
}

.cab-box-title {
    color: #333333;
    font-size: 17px;
    font-weight: 700;
}

.cab-box-desc {
    color: #76838f !important;
    font-size: 13.5px;
    line-height: 1.5;
}

.cab-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.icon-blue { background: #f7f7ff; color: #7571f9; }
.icon-green { background: #e8f8f0; color: #2dce89; }
.icon-gold { background: #fef8ee; color: #f29d56; }

.btn-glow {
    background: #7571f9;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-glow:hover {
    background: #5d59f7;
    color: #fff;
    text-decoration: none;
}

.footer-custom {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
    padding: 24px 0;
    font-size: 13px;
    color: #76838f;
    text-align: center;
}
