/* ════════════════════════════════════════
   HERO BANNER
════════════════════════════════════════ */
.bm-hero {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.bm-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #0d1b2a 60%, #003d6b 100%);
    z-index: 0;
}

.bm-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,147,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,147,255,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bm-hero__left {
    flex: 1.1;
    position: relative;
    z-index: 1;
    padding: 140px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.bm-hero__tag {
    display: inline-block;
    background: rgba(0,147,255,0.15);
    color: #0093ff;
    font-family: 'nexa', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-left: 3px solid #0093ff;
    width: fit-content;
}

.bm-hero__title {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.12;
    color: #ffffff;
    margin: 0;
}

.bm-hero__title span {
    color: #0093ff;
}

.bm-hero__line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0093ff, transparent);
    border-radius: 2px;
}

.bm-hero__text {
    font-family: 'nexa', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin: 0;
    max-width: 520px;
}

.bm-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bm-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.bm-hero__bullets li i {
    color: #0093ff;
    font-size: 20px;
    flex-shrink: 0;
}

.bm-hero__stats {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bm-hero__stat span {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #0093ff;
    display: block;
    line-height: 1;
}

.bm-hero__stat p {
    font-family: 'nexa', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 4px 0 0;
}

.bm-hero__right {
    flex: 0 0 420px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 40px 40px 40px 0;
}

.bm-hero__form-card {
    background: #fff;
    width: 100%;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.bm-hero__form-card h3 {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #0d1b2a;
    margin: 0 0 6px;
}

.bm-hero__form-card p {
    font-family: 'nexa', sans-serif;
    font-size: 13px;
    color: #5a6a82;
    margin: 0 0 20px;
}

.bm-hero__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bm-hero__form input,
.bm-hero__form select,
.bm-hero__form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dde5f0;
    background: #f7f9fc;
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    color: #0d1b2a;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.bm-hero__form input::placeholder,
.bm-hero__form textarea::placeholder {
    color: #9aa4b8;
}

.bm-hero__form input:focus,
.bm-hero__form select:focus,
.bm-hero__form textarea:focus {
    border-color: #0093ff;
    background: #fff;
}

.bm-hero__form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa4b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #f7f9fc;
    padding-right: 40px;
    cursor: pointer;
}

.bm-hero__form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #0093ff;
    color: #fff;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 4px;
}

.bm-hero__form button:hover {
    background: #21365c;
}

/* ════════════════════════════════════════
   SECTION 1 — BOOKS SLIDER (Swiper)
════════════════════════════════════════ */
.bm-slider {
    padding: 90px 80px;
    background: #fff;
}

.bm-slider__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}

.bm-swiper {
    position: relative;
    padding-bottom: 50px;
}

.bm-slide-card {
    background: #f4f8ff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bm-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,147,255,0.15);
}

.bm-slide-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
    background: #f4f8ff;
}

.bm-swiper__nav.swiper-button-prev,
.bm-swiper__nav.swiper-button-next {
    width: 44px;
    height: 44px;
    background: #0d1b2a;
    color: #fff;
    top: 42%;
}

.bm-swiper__nav.swiper-button-prev::after,
.bm-swiper__nav.swiper-button-next::after {
    font-size: 16px;
}

.bm-swiper__nav.swiper-button-prev:hover,
.bm-swiper__nav.swiper-button-next:hover {
    background: #0093ff;
}

.bm-swiper__pagination.swiper-pagination {
    bottom: 0;
}

.bm-swiper .swiper-pagination-bullet {
    background: #0093ff;
    opacity: 0.25;
}

.bm-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ════════════════════════════════════════
   SECTION 2 — STATS
════════════════════════════════════════ */
.bm-stats {
    padding: 90px 80px;
    background: #0d1b2a;
    background-image:
        linear-gradient(rgba(0,147,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,147,255,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bm-stats__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}

.bm-stats__header .section-title,
.bm-stats__header .section-text {
    color: #fff;
}

.bm-stats__header .section-text {
    color: rgba(255,255,255,0.6);
}

.bm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bm-stats__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.bm-stats__card:hover {
    background: rgba(0,147,255,0.1);
    border-color: #0093ff;
}

.bm-stats__card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ════════════════════════════════════════
   SECTION 3 — INFO / WHAT WE OFFER
════════════════════════════════════════ */
.bm-info {
    padding: 90px 80px;
    background: #f4f8ff;
}

.bm-info__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}

.bm-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bm-info-card {
    padding: 36px 28px;
    background: #fff;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bm-info-card:hover {
    border-color: #0093ff;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,147,255,0.1);
}

.bm-info-card__icon {
    width: 58px;
    height: 58px;
    background: rgba(0,147,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0093ff;
    transition: background 0.3s, color 0.3s;
}

.bm-info-card:hover .bm-info-card__icon {
    background: #0093ff;
    color: #fff;
}

.bm-info-card h4 {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #0d1b2a;
    margin: 0;
}

.bm-info-card p {
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #5a6a82;
    margin: 0;
}

/* ════════════════════════════════════════
   SECTION 4 — WHAT MAKES US MORE IMPACTFUL
════════════════════════════════════════ */
.bm-impact {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 90px 80px;
    background: #0d1b2a;
}

.bm-impact__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bm-impact__left .section-title,
.bm-impact__left .section-text {
    color: #fff;
}

.bm-impact__left .section-text {
    color: rgba(255,255,255,0.65);
}

.bm-impact__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.bm-impact__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bm-impact__item > i {
    font-size: 26px;
    color: #0093ff;
    flex-shrink: 0;
    margin-top: 2px;
}

.bm-impact__item h4 {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin: 0 0 4px;
}

.bm-impact__item p {
    font-family: 'nexa', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.bm-impact__right {
    flex: 0 0 380px;
    position: relative;
}

.bm-impact__right img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    display: block;
}

.bm-impact__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #0093ff;
    color: #fff;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0,147,255,0.4);
}

.bm-impact__badge i {
    font-size: 24px;
}

/* ════════════════════════════════════════
   SECTION 5 — PROCESS STEPS
════════════════════════════════════════ */
.bm-process {
    padding: 90px 80px;
    background: #fff;
    background-image:
        linear-gradient(rgba(0,147,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,147,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bm-process__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
}

.bm-process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.bm-step {
    flex: 1;
    min-width: 130px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.bm-step__num {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: rgba(0,147,255,0.12);
    line-height: 1;
    margin-bottom: -8px;
}

.bm-step__icon {
    width: 68px;
    height: 68px;
    background: #f4f8ff;
    border: 2px solid #0093ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0093ff;
    box-shadow: 0 4px 20px rgba(0,147,255,0.15);
    transition: background 0.3s ease, color 0.3s ease;
}

.bm-step:hover .bm-step__icon {
    background: #0093ff;
    color: #fff;
}

.bm-step h4 {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0d1b2a;
    margin: 0;
}

.bm-step p {
    font-family: 'nexa', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: #5a6a82;
    margin: 0;
}

.bm-step__arrow {
    display: flex;
    align-items: center;
    padding-top: 34px;
    color: #0093ff;
    font-size: 28px;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   SECTION 6 — CONTACT
════════════════════════════════════════ */
.bm-contact {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 90px 80px;
    background: #f4f8ff;
    background-image:
        linear-gradient(rgba(0,147,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,147,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bm-contact__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bm-contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.bm-contact__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    color: #5a6a82;
}

.bm-contact__info-item i {
    font-size: 22px;
    color: #0093ff;
    flex-shrink: 0;
}

.bm-contact__right {
    flex: 1;
    background: #fff;
    padding: 44px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.bm-contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bm-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bm-contact__form input,
.bm-contact__form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde5f0;
    background: #f7f9fc;
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    color: #0d1b2a;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s ease;
}

.bm-contact__form input::placeholder,
.bm-contact__form textarea::placeholder {
    color: #9aa4b8;
}

.bm-contact__form input:focus,
.bm-contact__form textarea:focus {
    border-color: #0093ff;
    background: #fff;
}

.bm-contact__form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #21365c;
    color: #fff;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 4px;
}

.bm-contact__form button:hover {
    background: #0093ff;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
    .bm-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bm-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .bm-hero { flex-direction: column; min-height: auto; }
    .bm-hero__left { padding: 60px 40px 40px; }
    .bm-hero__right { flex: none; padding: 0 40px 60px; }
    .bm-hero__title { font-size: 38px; }

    .bm-impact { flex-direction: column; padding: 70px 40px; }
    .bm-impact__right { flex: none; width: 100%; }

    .bm-contact { flex-direction: column; padding: 70px 40px; }

    .bm-slider, .bm-stats, .bm-info, .bm-process, .bm-contact {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .bm-hero__left { padding: 50px 20px 30px; }
    .bm-hero__right { padding: 0 20px 50px; }
    .bm-hero__title { font-size: 30px; }
    .bm-hero__stats { flex-wrap: wrap; gap: 20px; }

    .bm-info__grid { grid-template-columns: 1fr; }
    .bm-stats__grid { grid-template-columns: 1fr; }

    .bm-process__steps { flex-direction: column; align-items: center; }
    .bm-step__arrow { transform: rotate(90deg); padding: 0; }

    .bm-contact__row { grid-template-columns: 1fr; }
    .bm-contact__right { padding: 28px 20px; }

    .bm-slider, .bm-stats, .bm-info, .bm-process, .bm-impact, .bm-contact {
        padding-left: 20px;
        padding-right: 20px;
    }
}