/* ====================================
   UI Elements - Icons, Links, Buttons
   ==================================== */

/* Hero image — адаптивные размеры (одинаковые для всех мобайлов) */
.hero-img-responsive {
    height: auto;
    width: clamp(280px, 95%, 480px);
    margin: 0 auto;
    display: block;
}
@media (min-width: 1024px) {
    .hero-img-responsive {
        width: 100%;
        max-width: 762px;
    }
}
/* Убираем фикс. min-height у hero-контейнера на мобиле (картинка теперь компактная) */
@media (max-width: 1023px) {
    #hero-image-container {
        min-height: 0 !important;
        height: auto !important;
    }
}

/* Benefits Pills — преимущества в одну строку */
.benefits-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    width: 100%;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}
.benefits-pills .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid #E3EAF4;
    border-radius: 100px;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.benefits-pills .pill:hover {
    border-color: #D5DEEC;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(20, 20, 43, 0.06);
}
.benefits-pills .pill__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.benefits-pills .pill-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D5DEEC;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .benefits-pills {
        gap: 10px;
        flex-direction: column;
    }
    .benefits-pills .pill {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 11px 18px;
        font-size: 13.5px;
    }
    .benefits-pills .pill-sep { display: none; }
}

/* Hero Badge — «Без регистраций и VPN в России» (перенос из v1, Montserrat 1в1) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding: 7px 24px;
    border: 1px solid #E3EAF4;
    border-radius: 100px;
    background: #fff;
    width: fit-content;
    margin-bottom: 18px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}
.hero-badge__dot {
    width: 10px;
    height: 10px;
    background: #52C500;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(82, 197, 0, 0.18);
    flex-shrink: 0;
}
.hero-badge__text {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #000;
}
@media (max-width: 768px) {
    .hero-badge {
        padding: 7px 22px;
        gap: 14px;
        margin: 0 auto 12px;
    }
    .hero-badge__dot {
        width: 9px;
        height: 9px;
        box-shadow: 0 0 0 4.5px rgba(82, 197, 0, 0.18);
    }
    .hero-badge__text {
        font-size: 13px;
        line-height: 24px;
    }
}

/* Footer Social Link */
.footer-social-link {
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #FFD93D, #F6C344) !important;
    fill: #1a1a1a !important;
}

.footer-social-link svg {
    transition: fill 0.3s ease;
}

/* Mobile - убираем серый фон */
@media (max-width: 768px) {
    .footer-social-link {
        background: transparent !important;
    }

    .footer-social-link:hover {
        background: linear-gradient(135deg, #FFD93D, #F6C344) !important;
    }
}

/* Footer Links */
.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F6C344 !important;
}

/* Back to Top Button - Always Golden */
.back-to-top-btn {
    background: linear-gradient(135deg, #FFD93D, #F6C344) !important;
    fill: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(246, 195, 68, 0.35);
}

.back-to-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(246, 195, 68, 0.5);
}

.back-to-top-btn svg {
    fill: #1a1a1a;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: scale(1.1);
}

/* Star Rating Colors */
.tw-fill-primary-600 {
    fill: #F2C94C !important;
}

.tw-text-primary-600 {
    color: #FFD93D !important;
}

.tw-bg-primary-600 {
    background-color: #FFD93D !important;
}

.hover\:tw-bg-primary-600:hover {
    background-color: #FFD93D !important;
}

.hover\:tw-text-primary-600:hover {
    color: #F6C344 !important;
}

.hover\:tw-fill-white:hover {
    fill: #1a1a1a !important;
}
