﻿.vin-input {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-ca-white {
    background: #fff;
    color: var(--ca-blue);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,.14);
    border: none;
    transition: all .2s;
}

    .btn-ca-white:hover {
        transform: translateY(-2px);
        color: var(--ca-blue-dark);
    }

.btn-telegram {
    background: linear-gradient(135deg,#229ED9,#1a7fb5);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(34,158,217,.4);
    transition: all .25s;
}

    .btn-telegram:hover {
        transform: translateY(-2px);
        color: #fff;
        box-shadow: 0 10px 28px rgba(34,158,217,.5);
    }

/* ─── HERO ─── */
.hero-section {
    background: linear-gradient(135deg,#0d1b2a 0%,#0f3460 55%,#1a5fa0 100%);
    padding: 96px 0 80px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,143,227,.18);
    border: 1px solid rgba(26,143,227,.35);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: .8rem;
    color: #7ec8f5;
    font-weight: 700;
}

.hero-title {
    font-family: 'Manrope',sans-serif;
    font-weight: 800;
    font-size: clamp(2rem,5vw,3.1rem);
    color: #fff;
    line-height: 1.13;
    letter-spacing: -1px;
}

    .hero-title span {
        color: #4db8ff;
    }

.hero-lead {
    color: rgba(255,255,255,.73);
    font-size: 1.08rem;
    line-height: 1.7;
}

.stat-num {
    font-family: 'Manrope',sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    margin-top: 2px;
}

.hero-glass {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
}

.hero-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(26,143,227,.3);
    border: 1px solid rgba(26,143,227,.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* ─── BADGES ─── */
.badge-green {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-weight: 700;
}

.badge-amber {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
    font-weight: 700;
}

.badge-sky {
    background: rgba(255,255,255,.12);
    color: #7ec8f5;
    border: 1px solid rgba(26,143,227,.3);
    font-weight: 700;
}

/* ─── SEARCH ─── */
.search-wrap {
    background: #fff;
    border-bottom: 1.5px solid var(--ca-border);
}

.search-box {
    display: flex;
    background: var(--ca-body-bg);
    border: 2px solid var(--ca-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

    .search-box:focus-within {
        border-color: var(--ca-blue);
        box-shadow: 0 0 0 3px rgba(26,143,227,.1);
    }

    .search-box input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 14px 20px;
        font-size: 1rem;
        font-family: inherit;
        color: #1e293b;
        outline: none;
    }

        .search-box input::placeholder {
            color: var(--ca-muted);
        }

    .search-box button {
        padding: 13px 28px;
        background: linear-gradient(135deg,#1a8fe3,#0f6bb5);
        color: #fff;
        border: none;
        font-weight: 700;
        font-size: .93rem;
        white-space: nowrap;
        transition: background .2s;
    }

        .search-box button:hover {
            background: linear-gradient(135deg,#0f6bb5,#0a4d8a);
        }

/* ─── SECTION TAG ─── */
.section-tag {
    display: inline-block;
    background: var(--ca-blue-light);
    color: var(--ca-blue);
    border: 1px solid rgba(26,143,227,.2);
    border-radius: 100px;
    padding: 4px 16px;
    font-size: .8rem;
    font-weight: 700;
}

.section-tag-dark {
    background: rgba(26,143,227,.15);
    border-color: rgba(26,143,227,.25);
    color: #7ec8f5;
}

/* ─── SERVICE CARDS ─── */
.svc-card {
    background: #fff;
    border: 1.5px solid var(--ca-border);
    border-radius: 16px;
    transition: all .25s;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

    .svc-card:hover {
        border-color: var(--ca-blue);
        box-shadow: 0 14px 44px rgba(26,143,227,.16);
        transform: translateY(-4px);
        color: inherit;
    }

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.i-blue {
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
}

.i-green {
    background: linear-gradient(135deg,#d1fae5,#a7f3d0);
}

.i-amber {
    background: linear-gradient(135deg,#fef3c7,#fde68a);
}

.i-purple {
    background: linear-gradient(135deg,#ede9fe,#ddd6fe);
}

.i-red {
    background: linear-gradient(135deg,#fee2e2,#fecaca);
}

.i-teal {
    background: linear-gradient(135deg,#ccfbf1,#99f6e4);
}

/* ─── HOW ─── */
.how-section {
    background: linear-gradient(135deg,#0d1b2a,#0f3460);
}

.step-num {
    font-family: 'Manrope',sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(26,143,227,.22);
    line-height: 1;
}

.step-icon {
    width: 44px;
    height: 44px;
    background: rgba(26,143,227,.18);
    border: 1px solid rgba(26,143,227,.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-divider {
    border-right: 1px solid rgba(255,255,255,.07);
}

/* ─── CARFAX CTA ─── */
.carfax-cta-block {
    background: linear-gradient(135deg,#1a8fe3,#0f6bb5 60%,#064d8a);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

    .carfax-cta-block::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 320px;
        height: 320px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        pointer-events: none;
    }

.price-box {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

/* ─── TELEGRAM ─── */
.tg-block {
    background: #fff;
    border: 1.5px solid var(--ca-border);
    border-radius: 20px;
}

.tg-mock {
    background: linear-gradient(135deg,#0d1b2a,#1a3a5c);
    border-radius: 18px;
}

.tg-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg,#1a8fe3,#0f6bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tg-msg-bot {
    background: rgba(26,143,227,.2);
    border: 1px solid rgba(26,143,227,.25);
    border-radius: 12px;
}

.tg-msg-user {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
}

.tg-chip {
    background: rgba(26,143,227,.22);
    border: 1px solid rgba(26,143,227,.35);
    color: #7ec8f5;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    cursor: pointer;
}

.tg-feature-item {
    background: var(--ca-body-bg);
    border: 1px solid var(--ca-border);
    border-radius: 12px;
}

/* ─── FOOTER ─── */
.footer-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

    .footer-icon:hover {
        background: var(--ca-blue) !important;
    }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.a1 {
    animation: fadeUp .55s ease both;
}

.a2 {
    animation: fadeUp .55s .12s ease both;
}

.a3 {
    animation: fadeUp .55s .24s ease both;
}

.a4 {
    animation: fadeUp .55s .36s ease both;
}