/* ==========================================================================
   1. ПРАВИЛЬНОЕ ПОДКЛЮЧЕНИЕ ФАЙЛОВ ШРИФТОВ
   ========================================================================== */
@font-face {
    font-family: 'Halvar Breitschrift';
    src: url('HalvarBreit-Bd.woff2') format('woff2');
    font-weight: 800; 
    font-style: normal;
}

@font-face {
    font-family: 'Halvar Breitschrift';
    src: url('HalvarBreit-Rg.woff2') format('woff2'); 
    font-weight: 400; 
    font-style: normal;
}

/* ==========================================================================
   2. ГЛОБАЛЬНЫЕ НАСТРОЙКИ
   ========================================================================== */
:root {
    --primary-color: #1A43BD;
    --bg-dark: #0E0E0E;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --font-main: 'Halvar Breitschrift', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main); 
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   3. ШАПКА
   ========================================================================== */
.header {
    padding: 25px 0;
    border-bottom: 1px solid #B9B9B9;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800; 
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 29px;       
    display: inline-block;
}
.logo span {
    color: var(--primary-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0; 
}

.nav__item {
    font-family: 'Halvar Breitschrift', sans-serif;
    font-weight: 400;          
    font-size: 15px;           
    line-height: 1.2;          
    letter-spacing: -0.03em;   
    text-transform: uppercase; 
    color: #000000;
    display: flex;
    align-items: center;
}

.nav__item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: #D5D5D5; 
    margin: 0 40px; 
}

/* ==========================================================================
   4. ГЛАВНЫЙ ЭКРАН (HERO)
   ========================================================================== */
.hero {
    padding: 80px 0 60px;
}

.hero__inner {
    display: block;
}

.hero__content {
    width: 100%;
}

.hero__text-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 45px;
}

.hero__title {
    font-family: 'Halvar Breitschrift', sans-serif;
    font-weight: 800;
    font-size: 50px;
    line-height: 1.25;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0; /* allow truncation/wrapping inside flex */
}

.hero__title .accent-text {
    color: var(--primary-color); 
}

.hero__badge {
    font-family: 'Halvar Breitschrift', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
    white-space: nowrap;
    padding-bottom: 6px;
    margin-left: 40px;
    flex: 0 0 auto;
}

@media (max-width: 800px) {
    .hero__text-row { flex-direction: column; align-items: flex-start; }
    .hero__badge { margin-left: 0; margin-top: 12px; }
}

.hero__buttons {
    display: flex;
    gap: 16px;                   
    margin-left: 5px !important; 
    padding-left: 0;             
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 195px;                
    height: 48px;                
    padding: 0 20px;
    border-radius: 4px;
    font-family: 'Halvar Breitschrift', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    opacity: 0.9;
}

.btn--tg {
    background-color: var(--primary-color);
}

.btn--viber {
    background-color: #737373;
}
.btn--viber:hover {
    background-color: #5b2d8e; /* Фирменный ховер Viber для живости */
}

.btn--wa {
    background-color: #737373;
}
.btn--wa:hover {
    background-color: #25D366; /* Фирменный ховер WhatsApp */
}

.btn__arrow {
    font-weight: 400;
    flex-shrink: 0;
}

/* ==========================================================================
   5. СЕКЦИЯ С ВИДЕО (VIDEO PROMO)
   ========================================================================== */
.video-promo {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #000000;
}

.video-promo__video {
    width: 100%;
    height: 554px;
    object-fit: cover;
    display: block;
}

.video-promo__mask-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.video-promo__mask-svg {
    width: 100%;
    height: 100%;
    display: block;
    /* fill заставит SVG растягиваться, но из-за preserveAspectRatio="none" в HTML 
       вырез может смещаться. Чтобы этого не было, убедись, что у SVG в HTML 
       стоит preserveAspectRatio="none" */
    object-fit: fill; 
}

.video-promo__btn {
    position: absolute;
    top: 9px; 
    
    /* Уменьшили сдвиг, чтобы кнопка сместилась правее ровно в вырез */
    left: calc(50% + 450px); 
    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    z-index: 10;
    transition: transform 0.2s ease;
}

.video-promo__btn:hover {
    transform: scale(1.05);
}
.video-promo__btn svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   6. СЕКЦИЯ ГДЕ МЫ РАБОТАЕМ (WORK REGIONS)
   ========================================================================== */
.work-regions {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #1A43BD; 
    overflow: hidden;
    color: #FFFFFF;
    font-family: 'Halvar Breitschrift', sans-serif; 
}

.work-regions__container {
    position: relative;
    max-width: 1440px; 
    margin: 0 auto;
    padding: 60px 20px 60px 20px; 
    display: flex;
    align-items: center;
}

.work-regions__content {
    position: relative;
    z-index: 2; 
    width: 663px; 
}

.work-regions__title {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0%;
}

.work-regions__text-block {
    font-size: 20px;             
    font-weight: 400;            
    line-height: 140%;           
    margin-bottom: 24px;
}

.work-regions__text-block p {
    margin: 6px 0;
}

.work-regions__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    max-width: 550px;
    margin-bottom: 40px;
}

.work-regions__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; 
    font-size: 14px;
    font-weight: 400;
}

.work-regions__action-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background-color: #FFFFFF;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.work-regions__action-btn:hover {
    background-color: #E6ECFF;
}

.work-regions__map-bg {
    position: absolute;
    top: 0;
    right: 0; 
    width: 890px;
    height: 100%;
    z-index: 1; 
}

.work-regions__map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.work-regions__pin {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.28));
}

.work-regions__pin--latvia { top: 24%; right: 17.5%; }
.work-regions__pin--lithuania { top: 31%; right: 21.5%; }
.work-regions__pin--hungary { top: 59%; right: 26.5%; }
.work-regions__pin--croatia { top: 69%; right: 32%; }
.work-regions__pin--greece { top: 88%; right: 20.5%; }

/* ==========================================================================
   7. СЕКЦИЯ ТРЕБОВАНИЯ (REQUIREMENTS)
   ========================================================================== */
.requirements {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #0B0B0B; 
    color: #FFFFFF;
    font-family: 'Halvar Breitschrift', sans-serif;
    padding-bottom: 60px;
}

.requirements__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.requirements__header {
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.requirements__title {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.requirements__bg-text {
    position: absolute;
    right: 0;
    font-size: 76px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.03; 
    letter-spacing: 2px;
    user-select: none;
    z-index: 1;
}

.requirements__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.requirements__item-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.requirements__num {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

.requirements__text {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase; /* Гарантируем капс из макета */
}

.requirements__arrow-btn {
    width: 56px;
    height: 56px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; 
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.requirements__item:hover,
.requirements__item--active {
    background-color: #1A43BD; 
}

.requirements__item:hover .requirements__arrow-btn,
.requirements__item--active .requirements__arrow-btn {
    opacity: 1; 
    transform: scale(1);
}

/* ==========================================================================
   8. СЕКЦИЯ ФОРМА (CALLBACK FORM)
   ========================================================================== */
.cta-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #1A43BD; 
    color: #FFFFFF;
    font-family: 'Halvar Breitschrift', sans-serif;
    padding: 80px 0;
}

.cta-form__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.cta-form__info {
    max-width: 520px;
}

.cta-form__title {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 120%;
    margin-bottom: 24px;
}

.cta-form__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-form__privacy {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.cta-form__checkbox-real {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.cta-form__checkbox-custom {
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-form__checkbox-custom svg {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cta-form__checkbox-real:checked + .cta-form__checkbox-custom {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.cta-form__checkbox-real:checked + .cta-form__checkbox-custom svg {
    opacity: 1;
}

.cta-form__privacy-text {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.cta-form__fields {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.cta-form__input-wrapper {
    width: 100%;
}

.cta-form__input {
    width: 100%;
    height: 68px;
    padding: 0 30px;
    background-color: #F4F4F4; 
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    color: #000000;
}

.cta-form__input::placeholder {
    color: #9E9E9E; 
    font-weight: 400;
}

.cta-form__input:focus {
    outline: 2px solid #FFFFFF;
    background-color: #FFFFFF;
}

.cta-form__submit-btn {
    width: 100%;
    height: 68px;
    background-color: #F4F4F4;
    border: none;
    border-radius: 4px;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cta-form__submit-btn:hover {
    background-color: #FFFFFF;
}

/* ==========================================================================
   9. СЕКЦИЯ FAQ И ФУТЕР
   ========================================================================== */
.faq-section {
    background-color: #0B0B0B;
    color: #FFFFFF;
    padding: 80px 0;
}

.faq-container { max-width: 1440px; margin: 0 auto; padding: 0 20px; }

.faq-title { font-size: 38px; text-transform: uppercase; margin-bottom: 40px; }

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item { 
    padding: 25px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    cursor: pointer;
}

.faq-header-wrapper {
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.faq-icon { 
    width: 32px; 
    height: 32px; 
    background: #1A43BD; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-text { font-size: 20px; font-weight: 700; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 52px;
    margin-top: 0;
    font-size: 16px;
    line-height: 150%;
    color: #cccccc;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

/* Активные стили FAQ аккордеона */
.faq-item--active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 15px;
}

.faq-item--active .faq-icon svg {
    transform: rotate(180deg);
}

.footer { background-color: #1A43BD; color: #FFFFFF; padding: 40px 0; }

.footer-container { 
    max-width: 1440px; margin: 0 auto; padding: 0 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}

.footer-logo { font-size: 24px; font-weight: 900; }
.footer-slogan { opacity: 0.7; }
.footer-copyright { opacity: 0.6; font-size: 14px; }

/* ==========================================================================\n   10. ЭКРАН УСПЕШНОЙ ОТПРАВКИ — ФОН-КАРТИНКА + КЛИКАБЕЛЬНЫЕ КНОПКИ\n   ========================================================================== */
.success-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #000000;
    isolation: isolate;
}

.success-screen__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.success-screen__hotspots {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.success-screen__hotspot {
    position: absolute;
    top: 86.45%;
    height: 5.85%;
    display: block;
    pointer-events: auto;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.success-screen__hotspot--telegram {
    left: 41.25%;
    width: 16.25%;
}

.success-screen__hotspot--viber {
    left: 58.15%;
    width: 16.20%;
}

.success-screen__hotspot--whatsapp {
    left: 75.00%;
    width: 16.20%;
}

.success-screen__hotspot:hover,
.success-screen__hotspot:focus-visible {
    outline: none;
    background: transparent;
}

/* На экранах с другим соотношением сторон картинка масштабируется через cover.
   Координаты ниже компенсируют обрезку по бокам/сверху и удерживают зоны над кнопками. */
@media (max-aspect-ratio: 4320/2313) {
    .success-screen__background {
        width: auto;
        min-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    .success-screen {
        height: auto;
        min-height: 100svh;
        overflow-x: hidden;
    }

    .success-screen__background {
        width: auto;
        height: 100svh;
        min-width: 100%;
        max-width: none;
    }

    /* На узком экране показываем три крупные доступные зоны внизу. */
    .success-screen__hotspot {
        top: auto;
        bottom: 7.6%;
        height: 6.2%;
    }
}

/* ========================================================================== 
   11. МОБИЛЬНАЯ ВЕРСИЯ — МАКЕТ 390–440 PX
   ========================================================================== */
.success-mobile { display: none; }

@media (max-width: 700px) {
    html, body { width: 100%; overflow-x: hidden; }
    body { background: #000; }
    .container { width: 100%; padding: 0 20px; }

    /* Первый экран */
    .header { padding: 28px 0 8px; border-bottom: 0; background: #fff; }
    .header__inner { display: block; }
    .logo svg { width: 112px; height: auto; }
    .nav { margin-top: 205px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
    .nav__item { font-size: 16px; line-height: 1.2; text-transform: uppercase; }
    .nav__item::before { content: ''; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 22px solid #1A43BD; margin-right: 16px; }
    .nav__item:not(:last-child)::after { display: none; }

    .hero { position: relative; margin-top: -268px; padding: 0 0 22px; background: #fff; }
    .hero .container { padding: 0 20px; }
    .hero__text-row { display: block; margin: 0 0 235px; }
    .hero__title { max-width: 390px; font-size: clamp(31px, 8.8vw, 39px); line-height: 1.05; letter-spacing: -0.045em; }
    .hero__title br { display: none; }
    .hero__badge { display: none; }
    .hero__buttons { display: flex; flex-direction: column; gap: 5px; margin: 0 !important; }
    .btn { width: 100%; height: 76px; padding: 0 24px; border-radius: 4px; font-size: 18px; justify-content: center; position: relative; }
    .btn__arrow { position: absolute; right: 26px; width: 18px; height: 18px; }
    .btn--viber, .btn--wa { background: #000; }

    /* Фото машины */
    .video-promo { height: 300px; }
    .video-promo__video { width: 100%; height: 300px; object-fit: cover; object-position: center; }
    .video-promo__mask-wrapper { display: none; }

    /* Где мы работаем */
    .work-regions { min-height: 0; }
    .work-regions__container { display: block; padding: 26px 22px 18px; }
    .work-regions__content { width: 100%; }
    .work-regions__title { max-width: 290px; margin-bottom: 24px; font-size: 37px; line-height: 1.05; }
    .work-regions__text-block { margin-bottom: 22px; font-size: 20px; line-height: 1.18; }
    .work-regions__text-block p { margin: 0 0 22px; }
    .work-regions__tags { max-width: none; gap: 7px; margin: 12px 0 22px; }
    .work-regions__tag { width: 100%; min-height: 61px; padding: 10px 24px; border-radius: 34px; font-size: 17px; font-weight: 700; background: rgba(255,255,255,.25); }
    .work-regions__action-btn { width: 100%; height: 78px; padding: 0 24px; justify-content: center; position: relative; font-size: 18px; }
    .work-regions__action-btn svg { position: absolute; right: 25px; width: 9px; height: 16px; }
    .work-regions__map-bg { display: block; inset: auto 0 0; width: 100%; height: 64%; opacity: .46; pointer-events: none; }
    .work-regions__map-img { object-fit: cover; object-position: 58% bottom; }
    .work-regions__pin { display: none; }

    /* Требования */
    .requirements { padding-bottom: 0; }
    .requirements__container { padding: 0; }
    .requirements__header { min-height: 174px; padding: 34px 22px; }
    .requirements__title { max-width: 330px; font-size: 34px; line-height: 1.08; }
    .requirements__bg-text { right: -80px; font-size: 92px; opacity: .055; }
    .requirements__item { min-height: 144px; padding: 23px 22px; align-items: flex-start; }
    .requirements__item-content { flex-direction: column; align-items: flex-start; gap: 25px; padding-right: 50px; }
    .requirements__num { font-size: 23px; }
    .requirements__text { font-size: 23px; line-height: 1.05; }
    .requirements__arrow-btn { position: absolute; right: 14px; width: 44px; height: 44px; opacity: 1; transform: none; }
    .requirements__item { position: relative; }

    /* Форма */
    .cta-form { padding: 28px 12px 22px; }
    .cta-form__container { display: block; padding: 0; }
    .cta-form__info { max-width: none; }
    .cta-form__title { margin-bottom: 10px; font-size: 31px; line-height: 1.05; }
    .cta-form__subtitle { margin-bottom: 18px; font-size: 15px; line-height: 1.25; }
    .cta-form__fields { gap: 5px; }
    .cta-form__input, .cta-form__submit-btn { height: 58px; border-radius: 3px; }
    .cta-form__submit-btn { position: relative; }
    .cta-form__submit-btn svg { position: absolute; right: 20px; }
    .cta-form__privacy { margin-top: 10px; gap: 9px; align-items: flex-start; }
    .cta-form__checkbox-custom { width: 24px; height: 24px; flex: 0 0 24px; }
    .cta-form__privacy-text { font-size: 11px; line-height: 1.2; }

    /* FAQ */
    .faq-section { padding: 26px 12px 24px; }
    .faq-container { padding: 0; }
    .faq-title { max-width: 280px; margin-bottom: 12px; font-size: 31px; line-height: 1.02; }
    .faq-item { padding: 12px 0; }
    .faq-header-wrapper { gap: 10px; }
    .faq-icon { width: 22px; height: 22px; flex: 0 0 22px; }
    .faq-text { font-size: 13px; font-weight: 400; }
    .faq-answer { padding-left: 32px; font-size: 13px; }

    /* Футер */
    .footer { padding: 20px 12px; }
    .footer-container { padding: 0; gap: 12px; }
    .footer-logo { font-size: 25px; }
    .footer-slogan { display: none; }
    .footer-copyright { font-size: 11px; text-align: right; }

    /* Success screen: отдельная мобильная композиция */
    .success-screen { min-height: 100svh; height: auto; overflow: hidden; }
    .success-screen__background, .success-screen__hotspots { display: none; }
    .success-mobile { position: relative; z-index: 1; display: flex; min-height: 100svh; padding: 34px 24px 26px; flex-direction: column; background: #000; color: #fff; overflow: hidden; }
    .success-mobile__decor { position: absolute; top: 0; right: 0; width: 58%; height: 39%; background: #1A43BD url('photo/photo.png') center/cover no-repeat; clip-path: polygon(30% 0,100% 0,100% 100%,0 0); opacity: .98; }
    .success-mobile__decor::before { content: ''; position: absolute; left: 13%; top: -12%; width: 2px; height: 145%; background: rgba(255,255,255,.6); transform: rotate(-48deg); transform-origin: top; }
    .success-mobile__brand { position: absolute; top: 36px; left: 36px; transform: rotate(42deg); font-size: 28px; font-weight: 800; }
    .success-mobile__watermark { position: absolute; right: -65px; bottom: 38px; transform: rotate(42deg); font-size: 29px; font-weight: 800; color: rgba(255,255,255,.15); }
    .success-mobile__logo { position: relative; z-index: 2; margin-top: 5px; font-size: 28px; font-weight: 800; }
    .success-mobile__logo span { color: #1A43BD; }
    .success-mobile__title { position: relative; z-index: 2; margin: 40px 0 26px; font-size: 42px; line-height: 1.05; letter-spacing: -0.04em; }
    .success-mobile__subtitle { position: relative; z-index: 2; max-width: 360px; margin-bottom: 24px; font-size: 18px; line-height: 1.3; }
    .success-mobile__prompt { position: relative; z-index: 2; margin-bottom: 28px; font-size: 18px; line-height: 1.25; }
    .success-mobile__prompt strong { font-size: 20px; }
    .success-mobile__links { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 5px; }
    .success-mobile__btn { height: 76px; padding: 0 24px; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 4px; background: #fff; color: #000; text-decoration: none; font-size: 18px; font-weight: 800; }
    .success-mobile__btn span { position: absolute; right: 24px; font-size: 38px; line-height: 1; font-weight: 400; }
    .success-mobile__btn--telegram { background: #1A43BD; color: #fff; }
    .success-mobile__footer { position: relative; z-index: 2; margin-top: auto; padding-top: 34px; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
    .success-mobile__footer-logo { font-size: 28px; font-weight: 800; }
    .success-mobile__copyright { font-size: 13px; text-align: right; line-height: 1.25; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 29px; }
    .work-regions__title, .requirements__title { font-size: 31px; }
    .requirements__text { font-size: 20px; }
    .success-mobile__title { font-size: 36px; }
}
