/* ─── HERO ───────────────────────────────────────────────────────────────────*/
.ch-hero {
    position: relative;
    min-height: 83vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    padding: clamp(80px, 10vw, 80px) 0 clamp(48px, 6vw, 80px);
    overflow: hidden;
}

.ch-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 20, 35, 0.95) 0%,
        rgba(10, 20, 35, 0.88) 50%,
        rgba(10, 20, 35, 0.55) 100%
    );
}

.ch-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: center;
    width: 100%;
}


/* ─── BADGE ──────────────────────────────────────────────────────────────────*/
.ch-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    padding: 7px 16px;
    border-radius: var(--border-radius);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.ch-hero__badge i {
    color: var(--color-primary);
    font-size: 13px;
}


/* ─── TITLE ──────────────────────────────────────────────────────────────────*/
.ch-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.05;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.ch-hero__highlight {
    color: var(--color-primary);
}


/* ─── SUBTEXT ────────────────────────────────────────────────────────────────*/
.ch-hero__subtext {
    font-size: clamp(13px, 1.5vw, 16px);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
    font-family: var(--font-body);
}


/* ─── ACTIONS ────────────────────────────────────────────────────────────────*/
.ch-hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ch-hero__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.ch-hero__phone-btn i {
    color: var(--color-primary);
}

.ch-hero__phone-btn:hover {
    color: var(--color-primary);
}


/* ─── STATS ──────────────────────────────────────────────────────────────────*/
.ch-hero__stats {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    width: fit-content;
    max-width: 100%;
}

.ch-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 24px;
    flex-shrink: 0;
}

.ch-hero__stat:first-child { padding-left: 0; }
.ch-hero__stat:last-child  { padding-right: 0; }

.ch-hero__stat-number {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 26px);
    color: var(--color-primary);
    line-height: 1;
}

.ch-hero__stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
    font-weight: 600;
    white-space: nowrap;
}

.ch-hero__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}


/* ─── FORM ───────────────────────────────────────────────────────────────────*/
.ch-hero__form-wrap {
    position: relative;
    z-index: 2;
    align-self: center;
}

.ch-hero__form {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.ch-hero__form-header {
    background: var(--color-bg-dark);
    padding: 20px 24px;
    border-bottom: 3px solid var(--color-primary);
}

.ch-hero__form-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
}

.ch-hero__form-title span {
    color: var(--color-primary);
}

.ch-hero__form-subtitle {
    font-size: 12px;
    color: rgba(248,250,252,0.55);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ch-hero__form-subtitle i {
    color: var(--color-primary);
    font-size: 11px;
}

.ch-hero__form .ch-form {
    padding: 18px 22px 22px;
}

.ch-hero__form .ch-form__group {
    margin-bottom: 11px;
}

.ch-hero__form .ch-form__row {
    margin-bottom: 0;
}

/* ─── FORM STATS ─────────────────────────────────────────────────────────────*/
.ch-hero__form-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    margin-top: 12px;
    gap: 0;
}

.ch-hero__form-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.ch-hero__form-stat-number {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-bg-dark);
    line-height: 1.4;
}

.ch-hero__form-stat-label {
    font-size: 9px;
    color: var(--color-text-mid);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.ch-hero__form-stat-divider {
    width: 1px;
    height: 28px;
    background: var(--color-border-light);
    flex-shrink: 0;
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────*/
@media ( max-width: 1100px ) {
    .ch-hero__inner {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}

@media ( max-width: 1024px ) {
    .ch-hero {
        min-height: auto;
        padding: clamp(90px, 12vw, 120px) 0 clamp(48px, 7vw, 64px);
    }

    .ch-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ch-hero__content {
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

    .ch-hero__badge {
        justify-content: center;
    }

    .ch-hero__subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .ch-hero__actions {
        justify-content: center;
    }

    .ch-hero__stats {
        margin: 0 auto;
    }

    .ch-hero__form-wrap {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media ( max-width: 640px ) {
    .ch-hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .ch-hero__actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .ch-hero__stats {
        width: 100%;
        justify-content: space-between;
        padding: 14px 12px;
    }

    .ch-hero__stat {
        padding: 0 8px;
        align-items: center;
    }

    .ch-hero__stat-number {
        font-size: clamp(16px, 5vw, 20px);
    }

    .ch-hero__stat-label {
        font-size: 8px;
        white-space: normal;
        text-align: center;
        max-width: 56px;
    }

    .ch-hero__stat-divider {
        height: 24px;
    }

    .ch-hero__form .ch-form__row--2 {
        grid-template-columns: 1fr;
    }
}