/* =========================================
   Р‘РђР—РћР’Р«Р• РќРђРЎРўР РћР™РљР
   ========================================= */

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

.benefit-user-photo {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    /* Р”РµР»Р°РµС‚ С„РѕС‚Рѕ РєСЂСѓРіР»С‹Рј */
    overflow: hidden;
    background-color: #f0f0f0;
    /* Р¦РІРµС‚ Р·Р°РіР»СѓС€РєРё, РїРѕРєР° С„РѕС‚Рѕ РЅРµС‚ */
}

.iti__dropdown-content {
    z-index: 99999 !important;
}

.benefit-user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Р§С‚РѕР±С‹ Р»РёС†Рѕ РЅРµ СЃРїР»СЋС‰РёРІР°Р»РѕСЃСЊ */
}

.iti__country-list {
    z-index: 99999 !important;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Р’С‹СЂР°РІРЅРёРІР°РЅРёРµ РїРѕ Р»РµРІРѕРјСѓ РєСЂР°СЋ */
    /* РўРІРѕРё СЃСѓС‰РµСЃС‚РІСѓСЋС‰РёРµ СЃС‚РёР»Рё РґР»СЏ РєР°СЂС‚РѕС‡РєРё */
}

body {
    font-family: 'Manrope', sans-serif;
    color: #0f172a;
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .badge-glass {
        margin-top: 0 !important;
        /* !important РіР°СЂР°РЅС‚РёСЂСѓРµС‚, С‡С‚Рѕ СЌС‚Рѕ РїСЂР°РІРёР»Рѕ РїРµСЂРµР±СЊРµС‚ РёРЅР»Р°Р№РЅРѕРІС‹Рµ СЃС‚РёР»Рё РёР»Рё СЃРєСЂРёРїС‚С‹ */
    }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* РЈС‚РёР»РёС‚С‹ */

.text-orange {
    color: #f97316;
}

.btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    border-radius: 12px;
}

/* РљРЅРѕРїРєРё */

.btn-primary {
    background: #f97316;
    color: #fff;
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.15rem;
    padding: 18px 42px;
}

.btn-glow {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 1.05rem;
    padding: 16px 36px;
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.5);
}

/* =========================================
   1. РЁРђРџРљРђ Р Р“Р›РђР’РќР«Р™ Р­РљР РђРќ (HERO)
   ========================================= */

.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.65);
}

/* РҐРµРґРµСЂ (РђР±СЃРѕР»СЋС‚РЅС‹Р№, РЅРµ РїРµСЂРµРєСЂС‹РІР°РµС‚ СЃР°Р№С‚ РїСЂРё СЃРєСЂРѕР»Р»Рµ) */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.custom-logo {
    height: 52px;
    width: 140px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #fff;
    color: #0a192f;
}

/* РљРѕРЅС‚РµРЅС‚ Hero */

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 800px;
}

.badge-glass {
    display: inline-block;
    padding: 8px 20px;
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 650px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 25px;
}

/* =========================================
   2. РЎР•РљР¦РРЇ РљРђР РўР« Р•РЎ
   ========================================= */

.eu-map-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* РўРµРєСЃС‚ */

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #0a192f;
}

.text-block p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 95%;
}

.text-block strong {
    color: #0f172a;
    font-weight: 700;
}

.action-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #10b981;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid #d1fae5;
}

/* РљР°СЂС‚Р° Leaflet */

.map-visual-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

#real-eu-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-ui-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 400;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pulse-dot-small {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffedd5;
}

/* РњР°СЂРєРµСЂС‹ РљР°СЂС‚С‹ */

.leaflet-div-icon {
    background: transparent;
    border: none;
}

.leaflet-control-attribution {
    display: none !important;
}

.custom-marker-container {
    position: relative;
    width: 30px;
    height: 30px;
}

.marker-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #ffffff, 0 4px 10px rgba(249, 115, 22, 0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

.marker-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    z-index: 1;
}

@keyframes radarPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

/* Р’СЃРїР»С‹РІР°СЋС‰РёРµ РєР°СЂС‚РѕС‡РєРё РЅР° РєР°СЂС‚Рµ */

.map-hover-card {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 14px 16px;
    width: max-content;
    min-width: 200px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.map-hover-card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.custom-marker-container:hover .map-hover-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.custom-marker-container:hover .marker-core {
    transform: translate(-50%, -50%) scale(1.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.custom-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    object-fit: cover;
    border: 1px solid #cbd5e1;
}

.card-country {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-body strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.card-body span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

/* =========================================
   3. РЎР•РљР¦РРЇ "РљРђРљ Р­РўРћ Р РђР‘РћРўРђР•Рў"
   ========================================= */

.how-it-works-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.hiw-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* РЎРїРёСЃРєРё */

.list-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    margin-top: 32px;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #fff7ed;
    color: #f97316;
    border: 1px solid #ffedd5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
    padding-top: 4px;
}

/* РџСЂР°РІР°СЏ СЃС‚РѕРїРєР° РјРµРґРёР° */

.hiw-media {
    width: 100%;
}

.media-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.media-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-color: #f8fafc;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.scroll-video,
.hiw-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.media-item:hover .hiw-img {
    transform: scale(1.04);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(249, 115, 22, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    transition: all 0.4s ease;
    pointer-events: none;
}

.video-wrapper.is-playing .play-overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
}

/* =========================================
   РђР”РђРџРўРР’РќРћРЎРўР¬ Р”Р›РЇ РџР›РђРќРЁР•РўРћР’ Р РњРћР‘РР›Р¬РќР«РҐ
   ========================================= */

@media (max-width: 992px) {
    /* РҐРµРґРµСЂ Рё Hero */
    .nav,
    .btn-outline {
        display: none;
    }
    .header {
        border-bottom: none;
    }
    .hero-content {
        padding-top: 60px;
    }
    /* РЎРµРєС†РёСЏ РљР°СЂС‚С‹ */
    .eu-map-section {
        padding: 60px 0;
    }
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-title {
        text-align: center;
        br {
            display: none;
        }
    }
    .text-block p {
        text-align: center;
        margin: 0 auto 20px;
    }
    .action-group {
        justify-content: center;
    }
    .map-visual-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    /* РњРѕР±РёР»СЊРЅС‹Рµ С‚СѓР»С‚РёРїС‹ РїРѕ С†РµРЅС‚СЂСѓ (С‡С‚РѕР±С‹ РЅРµ СѓРµР·Р¶Р°Р»Рё Р·Р° СЌРєСЂР°РЅ) */
    .map-hover-card {
        bottom: auto;
        top: -10px;
        transform: translateX(-50%) translateY(-100%) !important;
    }
    .map-hover-card::after {
        bottom: auto;
        top: -6px;
        border: none;
        border-left: 1px solid #f1f5f9;
        border-top: 1px solid #f1f5f9;
    }
    /* РЎРµРєС†РёСЏ РљР°Рє СЂР°Р±РѕС‚Р°РµС‚ */
    .how-it-works-section {
        padding: 60px 0;
    }
    .hiw-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hiw-btn {
        width: 100%;
    }
    .media-item {
        aspect-ratio: 4 / 3;
    }
}

/* =========================================
   4. РЎР•РљР¦РРЇ РџР Р•РРњРЈР©Р•РЎРўР’
   ========================================= */

.benefits-section {
    padding: 100px 0;
    background-color: #f8fafc;
    /* РћС‡РµРЅСЊ Р»РµРіРєРёР№ СЃРµСЂС‹Р№ С„РѕРЅ РґР»СЏ РєРѕРЅС‚СЂР°СЃС‚Р° СЃ Р±РµР»С‹РјРё РєР°СЂС‚РѕС‡РєР°РјРё */
}

.text-center {
    text-align: center;
}

.benefits-header {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Р”РёР·Р°Р№РЅ СЃР°РјРѕР№ РєР°СЂС‚РѕС‡РєРё */

.benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Р­С‚Рѕ СЃРєСЂС‹РІР°РµС‚ СЌР»РµРјРµРЅС‚С‹ РґРѕ С‚РѕРіРѕ, РєР°Рє СЃСЂР°Р±РѕС‚Р°РµС‚ СЃРєСЂРёРїС‚ Р°РЅРёРјР°С†РёРё */
    opacity: 0;
    transform: translateY(30px);
}

/* Premium Hover СЌС„С„РµРєС‚ */

.benefit-card:hover {
    transform: translateY(-8px) !important;
    /* !important РїРµСЂРµР±РёРІР°РµС‚ РёРЅР»Р°Р№РЅ СЃС‚РёР»Рё СЃРєСЂРёРїС‚Р° РїРѕСЃР»Рµ РїРѕСЏРІР»РµРЅРёСЏ */
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

/* РЎС‚РёР»РёР·Р°С†РёСЏ РѕР±РµСЂС‚РѕРє РґР»СЏ РёРєРѕРЅРѕРє */

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Р¦РІРµС‚РѕРІС‹Рµ РІР°СЂРёР°С†РёРё РёРєРѕРЅРѕРє */

.icon-blue {
    background: #eff6ff;
    color: #3b82f6;
}

.icon-green {
    background: #ecfdf5;
    color: #10b981;
}

.icon-orange {
    background: #fff7ed;
    color: #f97316;
}

.icon-purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

/* РўРёРїРѕРіСЂР°С„РёРєР° РІРЅСѓС‚СЂРё РєР°СЂС‚РѕС‡РєРё */

.benefit-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

/* РЎС‚РёР»Рё РґР»СЏ РІР°С€РёС… РєР°СЃС‚РѕРјРЅС‹С… РёРєРѕРЅРѕРє-РєР°СЂС‚РёРЅРѕРє */

.custom-benefit-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /* РЎРѕС…СЂР°РЅСЏРµС‚ РїСЂРѕРїРѕСЂС†РёРё РІР°С€РµР№ РёРєРѕРЅРєРё */
    display: block;
}

/* РђРґР°РїС‚РёРІРЅРѕСЃС‚СЊ РґР»СЏ С‚РµР»РµС„РѕРЅРѕРІ Рё РїР»Р°РЅС€РµС‚РѕРІ */

@media (max-width: 992px) {
    .benefits-section {
        padding: 60px 0;
    }
    .benefits-header {
        margin-bottom: 40px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .benefit-card {
        padding: 32px 24px;
    }
}

/* ==============================================
   РћР‘РќРћР’Р›Р•РќРР• РРљРћРќРћРљ Р’ .benefits-section
   Р”РѕР±Р°РІСЊ РІ РєРѕРЅРµС† style.css
   ============================================== */

/* Eyebrow-Р»РµР№Р±Р» РЅР°Рґ Р·Р°РіРѕР»РѕРІРєР°РјРё СЃРµРєС†РёР№ */

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f97316;
    margin-bottom: 12px;
    text-align: center;
}

/* SVG РёРєРѕРЅРєРё РєРѕСЂСЂРµРєС‚РЅРѕ РЅР°СЃР»РµРґСѓСЋС‚ С†РІРµС‚ РѕР±С‘СЂС‚РєРё */

.icon-wrapper svg {
    display: block;
}

.icon-blue svg {
    stroke: #3b82f6;
}

.icon-green svg {
    stroke: #10b981;
}

.icon-orange svg {
    stroke: #f97316;
}

.icon-purple svg {
    stroke: #8b5cf6;
}

/* ==============================================
   5. РЎР•РљР¦РРЇ РћРўР—Р«Р’РћР’
   ============================================== */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Р”РµРєРѕСЂР°С‚РёРІРЅС‹Р№ Р±Р»СЋСЂ-РєСЂСѓРі */

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* РЎРµС‚РєР° вЂ” С‚СЂРё РєР°СЂС‚РѕС‡РєРё, СЃСЂРµРґРЅСЏСЏ РІС‹РґРµР»РµРЅР° */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 24px;
    align-items: start;
}

/* ---- Р‘Р°Р·РѕРІР°СЏ РєР°СЂС‚РѕС‡РєР° ---- */

.testi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* СЃС‚Р°СЂС‚РѕРІРѕРµ СЃРѕСЃС‚РѕСЏРЅРёРµ РґР»СЏ Р°РЅРёРјР°С†РёРё РїРѕСЏРІР»РµРЅРёСЏ */
    opacity: 0;
    transform: translateY(30px);
}

.testi-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

/* ---- Р’С‹РґРµР»РµРЅРЅР°СЏ РєР°СЂС‚РѕС‡РєР° ---- */

.testi-card--featured {
    background: linear-gradient(145deg, #f97316 0%, #ea580c 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 20px 50px -10px rgba(249, 115, 22, 0.35);
    margin-top: -12px;
}

.testi-card--featured .testi-text {
    color: rgba(255, 255, 255, 0.9);
}

.testi-card--featured strong {
    color: #ffffff;
}

.testi-card--featured .testi-info span {
    color: rgba(255, 255, 255, 0.7);
}

.testi-card--featured .testi-info span svg {
    stroke: rgba(255, 255, 255, 0.7);
}

.testi-card--featured .testi-avatar-ring {
    border-color: rgba(255, 255, 255, 0.4);
}

.testi-card--featured .testi-avatar-placeholder {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Р’РµСЂС…РЅСЏСЏ РїРѕР»РѕСЃРєР°: Р·РІС‘Р·РґС‹ + РєР°РІС‹С‡РєР° */

.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-quote-icon {
    opacity: 0.9;
}

/* РўРµРєСЃС‚ РѕС‚Р·С‹РІР° */

.testi-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    flex-grow: 1;
}

/* РђРІС‚РѕСЂ */

.testi-author {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.testi-card--featured .testi-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* РђРІР°С‚Р°СЂ */

.testi-avatar {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.testi-avatar-img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #e2e8f0;
    display: block;
    position: relative;
    z-index: 1;
}

/* Fallback-Р·Р°РіР»СѓС€РєР° (РїРѕРєР°Р·С‹РІР°РµС‚СЃСЏ РєРѕРіРґР° РЅРµС‚ src Сѓ img) */

.testi-avatar-placeholder {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* РџСЂСЏС‡РµРј Р·Р°РіР»СѓС€РєСѓ РµСЃР»Рё РєР°СЂС‚РёРЅРєР° Р·Р°РіСЂСѓР¶РµРЅР° */
    z-index: 0;
}

/* РљРѕРіРґР° img Р·Р°РіСЂСѓР¶РµРЅР° вЂ” РѕРЅР° РїРµСЂРµРєСЂС‹РІР°РµС‚ placeholder */

.testi-avatar-img[src]:not([src=""])~.testi-avatar-placeholder {
    display: none;
}

.testi-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testi-info strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}

.testi-info span {
    font-size: 0.82rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testi-info span svg {
    stroke: #94a3b8;
}

/* ---- CTA-Р±Р°РЅРЅРµСЂ РїРѕРґ РѕС‚Р·С‹РІР°РјРё ---- */

.testi-cta-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #0a192f 0%, #0f2744 100%);
    border-radius: 24px;
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.testi-cta-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testi-live-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.testi-cta-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.btn-cta-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 18px 36px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 30px -5px rgba(249, 115, 22, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.5);
}

/* ==============================================
   6. Р¤РЈРўР•Р 
   ============================================== */

.site-footer {
    background-color: #0a192f;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Р’РµСЂС…РЅСЏСЏ С‡Р°СЃС‚СЊ */

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 62px;
    width: 150px;
    object-fit: contain;
    /* Placeholder - РѕС‚РѕР±СЂР°Р¶Р°РµРј РµСЃР»Рё РЅРµС‚ РєР°СЂС‚РёРЅРєРё */
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s;
}

.footer-col a:hover {
    color: #ffffff;
}

/* Р Р°Р·РґРµР»РёС‚РµР»СЊ */

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

/* РќРёР¶РЅСЏСЏ С‡Р°СЃС‚СЊ */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Р›РѕРіРѕ РїР°СЂС‚РЅС‘СЂРѕРІ */

.footer-partner-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logo-slot {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
}

.partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity 0.3s;
    display: block;
}

.partner-logo[src]:not([src=""])~.partner-logo-fallback {
    display: none;
}

/* Fallback С‚РµРєСЃС‚ РµСЃР»Рё РЅРµС‚ РєР°СЂС‚РёРЅРєРё */

.partner-logo-fallback {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: color 0.3s;
}

.partner-logo-slot:hover .partner-logo {
    opacity: 0.75;
}

.partner-logo-slot:hover .partner-logo-fallback {
    color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   РђР”РђРџРўРР’РќРћРЎРўР¬ вЂ” РѕС‚Р·С‹РІС‹ Рё С„СѓС‚РµСЂ
   ============================================== */

@media (max-width: 992px) {
    /* РћС‚Р·С‹РІС‹ */
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testi-card--featured {
        margin-top: 0;
    }
    .testi-cta-banner {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .testi-live-dot {
        justify-content: center;
    }
    .btn-cta-banner {
        width: 100%;
    }
    /* Р¤СѓС‚РµСЂ */
    .site-footer {
        padding: 60px 0 32px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .footer-partner-logos {
        gap: 20px;
    }
}

/* ============================================================
   ESOR MODAL FLOW  вЂў  modal-flow.css  (v3)
   
   Р’РђР–РќРћ: РґРѕР±Р°РІСЊ РІ <head> РІР°С€РµРіРѕ HTML РґРѕ СЌС‚РѕРіРѕ С„Р°Р№Р»Р°:
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flag-icons/6.11.0/css/flag-icons.min.css">
   ============================================================ */

/* в”Ђв”Ђ OVERLAY в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.mf-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 30, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mf-overlay--visible {
    opacity: 1;
}

/* в”Ђв”Ђ MODAL BASE в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.mf-modal {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 32px 28px;
    max-height: 96vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
    box-shadow: 0 32px 80px -10px rgba(5, 14, 30, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.mf-modal--in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mf-modal--out {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
}

.mf-modal::-webkit-scrollbar {
    width: 4px;
}

.mf-modal::-webkit-scrollbar-track {
    background: transparent;
}

.mf-modal::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

/* в”Ђв”Ђ CLOSE BTN в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.mf-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    background: #f1f5f9;
    border-radius: 12px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.mf-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* в”Ђв”Ђ SHARED TYPOGRAPHY в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.mf-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #f1f5f9;
    color: #64748b;
    margin-bottom: 10px;
}

.mf-step-badge--green {
    background: #ecfdf5;
    color: #10b981;
}

.mf-step-badge--orange {
    background: #fff7ed;
    color: #f97316;
}

.mf-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 800;
    color: #0a192f;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.mf-title--sm {
    font-size: 1.15rem;
    margin-bottom: 3px;
}

.mf-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: 520px;
}

/* в”Ђв”Ђ SHARED BTN в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.mf-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mf-btn--primary {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(249, 115, 22, 0.35);
    margin-top: 6px;
}

.mf-btn--primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -5px rgba(249, 115, 22, 0.45);
}

.mf-btn--disabled {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   FIX 1: COUNTRY MODAL вЂ” РІСЃС‘ Р±РµР· СЃРєСЂРѕР»Р»Р° (3 РєРѕР»РѕРЅРєРё)
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.mf-modal--country {
    width: min(740px, 100%);
    padding: 28px 32px 22px;
    overflow-y: visible;
    max-height: none;
}

.mf-modal--country .mf-title {
    font-size: 1.35rem;
    margin-bottom: 3px;
}

.mf-modal--country .mf-subtitle {
    font-size: 0.82rem;
}

.mf-country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 12px;
    margin: 14px 0 12px;
}

.mf-country-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border-radius: 9px;
    cursor: pointer;
    border: 1.5px solid #f1f5f9;
    transition: all 0.2s ease;
    user-select: none;
}

.mf-country-item:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.mf-country-item.is-selected {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.mf-country-item input {
    display: none;
}

.mf-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.mf-country-item.is-selected .mf-radio-circle {
    border-color: #f97316;
    background: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.mf-country-item.is-selected .mf-radio-circle::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: white;
}

.mf-country-name {
    font-size: 0.87rem;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
}

.mf-country-item.is-selected .mf-country-name {
    color: #c2410c;
}

.mf-footer {
    padding-top: 4px;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   FIX 2: LOADER вЂ” Р‘Р•Р›Р«Р™ Р¤РћРќ, РљРћРњРџРђРљРўРќР«Р™
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.mf-modal--loader {
    width: min(420px, 100%);
    background: #ffffff;
    color: #0a192f;
    text-align: center;
    padding: 36px 36px 32px;
    /* РЅР° РјР°Р»РµРЅСЊРєРёС… СЌРєСЂР°РЅР°С… СЃРєСЂРѕР»Р» */
    max-height: 96vh;
    overflow-y: auto;
}

.mf-loader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* РћСЂР± вЂ” РјРµРЅСЊС€Рµ */

.mf-loader-orb {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mf-orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.mf-orb-ring--1 {
    border-top-color: #f97316;
    border-right-color: rgba(249, 115, 22, 0.25);
    animation: mf-spin 1.2s linear infinite;
}

.mf-orb-ring--2 {
    inset: 9px;
    border-top-color: rgba(249, 115, 22, 0.55);
    border-left-color: rgba(249, 115, 22, 0.15);
    animation: mf-spin 1.8s linear infinite reverse;
}

.mf-orb-ring--3 {
    inset: 18px;
    border-top-color: rgba(249, 115, 22, 0.35);
    animation: mf-spin 2.4s linear infinite;
}

@keyframes mf-spin {
    to {
        transform: rotate(360deg);
    }
}

.mf-orb-core {
    width: 38px;
    height: 38px;
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #ffedd5, 0 4px 16px rgba(249, 115, 22, 0.12);
    animation: mf-pulse-core 2s ease-in-out infinite alternate;
}

@keyframes mf-pulse-core {
    from {
        box-shadow: 0 0 0 1px #ffedd5, 0 4px 12px rgba(249, 115, 22, 0.1);
    }
    to {
        box-shadow: 0 0 0 1px #fed7aa, 0 4px 22px rgba(249, 115, 22, 0.25);
    }
}

.mf-loader-region {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 40px;
    padding: 7px 18px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #0a192f;
}

.mf-region-flag-img {
    width: 22px !important;
    height: 16px !important;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    background-size: cover;
}

.mf-loader-progress-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-loader-bar-track {
    flex: 1;
    height: 5px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.mf-loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: 99px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 6px rgba(249, 115, 22, 0.35);
}

.mf-loader-pct {
    font-size: 0.8rem;
    font-weight: 800;
    color: #f97316;
    min-width: 32px;
    text-align: right;
}

.mf-loader-status {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
    min-height: 20px;
    transition: opacity 0.2s ease;
}

/* РЁР°РіРё вЂ” СѓР±СЂР°Р»Рё max-height, РІСЃС‘ РІРёРґРЅРѕ */

.mf-loader-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    /* РќР•Рў max-height Рё overflow: hidden вЂ” С€Р°РіРё РЅРµ РѕР±СЂРµР·Р°СЋС‚СЃСЏ */
}

.mf-loader-step-row {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.8rem;
    color: #64748b;
    padding: 3px 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    text-align: left;
}

.mf-loader-step-row--in {
    opacity: 1;
    transform: translateX(0);
}

.mf-step-icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #64748b;
}

.mf-step-icon--done {
    background: #ecfdf5;
    color: #10b981;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   STEP 3 вЂ” COMPANY PICKER  (РєРѕРјРїР°РєС‚РЅС‹Р№ РґРµСЃРєС‚РѕРї)
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.mf-modal--company {
    width: min(900px, 100%);
    padding: 32px 32px 28px;
    max-height: 96vh;
    overflow-y: auto;
}

.mf-congrats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
}

.mf-congrats-icon {
    width: 40px;
    height: 40px;
    background: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid #bbf7d0;
}

/* в”Ђв”Ђ Mobile prev/next nav в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.mf-mobile-nav {
    display: none;
    /* shown only on mobile via media query */
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.mf-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mf-nav-btn--active {
    border-color: #f97316;
    background: #fff7ed;
    color: #f97316;
}

.mf-nav-btn--active:hover {
    background: #f97316;
    color: #ffffff;
    border-color: #f97316;
}

.mf-nav-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mf-nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.25s ease;
}

.mf-nav-dot.is-active {
    background: #f97316;
    width: 20px;
    border-radius: 4px;
}

.mf-company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mf-company-card {
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mf-company-card.is-hovered {
    border-color: var(--accent, #f97316);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.1);
}

.mf-form-wrap .iti {
    display: block !important;
    width: 100% !important;
}

.mf-company-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.mf-company-logo-wrap {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    flex-shrink: 0;
    position: relative;
    background: #f8fafc;
}

.mf-company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    display: block;
    position: relative;
    z-index: 1;
}

.mf-company-logo[src]:not([src=""])~.mf-company-logo-fallback {
    display: none;
}

.mf-company-logo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 9px;
    z-index: 0;
}

.mf-company-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0a192f;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.mf-company-tag {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
}

.mf-company-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-30deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mf-company-card.is-hovered .mf-company-check {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mf-company-desc {
    padding: 12px 14px;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
}

.mf-company-footer {
    padding: 12px 14px 14px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mf-company-yield-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
}

.mf-company-yield {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0a192f;
    letter-spacing: -0.04em;
    line-height: 1;
}

.mf-company-yield span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 2px;
}

.mf-btn--company {
    width: 100%;
    padding: 11px;
    font-size: 0.84rem;
    background: var(--accent, #f97316);
    color: var(--accent-text, #fff);
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 14px -3px rgba(0, 0, 0, 0.13);
}

.mf-btn--company:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.17);
}

.mf-btn-spinner {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    animation: mf-spin 0.7s linear infinite;
    display: none;
}

.mf-form-wrap .btn-reg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
}

.mf-form-wrap .btn-reg.is-loading .mf-btn-spinner {
    display: block;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   STEP 4 вЂ” FORM
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

.mf-modal--form {
    width: min(480px, 100%);
}

.iti--separate-dial-code .iti__selected-flag {
    border-radius: 10px 0 0 10px;
}

.mf-form-wrap {
    margin: 18px 0 0;
}

.mf-form-wrap .form-group {
    margin-bottom: 4px;
}

.mf-form-wrap .form-label.hidden {
    display: none;
}

.mf-form-wrap .form-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.mf-form-wrap .form-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.mf-form-wrap .form-input:focus {
    border-color: #f97316 !important;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.mf-form-wrap .messages {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 600;
    margin-top: 5px;
    min-height: 14px;
}

.mf-form-wrap .btn-reg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    padding: 15px 24px !important;
    margin-top: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 12px !important;
    cursor: pointer;
    box-shadow: 0 8px 24px -5px rgba(249, 115, 22, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mf-form-wrap .btn-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -5px rgba(249, 115, 22, 0.48);
}

.mf-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}

.mf-form-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #059669;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   RESPONSIVE
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

@media (max-width: 768px) {
    .mf-modal {
        padding: 28px 20px 24px;
        border-radius: 22px;
    }
    .mf-modal--loader {
        padding: 44px 28px 36px;
    }
    /* Country: 2 РєРѕР»РѕРЅРєРё, СЂР°Р·СЂРµС€Р°РµРј СЃРєСЂРѕР»Р» РµСЃР»Рё РЅСѓР¶РЅРѕ */
    .mf-modal--country {
        padding: 22px 16px 18px;
        overflow-y: auto;
        max-height: 92vh;
    }
    .mf-country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 8px;
    }
    .mf-country-name {
        font-size: 0.76rem;
    }
    .mf-country-item {
        padding: 8px 10px;
        gap: 8px;
    }
    /* Company: РїРѕРєР°Р·С‹РІР°РµРј РєРЅРѕРїРєРё РЅР°РІРёРіР°С†РёРё + РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅС‹Р№ СЃРєСЂРѕР»Р» */
    .mf-modal--company {
        padding: 24px 16px 20px;
    }
    .mf-congrats {
        flex-direction: column;
        gap: 8px;
    }
    .mf-mobile-nav {
        display: flex;
    }
    .mf-company-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .mf-company-grid::-webkit-scrollbar {
        display: none;
    }
    .mf-company-card {
        flex-shrink: 0;
        width: 78vw;
        max-width: 300px;
        scroll-snap-align: start;
    }
    .mf-form-trust {
        gap: 12px;
    }
    .mf-form-trust span:nth-child(3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .mf-overlay {
        padding: 12px;
    }
    .mf-modal {
        padding: 22px 22px 22px;
        border-radius: 20px;
    }
    .mf-country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mf-company-card {
        width: 86vw;
    }
    .mf-title {
        font-size: 1.28rem;
    }
    .mf-subtitle {
        font-size: 0.86rem;
    }
}